BUG: 'glabel label' name's lenght, is truncated without err/warn

Andrew Duane aduane at juniper.net
Tue Nov 8 15:42:12 UTC 2011


Checking the return code of strlcpy won't say if the entire string fit (exactly) correctly, or if it was truncated. I think explicitly checking the length of label first is cleaner and more correct. 

I would, however, replace "15" with "sizeof(md.md_label) - 1" both in the check and the printf.

 ...................................
Andrew Duane
Juniper Networks
o   +1 978 589 0551
m  +1 603-770-7088
aduane at juniper.net

 


> -----Original Message-----
> From: owner-freebsd-hackers at freebsd.org [mailto:owner-freebsd-
> hackers at freebsd.org] On Behalf Of Ed Schouten
> Sent: Tuesday, November 08, 2011 6:34 AM
> To: Lucas Holt
> Cc: rank1seeker at gmail.com; hackers at freebsd.org
> Subject: Re: BUG: 'glabel label' name's lenght, is truncated without
> err/warn
> 
> * Lucas Holt <luke at foolishgames.com>, 20111105 15:24:
> > --- src/sbin/geom/class/label/geom_label.c	2008/11/21 21:05:31
> 	1.3
> > +++ src/sbin/geom/class/label/geom_label.c	2011/11/05 14:15:23
> 	1.4
> > @@ -118,6 +118,12 @@ label_label(struct gctl_req *req)
> >  		return;
> >  	}
> >
> > +	label = gctl_get_ascii(req, "arg0");
> > +	if (strlen(label) > 15) {
> > +		gctl_error(req, "Label cannot exceed 15 characters");
> > +		return;
> > +	}
> > +
> >  	/*
> >  	 * Clear last sector first to spoil all components if device
> exists.
> >  	 */
> > @@ -131,7 +137,6 @@ label_label(struct gctl_req *req)
> >
> >  	strlcpy(md.md_magic, G_LABEL_MAGIC, sizeof(md.md_magic));
> >  	md.md_version = G_LABEL_VERSION;
> > -	label = gctl_get_ascii(req, "arg0");
> >  	strlcpy(md.md_label, label, sizeof(md.md_label));
> >  	md.md_provsize = g_get_mediasize(name);
> >  	if (md.md_provsize == 0) {
> 
> Why not simply perform the strlcpy and check whether
> 
> 	if (strlcpy(...) >= sizeof(md.md_label)
> 
> ?
> 
> --
>  Ed Schouten <ed at 80386.nl>
>  WWW: http://80386.nl/


More information about the freebsd-hackers mailing list