All of lore.kernel.org
 help / color / mirror / Atom feed
From: Denys Vlasenko <vda.linux@googlemail.com>
To: Oleg Nesterov <oleg@redhat.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>, Tejun Heo <tj@kernel.org>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Make PTRACE_SEIZE set ptrace options specified in data parameter
Date: Wed, 7 Sep 2011 23:40:34 +0200	[thread overview]
Message-ID: <201109072340.34626.vda.linux@googlemail.com> (raw)
In-Reply-To: <20110907170212.GB5176@redhat.com>

On Wednesday 07 September 2011 19:02, Oleg Nesterov wrote:
> >  	retval = -EIO;
> > -	if (seize && !(flags & PTRACE_SEIZE_DEVEL))
> > -		goto out;
> > +	if (seize) {
> > +		if ((flags & ~(long)PTRACE_O_MASK) != PTRACE_SEIZE_DEVEL)
> > +			goto out;
> > +		flags &= ~PTRACE_SEIZE_DEVEL;
> > +	} else
> > +		flags = 0;
> 
> Personally I do not care, but this is against the coding-style rules. This
> should be
> 
> 	} else {
> 		flags = 0;
> 	}

Ok


> > @@ -263,7 +267,7 @@ static int ptrace_attach(struct task_struct *task, long request,
> >  	if (task->ptrace)
> >  		goto unlock_tasklist;
> >
> > -	task->ptrace = PT_PTRACED;
> > +	task->ptrace = PT_PTRACED | (flags << PT_OPT_FLAG_SHIFT);
> >  	if (seize)
> >  		task->ptrace |= PT_SEIZED;
> 
> Hmm. Tejun, Denys, this doesn't look exactly right.
> 
> I already thought about this before, but somehow I convinced myself
> this is fine.
> 
> I think we should set both PT_PTRACED | PT_SEIZED "atomically", at
> once. Otherwise, say, the tracee can do do_jobctl_trap() in between,
> no? Nothing really bad can happen, but we shouldn't lose EVENT_STOP
> code.
> 
> IOW, I think we need the small fix before this patch.

I think the best is to just do one and only assignment to task->ptrace.
Even before patch, we can touch it three times...

Sending patch v2...

-- 
vda

  reply	other threads:[~2011-09-07 21:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-07  4:47 [PATCH] Make PTRACE_SEIZE set ptrace options specified in data parameter Denys Vlasenko
2011-09-07 17:02 ` Oleg Nesterov
2011-09-07 21:40   ` Denys Vlasenko [this message]
2011-09-08  0:27   ` Tejun Heo

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=201109072340.34626.vda.linux@googlemail.com \
    --to=vda.linux@googlemail.com \
    --cc=dvlasenk@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oleg@redhat.com \
    --cc=tj@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.