public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Tristan Lelong <tristan@lelong.xyz>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: oleg.drokin@intel.com, andreas.dilger@intel.com,
	askb23@gmail.com, john.hammond@intel.com, gdonald@gmail.com,
	anhlq2110@gmail.com, fabio.falzoi84@gmail.com, oort10@gmail.com,
	agimenez@sysvalve.es, rupran@einserver.de,
	surya.seetharaman9@gmail.com, Julia.Lawall@lip6.fr,
	joe@perches.com, a.terekhov@gmail.com, liang.zhen@intel.com,
	vthakkar1994@gmail.com, amk@cray.com, srikrishanmalik@gmail.com,
	rd@radekdostal.com, bergwolf@gmail.com, dan.carpenter@oracle.com,
	paul.gortmaker@windriver.com, tapaswenipathak@gmail.com,
	email@christophjaeger.info, uja.ornl@gmail.com,
	brilliantov@inbox.ru, dmitry.eremin@intel.com,
	HPDD-discuss@ml01.01.org, devel@driverdev.osuosl.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] staging: lustre: fix sparse warning on LPROC_SEQ_FOPS macros
Date: Fri, 5 Dec 2014 14:41:43 -0800	[thread overview]
Message-ID: <20141205224143.GB5698@localhost.localdomain> (raw)
In-Reply-To: <20141205212723.GA22536@kroah.com>

On Fri, Dec 05, 2014 at 01:27:23PM -0800, Greg KH wrote:
> On Fri, Dec 05, 2014 at 12:03:47AM -0800, Tristan Lelong wrote:
> >  static ssize_t
> > -fld_proc_hash_seq_write(struct file *file, const char *buffer,
> > -			size_t count, loff_t *off)
> > +fld_proc_hash_seq_write(struct file *file,
> > +				const char __user *buffer,
> > +				size_t count, loff_t *off)
> >  {
> >  	struct lu_client_fld *fld;
> >  	struct lu_fld_hash *hash = NULL;
> > +	char name[80];
> >  	int i;
> >  
> > +	if (count > 80)
> > +		return -ENAMETOOLONG;
> > +
> > +	if (copy_from_user(name, buffer, count) != 0)
> > +		return -EFAULT;
> 
> How was this code ever working before?

I have no idea, and was actually surprised that this was there.

> 
> And I know Joe asked, but how do you know that 80 is ok?  And why on the
> stack?

80 is the sizeof(struct lu_fld_hash.fh_name) and there is no define for that.
A few other structure members are using this 80 value internally, and as I told
Joe, I will analyze if they are all related and submit a patch to use a define instead.

> 
> Shouldn't you just compare count to strlen(fld_hash[i].fh_name)? like you
> do later on?
> 

This is actually done in the for loop already. I first compare with the maximum size,
then the loop use the strlen of each entries in the table, and finally does the strncmp.

> 
> Anyway, I don't like large stack variables like this, can you make it
> dynamic instead?
> 

I can definitely do this with a kmalloc, I'll submit a v2 tonight.

Thanks

  reply	other threads:[~2014-12-05 22:41 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-05  8:03 [PATCH] staging: lustre: fix sparse warning on LPROC_SEQ_FOPS macros Tristan Lelong
2014-12-05  8:28 ` Joe Perches
2014-12-05  8:37   ` Tristan Lelong
2014-12-05  8:44     ` Joe Perches
2014-12-05 22:35       ` Tristan Lelong
2014-12-05 21:27 ` Greg KH
2014-12-05 22:41   ` Tristan Lelong [this message]
2014-12-06 17:05     ` Dilger, Andreas
2014-12-06 22:34       ` Tristan Lelong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20141205224143.GB5698@localhost.localdomain \
    --to=tristan@lelong.xyz \
    --cc=HPDD-discuss@ml01.01.org \
    --cc=Julia.Lawall@lip6.fr \
    --cc=a.terekhov@gmail.com \
    --cc=agimenez@sysvalve.es \
    --cc=amk@cray.com \
    --cc=andreas.dilger@intel.com \
    --cc=anhlq2110@gmail.com \
    --cc=askb23@gmail.com \
    --cc=bergwolf@gmail.com \
    --cc=brilliantov@inbox.ru \
    --cc=dan.carpenter@oracle.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=dmitry.eremin@intel.com \
    --cc=email@christophjaeger.info \
    --cc=fabio.falzoi84@gmail.com \
    --cc=gdonald@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=joe@perches.com \
    --cc=john.hammond@intel.com \
    --cc=liang.zhen@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oleg.drokin@intel.com \
    --cc=oort10@gmail.com \
    --cc=paul.gortmaker@windriver.com \
    --cc=rd@radekdostal.com \
    --cc=rupran@einserver.de \
    --cc=srikrishanmalik@gmail.com \
    --cc=surya.seetharaman9@gmail.com \
    --cc=tapaswenipathak@gmail.com \
    --cc=uja.ornl@gmail.com \
    --cc=vthakkar1994@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox