From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chen Gang Subject: Re: [PATCH] arch: parisc: kernel: using strlcpy() instead of strcpy() Date: Mon, 03 Jun 2013 16:50:03 +0800 Message-ID: <51AC58BB.20305@asianux.com> References: <51A6A8F3.2030200@asianux.com> <20130530150636.GA2121@udknight> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 To: Wang YanQing , "James E.J. Bottomley" , Helge Deller , Greg KH , Parisc List , "linux-kernel@vger.kernel.org" , Linux-Arch Return-path: In-Reply-To: <20130530150636.GA2121@udknight> List-ID: List-Id: linux-parisc.vger.kernel.org On 05/30/2013 11:06 PM, Wang YanQing wrote: > What about add > boot_command_line[COMMAND_LINE_SIZE - 1] = '\0'; > to protect the following another strcpy? > > " > strcpy(command_line, boot_command_line); > " If the 'dest' length is not less than COMMAND_LINE_SIZE, the strlcpy() will copy 'COMMAND_LINE_SIZE - 1' contents, and always set '\0' in the end. So the next strcpy() will be safe. Thanks. -- Chen Gang Asianux Corporation