From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.4 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B8FE2C2D0DB for ; Tue, 28 Jan 2020 14:59:11 +0000 (UTC) Received: from mother.openwall.net (mother.openwall.net [195.42.179.200]) by mail.kernel.org (Postfix) with SMTP id 15B0E2467E for ; Tue, 28 Jan 2020 14:59:10 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="J30K3AOR" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 15B0E2467E Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kernel-hardening-return-17620-kernel-hardening=archiver.kernel.org@lists.openwall.com Received: (qmail 23775 invoked by uid 550); 28 Jan 2020 14:59:04 -0000 Mailing-List: contact kernel-hardening-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Received: (qmail 23755 invoked from network); 28 Jan 2020 14:59:03 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1580223532; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=J9dup7HkrusSVVs3WtrZZpcnlSHPtUcbtBH6WbbXS20=; b=J30K3AORJ3u894nARd8dIl1Z30S+r4Q/OamxYtefkwp+hkTdfx4+9EZLUGAX0FGGjgvTdp p3dVKHZIYWQiu56NmsW+HJZcuZz1xMLSLUvXxen3u9qD24RmxhHGvNth9qq6AjjgqkCYBs 8KZIF0F/gaXYoVo2IQfEHfgh8EgTqBc= X-MC-Unique: qOK9YP5uP1yGI5aGU72MxA-1 Date: Tue, 28 Jan 2020 15:58:38 +0100 From: Oleg Nesterov To: Alexey Gladkov Cc: LKML , Kernel Hardening , Linux API , Linux FS Devel , Linux Security Module , Akinobu Mita , Alexander Viro , Alexey Dobriyan , Andrew Morton , Andy Lutomirski , Daniel Micay , Djalal Harouni , "Dmitry V . Levin" , "Eric W . Biederman" , Greg Kroah-Hartman , Ingo Molnar , "J . Bruce Fields" , Jeff Layton , Jonathan Corbet , Kees Cook , Linus Torvalds , Solar Designer , Stephen Rothwell Subject: Re: [PATCH v7 02/11] proc: add proc_fs_info struct to store proc information Message-ID: <20200128145837.GD17943@redhat.com> References: <20200125130541.450409-1-gladkov.alexey@gmail.com> <20200125130541.450409-3-gladkov.alexey@gmail.com> <20200128134337.GC17943@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200128134337.GC17943@redhat.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 On 01/28, Oleg Nesterov wrote: > > On 01/25, Alexey Gladkov wrote: > > > > static int proc_init_fs_context(struct fs_context *fc) > > { > > struct proc_fs_context *ctx; > > + struct pid_namespace *pid_ns; > > > > ctx = kzalloc(sizeof(struct proc_fs_context), GFP_KERNEL); > > if (!ctx) > > return -ENOMEM; > > > > - ctx->pid_ns = get_pid_ns(task_active_pid_ns(current)); > > + pid_ns = get_pid_ns(task_active_pid_ns(current)); > > + > > + if (!pid_ns->proc_mnt) { > > + ctx->fs_info = kzalloc(sizeof(struct proc_fs_info), GFP_KERNEL); > > + if (!ctx->fs_info) { > > + kfree(ctx); > > + return -ENOMEM; > > + } > > + ctx->fs_info->pid_ns = pid_ns; > > + } else { > > + ctx->fs_info = proc_sb_info(pid_ns->proc_mnt->mnt_sb); > > + } > > + > > it seems that this code lacks put_pid_ns() if pid_ns->proc_mnt != NULL > or if kzalloc() fails? OK, this is fixed in 6/11. Oleg.