netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* bonding: cannot remove certain named devices
@ 2006-08-15 19:48 Bill Nottingham
  2006-08-15 20:39 ` Mitch Williams
  0 siblings, 1 reply; 23+ messages in thread
From: Bill Nottingham @ 2006-08-15 19:48 UTC (permalink / raw)
  To: netdev; +Cc: linux-kernel

2.6.17-rc4+.

Trivial example:

# modprobe bonding (creates bond0)
# ip link set bond0 name "a b"
# echo "-a b" > /sys/class/net/bonding_masters 
bonding: unable to delete non-existent bond a
bash: echo: write error: No such device

Bill

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-15 19:48 bonding: cannot remove certain named devices Bill Nottingham
@ 2006-08-15 20:39 ` Mitch Williams
  2006-08-15 20:45   ` Bill Nottingham
  0 siblings, 1 reply; 23+ messages in thread
From: Mitch Williams @ 2006-08-15 20:39 UTC (permalink / raw)
  To: Bill Nottingham; +Cc: netdev, linux-kernel


On Tue, 15 Aug 2006, Bill Nottingham wrote:

> 2.6.17-rc4+.
>
> Trivial example:
>
> # modprobe bonding (creates bond0)
> # ip link set bond0 name "a b"
> # echo "-a b" > /sys/class/net/bonding_masters
> bonding: unable to delete non-existent bond a
> bash: echo: write error: No such device
>

Yuck.  The problem here is the space in the interface name, which the
sysfs code chokes on.  The code just does

	sscanf(buffer, "%16s", command); /* IFNAMSIZ*/

and goes from there.  Because of the space, it only gets the first half of
the interface name.

Suggestions?  Do we just omit the sscanf and copy up to the newline (or
EOF)?  Should there be another delimiter here?

Are spaces allowed in interface names anyway?  I can't believe that
bonding is the only area affected by this.

-Mitch

BTW this will also break if you try to add/remove a slave with a space in
the name through sysfs.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-15 20:39 ` Mitch Williams
@ 2006-08-15 20:45   ` Bill Nottingham
  2006-08-15 21:02     ` Stephen Hemminger
  0 siblings, 1 reply; 23+ messages in thread
From: Bill Nottingham @ 2006-08-15 20:45 UTC (permalink / raw)
  To: Mitch Williams; +Cc: netdev, linux-kernel

Mitch Williams (mitch.a.williams@intel.com) said: 
> Are spaces allowed in interface names anyway?  I can't believe that
> bonding is the only area affected by this.

They're certainly allowed, and the sysfs directory structure, files,
etc. handle it ok. Userspace tends to break in a variety of ways.

I believe the only invalid character in an interface name is '/'.

Bill

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-15 20:45   ` Bill Nottingham
@ 2006-08-15 21:02     ` Stephen Hemminger
  2006-08-15 21:49       ` Bill Nottingham
  0 siblings, 1 reply; 23+ messages in thread
From: Stephen Hemminger @ 2006-08-15 21:02 UTC (permalink / raw)
  To: Bill Nottingham; +Cc: Mitch Williams, netdev, linux-kernel

On Tue, 15 Aug 2006 16:45:55 -0400
Bill Nottingham <notting@redhat.com> wrote:

> Mitch Williams (mitch.a.williams@intel.com) said: 
> > Are spaces allowed in interface names anyway?  I can't believe that
> > bonding is the only area affected by this.
> 
> They're certainly allowed, and the sysfs directory structure, files,
> etc. handle it ok. Userspace tends to break in a variety of ways.
> 
> I believe the only invalid character in an interface name is '/'.
> 

The names "." and ".." are also verboten.
Names with : in them are for IP aliases.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-15 21:02     ` Stephen Hemminger
@ 2006-08-15 21:49       ` Bill Nottingham
  2006-08-15 22:41         ` Mitch Williams
  0 siblings, 1 reply; 23+ messages in thread
From: Bill Nottingham @ 2006-08-15 21:49 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: Mitch Williams, netdev, linux-kernel

Stephen Hemminger (shemminger@osdl.org) said: 
> > They're certainly allowed, and the sysfs directory structure, files,
> > etc. handle it ok. Userspace tends to break in a variety of ways.
> > 
> > I believe the only invalid character in an interface name is '/'.
> > 
> 
> The names "." and ".." are also verboten.

Right. Well, I suspect they're verboten-because-some-code-breaks-making-the-directory.

> Names with : in them are for IP aliases.

That's certainly not enforced at the kernel level.

Bill

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-15 21:49       ` Bill Nottingham
@ 2006-08-15 22:41         ` Mitch Williams
  2006-08-15 22:44           ` Stephen Hemminger
  0 siblings, 1 reply; 23+ messages in thread
From: Mitch Williams @ 2006-08-15 22:41 UTC (permalink / raw)
  To: Bill Nottingham
  Cc: Stephen Hemminger, Williams, Mitch A, netdev, linux-kernel

On Tue, 15 Aug 2006, Bill Nottingham wrote:
>
> Stephen Hemminger (shemminger@osdl.org) said:
> > > They're certainly allowed, and the sysfs directory structure, files,
> > > etc. handle it ok. Userspace tends to break in a variety of ways.
> > >
> > > I believe the only invalid character in an interface name is '/'.
> > >
> >
> > The names "." and ".." are also verboten.
>
> Right. Well, I suspect they're verboten-because-some-code-breaks-making-the-directory.
>
> > Names with : in them are for IP aliases.
>

So can we use
	sscanf(buffer, " %[^\n]", command);
instead?  This should allow for whitespace in the filename.  Bad interface
names will be caught by the call to dev_valid_name().

(I think I'm reading the man page correctly.)

This could have the effect of making the parser way more finicky, though,
since we would allow trailing whitespace.  Technically I suppose it's
legal, but it's sure hard to see on the screen.

Anybody have a better solution?

-Mitch

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-15 22:41         ` Mitch Williams
@ 2006-08-15 22:44           ` Stephen Hemminger
  2006-08-15 22:56             ` David Miller
  0 siblings, 1 reply; 23+ messages in thread
From: Stephen Hemminger @ 2006-08-15 22:44 UTC (permalink / raw)
  To: Mitch Williams; +Cc: Bill Nottingham, Williams, Mitch A, netdev, linux-kernel

On Tue, 15 Aug 2006 15:41:08 -0700
Mitch Williams <mitch.a.williams@intel.com> wrote:

> On Tue, 15 Aug 2006, Bill Nottingham wrote:
> >
> > Stephen Hemminger (shemminger@osdl.org) said:
> > > > They're certainly allowed, and the sysfs directory structure, files,
> > > > etc. handle it ok. Userspace tends to break in a variety of ways.
> > > >
> > > > I believe the only invalid character in an interface name is '/'.
> > > >
> > >
> > > The names "." and ".." are also verboten.
> >
> > Right. Well, I suspect they're verboten-because-some-code-breaks-making-the-directory.
> >
> > > Names with : in them are for IP aliases.
> >
> 
> So can we use
> 	sscanf(buffer, " %[^\n]", command);
> instead?  This should allow for whitespace in the filename.  Bad interface
> names will be caught by the call to dev_valid_name().
> 
> (I think I'm reading the man page correctly.)
> 
> This could have the effect of making the parser way more finicky, though,
> since we would allow trailing whitespace.  Technically I suppose it's
> legal, but it's sure hard to see on the screen.
> 
> Anybody have a better solution?
> 
> -Mitch

IMHO idiots who put space's in filenames should be ignored. As long as the
bonding code doesn't throw a fatal error, it has every right to return
"No such device" to the fool.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-15 22:44           ` Stephen Hemminger
@ 2006-08-15 22:56             ` David Miller
  2006-08-15 23:23               ` Stephen Hemminger
  2006-08-15 23:26               ` Mitch Williams
  0 siblings, 2 replies; 23+ messages in thread
From: David Miller @ 2006-08-15 22:56 UTC (permalink / raw)
  To: shemminger; +Cc: mitch.a.williams, notting, netdev, linux-kernel

From: Stephen Hemminger <shemminger@osdl.org>
Date: Tue, 15 Aug 2006 15:44:44 -0700

> IMHO idiots who put space's in filenames should be ignored. As long
> as the bonding code doesn't throw a fatal error, it has every right
> to return "No such device" to the fool.

I agree that whitespace in device names push the limits of sanity.

But if we believe that, we should enforce it in dev_valid_name().

Does anyone really mind if I add the whitespace check there?

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-15 22:56             ` David Miller
@ 2006-08-15 23:23               ` Stephen Hemminger
  2006-08-15 23:26               ` Mitch Williams
  1 sibling, 0 replies; 23+ messages in thread
From: Stephen Hemminger @ 2006-08-15 23:23 UTC (permalink / raw)
  To: David Miller; +Cc: mitch.a.williams, notting, netdev, linux-kernel

On Tue, 15 Aug 2006 15:56:12 -0700 (PDT)
David Miller <davem@davemloft.net> wrote:

> From: Stephen Hemminger <shemminger@osdl.org>
> Date: Tue, 15 Aug 2006 15:44:44 -0700
> 
> > IMHO idiots who put space's in filenames should be ignored. As long
> > as the bonding code doesn't throw a fatal error, it has every right
> > to return "No such device" to the fool.
> 
> I agree that whitespace in device names push the limits of sanity.
> 
> But if we believe that, we should enforce it in dev_valid_name().
> 
> Does anyone really mind if I add the whitespace check there?

That is a good idea since it protects other interfaces from possible problems.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-15 22:56             ` David Miller
  2006-08-15 23:23               ` Stephen Hemminger
@ 2006-08-15 23:26               ` Mitch Williams
  1 sibling, 0 replies; 23+ messages in thread
From: Mitch Williams @ 2006-08-15 23:26 UTC (permalink / raw)
  To: David Miller; +Cc: shemminger, Williams, Mitch A, notting, netdev, linux-kernel



On Tue, 15 Aug 2006, David Miller wrote:
>
> I agree that whitespace in device names push the limits of sanity.
>
> But if we believe that, we should enforce it in dev_valid_name().
>
> Does anyone really mind if I add the whitespace check there?
>

I have no objections.  It would certainly make life easier.

OTOH, "push[ing] the limits of sanity" probably describes half of the
subscribers to netdev.  But that's neither here nor there.

-Mitch

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
       [not found]           ` <6KfTA-OX-15@gated-at.bofh.it>
@ 2006-08-16  0:02             ` Bodo Eggert
  2006-08-16  0:10               ` David Miller
  0 siblings, 1 reply; 23+ messages in thread
From: Bodo Eggert @ 2006-08-16  0:02 UTC (permalink / raw)
  To: Stephen Hemminger, Mitch Williams, Bill Nottingham, ?missing 

Stephen Hemminger <shemminger@osdl.org> wrote:

> IMHO idiots who put space's in filenames should be ignored. As long as the
> bonding code doesn't throw a fatal error, it has every right to return
> "No such device" to the fool.

Maybe you should limit device names to eight uppercase characters and up to
three characters extension, too. NOT! There is no reason to artificially
impose limitations on device names, so don't do that.
-- 
Ich danke GMX dafür, die Verwendung meiner Adressen mittels per SPF
verbreiteten Lügen zu sabotieren.

http://david.woodhou.se/why-not-spf.html

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-16  0:02             ` Bodo Eggert
@ 2006-08-16  0:10               ` David Miller
  2006-08-16  6:35                 ` Giacomo A. Catenazzi
  0 siblings, 1 reply; 23+ messages in thread
From: David Miller @ 2006-08-16  0:10 UTC (permalink / raw)
  To: 7eggert, 7eggert
  Cc: shemminger, mitch.a.williams, notting, mitch.a.williams, netdev,
	linux-kernel

From: Bodo Eggert <7eggert@elstempel.de>
Date: Wed, 16 Aug 2006 02:02:03 +0200

> Stephen Hemminger <shemminger@osdl.org> wrote:
> 
> > IMHO idiots who put space's in filenames should be ignored. As long as the
> > bonding code doesn't throw a fatal error, it has every right to return
> > "No such device" to the fool.
> 
> Maybe you should limit device names to eight uppercase characters and up to
> three characters extension, too. NOT! There is no reason to artificially
> impose limitations on device names, so don't do that.

Are you willing to work to add the special case code necessary to
handle whitespace characters in the device name over all of the kernel
code and also all of the userland tools too?

No?  Great, I'm glad that's settled.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-16  0:10               ` David Miller
@ 2006-08-16  6:35                 ` Giacomo A. Catenazzi
  2006-08-16 13:38                   ` Bill Nottingham
  0 siblings, 1 reply; 23+ messages in thread
From: Giacomo A. Catenazzi @ 2006-08-16  6:35 UTC (permalink / raw)
  To: David Miller
  Cc: 7eggert, 7eggert, shemminger, mitch.a.williams, notting, netdev,
	linux-kernel

David Miller wrote:
> From: Bodo Eggert <7eggert@elstempel.de>
> Date: Wed, 16 Aug 2006 02:02:03 +0200
> 
>> Stephen Hemminger <shemminger@osdl.org> wrote:
>>
>>> IMHO idiots who put space's in filenames should be ignored. As long as the
>>> bonding code doesn't throw a fatal error, it has every right to return
>>> "No such device" to the fool.
>> Maybe you should limit device names to eight uppercase characters and up to
>> three characters extension, too. NOT! There is no reason to artificially
>> impose limitations on device names, so don't do that.
> 
> Are you willing to work to add the special case code necessary to
> handle whitespace characters in the device name over all of the kernel
> code and also all of the userland tools too?

But if you don't handle spaces in userspace, you handle *, ?, [, ], $,
", ', \  in userspace? Should kernel disable also these (insane device
chars) chars?

ciao
	cate
> 
> No?  Great, I'm glad that's settled.


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-16  6:35                 ` Giacomo A. Catenazzi
@ 2006-08-16 13:38                   ` Bill Nottingham
  2006-08-16 13:59                     ` Giacomo A. Catenazzi
  2006-08-16 15:11                     ` Bodo Eggert
  0 siblings, 2 replies; 23+ messages in thread
From: Bill Nottingham @ 2006-08-16 13:38 UTC (permalink / raw)
  To: Giacomo A. Catenazzi
  Cc: David Miller, 7eggert, 7eggert, shemminger, mitch.a.williams,
	netdev, linux-kernel

Giacomo A. Catenazzi (cate@debian.org) said: 
> > Are you willing to work to add the special case code necessary to
> > handle whitespace characters in the device name over all of the kernel
> > code and also all of the userland tools too?
> 
> But if you don't handle spaces in userspace, you handle *, ?, [, ], $,
> ", ', \  in userspace? Should kernel disable also these (insane device
> chars) chars?

Don't forget unicode characters!

Seriously, while it might be insane to use some of these, I'm wondering
if trying to filter names is more work than fixing the tools.

Bill

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-16 13:38                   ` Bill Nottingham
@ 2006-08-16 13:59                     ` Giacomo A. Catenazzi
  2006-08-16 15:11                     ` Bodo Eggert
  1 sibling, 0 replies; 23+ messages in thread
From: Giacomo A. Catenazzi @ 2006-08-16 13:59 UTC (permalink / raw)
  To: Giacomo A. Catenazzi, David Miller, 7eggert, 7eggert, shemminger,
	mitch.a.williams, netdev, linux-kernel

Bill Nottingham wrote:
> Giacomo A. Catenazzi (cate@debian.org) said: 
>>> Are you willing to work to add the special case code necessary to
>>> handle whitespace characters in the device name over all of the kernel
>>> code and also all of the userland tools too?
>> But if you don't handle spaces in userspace, you handle *, ?, [, ], $,
>> ", ', \  in userspace? Should kernel disable also these (insane device
>> chars) chars?
> 
> Don't forget unicode characters!
> 
> Seriously, while it might be insane to use some of these, I'm wondering
> if trying to filter names is more work than fixing the tools.

Fixing tools in always the good approach, and I think in this case wrong
code is really a security problem. IMHO kernel cannot filter all bad 
strings.
So, if for the kernel part it is better to filter spaces, ok!
But we should use this user space problems as the motivation to filter
names.

ciao
	cate


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-16 13:38                   ` Bill Nottingham
  2006-08-16 13:59                     ` Giacomo A. Catenazzi
@ 2006-08-16 15:11                     ` Bodo Eggert
  2006-08-17  7:29                       ` Xavier Bestel
  1 sibling, 1 reply; 23+ messages in thread
From: Bodo Eggert @ 2006-08-16 15:11 UTC (permalink / raw)
  To: Bill Nottingham
  Cc: Giacomo A. Catenazzi, David Miller, 7eggert, 7eggert, shemminger,
	mitch.a.williams, netdev, linux-kernel

On Wed, 16 Aug 2006, Bill Nottingham wrote:
> Giacomo A. Catenazzi (cate@debian.org) said: 

> > > Are you willing to work to add the special case code necessary to
> > > handle whitespace characters in the device name over all of the kernel
> > > code and also all of the userland tools too?
> > 
> > But if you don't handle spaces in userspace, you handle *, ?, [, ], $,
> > ", ', \  in userspace? Should kernel disable also these (insane device
> > chars) chars?
> 
> Don't forget unicode characters!

And long names or control characters.

> Seriously, while it might be insane to use some of these, I'm wondering
> if trying to filter names is more work than fixing the tools.

I think it's sane to avoid control characters and unicode/iso*, since they
can interfere with log output or analysis. I only thought about the kernel
itself and the corresponding userspace tools, which should handle any
character sequence just fine or could be easily fixed.

-- 
Top 100 things you don't want the sysadmin to say:
14. Any more trouble from you and your account gets moved to the 750

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-16 15:11                     ` Bodo Eggert
@ 2006-08-17  7:29                       ` Xavier Bestel
  2006-08-17 14:12                         ` Bill Nottingham
  2006-08-17 23:23                         ` David Miller
  0 siblings, 2 replies; 23+ messages in thread
From: Xavier Bestel @ 2006-08-17  7:29 UTC (permalink / raw)
  To: Bodo Eggert
  Cc: Bill Nottingham, Giacomo A. Catenazzi, David Miller, 7eggert,
	shemminger, mitch.a.williams, netdev, linux-kernel

On Wed, 2006-08-16 at 17:11, Bodo Eggert wrote:
> On Wed, 16 Aug 2006, Bill Nottingham wrote:
> > Giacomo A. Catenazzi (cate@debian.org) said: 
> 
> > > > Are you willing to work to add the special case code necessary to
> > > > handle whitespace characters in the device name over all of the kernel
> > > > code and also all of the userland tools too?
> > > 
> > > But if you don't handle spaces in userspace, you handle *, ?, [, ], $,
> > > ", ', \  in userspace? Should kernel disable also these (insane device
> > > chars) chars?
> > 
> > Don't forget unicode characters!
> 
> And long names or control characters.
> 
> > Seriously, while it might be insane to use some of these, I'm wondering
> > if trying to filter names is more work than fixing the tools.
> 
> I think it's sane to avoid control characters and unicode/iso*, since they
> can interfere with log output or analysis. I only thought about the kernel
> itself and the corresponding userspace tools, which should handle any
> character sequence just fine or could be easily fixed.

Why not simply retricting chars to isalnum() ones ?

	Xav


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-17  7:29                       ` Xavier Bestel
@ 2006-08-17 14:12                         ` Bill Nottingham
  2006-08-17 23:23                         ` David Miller
  1 sibling, 0 replies; 23+ messages in thread
From: Bill Nottingham @ 2006-08-17 14:12 UTC (permalink / raw)
  To: Xavier Bestel
  Cc: Bodo Eggert, Giacomo A. Catenazzi, David Miller, 7eggert,
	shemminger, mitch.a.williams, netdev, linux-kernel

Xavier Bestel (xavier.bestel@free.fr) said: 
> > I think it's sane to avoid control characters and unicode/iso*, since they
> > can interfere with log output or analysis. I only thought about the kernel
> > itself and the corresponding userspace tools, which should handle any
> > character sequence just fine or could be easily fixed.
> 
> Why not simply retricting chars to isalnum() ones ?

People might want to use things like '-', '_', etc. 

Realistically, any filtering that is done with names has the chance of
breaking 'working' configs that date back to 2.4.

Bill

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-17  7:29                       ` Xavier Bestel
  2006-08-17 14:12                         ` Bill Nottingham
@ 2006-08-17 23:23                         ` David Miller
  2006-08-18  0:34                           ` Alan Cox
  2006-08-18  2:20                           ` Bill Nottingham
  1 sibling, 2 replies; 23+ messages in thread
From: David Miller @ 2006-08-17 23:23 UTC (permalink / raw)
  To: xavier.bestel
  Cc: 7eggert, notting, cate, 7eggert, shemminger, mitch.a.williams,
	netdev, linux-kernel

From: Xavier Bestel <xavier.bestel@free.fr>
Date: Thu, 17 Aug 2006 09:29:43 +0200

> Why not simply retricting chars to isalnum() ones ?

As Bill said that would block things like "-" and "_" which are fine.

Bill also mentioned something about "breaking configs going back to
2.4.x" which is bogus because nothing broke when we started blocking
"/" and "." and ".." in networking device names during the addition of
sysfs support for net devices.

Nobody in their right mind puts a space in their network device name.

All you "name purists", go rename the block device name that is used
for your root partition to something with a space in it, and watch how
many startup scripts and command line invocations just explode.

There is absolutely no valid argument for allowing spaces in network
device names.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-17 23:23                         ` David Miller
@ 2006-08-18  0:34                           ` Alan Cox
  2006-08-18  1:01                             ` David Miller
  2006-08-18  2:20                           ` Bill Nottingham
  1 sibling, 1 reply; 23+ messages in thread
From: Alan Cox @ 2006-08-18  0:34 UTC (permalink / raw)
  To: David Miller
  Cc: xavier.bestel, 7eggert, notting, cate, 7eggert, shemminger,
	mitch.a.williams, netdev, linux-kernel

Ar Iau, 2006-08-17 am 16:23 -0700, ysgrifennodd David Miller:
> Nobody in their right mind puts a space in their network device name.

It works fine. Been there done that. I'm probably not in my right mind
but it causes no problems. Nor btw does UTF-8 naming which is handy if
you want to name your devices in Japanese or Arabic...

> All you "name purists", go rename the block device name that is used
> for your root partition to something with a space in it

Works fine. It doesn't work fine for non root volumes (except by label)
because of the fstab format but root is ok !

Alan

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-18  0:34                           ` Alan Cox
@ 2006-08-18  1:01                             ` David Miller
  0 siblings, 0 replies; 23+ messages in thread
From: David Miller @ 2006-08-18  1:01 UTC (permalink / raw)
  To: alan
  Cc: xavier.bestel, 7eggert, notting, cate, 7eggert, shemminger,
	mitch.a.williams, netdev, linux-kernel

From: Alan Cox <alan@lxorguk.ukuu.org.uk>
Date: Fri, 18 Aug 2006 01:34:43 +0100

> Ar Iau, 2006-08-17 am 16:23 -0700, ysgrifennodd David Miller:
> > All you "name purists", go rename the block device name that is used
> > for your root partition to something with a space in it
> 
> Works fine. It doesn't work fine for non root volumes (except by label)
> because of the fstab format but root is ok !

Check out how your root device would be fsck'd.  The command line run
by the /etc/init* scripts either doesn't quote the device argument or
it consults fstab which as you said has limitations when dealing with
spaces.

It's either going to do something like $device (this is what debian
derived systems do), unquoted, or it will do "fsck -A" which runs into
said fstab format limitations (which is what fedora does).

Either way the point is that this issue is scattered all over the
place.

Preventing spaces in the name doesn't prevent the use of names in non-
romanized languages any moreso than preventing ".", "..", and "/"
already does.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-17 23:23                         ` David Miller
  2006-08-18  0:34                           ` Alan Cox
@ 2006-08-18  2:20                           ` Bill Nottingham
  2006-08-19  3:58                             ` Stephen Hemminger
  1 sibling, 1 reply; 23+ messages in thread
From: Bill Nottingham @ 2006-08-18  2:20 UTC (permalink / raw)
  To: David Miller
  Cc: xavier.bestel, 7eggert, cate, 7eggert, shemminger,
	mitch.a.williams, netdev, linux-kernel

David Miller (davem@davemloft.net) said: 
> From: Xavier Bestel <xavier.bestel@free.fr>
> Date: Thu, 17 Aug 2006 09:29:43 +0200
> 
> > Why not simply retricting chars to isalnum() ones ?
> 
> As Bill said that would block things like "-" and "_" which are fine.
> 
> Bill also mentioned something about "breaking configs going back to
> 2.4.x" which is bogus because nothing broke when we started blocking
> "/" and "." and ".." in networking device names during the addition of
> sysfs support for net devices.

I was mainly referring to if we started to filter it out to isalnum() -
spaces/tab/CR etc. certainly could be filtered. (No idea what would
happen with unicode nbsp or other silly things.)

Bill

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: bonding: cannot remove certain named devices
  2006-08-18  2:20                           ` Bill Nottingham
@ 2006-08-19  3:58                             ` Stephen Hemminger
  0 siblings, 0 replies; 23+ messages in thread
From: Stephen Hemminger @ 2006-08-19  3:58 UTC (permalink / raw)
  To: David Miller, xavier.bestel, 7eggert, cate, 7eggert, shemminger,
	mitch.a.williams, netdev, linux-kernel

Bill Nottingham wrote:
> David Miller (davem@davemloft.net) said: 
>   
>> From: Xavier Bestel <xavier.bestel@free.fr>
>> Date: Thu, 17 Aug 2006 09:29:43 +0200
>>
>>     
>>> Why not simply retricting chars to isalnum() ones ?
>>>       
>> As Bill said that would block things like "-" and "_" which are fine.
>>
>> Bill also mentioned something about "breaking configs going back to
>> 2.4.x" which is bogus because nothing broke when we started blocking
>> "/" and "." and ".." in networking device names during the addition of
>> sysfs support for net devices.
>>     
>
> I was mainly referring to if we started to filter it out to isalnum() -
> spaces/tab/CR etc. certainly could be filtered. (No idea what would
> happen with unicode nbsp or other silly things.)
>
> Bill
>   
How just restrictiting to !isspace()


^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2006-08-18  3:58 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-15 19:48 bonding: cannot remove certain named devices Bill Nottingham
2006-08-15 20:39 ` Mitch Williams
2006-08-15 20:45   ` Bill Nottingham
2006-08-15 21:02     ` Stephen Hemminger
2006-08-15 21:49       ` Bill Nottingham
2006-08-15 22:41         ` Mitch Williams
2006-08-15 22:44           ` Stephen Hemminger
2006-08-15 22:56             ` David Miller
2006-08-15 23:23               ` Stephen Hemminger
2006-08-15 23:26               ` Mitch Williams
     [not found] <6Kd5j-3Y7-3@gated-at.bofh.it>
     [not found] ` <6KdRL-5xP-7@gated-at.bofh.it>
     [not found]   ` <6Ke1p-5N8-7@gated-at.bofh.it>
     [not found]     ` <6KekO-6u0-25@gated-at.bofh.it>
     [not found]       ` <6KeXv-7qe-17@gated-at.bofh.it>
     [not found]         ` <6KfTz-OX-11@gated-at.bofh.it>
     [not found]           ` <6KfTA-OX-15@gated-at.bofh.it>
2006-08-16  0:02             ` Bodo Eggert
2006-08-16  0:10               ` David Miller
2006-08-16  6:35                 ` Giacomo A. Catenazzi
2006-08-16 13:38                   ` Bill Nottingham
2006-08-16 13:59                     ` Giacomo A. Catenazzi
2006-08-16 15:11                     ` Bodo Eggert
2006-08-17  7:29                       ` Xavier Bestel
2006-08-17 14:12                         ` Bill Nottingham
2006-08-17 23:23                         ` David Miller
2006-08-18  0:34                           ` Alan Cox
2006-08-18  1:01                             ` David Miller
2006-08-18  2:20                           ` Bill Nottingham
2006-08-19  3:58                             ` Stephen Hemminger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).