Received: by 2002:ac0:a581:0:0:0:0:0 with SMTP id m1-v6csp2995898imm; Sun, 1 Jul 2018 09:58:22 -0700 (PDT) X-Google-Smtp-Source: ADUXVKJK0sZBNENbwGheJ68D/E6loo8EEh3ZrEXNWHl2p2TftZcTAT3qasS5JuIdI+9hqyoIvnd/ X-Received: by 2002:a17:902:b110:: with SMTP id q16-v6mr22711182plr.286.1530464302499; Sun, 01 Jul 2018 09:58:22 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1530464302; cv=none; d=google.com; s=arc-20160816; b=kZppHygaOvZwmoH9AQEfM0J3Wmi3xt5OGXs/ALS95r5aMqc1UbCM+99l9/V5KPc2m9 0jCg/ODHfoCfQhcuGgD9MLNPCXiMHth438W0k+P7UCTam5L2znwVMIw4nq6wdtEkrRPp WaxzFdof3Gn6Uv3QYQaR7Xh7VdlzB140JFuns5OQuU2B0ItFG9ooaEeGdFfZFjK5eOKc gkA0q/yExIPavMludx+WxI7AWwNolGGeciSLMue2wuz5WI0PlZGGhqQ+XrVm+4ki4gjL 71R0Nskzumf2aVPTRc5MO92ny24sZVcimLMlg2L2ZuCygxSSCUeoKVeHhPWnnMdzcBAH 2vwQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=vTIKKGDbo5ADTexJgYpQARuv69k9do5iuMji+DL1Llk=; b=GKgGX01NAvD5ILqDPm8kNuvKxezwWtx+gro8CxwcYfGRYM493myO9/mF0IZ6VEIfaC Fofd9R2lrnxtB3cFxPU+LxfSrNw4yDCog+NQsjOa3QQ3FJ4GLYGx3bydUNaoBT/L7cn3 lSPVVVQg1GkqtVQcQgir2MYk5pcId5ewtx1Jbr30sJxAn+Sw0H4cgBrd3j4/ZHPPGdtG bq9IgQYYYVjBLm9PdeHJ9u+bUIcpkH1BTwm6pkF5rQ4g+An/sEUvpcumg/075+UbiL7e mrzhzO0xeCE7ljylsySyEOWz7Lz1bK3bBx34Ftz8PsSF9oAS5K6yBMZ+A4DL8KieNPeH bFpg== 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 n14-v6si1566503pgg.216.2018.07.01.09.58.08; Sun, 01 Jul 2018 09:58:22 -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 S933956AbeGAQo7 (ORCPT + 99 others); Sun, 1 Jul 2018 12:44:59 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:38130 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932883AbeGAQoz (ORCPT ); Sun, 1 Jul 2018 12:44:55 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 84AF792B; Sun, 1 Jul 2018 16:44:54 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Dave Wysochanski , Stephen Johnston , Trond Myklebust Subject: [PATCH 4.17 181/220] NFSv4: Fix possible 1-byte stack overflow in nfs_idmap_read_and_verify_message Date: Sun, 1 Jul 2018 18:23:25 +0200 Message-Id: <20180701160915.774157676@linuxfoundation.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180701160908.272447118@linuxfoundation.org> References: <20180701160908.272447118@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.17-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dave Wysochanski commit d68894800ec5712d7ddf042356f11e36f87d7f78 upstream. In nfs_idmap_read_and_verify_message there is an incorrect sprintf '%d' that converts the __u32 'im_id' from struct idmap_msg to 'id_str', which is a stack char array variable of length NFS_UINT_MAXLEN == 11. If a uid or gid value is > 2147483647 = 0x7fffffff, the conversion overflows into a negative value, for example: crash> p (unsigned) (0x80000000) $1 = 2147483648 crash> p (signed) (0x80000000) $2 = -2147483648 The '-' sign is written to the buffer and this causes a 1 byte overflow when the NULL byte is written, which corrupts kernel stack memory. If CONFIG_CC_STACKPROTECTOR_STRONG is set we see a stack-protector panic: [11558053.616565] Kernel panic - not syncing: stack-protector: Kernel stack is corrupted in: ffffffffa05b8a8c [11558053.639063] CPU: 6 PID: 9423 Comm: rpc.idmapd Tainted: G W ------------ T 3.10.0-514.el7.x86_64 #1 [11558053.641990] Hardware name: Red Hat OpenStack Compute, BIOS 1.10.2-3.el7_4.1 04/01/2014 [11558053.644462] ffffffff818c7bc0 00000000b1f3aec1 ffff880de0f9bd48 ffffffff81685eac [11558053.646430] ffff880de0f9bdc8 ffffffff8167f2b3 ffffffff00000010 ffff880de0f9bdd8 [11558053.648313] ffff880de0f9bd78 00000000b1f3aec1 ffffffff811dcb03 ffffffffa05b8a8c [11558053.650107] Call Trace: [11558053.651347] [] dump_stack+0x19/0x1b [11558053.653013] [] panic+0xe3/0x1f2 [11558053.666240] [] ? kfree+0x103/0x140 [11558053.682589] [] ? idmap_pipe_downcall+0x1cc/0x1e0 [nfsv4] [11558053.689710] [] __stack_chk_fail+0x1b/0x30 [11558053.691619] [] idmap_pipe_downcall+0x1cc/0x1e0 [nfsv4] [11558053.693867] [] rpc_pipe_write+0x56/0x70 [sunrpc] [11558053.695763] [] vfs_write+0xbd/0x1e0 [11558053.702236] [] ? task_work_run+0xac/0xe0 [11558053.704215] [] SyS_write+0x7f/0xe0 [11558053.709674] [] system_call_fastpath+0x16/0x1b Fix this by calling the internally defined nfs_map_numeric_to_string() function which properly uses '%u' to convert this __u32. For consistency, also replace the one other place where snprintf is called. Signed-off-by: Dave Wysochanski Reported-by: Stephen Johnston Fixes: cf4ab538f1516 ("NFSv4: Fix the string length returned by the idmapper") Cc: stable@vger.kernel.org # v3.4+ Signed-off-by: Trond Myklebust Signed-off-by: Greg Kroah-Hartman --- fs/nfs/nfs4idmap.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/fs/nfs/nfs4idmap.c +++ b/fs/nfs/nfs4idmap.c @@ -343,7 +343,7 @@ static ssize_t nfs_idmap_lookup_name(__u int id_len; ssize_t ret; - id_len = snprintf(id_str, sizeof(id_str), "%u", id); + id_len = nfs_map_numeric_to_string(id, id_str, sizeof(id_str)); ret = nfs_idmap_get_key(id_str, id_len, type, buf, buflen, idmap); if (ret < 0) return -EINVAL; @@ -627,7 +627,8 @@ static int nfs_idmap_read_and_verify_mes if (strcmp(upcall->im_name, im->im_name) != 0) break; /* Note: here we store the NUL terminator too */ - len = sprintf(id_str, "%d", im->im_id) + 1; + len = 1 + nfs_map_numeric_to_string(im->im_id, id_str, + sizeof(id_str)); ret = nfs_idmap_instantiate(key, authkey, id_str, len); break; case IDMAP_CONV_IDTONAME: