Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp1908208pxf; Sat, 13 Mar 2021 01:19:38 -0800 (PST) X-Google-Smtp-Source: ABdhPJxTs1ZMoxNoP+IUoFqLnFHhgXCPyABHQUHXQifmewEmnL3ggmJ+KK43t1sWbhiU1Q5H1YXP X-Received: by 2002:a17:907:3d01:: with SMTP id gm1mr13208132ejc.214.1615627178263; Sat, 13 Mar 2021 01:19:38 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1615627178; cv=none; d=google.com; s=arc-20160816; b=0jabuT/mfzr8TYApEkNsIZQpglqVH+TqRc5P5ZCOFjgy8fP2E8eEXxHY04GAadxGEU pFXK26Sumg42w3oAozVaZvr0V560OwfD1ILRDmmrHOY7ExFgbhI+dmW+A7Db7DO0Fd4B ofw3puG71jzbArQ7Z6LuvY3f1ckawmiAQyicB9zXkhk30L6OGklgGdyzU27jJCsRYRnP O0mmJox0/8BqJ2SieX7W+gC6dvJsfKWSyyqaXqvFFrCH6/FXsp+q8e8tqZF3Bt6HUHNb qPmuKGPU5j1J2ih9VWbX/4a39GjYU53C1xzJ7lulma6kj/qGkHmfV8s8SilpkK3jZ7ns Urcg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-transfer-encoding :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=9nqVL0hejs55LYvROto+4H2LRqZdGOf/rUqCB8mRo8Y=; b=MPD7b5cWR4Ce70wp0yGMbt1J0ulxu+LOq8i/7ZXVou2BunUiRhOJECMOlwPV6rg6cg TFB/cPIKvkWoOUNa9q7gl3Vwcyhj9CNjyCRdkH9/1nv/M7Y+p5MnTlLPOcY0RQTrvcRE ob8KCmjbG30j58Urb+bmMaSoom5E2HFVMZUbpg6bd+YAPGDFM7IUQCazOvy2UnNvtJSD l+80ZXmk7K6jeYEVBbEO1x2WxpaXvbpHaG4T6awS1kxiLkqRQXqO6pJzWFUNj9TQTUaW 8xzX70tOT1GO0B7SzTGmhMf88JLbhTqFz1PMZdH66IvWHABRGy0OZI0WWbnYVjoX/P+l JchQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id g26si6197852edr.573.2021.03.13.01.19.14; Sat, 13 Mar 2021 01:19:38 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231383AbhCMJSI (ORCPT + 99 others); Sat, 13 Mar 2021 04:18:08 -0500 Received: from mx2.suse.de ([195.135.220.15]:55212 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230309AbhCMJRy (ORCPT ); Sat, 13 Mar 2021 04:17:54 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id AF3D5ABD7; Sat, 13 Mar 2021 09:17:52 +0000 (UTC) Date: Sat, 13 Mar 2021 10:17:51 +0100 From: Michal =?iso-8859-1?Q?Such=E1nek?= To: Tyrel Datwyler Cc: bhelgaas@google.com, linux-pci@vger.kernel.org, mmc@linux.ibm.com, linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] rpadlpar: fix potential drc_name corruption in store functions Message-ID: <20210313091751.GM6564@kitsune.suse.cz> References: <20210310223021.423155-1-tyreld@linux.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20210310223021.423155-1-tyreld@linux.ibm.com> User-Agent: Mutt/1.11.3 (2019-02-01) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Mar 10, 2021 at 04:30:21PM -0600, Tyrel Datwyler wrote: > Both add_slot_store() and remove_slot_store() try to fix up the drc_name > copied from the store buffer by placing a NULL terminator at nbyte + 1 > or in place of a '\n' if present. However, the static buffer that we > copy the drc_name data into is not zeored and can contain anything past > the n-th byte. This is problematic if a '\n' byte appears in that buffer > after nbytes and the string copied into the store buffer was not NULL > terminated to start with as the strchr() search for a '\n' byte will mark > this incorrectly as the end of the drc_name string resulting in a drc_name > string that contains garbage data after the n-th byte. The following > debugging shows an example of the drmgr utility writing "PHB 4543" to > the add_slot sysfs attribute, but add_slot_store logging a corrupted > string value. > > [135823.702864] drmgr: drmgr: -c phb -a -s PHB 4543 -d 1 > [135823.702879] add_slot_store: drc_name = PHB 4543?|<82>!, rc = -19 > > Fix this by NULL terminating the string when we copy it into our static > buffer by coping nbytes + 1 of data from the store buffer. The code has Why is it OK to copy nbytes + 1 and why is it expected that the buffer contains a nul after the content? Isn't it much saner to just nul terminate the string after copying? diff --git a/drivers/pci/hotplug/rpadlpar_sysfs.c b/drivers/pci/hotplug/rpadlpar_sysfs.c index cdbfa5df3a51..cfbad67447da 100644 --- a/drivers/pci/hotplug/rpadlpar_sysfs.c +++ b/drivers/pci/hotplug/rpadlpar_sysfs.c @@ -35,11 +35,11 @@ static ssize_t add_slot_store(struct kobject *kobj, struct kobj_attribute *attr, return 0; memcpy(drc_name, buf, nbytes); + &drc_name[nbytes] = '\0'; end = strchr(drc_name, '\n'); - if (!end) - end = &drc_name[nbytes]; - *end = '\0'; + if (end) + *end = '\0'; rc = dlpar_add_slot(drc_name); if (rc) @@ -66,11 +66,11 @@ static ssize_t remove_slot_store(struct kobject *kobj, return 0; memcpy(drc_name, buf, nbytes); + &drc_name[nbytes] = '\0'; end = strchr(drc_name, '\n'); - if (!end) - end = &drc_name[nbytes]; - *end = '\0'; + if (end) + *end = '\0'; rc = dlpar_remove_slot(drc_name); if (rc) Thanks Michal > already made sure that nbytes is not >= MAX_DRC_NAME_LEN and the store > buffer is guaranteed to be zeroed beyond the nth-byte of data copied > from the user. Further, since the string is now NULL terminated the code > only needs to change '\n' to '\0' when present. > > Signed-off-by: Tyrel Datwyler > --- > drivers/pci/hotplug/rpadlpar_sysfs.c | 14 ++++++-------- > 1 file changed, 6 insertions(+), 8 deletions(-) > > diff --git a/drivers/pci/hotplug/rpadlpar_sysfs.c b/drivers/pci/hotplug/rpadlpar_sysfs.c > index cdbfa5df3a51..375087921284 100644 > --- a/drivers/pci/hotplug/rpadlpar_sysfs.c > +++ b/drivers/pci/hotplug/rpadlpar_sysfs.c > @@ -34,12 +34,11 @@ static ssize_t add_slot_store(struct kobject *kobj, struct kobj_attribute *attr, > if (nbytes >= MAX_DRC_NAME_LEN) > return 0; > > - memcpy(drc_name, buf, nbytes); > + memcpy(drc_name, buf, nbytes + 1); > > end = strchr(drc_name, '\n'); > - if (!end) > - end = &drc_name[nbytes]; > - *end = '\0'; > + if (end) > + *end = '\0'; > > rc = dlpar_add_slot(drc_name); > if (rc) > @@ -65,12 +64,11 @@ static ssize_t remove_slot_store(struct kobject *kobj, > if (nbytes >= MAX_DRC_NAME_LEN) > return 0; > > - memcpy(drc_name, buf, nbytes); > + memcpy(drc_name, buf, nbytes + 1); > > end = strchr(drc_name, '\n'); > - if (!end) > - end = &drc_name[nbytes]; > - *end = '\0'; > + if (end) > + *end = '\0'; > > rc = dlpar_remove_slot(drc_name); > if (rc) > -- > 2.27.0 >