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=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable 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 C7614C35247 for ; Mon, 3 Feb 2020 16:42:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9A13C2086A for ; Mon, 3 Feb 2020 16:42:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580748156; bh=SFUGHyzr0jnoyBVgBpc+1WwDmOhKp+1ryGdvCC8ED8E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=oleEpQdgN4ZowwhdUMGVPsT+6szIssKEmrlggJppQ1WTcm2VXyt/ulzaPE6qj1ueD fDtvJyFGvXI3tl+c3ndU/lNvWUuXVzFrN+c4ZHMLHIvTnPHfFHHIZaE1MioaxHpoQi t7SRbGR8w8I+wEcCN2CWp9k9//bBvXW8RGA98QIA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730396AbgBCQmB (ORCPT ); Mon, 3 Feb 2020 11:42:01 -0500 Received: from mail.kernel.org ([198.145.29.99]:48440 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730741AbgBCQeL (ORCPT ); Mon, 3 Feb 2020 11:34:11 -0500 Received: from localhost (unknown [104.132.45.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id BB4AF21744; Mon, 3 Feb 2020 16:34:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580747651; bh=SFUGHyzr0jnoyBVgBpc+1WwDmOhKp+1ryGdvCC8ED8E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=g1sXWtlNHPN3pQX0BUUrWkgdRD7t91Gv0cYo7+NZkti3RCVHPIZ2anZUHVUXMdMGB ChtWN1aDxoY0ewXeoa0dlmUDS4nGhZfxZyF0HWemEKGHd9WI5WKKlkiSznFvzMafcV SRDUvjFxVqxyjWmdFF3dSxwu5GWSUrYCOI2N7TYc= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, syzbot+e64a13c5369a194d67df@syzkaller.appspotmail.com, Dan Carpenter , Vlastimil Babka , Michal Hocko , Lee Schermerhorn , Andrea Arcangeli , Hugh Dickins , Andrew Morton , Linus Torvalds Subject: [PATCH 5.4 13/90] mm/mempolicy.c: fix out of bounds write in mpol_parse_str() Date: Mon, 3 Feb 2020 16:19:16 +0000 Message-Id: <20200203161919.389626881@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200203161917.612554987@linuxfoundation.org> References: <20200203161917.612554987@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Dan Carpenter commit c7a91bc7c2e17e0a9c8b9745a2cb118891218fd1 upstream. What we are trying to do is change the '=' character to a NUL terminator and then at the end of the function we restore it back to an '='. The problem is there are two error paths where we jump to the end of the function before we have replaced the '=' with NUL. We end up putting the '=' in the wrong place (possibly one element before the start of the buffer). Link: http://lkml.kernel.org/r/20200115055426.vdjwvry44nfug7yy@kili.mountain Reported-by: syzbot+e64a13c5369a194d67df@syzkaller.appspotmail.com Fixes: 095f1fc4ebf3 ("mempolicy: rework shmem mpol parsing and display") Signed-off-by: Dan Carpenter Acked-by: Vlastimil Babka Dmitry Vyukov Cc: Michal Hocko Cc: Dan Carpenter Cc: Lee Schermerhorn Cc: Andrea Arcangeli Cc: Hugh Dickins Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- mm/mempolicy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/mm/mempolicy.c +++ b/mm/mempolicy.c @@ -2802,6 +2802,9 @@ int mpol_parse_str(char *str, struct mem char *flags = strchr(str, '='); int err = 1, mode; + if (flags) + *flags++ = '\0'; /* terminate mode string */ + if (nodelist) { /* NUL-terminate mode or flags string */ *nodelist++ = '\0'; @@ -2812,9 +2815,6 @@ int mpol_parse_str(char *str, struct mem } else nodes_clear(nodes); - if (flags) - *flags++ = '\0'; /* terminate mode string */ - mode = match_string(policy_modes, MPOL_MAX, str); if (mode < 0) goto out;