Received: by 2002:a25:c593:0:0:0:0:0 with SMTP id v141csp872871ybe; Fri, 13 Sep 2019 07:36:52 -0700 (PDT) X-Google-Smtp-Source: APXvYqxF8eQqowYoXOcS45Wfcz/mbBZQPbANKyiG1tf1mjCiwrbZdzgAyiErq2gNVYZE+Qbs7UbM X-Received: by 2002:aa7:c0d2:: with SMTP id j18mr4578743edp.239.1568385412121; Fri, 13 Sep 2019 07:36:52 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1568385412; cv=none; d=google.com; s=arc-20160816; b=djuRv0+1S2jNXThyaJAkXqMcqqRbdE0Ygresx1ntaYJiNHvcXMhNeAW4BXfc4EJXAp 93AD8n63QyR8gYpMRess+fAYgM4LBmCE/sPuSz8YEom+mk29fkg7BqHAdhPQEDN5ehhC XhBwQL+X6t3JNwHrslIiHsHUPGaSQT0HbHuNHnh3SRnifR7YNCw56uBqdh3GodNk3/uC heE1zxKP2VVUTzjkpLV0adoUVM8FPa6YijrPJDFkE0YMD8F7fln9MJc85QcseOJHLwHt 1bsjssDDNgJS7um7ste9rjnfVHG8/I4WNMZ7wGDCS8AE1J9EMtACSacp7VKvV0mwMenN 6F4w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=6wcQ7d/GRPyW8KM79aKVsvIOuT8YxTyJxdL7165UevA=; b=lQcVZEMGaNUM1xavA6tT136KLle/ay1mRg/WCQ+gGmR9vPoi2jZsVmOvfFE+AK/pxD tZjaXciXo2PkDZ+uG2IW4RRaXsa97dWRyFMBM5h0ypQHQ8f2qprypDpCxD+IPgPaY5vr pXxVPKyjDIasQQrlHOhDj0uQpRm5SVAWUcmnwb96eo4M7OXK3pR4A3R2YDGqG9LICzgO kbiL3Tv4oq8CbRIErttcG4AXOqx7MrE98L8ERVgz1xroaXGX5toRuz54MBfKnizFurds IU3wraujWKHg9LhXhv29n1n9WnmUNm9A6l3SojG3Th0OwaQgtQ/HRm+f8NeWKDG4t1to VzWA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id y1si14990608edr.182.2019.09.13.07.36.28; Fri, 13 Sep 2019 07:36:52 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728938AbfIMLkM (ORCPT + 99 others); Fri, 13 Sep 2019 07:40:12 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:54935 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728155AbfIMLkM (ORCPT ); Fri, 13 Sep 2019 07:40:12 -0400 Received: from ip5b402a24.dynamic.kabel-deutschland.de ([91.64.42.36] helo=wittgenstein) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1i8jvt-0000Un-Br; Fri, 13 Sep 2019 11:40:09 +0000 Date: Fri, 13 Sep 2019 13:40:07 +0200 From: Christian Brauner To: Eugene Syromiatnikov , Oleg Nesterov Cc: linux-kernel@vger.kernel.org, Andrew Morton , "Peter Zijlstra (Intel)" , Ingo Molnar , "Dmitry V. Levin" , Eric Biederman Subject: Re: [PATCH v3] fork: check exit_signal passed in clone3() call Message-ID: <20190913114006.7dfwzfm6a76grlk3@wittgenstein> References: <4b38fa4ce420b119a4c6345f42fe3cec2de9b0b5.1568223594.git.esyr@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <4b38fa4ce420b119a4c6345f42fe3cec2de9b0b5.1568223594.git.esyr@redhat.com> User-Agent: NeoMutt/20180716 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Sep 11, 2019 at 06:45:40PM +0100, Eugene Syromiatnikov wrote: > Previously, higher 32 bits of exit_signal fields were lost when > copied to the kernel args structure (that uses int as a type for the > respective field). Moreover, as Oleg has noted[1], exit_signal is used > unchecked, so it has to be checked for sanity before use; for the legacy > syscalls, applying CSIGNAL mask guarantees that it is at least non-negative; > however, there's no such thing is done in clone3() code path, and that can > break at least thread_group_leader. > > Adding checks that user-passed exit_signal fits into int and passes > valid_signal() check solves both of these problems. > > [1] https://lkml.org/lkml/2019/9/10/467 > > * kernel/fork.c (copy_clone_args_from_user): Fail with -EINVAL if > args.exit_signal is greater than UINT_MAX or is not a valid signal. > (_do_fork): Note that exit_signal is expected to be checked for the > sanity by the caller. > > Fixes: 7f192e3cd316 ("fork: add clone3") > Reported-by: Oleg Nesterov > Co-authored-by: Oleg Nesterov > Co-authored-by: Dmitry V. Levin > Signed-off-by: Eugene Syromiatnikov For the sake of posterity I appended a reproducer to the patch (cf. [1]) that I pushed to mainline which illustrates how without this patch you can cause a crash. I'll also explain how I think this happens here. By passing in a negative signal you can cause a segfault in proc_flush_task(). The reason is that at process creation time static inline bool thread_group_leader(struct task_struct *p) { return p->exit_signal >= 0; } will return false even though it should return true because exit_signal overflowed in copy_clone_args_from_user. This means, the kernel thinks this is a thread and doesn't make the process a thread-group leader. In proc_flush_task() the kernel will then try to retrieve the thread group leader but there'll be none ultimately causing a segfault. Specifically: void proc_flush_task(struct task_struct *task) { int i; struct pid *pid, *tgid; struct upid *upid; pid = task_pid(task); tgid = task_tgid(task); #### tgid is NULL #### for (i = 0; i <= pid->level; i++) { upid = &pid->numbers[i]; proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr, tgid->numbers[i].nr); #### NULL pointer deref #### } } [1]: #define _GNU_SOURCE #include #include #include #include #include #include #include #include int main(int argc, char *argv[]) { pid_t pid = -1; struct clone_args args = {0}; args.exit_signal = -1; pid = syscall(__NR_clone3, &args, sizeof(struct clone_args)); if (pid < 0) exit(EXIT_FAILURE); if (pid == 0) exit(EXIT_SUCCESS); wait(NULL); exit(EXIT_SUCCESS); } Christian