From: pmeda@akamai.com
To: akpm@osdl.org
Cc: linux-mm@kvack.org, roland@redhat.com
Subject: [patch] ptrace:last_siginfo also needs tasklist_lock
Date: Wed, 26 Jan 2005 22:40:49 -0800 [thread overview]
Message-ID: <200501270640.WAA10798@allur.sanmateo.akamai.com> (raw)
Looks like we fixed only part of the problem earlier. When the child
moves away from ptrace notify and resets the last_siginfo, sighand lock
helps. But if the child goes further in exit and releases the sighand,
we need to test that case too. See ptrace_check_attach() and exit_sighand().
They also use the tasklist_lock.
Followed Roland's suggestions on lock primitive and struct assignment.
Signed-Off-by: Prasanna Meda <pmeda@akamai.com>
--- a/kernel/ptrace.c Wed Jan 27 22:07:41 2005
+++ b/kernel/ptrace.c Wed Jan 27 22:14:33 2005
@@ -320,32 +320,44 @@
static int ptrace_getsiginfo(struct task_struct *child, siginfo_t __user * data)
{
siginfo_t lastinfo;
+ int error = -ESRCH;
- spin_lock_irq(&child->sighand->siglock);
- if (likely(child->last_siginfo != NULL)) {
- memcpy(&lastinfo, child->last_siginfo, sizeof (siginfo_t));
+ read_lock(&tasklist_lock);
+ if (likely(child->sighand != NULL)) {
+ error = -EINVAL;
+ spin_lock_irq(&child->sighand->siglock);
+ if (likely(child->last_siginfo != NULL)) {
+ lastinfo = *child->last_siginfo;
+ error = 0;
+ }
spin_unlock_irq(&child->sighand->siglock);
- return copy_siginfo_to_user(data, &lastinfo);
}
- spin_unlock_irq(&child->sighand->siglock);
- return -EINVAL;
+ read_unlock(&tasklist_lock);
+ if (!error)
+ return copy_siginfo_to_user(data, &lastinfo);
+ return error;
}
static int ptrace_setsiginfo(struct task_struct *child, siginfo_t __user * data)
{
siginfo_t newinfo;
+ int error = -ESRCH;
- if (copy_from_user(&newinfo, data, sizeof (siginfo_t)) != 0)
+ if (copy_from_user(&newinfo, data, sizeof (siginfo_t)))
return -EFAULT;
- spin_lock_irq(&child->sighand->siglock);
- if (likely(child->last_siginfo != NULL)) {
- memcpy(child->last_siginfo, &newinfo, sizeof (siginfo_t));
+ read_lock(&tasklist_lock);
+ if (likely(child->sighand != NULL)) {
+ error = -EINVAL;
+ spin_lock_irq(&child->sighand->siglock);
+ if (likely(child->last_siginfo != NULL)) {
+ *child->last_siginfo = newinfo;
+ error = 0;
+ }
spin_unlock_irq(&child->sighand->siglock);
- return 0;
}
- spin_unlock_irq(&child->sighand->siglock);
- return -EINVAL;
+ read_unlock(&tasklist_lock);
+ return error;
}
int ptrace_request(struct task_struct *child, long request,
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"aart@kvack.org"> aart@kvack.org </a>
next reply other threads:[~2005-01-27 6:36 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-01-27 6:40 pmeda [this message]
2005-01-27 21:17 ` Roland McGrath
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200501270640.WAA10798@allur.sanmateo.akamai.com \
--to=pmeda@akamai.com \
--cc=akpm@osdl.org \
--cc=linux-mm@kvack.org \
--cc=roland@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox