Linux Container Development
 help / color / mirror / Atom feed
From: Oren Laadan <orenl-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org>
To: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
Cc: Linux Containers
	<containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
Subject: Re: [PATCH/user_cr] pass a valid stack address to clone_with_pids
Date: Thu, 03 Sep 2009 16:44:36 -0400	[thread overview]
Message-ID: <4AA02AB4.7080703@librato.com> (raw)
In-Reply-To: <1251846857.23305.5.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>


Pulled, thanks.

Nathan Lynch wrote:
> Off-by-one error: the stack address passed to clone/clone_with_pids
> must be within the region allocated.  (Also, arithmetic on void * is a
> gcc extension; change the relevant variables to char *).
> 
> Signed-off-by: Nathan Lynch <ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org>
> ---
>  mktree.c |   15 ++++++++-------
>  1 files changed, 8 insertions(+), 7 deletions(-)
> 
> diff --git a/mktree.c b/mktree.c
> index 63be82d..2d8d796 100644
> --- a/mktree.c
> +++ b/mktree.c
> @@ -1367,18 +1367,19 @@ int ckpt_fork_stub(void *data)
>  static pid_t ckpt_fork_child(struct ckpt_ctx *ctx, struct task *child)
>  {
>  	struct target_pid_set pid_set;
> -	void *stack = NULL;
> +	char *stack_region;
> +	char *stack_start;
>  	unsigned long flags = SIGCHLD;
>  	pid_t pid = 0;
>  
>  	ckpt_dbg("forking child vpid %d flags %#x\n", child->pid, child->flags);
>  
> -	stack = malloc(PTHREAD_STACK_MIN);
> -	if (!stack) {
> +	stack_region = malloc(PTHREAD_STACK_MIN);
> +	if (!stack_region) {
>  		perror("stack malloc");
>  		return -1;
>  	}
> -	stack += PTHREAD_STACK_MIN;
> +	stack_start = stack_region + PTHREAD_STACK_MIN - 1;
>  
>  	pid_set.target_pids = &pid;
>  	pid_set.num_pids = 1;
> @@ -1406,15 +1407,15 @@ static pid_t ckpt_fork_child(struct ckpt_ctx *ctx, struct task *child)
>  	else
>  		child->real_parent = _getpid();
>  
> -	pid = clone_with_pids(ckpt_fork_stub, stack, flags, &pid_set, child);
> +	pid = clone_with_pids(ckpt_fork_stub, stack_start, flags, &pid_set, child);
>  	if (pid < 0) {
>  		perror("clone");
> -		free(stack - PTHREAD_STACK_MIN);
> +		free(stack_region);
>  		return -1;
>  	}
>  
>  	if (!(child->flags & TASK_THREAD))
> -		free(stack - PTHREAD_STACK_MIN);
> +		free(stack_region);
>  
>  	ckpt_dbg("forked child vpid %d (asked %d)\n", pid, child->pid);
>  	return pid;

      parent reply	other threads:[~2009-09-03 20:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-01 23:14 [PATCH/user_cr] pass a valid stack address to clone_with_pids Nathan Lynch
     [not found] ` <1251846857.23305.5.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-09-03 20:44   ` Oren Laadan [this message]

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=4AA02AB4.7080703@librato.com \
    --to=orenl-rdfvbdnroixbdgjk7y7tuq@public.gmane.org \
    --cc=containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
    --cc=ntl-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox