linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] restrict class names to valid file names
@ 2004-01-12 23:13 Stephen Hemminger
  2004-01-13  0:05 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2004-01-12 23:13 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel

It is possible to name network devices with names like "my/bogus" or "." or ".."
which leaves /sys/class/net/ a mess.  Since other subsystems could have the same
problem, it made sense to me to enforce some restrictions in the class device
layer.

A lateer patch fixes the network device registration path because the
sysfs registration takes place after the register_netdevice call has taken place.

diff -Nru a/drivers/base/class.c b/drivers/base/class.c
--- a/drivers/base/class.c	Mon Jan 12 15:11:55 2004
+++ b/drivers/base/class.c	Mon Jan 12 15:11:55 2004
@@ -87,10 +87,24 @@
 	subsys_put(&cls->subsys);
 }
 
+/* Restrict class names to valid file names */
+int 
+class_name_valid(const char *name)
+{
+	return !(name[0] == '\0'
+		 || (name[0] == '.' 
+		     && (name[1] == '\0' 
+			 || (name[1] == '.' && (name[2] == '\0'))))
+		 || strchr(name, '/'));
+}
+
 int class_register(struct class * cls)
 {
 	pr_debug("device class '%s': registering\n",cls->name);
 
+	if (!class_name_valid(cls->name))
+		return -EINVAL;
+
 	INIT_LIST_HEAD(&cls->children);
 	INIT_LIST_HEAD(&cls->interfaces);
 	kobject_set_name(&cls->subsys.kset.kobj,cls->name);
@@ -267,6 +281,9 @@
 	struct list_head * entry;
 	int error;
 
+	if (!class_name_valid(class_dev->class_id))
+		return -EINVAL;
+
 	class_dev = class_device_get(class_dev);
 	if (!class_dev || !strlen(class_dev->class_id))
 		return -EINVAL;
@@ -348,6 +365,9 @@
 
 int class_device_rename(struct class_device *class_dev, char *new_name)
 {
+	if (!class_name_valid(new_name))
+		return -EINVAL;
+
 	class_dev = class_device_get(class_dev);
 	if (!class_dev)
 		return -EINVAL;
diff -Nru a/include/linux/device.h b/include/linux/device.h
--- a/include/linux/device.h	Mon Jan 12 15:11:55 2004
+++ b/include/linux/device.h	Mon Jan 12 15:11:55 2004
@@ -157,6 +157,7 @@
 	void	(*release)(struct class_device *dev);
 };
 
+extern int class_name_valid(const char *);
 extern int class_register(struct class *);
 extern void class_unregister(struct class *);
 

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

end of thread, other threads:[~2004-01-13  0:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-12 23:13 [PATCH] restrict class names to valid file names Stephen Hemminger
2004-01-13  0:05 ` Greg KH
2004-01-13  0:13   ` Stephen Hemminger
2004-01-13  0:18     ` Greg KH

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).