Driver Core: devtmpfs: cleanup node on device creation error
[safe/jmp/linux-2.6] / drivers / base / core.c
1 /*
2  * drivers/base/core.c - core driver model code (device registration, etc)
3  *
4  * Copyright (c) 2002-3 Patrick Mochel
5  * Copyright (c) 2002-3 Open Source Development Labs
6  * Copyright (c) 2006 Greg Kroah-Hartman <gregkh@suse.de>
7  * Copyright (c) 2006 Novell, Inc.
8  *
9  * This file is released under the GPLv2
10  *
11  */
12
13 #include <linux/device.h>
14 #include <linux/err.h>
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/slab.h>
18 #include <linux/string.h>
19 #include <linux/kdev_t.h>
20 #include <linux/notifier.h>
21 #include <linux/genhd.h>
22 #include <linux/kallsyms.h>
23 #include <linux/semaphore.h>
24 #include <linux/mutex.h>
25 #include <linux/async.h>
26
27 #include "base.h"
28 #include "power/power.h"
29
30 int (*platform_notify)(struct device *dev) = NULL;
31 int (*platform_notify_remove)(struct device *dev) = NULL;
32 static struct kobject *dev_kobj;
33 struct kobject *sysfs_dev_char_kobj;
34 struct kobject *sysfs_dev_block_kobj;
35
36 #ifdef CONFIG_BLOCK
37 static inline int device_is_not_partition(struct device *dev)
38 {
39         return !(dev->type == &part_type);
40 }
41 #else
42 static inline int device_is_not_partition(struct device *dev)
43 {
44         return 1;
45 }
46 #endif
47
48 /**
49  * dev_driver_string - Return a device's driver name, if at all possible
50  * @dev: struct device to get the name of
51  *
52  * Will return the device's driver's name if it is bound to a device.  If
53  * the device is not bound to a device, it will return the name of the bus
54  * it is attached to.  If it is not attached to a bus either, an empty
55  * string will be returned.
56  */
57 const char *dev_driver_string(const struct device *dev)
58 {
59         return dev->driver ? dev->driver->name :
60                         (dev->bus ? dev->bus->name :
61                         (dev->class ? dev->class->name : ""));
62 }
63 EXPORT_SYMBOL(dev_driver_string);
64
65 #define to_dev(obj) container_of(obj, struct device, kobj)
66 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
67
68 static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
69                              char *buf)
70 {
71         struct device_attribute *dev_attr = to_dev_attr(attr);
72         struct device *dev = to_dev(kobj);
73         ssize_t ret = -EIO;
74
75         if (dev_attr->show)
76                 ret = dev_attr->show(dev, dev_attr, buf);
77         if (ret >= (ssize_t)PAGE_SIZE) {
78                 print_symbol("dev_attr_show: %s returned bad count\n",
79                                 (unsigned long)dev_attr->show);
80         }
81         return ret;
82 }
83
84 static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
85                               const char *buf, size_t count)
86 {
87         struct device_attribute *dev_attr = to_dev_attr(attr);
88         struct device *dev = to_dev(kobj);
89         ssize_t ret = -EIO;
90
91         if (dev_attr->store)
92                 ret = dev_attr->store(dev, dev_attr, buf, count);
93         return ret;
94 }
95
96 static struct sysfs_ops dev_sysfs_ops = {
97         .show   = dev_attr_show,
98         .store  = dev_attr_store,
99 };
100
101
102 /**
103  *      device_release - free device structure.
104  *      @kobj:  device's kobject.
105  *
106  *      This is called once the reference count for the object
107  *      reaches 0. We forward the call to the device's release
108  *      method, which should handle actually freeing the structure.
109  */
110 static void device_release(struct kobject *kobj)
111 {
112         struct device *dev = to_dev(kobj);
113         struct device_private *p = dev->p;
114
115         if (dev->release)
116                 dev->release(dev);
117         else if (dev->type && dev->type->release)
118                 dev->type->release(dev);
119         else if (dev->class && dev->class->dev_release)
120                 dev->class->dev_release(dev);
121         else
122                 WARN(1, KERN_ERR "Device '%s' does not have a release() "
123                         "function, it is broken and must be fixed.\n",
124                         dev_name(dev));
125         kfree(p);
126 }
127
128 static struct kobj_type device_ktype = {
129         .release        = device_release,
130         .sysfs_ops      = &dev_sysfs_ops,
131 };
132
133
134 static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
135 {
136         struct kobj_type *ktype = get_ktype(kobj);
137
138         if (ktype == &device_ktype) {
139                 struct device *dev = to_dev(kobj);
140                 if (dev->bus)
141                         return 1;
142                 if (dev->class)
143                         return 1;
144         }
145         return 0;
146 }
147
148 static const char *dev_uevent_name(struct kset *kset, struct kobject *kobj)
149 {
150         struct device *dev = to_dev(kobj);
151
152         if (dev->bus)
153                 return dev->bus->name;
154         if (dev->class)
155                 return dev->class->name;
156         return NULL;
157 }
158
159 static int dev_uevent(struct kset *kset, struct kobject *kobj,
160                       struct kobj_uevent_env *env)
161 {
162         struct device *dev = to_dev(kobj);
163         int retval = 0;
164
165         /* add device node properties if present */
166         if (MAJOR(dev->devt)) {
167                 const char *tmp;
168                 const char *name;
169                 mode_t mode = 0;
170
171                 add_uevent_var(env, "MAJOR=%u", MAJOR(dev->devt));
172                 add_uevent_var(env, "MINOR=%u", MINOR(dev->devt));
173                 name = device_get_devnode(dev, &mode, &tmp);
174                 if (name) {
175                         add_uevent_var(env, "DEVNAME=%s", name);
176                         kfree(tmp);
177                         if (mode)
178                                 add_uevent_var(env, "DEVMODE=%#o", mode & 0777);
179                 }
180         }
181
182         if (dev->type && dev->type->name)
183                 add_uevent_var(env, "DEVTYPE=%s", dev->type->name);
184
185         if (dev->driver)
186                 add_uevent_var(env, "DRIVER=%s", dev->driver->name);
187
188 #ifdef CONFIG_SYSFS_DEPRECATED
189         if (dev->class) {
190                 struct device *parent = dev->parent;
191
192                 /* find first bus device in parent chain */
193                 while (parent && !parent->bus)
194                         parent = parent->parent;
195                 if (parent && parent->bus) {
196                         const char *path;
197
198                         path = kobject_get_path(&parent->kobj, GFP_KERNEL);
199                         if (path) {
200                                 add_uevent_var(env, "PHYSDEVPATH=%s", path);
201                                 kfree(path);
202                         }
203
204                         add_uevent_var(env, "PHYSDEVBUS=%s", parent->bus->name);
205
206                         if (parent->driver)
207                                 add_uevent_var(env, "PHYSDEVDRIVER=%s",
208                                                parent->driver->name);
209                 }
210         } else if (dev->bus) {
211                 add_uevent_var(env, "PHYSDEVBUS=%s", dev->bus->name);
212
213                 if (dev->driver)
214                         add_uevent_var(env, "PHYSDEVDRIVER=%s",
215                                        dev->driver->name);
216         }
217 #endif
218
219         /* have the bus specific function add its stuff */
220         if (dev->bus && dev->bus->uevent) {
221                 retval = dev->bus->uevent(dev, env);
222                 if (retval)
223                         pr_debug("device: '%s': %s: bus uevent() returned %d\n",
224                                  dev_name(dev), __func__, retval);
225         }
226
227         /* have the class specific function add its stuff */
228         if (dev->class && dev->class->dev_uevent) {
229                 retval = dev->class->dev_uevent(dev, env);
230                 if (retval)
231                         pr_debug("device: '%s': %s: class uevent() "
232                                  "returned %d\n", dev_name(dev),
233                                  __func__, retval);
234         }
235
236         /* have the device type specific fuction add its stuff */
237         if (dev->type && dev->type->uevent) {
238                 retval = dev->type->uevent(dev, env);
239                 if (retval)
240                         pr_debug("device: '%s': %s: dev_type uevent() "
241                                  "returned %d\n", dev_name(dev),
242                                  __func__, retval);
243         }
244
245         return retval;
246 }
247
248 static struct kset_uevent_ops device_uevent_ops = {
249         .filter =       dev_uevent_filter,
250         .name =         dev_uevent_name,
251         .uevent =       dev_uevent,
252 };
253
254 static ssize_t show_uevent(struct device *dev, struct device_attribute *attr,
255                            char *buf)
256 {
257         struct kobject *top_kobj;
258         struct kset *kset;
259         struct kobj_uevent_env *env = NULL;
260         int i;
261         size_t count = 0;
262         int retval;
263
264         /* search the kset, the device belongs to */
265         top_kobj = &dev->kobj;
266         while (!top_kobj->kset && top_kobj->parent)
267                 top_kobj = top_kobj->parent;
268         if (!top_kobj->kset)
269                 goto out;
270
271         kset = top_kobj->kset;
272         if (!kset->uevent_ops || !kset->uevent_ops->uevent)
273                 goto out;
274
275         /* respect filter */
276         if (kset->uevent_ops && kset->uevent_ops->filter)
277                 if (!kset->uevent_ops->filter(kset, &dev->kobj))
278                         goto out;
279
280         env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
281         if (!env)
282                 return -ENOMEM;
283
284         /* let the kset specific function add its keys */
285         retval = kset->uevent_ops->uevent(kset, &dev->kobj, env);
286         if (retval)
287                 goto out;
288
289         /* copy keys to file */
290         for (i = 0; i < env->envp_idx; i++)
291                 count += sprintf(&buf[count], "%s\n", env->envp[i]);
292 out:
293         kfree(env);
294         return count;
295 }
296
297 static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
298                             const char *buf, size_t count)
299 {
300         enum kobject_action action;
301
302         if (kobject_action_type(buf, count, &action) == 0) {
303                 kobject_uevent(&dev->kobj, action);
304                 goto out;
305         }
306
307         dev_err(dev, "uevent: unsupported action-string; this will "
308                      "be ignored in a future kernel version\n");
309         kobject_uevent(&dev->kobj, KOBJ_ADD);
310 out:
311         return count;
312 }
313
314 static struct device_attribute uevent_attr =
315         __ATTR(uevent, S_IRUGO | S_IWUSR, show_uevent, store_uevent);
316
317 static int device_add_attributes(struct device *dev,
318                                  struct device_attribute *attrs)
319 {
320         int error = 0;
321         int i;
322
323         if (attrs) {
324                 for (i = 0; attr_name(attrs[i]); i++) {
325                         error = device_create_file(dev, &attrs[i]);
326                         if (error)
327                                 break;
328                 }
329                 if (error)
330                         while (--i >= 0)
331                                 device_remove_file(dev, &attrs[i]);
332         }
333         return error;
334 }
335
336 static void device_remove_attributes(struct device *dev,
337                                      struct device_attribute *attrs)
338 {
339         int i;
340
341         if (attrs)
342                 for (i = 0; attr_name(attrs[i]); i++)
343                         device_remove_file(dev, &attrs[i]);
344 }
345
346 static int device_add_groups(struct device *dev,
347                              const struct attribute_group **groups)
348 {
349         int error = 0;
350         int i;
351
352         if (groups) {
353                 for (i = 0; groups[i]; i++) {
354                         error = sysfs_create_group(&dev->kobj, groups[i]);
355                         if (error) {
356                                 while (--i >= 0)
357                                         sysfs_remove_group(&dev->kobj,
358                                                            groups[i]);
359                                 break;
360                         }
361                 }
362         }
363         return error;
364 }
365
366 static void device_remove_groups(struct device *dev,
367                                  const struct attribute_group **groups)
368 {
369         int i;
370
371         if (groups)
372                 for (i = 0; groups[i]; i++)
373                         sysfs_remove_group(&dev->kobj, groups[i]);
374 }
375
376 static int device_add_attrs(struct device *dev)
377 {
378         struct class *class = dev->class;
379         struct device_type *type = dev->type;
380         int error;
381
382         if (class) {
383                 error = device_add_attributes(dev, class->dev_attrs);
384                 if (error)
385                         return error;
386         }
387
388         if (type) {
389                 error = device_add_groups(dev, type->groups);
390                 if (error)
391                         goto err_remove_class_attrs;
392         }
393
394         error = device_add_groups(dev, dev->groups);
395         if (error)
396                 goto err_remove_type_groups;
397
398         return 0;
399
400  err_remove_type_groups:
401         if (type)
402                 device_remove_groups(dev, type->groups);
403  err_remove_class_attrs:
404         if (class)
405                 device_remove_attributes(dev, class->dev_attrs);
406
407         return error;
408 }
409
410 static void device_remove_attrs(struct device *dev)
411 {
412         struct class *class = dev->class;
413         struct device_type *type = dev->type;
414
415         device_remove_groups(dev, dev->groups);
416
417         if (type)
418                 device_remove_groups(dev, type->groups);
419
420         if (class)
421                 device_remove_attributes(dev, class->dev_attrs);
422 }
423
424
425 static ssize_t show_dev(struct device *dev, struct device_attribute *attr,
426                         char *buf)
427 {
428         return print_dev_t(buf, dev->devt);
429 }
430
431 static struct device_attribute devt_attr =
432         __ATTR(dev, S_IRUGO, show_dev, NULL);
433
434 /* kset to create /sys/devices/  */
435 struct kset *devices_kset;
436
437 /**
438  * device_create_file - create sysfs attribute file for device.
439  * @dev: device.
440  * @attr: device attribute descriptor.
441  */
442 int device_create_file(struct device *dev, struct device_attribute *attr)
443 {
444         int error = 0;
445         if (dev)
446                 error = sysfs_create_file(&dev->kobj, &attr->attr);
447         return error;
448 }
449
450 /**
451  * device_remove_file - remove sysfs attribute file.
452  * @dev: device.
453  * @attr: device attribute descriptor.
454  */
455 void device_remove_file(struct device *dev, struct device_attribute *attr)
456 {
457         if (dev)
458                 sysfs_remove_file(&dev->kobj, &attr->attr);
459 }
460
461 /**
462  * device_create_bin_file - create sysfs binary attribute file for device.
463  * @dev: device.
464  * @attr: device binary attribute descriptor.
465  */
466 int device_create_bin_file(struct device *dev, struct bin_attribute *attr)
467 {
468         int error = -EINVAL;
469         if (dev)
470                 error = sysfs_create_bin_file(&dev->kobj, attr);
471         return error;
472 }
473 EXPORT_SYMBOL_GPL(device_create_bin_file);
474
475 /**
476  * device_remove_bin_file - remove sysfs binary attribute file
477  * @dev: device.
478  * @attr: device binary attribute descriptor.
479  */
480 void device_remove_bin_file(struct device *dev, struct bin_attribute *attr)
481 {
482         if (dev)
483                 sysfs_remove_bin_file(&dev->kobj, attr);
484 }
485 EXPORT_SYMBOL_GPL(device_remove_bin_file);
486
487 /**
488  * device_schedule_callback_owner - helper to schedule a callback for a device
489  * @dev: device.
490  * @func: callback function to invoke later.
491  * @owner: module owning the callback routine
492  *
493  * Attribute methods must not unregister themselves or their parent device
494  * (which would amount to the same thing).  Attempts to do so will deadlock,
495  * since unregistration is mutually exclusive with driver callbacks.
496  *
497  * Instead methods can call this routine, which will attempt to allocate
498  * and schedule a workqueue request to call back @func with @dev as its
499  * argument in the workqueue's process context.  @dev will be pinned until
500  * @func returns.
501  *
502  * This routine is usually called via the inline device_schedule_callback(),
503  * which automatically sets @owner to THIS_MODULE.
504  *
505  * Returns 0 if the request was submitted, -ENOMEM if storage could not
506  * be allocated, -ENODEV if a reference to @owner isn't available.
507  *
508  * NOTE: This routine won't work if CONFIG_SYSFS isn't set!  It uses an
509  * underlying sysfs routine (since it is intended for use by attribute
510  * methods), and if sysfs isn't available you'll get nothing but -ENOSYS.
511  */
512 int device_schedule_callback_owner(struct device *dev,
513                 void (*func)(struct device *), struct module *owner)
514 {
515         return sysfs_schedule_callback(&dev->kobj,
516                         (void (*)(void *)) func, dev, owner);
517 }
518 EXPORT_SYMBOL_GPL(device_schedule_callback_owner);
519
520 static void klist_children_get(struct klist_node *n)
521 {
522         struct device_private *p = to_device_private_parent(n);
523         struct device *dev = p->device;
524
525         get_device(dev);
526 }
527
528 static void klist_children_put(struct klist_node *n)
529 {
530         struct device_private *p = to_device_private_parent(n);
531         struct device *dev = p->device;
532
533         put_device(dev);
534 }
535
536 /**
537  * device_initialize - init device structure.
538  * @dev: device.
539  *
540  * This prepares the device for use by other layers by initializing
541  * its fields.
542  * It is the first half of device_register(), if called by
543  * that function, though it can also be called separately, so one
544  * may use @dev's fields. In particular, get_device()/put_device()
545  * may be used for reference counting of @dev after calling this
546  * function.
547  *
548  * NOTE: Use put_device() to give up your reference instead of freeing
549  * @dev directly once you have called this function.
550  */
551 void device_initialize(struct device *dev)
552 {
553         dev->kobj.kset = devices_kset;
554         kobject_init(&dev->kobj, &device_ktype);
555         INIT_LIST_HEAD(&dev->dma_pools);
556         init_MUTEX(&dev->sem);
557         spin_lock_init(&dev->devres_lock);
558         INIT_LIST_HEAD(&dev->devres_head);
559         device_init_wakeup(dev, 0);
560         device_pm_init(dev);
561         set_dev_node(dev, -1);
562 }
563
564 #ifdef CONFIG_SYSFS_DEPRECATED
565 static struct kobject *get_device_parent(struct device *dev,
566                                          struct device *parent)
567 {
568         /* class devices without a parent live in /sys/class/<classname>/ */
569         if (dev->class && (!parent || parent->class != dev->class))
570                 return &dev->class->p->class_subsys.kobj;
571         /* all other devices keep their parent */
572         else if (parent)
573                 return &parent->kobj;
574
575         return NULL;
576 }
577
578 static inline void cleanup_device_parent(struct device *dev) {}
579 static inline void cleanup_glue_dir(struct device *dev,
580                                     struct kobject *glue_dir) {}
581 #else
582 static struct kobject *virtual_device_parent(struct device *dev)
583 {
584         static struct kobject *virtual_dir = NULL;
585
586         if (!virtual_dir)
587                 virtual_dir = kobject_create_and_add("virtual",
588                                                      &devices_kset->kobj);
589
590         return virtual_dir;
591 }
592
593 static struct kobject *get_device_parent(struct device *dev,
594                                          struct device *parent)
595 {
596         int retval;
597
598         if (dev->class) {
599                 struct kobject *kobj = NULL;
600                 struct kobject *parent_kobj;
601                 struct kobject *k;
602
603                 /*
604                  * If we have no parent, we live in "virtual".
605                  * Class-devices with a non class-device as parent, live
606                  * in a "glue" directory to prevent namespace collisions.
607                  */
608                 if (parent == NULL)
609                         parent_kobj = virtual_device_parent(dev);
610                 else if (parent->class)
611                         return &parent->kobj;
612                 else
613                         parent_kobj = &parent->kobj;
614
615                 /* find our class-directory at the parent and reference it */
616                 spin_lock(&dev->class->p->class_dirs.list_lock);
617                 list_for_each_entry(k, &dev->class->p->class_dirs.list, entry)
618                         if (k->parent == parent_kobj) {
619                                 kobj = kobject_get(k);
620                                 break;
621                         }
622                 spin_unlock(&dev->class->p->class_dirs.list_lock);
623                 if (kobj)
624                         return kobj;
625
626                 /* or create a new class-directory at the parent device */
627                 k = kobject_create();
628                 if (!k)
629                         return NULL;
630                 k->kset = &dev->class->p->class_dirs;
631                 retval = kobject_add(k, parent_kobj, "%s", dev->class->name);
632                 if (retval < 0) {
633                         kobject_put(k);
634                         return NULL;
635                 }
636                 /* do not emit an uevent for this simple "glue" directory */
637                 return k;
638         }
639
640         if (parent)
641                 return &parent->kobj;
642         return NULL;
643 }
644
645 static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
646 {
647         /* see if we live in a "glue" directory */
648         if (!glue_dir || !dev->class ||
649             glue_dir->kset != &dev->class->p->class_dirs)
650                 return;
651
652         kobject_put(glue_dir);
653 }
654
655 static void cleanup_device_parent(struct device *dev)
656 {
657         cleanup_glue_dir(dev, dev->kobj.parent);
658 }
659 #endif
660
661 static void setup_parent(struct device *dev, struct device *parent)
662 {
663         struct kobject *kobj;
664         kobj = get_device_parent(dev, parent);
665         if (kobj)
666                 dev->kobj.parent = kobj;
667 }
668
669 static int device_add_class_symlinks(struct device *dev)
670 {
671         int error;
672
673         if (!dev->class)
674                 return 0;
675
676         error = sysfs_create_link(&dev->kobj,
677                                   &dev->class->p->class_subsys.kobj,
678                                   "subsystem");
679         if (error)
680                 goto out;
681
682 #ifdef CONFIG_SYSFS_DEPRECATED
683         /* stacked class devices need a symlink in the class directory */
684         if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
685             device_is_not_partition(dev)) {
686                 error = sysfs_create_link(&dev->class->p->class_subsys.kobj,
687                                           &dev->kobj, dev_name(dev));
688                 if (error)
689                         goto out_subsys;
690         }
691
692         if (dev->parent && device_is_not_partition(dev)) {
693                 struct device *parent = dev->parent;
694                 char *class_name;
695
696                 /*
697                  * stacked class devices have the 'device' link
698                  * pointing to the bus device instead of the parent
699                  */
700                 while (parent->class && !parent->bus && parent->parent)
701                         parent = parent->parent;
702
703                 error = sysfs_create_link(&dev->kobj,
704                                           &parent->kobj,
705                                           "device");
706                 if (error)
707                         goto out_busid;
708
709                 class_name = make_class_name(dev->class->name,
710                                                 &dev->kobj);
711                 if (class_name)
712                         error = sysfs_create_link(&dev->parent->kobj,
713                                                 &dev->kobj, class_name);
714                 kfree(class_name);
715                 if (error)
716                         goto out_device;
717         }
718         return 0;
719
720 out_device:
721         if (dev->parent && device_is_not_partition(dev))
722                 sysfs_remove_link(&dev->kobj, "device");
723 out_busid:
724         if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
725             device_is_not_partition(dev))
726                 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
727                                   dev_name(dev));
728 #else
729         /* link in the class directory pointing to the device */
730         error = sysfs_create_link(&dev->class->p->class_subsys.kobj,
731                                   &dev->kobj, dev_name(dev));
732         if (error)
733                 goto out_subsys;
734
735         if (dev->parent && device_is_not_partition(dev)) {
736                 error = sysfs_create_link(&dev->kobj, &dev->parent->kobj,
737                                           "device");
738                 if (error)
739                         goto out_busid;
740         }
741         return 0;
742
743 out_busid:
744         sysfs_remove_link(&dev->class->p->class_subsys.kobj, dev_name(dev));
745 #endif
746
747 out_subsys:
748         sysfs_remove_link(&dev->kobj, "subsystem");
749 out:
750         return error;
751 }
752
753 static void device_remove_class_symlinks(struct device *dev)
754 {
755         if (!dev->class)
756                 return;
757
758 #ifdef CONFIG_SYSFS_DEPRECATED
759         if (dev->parent && device_is_not_partition(dev)) {
760                 char *class_name;
761
762                 class_name = make_class_name(dev->class->name, &dev->kobj);
763                 if (class_name) {
764                         sysfs_remove_link(&dev->parent->kobj, class_name);
765                         kfree(class_name);
766                 }
767                 sysfs_remove_link(&dev->kobj, "device");
768         }
769
770         if (dev->kobj.parent != &dev->class->p->class_subsys.kobj &&
771             device_is_not_partition(dev))
772                 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
773                                   dev_name(dev));
774 #else
775         if (dev->parent && device_is_not_partition(dev))
776                 sysfs_remove_link(&dev->kobj, "device");
777
778         sysfs_remove_link(&dev->class->p->class_subsys.kobj, dev_name(dev));
779 #endif
780
781         sysfs_remove_link(&dev->kobj, "subsystem");
782 }
783
784 /**
785  * dev_set_name - set a device name
786  * @dev: device
787  * @fmt: format string for the device's name
788  */
789 int dev_set_name(struct device *dev, const char *fmt, ...)
790 {
791         va_list vargs;
792         int err;
793
794         va_start(vargs, fmt);
795         err = kobject_set_name_vargs(&dev->kobj, fmt, vargs);
796         va_end(vargs);
797         return err;
798 }
799 EXPORT_SYMBOL_GPL(dev_set_name);
800
801 /**
802  * device_to_dev_kobj - select a /sys/dev/ directory for the device
803  * @dev: device
804  *
805  * By default we select char/ for new entries.  Setting class->dev_obj
806  * to NULL prevents an entry from being created.  class->dev_kobj must
807  * be set (or cleared) before any devices are registered to the class
808  * otherwise device_create_sys_dev_entry() and
809  * device_remove_sys_dev_entry() will disagree about the the presence
810  * of the link.
811  */
812 static struct kobject *device_to_dev_kobj(struct device *dev)
813 {
814         struct kobject *kobj;
815
816         if (dev->class)
817                 kobj = dev->class->dev_kobj;
818         else
819                 kobj = sysfs_dev_char_kobj;
820
821         return kobj;
822 }
823
824 static int device_create_sys_dev_entry(struct device *dev)
825 {
826         struct kobject *kobj = device_to_dev_kobj(dev);
827         int error = 0;
828         char devt_str[15];
829
830         if (kobj) {
831                 format_dev_t(devt_str, dev->devt);
832                 error = sysfs_create_link(kobj, &dev->kobj, devt_str);
833         }
834
835         return error;
836 }
837
838 static void device_remove_sys_dev_entry(struct device *dev)
839 {
840         struct kobject *kobj = device_to_dev_kobj(dev);
841         char devt_str[15];
842
843         if (kobj) {
844                 format_dev_t(devt_str, dev->devt);
845                 sysfs_remove_link(kobj, devt_str);
846         }
847 }
848
849 int device_private_init(struct device *dev)
850 {
851         dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);
852         if (!dev->p)
853                 return -ENOMEM;
854         dev->p->device = dev;
855         klist_init(&dev->p->klist_children, klist_children_get,
856                    klist_children_put);
857         return 0;
858 }
859
860 /**
861  * device_add - add device to device hierarchy.
862  * @dev: device.
863  *
864  * This is part 2 of device_register(), though may be called
865  * separately _iff_ device_initialize() has been called separately.
866  *
867  * This adds @dev to the kobject hierarchy via kobject_add(), adds it
868  * to the global and sibling lists for the device, then
869  * adds it to the other relevant subsystems of the driver model.
870  *
871  * NOTE: _Never_ directly free @dev after calling this function, even
872  * if it returned an error! Always use put_device() to give up your
873  * reference instead.
874  */
875 int device_add(struct device *dev)
876 {
877         struct device *parent = NULL;
878         struct class_interface *class_intf;
879         int error = -EINVAL;
880
881         dev = get_device(dev);
882         if (!dev)
883                 goto done;
884
885         if (!dev->p) {
886                 error = device_private_init(dev);
887                 if (error)
888                         goto done;
889         }
890
891         /*
892          * for statically allocated devices, which should all be converted
893          * some day, we need to initialize the name. We prevent reading back
894          * the name, and force the use of dev_name()
895          */
896         if (dev->init_name) {
897                 dev_set_name(dev, "%s", dev->init_name);
898                 dev->init_name = NULL;
899         }
900
901         if (!dev_name(dev))
902                 goto name_error;
903
904         pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
905
906         parent = get_device(dev->parent);
907         setup_parent(dev, parent);
908
909         /* use parent numa_node */
910         if (parent)
911                 set_dev_node(dev, dev_to_node(parent));
912
913         /* first, register with generic layer. */
914         /* we require the name to be set before, and pass NULL */
915         error = kobject_add(&dev->kobj, dev->kobj.parent, NULL);
916         if (error)
917                 goto Error;
918
919         /* notify platform of device entry */
920         if (platform_notify)
921                 platform_notify(dev);
922
923         error = device_create_file(dev, &uevent_attr);
924         if (error)
925                 goto attrError;
926
927         if (MAJOR(dev->devt)) {
928                 error = device_create_file(dev, &devt_attr);
929                 if (error)
930                         goto ueventattrError;
931
932                 error = device_create_sys_dev_entry(dev);
933                 if (error)
934                         goto devtattrError;
935
936                 devtmpfs_create_node(dev);
937         }
938
939         error = device_add_class_symlinks(dev);
940         if (error)
941                 goto SymlinkError;
942         error = device_add_attrs(dev);
943         if (error)
944                 goto AttrsError;
945         error = bus_add_device(dev);
946         if (error)
947                 goto BusError;
948         error = dpm_sysfs_add(dev);
949         if (error)
950                 goto DPMError;
951         device_pm_add(dev);
952
953         /* Notify clients of device addition.  This call must come
954          * after dpm_sysf_add() and before kobject_uevent().
955          */
956         if (dev->bus)
957                 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
958                                              BUS_NOTIFY_ADD_DEVICE, dev);
959
960         kobject_uevent(&dev->kobj, KOBJ_ADD);
961         bus_probe_device(dev);
962         if (parent)
963                 klist_add_tail(&dev->p->knode_parent,
964                                &parent->p->klist_children);
965
966         if (dev->class) {
967                 mutex_lock(&dev->class->p->class_mutex);
968                 /* tie the class to the device */
969                 klist_add_tail(&dev->knode_class,
970                                &dev->class->p->class_devices);
971
972                 /* notify any interfaces that the device is here */
973                 list_for_each_entry(class_intf,
974                                     &dev->class->p->class_interfaces, node)
975                         if (class_intf->add_dev)
976                                 class_intf->add_dev(dev, class_intf);
977                 mutex_unlock(&dev->class->p->class_mutex);
978         }
979 done:
980         put_device(dev);
981         return error;
982  DPMError:
983         bus_remove_device(dev);
984  BusError:
985         device_remove_attrs(dev);
986  AttrsError:
987         device_remove_class_symlinks(dev);
988  SymlinkError:
989         if (MAJOR(dev->devt))
990                 devtmpfs_delete_node(dev);
991         if (MAJOR(dev->devt))
992                 device_remove_sys_dev_entry(dev);
993  devtattrError:
994         if (MAJOR(dev->devt))
995                 device_remove_file(dev, &devt_attr);
996  ueventattrError:
997         device_remove_file(dev, &uevent_attr);
998  attrError:
999         kobject_uevent(&dev->kobj, KOBJ_REMOVE);
1000         kobject_del(&dev->kobj);
1001  Error:
1002         cleanup_device_parent(dev);
1003         if (parent)
1004                 put_device(parent);
1005 name_error:
1006         kfree(dev->p);
1007         dev->p = NULL;
1008         goto done;
1009 }
1010
1011 /**
1012  * device_register - register a device with the system.
1013  * @dev: pointer to the device structure
1014  *
1015  * This happens in two clean steps - initialize the device
1016  * and add it to the system. The two steps can be called
1017  * separately, but this is the easiest and most common.
1018  * I.e. you should only call the two helpers separately if
1019  * have a clearly defined need to use and refcount the device
1020  * before it is added to the hierarchy.
1021  *
1022  * NOTE: _Never_ directly free @dev after calling this function, even
1023  * if it returned an error! Always use put_device() to give up the
1024  * reference initialized in this function instead.
1025  */
1026 int device_register(struct device *dev)
1027 {
1028         device_initialize(dev);
1029         return device_add(dev);
1030 }
1031
1032 /**
1033  * get_device - increment reference count for device.
1034  * @dev: device.
1035  *
1036  * This simply forwards the call to kobject_get(), though
1037  * we do take care to provide for the case that we get a NULL
1038  * pointer passed in.
1039  */
1040 struct device *get_device(struct device *dev)
1041 {
1042         return dev ? to_dev(kobject_get(&dev->kobj)) : NULL;
1043 }
1044
1045 /**
1046  * put_device - decrement reference count.
1047  * @dev: device in question.
1048  */
1049 void put_device(struct device *dev)
1050 {
1051         /* might_sleep(); */
1052         if (dev)
1053                 kobject_put(&dev->kobj);
1054 }
1055
1056 /**
1057  * device_del - delete device from system.
1058  * @dev: device.
1059  *
1060  * This is the first part of the device unregistration
1061  * sequence. This removes the device from the lists we control
1062  * from here, has it removed from the other driver model
1063  * subsystems it was added to in device_add(), and removes it
1064  * from the kobject hierarchy.
1065  *
1066  * NOTE: this should be called manually _iff_ device_add() was
1067  * also called manually.
1068  */
1069 void device_del(struct device *dev)
1070 {
1071         struct device *parent = dev->parent;
1072         struct class_interface *class_intf;
1073
1074         /* Notify clients of device removal.  This call must come
1075          * before dpm_sysfs_remove().
1076          */
1077         if (dev->bus)
1078                 blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
1079                                              BUS_NOTIFY_DEL_DEVICE, dev);
1080         device_pm_remove(dev);
1081         dpm_sysfs_remove(dev);
1082         if (parent)
1083                 klist_del(&dev->p->knode_parent);
1084         if (MAJOR(dev->devt)) {
1085                 devtmpfs_delete_node(dev);
1086                 device_remove_sys_dev_entry(dev);
1087                 device_remove_file(dev, &devt_attr);
1088         }
1089         if (dev->class) {
1090                 device_remove_class_symlinks(dev);
1091
1092                 mutex_lock(&dev->class->p->class_mutex);
1093                 /* notify any interfaces that the device is now gone */
1094                 list_for_each_entry(class_intf,
1095                                     &dev->class->p->class_interfaces, node)
1096                         if (class_intf->remove_dev)
1097                                 class_intf->remove_dev(dev, class_intf);
1098                 /* remove the device from the class list */
1099                 klist_del(&dev->knode_class);
1100                 mutex_unlock(&dev->class->p->class_mutex);
1101         }
1102         device_remove_file(dev, &uevent_attr);
1103         device_remove_attrs(dev);
1104         bus_remove_device(dev);
1105
1106         /*
1107          * Some platform devices are driven without driver attached
1108          * and managed resources may have been acquired.  Make sure
1109          * all resources are released.
1110          */
1111         devres_release_all(dev);
1112
1113         /* Notify the platform of the removal, in case they
1114          * need to do anything...
1115          */
1116         if (platform_notify_remove)
1117                 platform_notify_remove(dev);
1118         kobject_uevent(&dev->kobj, KOBJ_REMOVE);
1119         cleanup_device_parent(dev);
1120         kobject_del(&dev->kobj);
1121         put_device(parent);
1122 }
1123
1124 /**
1125  * device_unregister - unregister device from system.
1126  * @dev: device going away.
1127  *
1128  * We do this in two parts, like we do device_register(). First,
1129  * we remove it from all the subsystems with device_del(), then
1130  * we decrement the reference count via put_device(). If that
1131  * is the final reference count, the device will be cleaned up
1132  * via device_release() above. Otherwise, the structure will
1133  * stick around until the final reference to the device is dropped.
1134  */
1135 void device_unregister(struct device *dev)
1136 {
1137         pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
1138         device_del(dev);
1139         put_device(dev);
1140 }
1141
1142 static struct device *next_device(struct klist_iter *i)
1143 {
1144         struct klist_node *n = klist_next(i);
1145         struct device *dev = NULL;
1146         struct device_private *p;
1147
1148         if (n) {
1149                 p = to_device_private_parent(n);
1150                 dev = p->device;
1151         }
1152         return dev;
1153 }
1154
1155 /**
1156  * device_get_devnode - path of device node file
1157  * @dev: device
1158  * @mode: returned file access mode
1159  * @tmp: possibly allocated string
1160  *
1161  * Return the relative path of a possible device node.
1162  * Non-default names may need to allocate a memory to compose
1163  * a name. This memory is returned in tmp and needs to be
1164  * freed by the caller.
1165  */
1166 const char *device_get_devnode(struct device *dev,
1167                                mode_t *mode, const char **tmp)
1168 {
1169         char *s;
1170
1171         *tmp = NULL;
1172
1173         /* the device type may provide a specific name */
1174         if (dev->type && dev->type->devnode)
1175                 *tmp = dev->type->devnode(dev, mode);
1176         if (*tmp)
1177                 return *tmp;
1178
1179         /* the class may provide a specific name */
1180         if (dev->class && dev->class->devnode)
1181                 *tmp = dev->class->devnode(dev, mode);
1182         if (*tmp)
1183                 return *tmp;
1184
1185         /* return name without allocation, tmp == NULL */
1186         if (strchr(dev_name(dev), '!') == NULL)
1187                 return dev_name(dev);
1188
1189         /* replace '!' in the name with '/' */
1190         *tmp = kstrdup(dev_name(dev), GFP_KERNEL);
1191         if (!*tmp)
1192                 return NULL;
1193         while ((s = strchr(*tmp, '!')))
1194                 s[0] = '/';
1195         return *tmp;
1196 }
1197
1198 /**
1199  * device_for_each_child - device child iterator.
1200  * @parent: parent struct device.
1201  * @data: data for the callback.
1202  * @fn: function to be called for each device.
1203  *
1204  * Iterate over @parent's child devices, and call @fn for each,
1205  * passing it @data.
1206  *
1207  * We check the return of @fn each time. If it returns anything
1208  * other than 0, we break out and return that value.
1209  */
1210 int device_for_each_child(struct device *parent, void *data,
1211                           int (*fn)(struct device *dev, void *data))
1212 {
1213         struct klist_iter i;
1214         struct device *child;
1215         int error = 0;
1216
1217         if (!parent->p)
1218                 return 0;
1219
1220         klist_iter_init(&parent->p->klist_children, &i);
1221         while ((child = next_device(&i)) && !error)
1222                 error = fn(child, data);
1223         klist_iter_exit(&i);
1224         return error;
1225 }
1226
1227 /**
1228  * device_find_child - device iterator for locating a particular device.
1229  * @parent: parent struct device
1230  * @data: Data to pass to match function
1231  * @match: Callback function to check device
1232  *
1233  * This is similar to the device_for_each_child() function above, but it
1234  * returns a reference to a device that is 'found' for later use, as
1235  * determined by the @match callback.
1236  *
1237  * The callback should return 0 if the device doesn't match and non-zero
1238  * if it does.  If the callback returns non-zero and a reference to the
1239  * current device can be obtained, this function will return to the caller
1240  * and not iterate over any more devices.
1241  */
1242 struct device *device_find_child(struct device *parent, void *data,
1243                                  int (*match)(struct device *dev, void *data))
1244 {
1245         struct klist_iter i;
1246         struct device *child;
1247
1248         if (!parent)
1249                 return NULL;
1250
1251         klist_iter_init(&parent->p->klist_children, &i);
1252         while ((child = next_device(&i)))
1253                 if (match(child, data) && get_device(child))
1254                         break;
1255         klist_iter_exit(&i);
1256         return child;
1257 }
1258
1259 int __init devices_init(void)
1260 {
1261         devices_kset = kset_create_and_add("devices", &device_uevent_ops, NULL);
1262         if (!devices_kset)
1263                 return -ENOMEM;
1264         dev_kobj = kobject_create_and_add("dev", NULL);
1265         if (!dev_kobj)
1266                 goto dev_kobj_err;
1267         sysfs_dev_block_kobj = kobject_create_and_add("block", dev_kobj);
1268         if (!sysfs_dev_block_kobj)
1269                 goto block_kobj_err;
1270         sysfs_dev_char_kobj = kobject_create_and_add("char", dev_kobj);
1271         if (!sysfs_dev_char_kobj)
1272                 goto char_kobj_err;
1273
1274         return 0;
1275
1276  char_kobj_err:
1277         kobject_put(sysfs_dev_block_kobj);
1278  block_kobj_err:
1279         kobject_put(dev_kobj);
1280  dev_kobj_err:
1281         kset_unregister(devices_kset);
1282         return -ENOMEM;
1283 }
1284
1285 EXPORT_SYMBOL_GPL(device_for_each_child);
1286 EXPORT_SYMBOL_GPL(device_find_child);
1287
1288 EXPORT_SYMBOL_GPL(device_initialize);
1289 EXPORT_SYMBOL_GPL(device_add);
1290 EXPORT_SYMBOL_GPL(device_register);
1291
1292 EXPORT_SYMBOL_GPL(device_del);
1293 EXPORT_SYMBOL_GPL(device_unregister);
1294 EXPORT_SYMBOL_GPL(get_device);
1295 EXPORT_SYMBOL_GPL(put_device);
1296
1297 EXPORT_SYMBOL_GPL(device_create_file);
1298 EXPORT_SYMBOL_GPL(device_remove_file);
1299
1300 struct root_device
1301 {
1302         struct device dev;
1303         struct module *owner;
1304 };
1305
1306 #define to_root_device(dev) container_of(dev, struct root_device, dev)
1307
1308 static void root_device_release(struct device *dev)
1309 {
1310         kfree(to_root_device(dev));
1311 }
1312
1313 /**
1314  * __root_device_register - allocate and register a root device
1315  * @name: root device name
1316  * @owner: owner module of the root device, usually THIS_MODULE
1317  *
1318  * This function allocates a root device and registers it
1319  * using device_register(). In order to free the returned
1320  * device, use root_device_unregister().
1321  *
1322  * Root devices are dummy devices which allow other devices
1323  * to be grouped under /sys/devices. Use this function to
1324  * allocate a root device and then use it as the parent of
1325  * any device which should appear under /sys/devices/{name}
1326  *
1327  * The /sys/devices/{name} directory will also contain a
1328  * 'module' symlink which points to the @owner directory
1329  * in sysfs.
1330  *
1331  * Note: You probably want to use root_device_register().
1332  */
1333 struct device *__root_device_register(const char *name, struct module *owner)
1334 {
1335         struct root_device *root;
1336         int err = -ENOMEM;
1337
1338         root = kzalloc(sizeof(struct root_device), GFP_KERNEL);
1339         if (!root)
1340                 return ERR_PTR(err);
1341
1342         err = dev_set_name(&root->dev, "%s", name);
1343         if (err) {
1344                 kfree(root);
1345                 return ERR_PTR(err);
1346         }
1347
1348         root->dev.release = root_device_release;
1349
1350         err = device_register(&root->dev);
1351         if (err) {
1352                 put_device(&root->dev);
1353                 return ERR_PTR(err);
1354         }
1355
1356 #ifdef CONFIG_MODULE    /* gotta find a "cleaner" way to do this */
1357         if (owner) {
1358                 struct module_kobject *mk = &owner->mkobj;
1359
1360                 err = sysfs_create_link(&root->dev.kobj, &mk->kobj, "module");
1361                 if (err) {
1362                         device_unregister(&root->dev);
1363                         return ERR_PTR(err);
1364                 }
1365                 root->owner = owner;
1366         }
1367 #endif
1368
1369         return &root->dev;
1370 }
1371 EXPORT_SYMBOL_GPL(__root_device_register);
1372
1373 /**
1374  * root_device_unregister - unregister and free a root device
1375  * @dev: device going away
1376  *
1377  * This function unregisters and cleans up a device that was created by
1378  * root_device_register().
1379  */
1380 void root_device_unregister(struct device *dev)
1381 {
1382         struct root_device *root = to_root_device(dev);
1383
1384         if (root->owner)
1385                 sysfs_remove_link(&root->dev.kobj, "module");
1386
1387         device_unregister(dev);
1388 }
1389 EXPORT_SYMBOL_GPL(root_device_unregister);
1390
1391
1392 static void device_create_release(struct device *dev)
1393 {
1394         pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
1395         kfree(dev);
1396 }
1397
1398 /**
1399  * device_create_vargs - creates a device and registers it with sysfs
1400  * @class: pointer to the struct class that this device should be registered to
1401  * @parent: pointer to the parent struct device of this new device, if any
1402  * @devt: the dev_t for the char device to be added
1403  * @drvdata: the data to be added to the device for callbacks
1404  * @fmt: string for the device's name
1405  * @args: va_list for the device's name
1406  *
1407  * This function can be used by char device classes.  A struct device
1408  * will be created in sysfs, registered to the specified class.
1409  *
1410  * A "dev" file will be created, showing the dev_t for the device, if
1411  * the dev_t is not 0,0.
1412  * If a pointer to a parent struct device is passed in, the newly created
1413  * struct device will be a child of that device in sysfs.
1414  * The pointer to the struct device will be returned from the call.
1415  * Any further sysfs files that might be required can be created using this
1416  * pointer.
1417  *
1418  * Note: the struct class passed to this function must have previously
1419  * been created with a call to class_create().
1420  */
1421 struct device *device_create_vargs(struct class *class, struct device *parent,
1422                                    dev_t devt, void *drvdata, const char *fmt,
1423                                    va_list args)
1424 {
1425         struct device *dev = NULL;
1426         int retval = -ENODEV;
1427
1428         if (class == NULL || IS_ERR(class))
1429                 goto error;
1430
1431         dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1432         if (!dev) {
1433                 retval = -ENOMEM;
1434                 goto error;
1435         }
1436
1437         dev->devt = devt;
1438         dev->class = class;
1439         dev->parent = parent;
1440         dev->release = device_create_release;
1441         dev_set_drvdata(dev, drvdata);
1442
1443         retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
1444         if (retval)
1445                 goto error;
1446
1447         retval = device_register(dev);
1448         if (retval)
1449                 goto error;
1450
1451         return dev;
1452
1453 error:
1454         put_device(dev);
1455         return ERR_PTR(retval);
1456 }
1457 EXPORT_SYMBOL_GPL(device_create_vargs);
1458
1459 /**
1460  * device_create - creates a device and registers it with sysfs
1461  * @class: pointer to the struct class that this device should be registered to
1462  * @parent: pointer to the parent struct device of this new device, if any
1463  * @devt: the dev_t for the char device to be added
1464  * @drvdata: the data to be added to the device for callbacks
1465  * @fmt: string for the device's name
1466  *
1467  * This function can be used by char device classes.  A struct device
1468  * will be created in sysfs, registered to the specified class.
1469  *
1470  * A "dev" file will be created, showing the dev_t for the device, if
1471  * the dev_t is not 0,0.
1472  * If a pointer to a parent struct device is passed in, the newly created
1473  * struct device will be a child of that device in sysfs.
1474  * The pointer to the struct device will be returned from the call.
1475  * Any further sysfs files that might be required can be created using this
1476  * pointer.
1477  *
1478  * Note: the struct class passed to this function must have previously
1479  * been created with a call to class_create().
1480  */
1481 struct device *device_create(struct class *class, struct device *parent,
1482                              dev_t devt, void *drvdata, const char *fmt, ...)
1483 {
1484         va_list vargs;
1485         struct device *dev;
1486
1487         va_start(vargs, fmt);
1488         dev = device_create_vargs(class, parent, devt, drvdata, fmt, vargs);
1489         va_end(vargs);
1490         return dev;
1491 }
1492 EXPORT_SYMBOL_GPL(device_create);
1493
1494 static int __match_devt(struct device *dev, void *data)
1495 {
1496         dev_t *devt = data;
1497
1498         return dev->devt == *devt;
1499 }
1500
1501 /**
1502  * device_destroy - removes a device that was created with device_create()
1503  * @class: pointer to the struct class that this device was registered with
1504  * @devt: the dev_t of the device that was previously registered
1505  *
1506  * This call unregisters and cleans up a device that was created with a
1507  * call to device_create().
1508  */
1509 void device_destroy(struct class *class, dev_t devt)
1510 {
1511         struct device *dev;
1512
1513         dev = class_find_device(class, NULL, &devt, __match_devt);
1514         if (dev) {
1515                 put_device(dev);
1516                 device_unregister(dev);
1517         }
1518 }
1519 EXPORT_SYMBOL_GPL(device_destroy);
1520
1521 /**
1522  * device_rename - renames a device
1523  * @dev: the pointer to the struct device to be renamed
1524  * @new_name: the new name of the device
1525  *
1526  * It is the responsibility of the caller to provide mutual
1527  * exclusion between two different calls of device_rename
1528  * on the same device to ensure that new_name is valid and
1529  * won't conflict with other devices.
1530  */
1531 int device_rename(struct device *dev, char *new_name)
1532 {
1533         char *old_class_name = NULL;
1534         char *new_class_name = NULL;
1535         char *old_device_name = NULL;
1536         int error;
1537
1538         dev = get_device(dev);
1539         if (!dev)
1540                 return -EINVAL;
1541
1542         pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev),
1543                  __func__, new_name);
1544
1545 #ifdef CONFIG_SYSFS_DEPRECATED
1546         if ((dev->class) && (dev->parent))
1547                 old_class_name = make_class_name(dev->class->name, &dev->kobj);
1548 #endif
1549
1550         old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
1551         if (!old_device_name) {
1552                 error = -ENOMEM;
1553                 goto out;
1554         }
1555
1556         error = kobject_rename(&dev->kobj, new_name);
1557         if (error)
1558                 goto out;
1559
1560 #ifdef CONFIG_SYSFS_DEPRECATED
1561         if (old_class_name) {
1562                 new_class_name = make_class_name(dev->class->name, &dev->kobj);
1563                 if (new_class_name) {
1564                         error = sysfs_create_link_nowarn(&dev->parent->kobj,
1565                                                          &dev->kobj,
1566                                                          new_class_name);
1567                         if (error)
1568                                 goto out;
1569                         sysfs_remove_link(&dev->parent->kobj, old_class_name);
1570                 }
1571         }
1572 #else
1573         if (dev->class) {
1574                 error = sysfs_create_link_nowarn(&dev->class->p->class_subsys.kobj,
1575                                                  &dev->kobj, dev_name(dev));
1576                 if (error)
1577                         goto out;
1578                 sysfs_remove_link(&dev->class->p->class_subsys.kobj,
1579                                   old_device_name);
1580         }
1581 #endif
1582
1583 out:
1584         put_device(dev);
1585
1586         kfree(new_class_name);
1587         kfree(old_class_name);
1588         kfree(old_device_name);
1589
1590         return error;
1591 }
1592 EXPORT_SYMBOL_GPL(device_rename);
1593
1594 static int device_move_class_links(struct device *dev,
1595                                    struct device *old_parent,
1596                                    struct device *new_parent)
1597 {
1598         int error = 0;
1599 #ifdef CONFIG_SYSFS_DEPRECATED
1600         char *class_name;
1601
1602         class_name = make_class_name(dev->class->name, &dev->kobj);
1603         if (!class_name) {
1604                 error = -ENOMEM;
1605                 goto out;
1606         }
1607         if (old_parent) {
1608                 sysfs_remove_link(&dev->kobj, "device");
1609                 sysfs_remove_link(&old_parent->kobj, class_name);
1610         }
1611         if (new_parent) {
1612                 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1613                                           "device");
1614                 if (error)
1615                         goto out;
1616                 error = sysfs_create_link(&new_parent->kobj, &dev->kobj,
1617                                           class_name);
1618                 if (error)
1619                         sysfs_remove_link(&dev->kobj, "device");
1620         } else
1621                 error = 0;
1622 out:
1623         kfree(class_name);
1624         return error;
1625 #else
1626         if (old_parent)
1627                 sysfs_remove_link(&dev->kobj, "device");
1628         if (new_parent)
1629                 error = sysfs_create_link(&dev->kobj, &new_parent->kobj,
1630                                           "device");
1631         return error;
1632 #endif
1633 }
1634
1635 /**
1636  * device_move - moves a device to a new parent
1637  * @dev: the pointer to the struct device to be moved
1638  * @new_parent: the new parent of the device (can by NULL)
1639  * @dpm_order: how to reorder the dpm_list
1640  */
1641 int device_move(struct device *dev, struct device *new_parent,
1642                 enum dpm_order dpm_order)
1643 {
1644         int error;
1645         struct device *old_parent;
1646         struct kobject *new_parent_kobj;
1647
1648         dev = get_device(dev);
1649         if (!dev)
1650                 return -EINVAL;
1651
1652         device_pm_lock();
1653         new_parent = get_device(new_parent);
1654         new_parent_kobj = get_device_parent(dev, new_parent);
1655
1656         pr_debug("device: '%s': %s: moving to '%s'\n", dev_name(dev),
1657                  __func__, new_parent ? dev_name(new_parent) : "<NULL>");
1658         error = kobject_move(&dev->kobj, new_parent_kobj);
1659         if (error) {
1660                 cleanup_glue_dir(dev, new_parent_kobj);
1661                 put_device(new_parent);
1662                 goto out;
1663         }
1664         old_parent = dev->parent;
1665         dev->parent = new_parent;
1666         if (old_parent)
1667                 klist_remove(&dev->p->knode_parent);
1668         if (new_parent) {
1669                 klist_add_tail(&dev->p->knode_parent,
1670                                &new_parent->p->klist_children);
1671                 set_dev_node(dev, dev_to_node(new_parent));
1672         }
1673
1674         if (!dev->class)
1675                 goto out_put;
1676         error = device_move_class_links(dev, old_parent, new_parent);
1677         if (error) {
1678                 /* We ignore errors on cleanup since we're hosed anyway... */
1679                 device_move_class_links(dev, new_parent, old_parent);
1680                 if (!kobject_move(&dev->kobj, &old_parent->kobj)) {
1681                         if (new_parent)
1682                                 klist_remove(&dev->p->knode_parent);
1683                         dev->parent = old_parent;
1684                         if (old_parent) {
1685                                 klist_add_tail(&dev->p->knode_parent,
1686                                                &old_parent->p->klist_children);
1687                                 set_dev_node(dev, dev_to_node(old_parent));
1688                         }
1689                 }
1690                 cleanup_glue_dir(dev, new_parent_kobj);
1691                 put_device(new_parent);
1692                 goto out;
1693         }
1694         switch (dpm_order) {
1695         case DPM_ORDER_NONE:
1696                 break;
1697         case DPM_ORDER_DEV_AFTER_PARENT:
1698                 device_pm_move_after(dev, new_parent);
1699                 break;
1700         case DPM_ORDER_PARENT_BEFORE_DEV:
1701                 device_pm_move_before(new_parent, dev);
1702                 break;
1703         case DPM_ORDER_DEV_LAST:
1704                 device_pm_move_last(dev);
1705                 break;
1706         }
1707 out_put:
1708         put_device(old_parent);
1709 out:
1710         device_pm_unlock();
1711         put_device(dev);
1712         return error;
1713 }
1714 EXPORT_SYMBOL_GPL(device_move);
1715
1716 /**
1717  * device_shutdown - call ->shutdown() on each device to shutdown.
1718  */
1719 void device_shutdown(void)
1720 {
1721         struct device *dev, *devn;
1722
1723         list_for_each_entry_safe_reverse(dev, devn, &devices_kset->list,
1724                                 kobj.entry) {
1725                 if (dev->bus && dev->bus->shutdown) {
1726                         dev_dbg(dev, "shutdown\n");
1727                         dev->bus->shutdown(dev);
1728                 } else if (dev->driver && dev->driver->shutdown) {
1729                         dev_dbg(dev, "shutdown\n");
1730                         dev->driver->shutdown(dev);
1731                 }
1732         }
1733         kobject_put(sysfs_dev_char_kobj);
1734         kobject_put(sysfs_dev_block_kobj);
1735         kobject_put(dev_kobj);
1736         async_synchronize_full();
1737 }