sysfs: use sysfs_mutex to protect the sysfs_dirent tree
[linux-2.6] / fs / sysfs / dir.c
1 /*
2  * dir.c - Operations for sysfs directories.
3  */
4
5 #undef DEBUG
6
7 #include <linux/fs.h>
8 #include <linux/mount.h>
9 #include <linux/module.h>
10 #include <linux/kobject.h>
11 #include <linux/namei.h>
12 #include <linux/idr.h>
13 #include <linux/completion.h>
14 #include <asm/semaphore.h>
15 #include "sysfs.h"
16
17 DEFINE_MUTEX(sysfs_mutex);
18 spinlock_t sysfs_assoc_lock = SPIN_LOCK_UNLOCKED;
19
20 static spinlock_t sysfs_ino_lock = SPIN_LOCK_UNLOCKED;
21 static DEFINE_IDA(sysfs_ino_ida);
22
23 /**
24  *      sysfs_link_sibling - link sysfs_dirent into sibling list
25  *      @sd: sysfs_dirent of interest
26  *
27  *      Link @sd into its sibling list which starts from
28  *      sd->s_parent->s_children.
29  *
30  *      Locking:
31  *      mutex_lock(sysfs_mutex)
32  */
33 static void sysfs_link_sibling(struct sysfs_dirent *sd)
34 {
35         struct sysfs_dirent *parent_sd = sd->s_parent;
36
37         BUG_ON(sd->s_sibling);
38         sd->s_sibling = parent_sd->s_children;
39         parent_sd->s_children = sd;
40 }
41
42 /**
43  *      sysfs_unlink_sibling - unlink sysfs_dirent from sibling list
44  *      @sd: sysfs_dirent of interest
45  *
46  *      Unlink @sd from its sibling list which starts from
47  *      sd->s_parent->s_children.
48  *
49  *      Locking:
50  *      mutex_lock(sysfs_mutex)
51  */
52 static void sysfs_unlink_sibling(struct sysfs_dirent *sd)
53 {
54         struct sysfs_dirent **pos;
55
56         for (pos = &sd->s_parent->s_children; *pos; pos = &(*pos)->s_sibling) {
57                 if (*pos == sd) {
58                         *pos = sd->s_sibling;
59                         sd->s_sibling = NULL;
60                         break;
61                 }
62         }
63 }
64
65 /**
66  *      sysfs_get_active - get an active reference to sysfs_dirent
67  *      @sd: sysfs_dirent to get an active reference to
68  *
69  *      Get an active reference of @sd.  This function is noop if @sd
70  *      is NULL.
71  *
72  *      RETURNS:
73  *      Pointer to @sd on success, NULL on failure.
74  */
75 struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd)
76 {
77         if (unlikely(!sd))
78                 return NULL;
79
80         while (1) {
81                 int v, t;
82
83                 v = atomic_read(&sd->s_active);
84                 if (unlikely(v < 0))
85                         return NULL;
86
87                 t = atomic_cmpxchg(&sd->s_active, v, v + 1);
88                 if (likely(t == v))
89                         return sd;
90                 if (t < 0)
91                         return NULL;
92
93                 cpu_relax();
94         }
95 }
96
97 /**
98  *      sysfs_put_active - put an active reference to sysfs_dirent
99  *      @sd: sysfs_dirent to put an active reference to
100  *
101  *      Put an active reference to @sd.  This function is noop if @sd
102  *      is NULL.
103  */
104 void sysfs_put_active(struct sysfs_dirent *sd)
105 {
106         struct completion *cmpl;
107         int v;
108
109         if (unlikely(!sd))
110                 return;
111
112         v = atomic_dec_return(&sd->s_active);
113         if (likely(v != SD_DEACTIVATED_BIAS))
114                 return;
115
116         /* atomic_dec_return() is a mb(), we'll always see the updated
117          * sd->s_sibling.
118          */
119         cmpl = (void *)sd->s_sibling;
120         complete(cmpl);
121 }
122
123 /**
124  *      sysfs_get_active_two - get active references to sysfs_dirent and parent
125  *      @sd: sysfs_dirent of interest
126  *
127  *      Get active reference to @sd and its parent.  Parent's active
128  *      reference is grabbed first.  This function is noop if @sd is
129  *      NULL.
130  *
131  *      RETURNS:
132  *      Pointer to @sd on success, NULL on failure.
133  */
134 struct sysfs_dirent *sysfs_get_active_two(struct sysfs_dirent *sd)
135 {
136         if (sd) {
137                 if (sd->s_parent && unlikely(!sysfs_get_active(sd->s_parent)))
138                         return NULL;
139                 if (unlikely(!sysfs_get_active(sd))) {
140                         sysfs_put_active(sd->s_parent);
141                         return NULL;
142                 }
143         }
144         return sd;
145 }
146
147 /**
148  *      sysfs_put_active_two - put active references to sysfs_dirent and parent
149  *      @sd: sysfs_dirent of interest
150  *
151  *      Put active references to @sd and its parent.  This function is
152  *      noop if @sd is NULL.
153  */
154 void sysfs_put_active_two(struct sysfs_dirent *sd)
155 {
156         if (sd) {
157                 sysfs_put_active(sd);
158                 sysfs_put_active(sd->s_parent);
159         }
160 }
161
162 /**
163  *      sysfs_deactivate - deactivate sysfs_dirent
164  *      @sd: sysfs_dirent to deactivate
165  *
166  *      Deny new active references and drain existing ones.
167  */
168 void sysfs_deactivate(struct sysfs_dirent *sd)
169 {
170         DECLARE_COMPLETION_ONSTACK(wait);
171         int v;
172
173         BUG_ON(sd->s_sibling || !(sd->s_flags & SYSFS_FLAG_REMOVED));
174         sd->s_sibling = (void *)&wait;
175
176         /* atomic_add_return() is a mb(), put_active() will always see
177          * the updated sd->s_sibling.
178          */
179         v = atomic_add_return(SD_DEACTIVATED_BIAS, &sd->s_active);
180
181         if (v != SD_DEACTIVATED_BIAS)
182                 wait_for_completion(&wait);
183
184         sd->s_sibling = NULL;
185 }
186
187 static int sysfs_alloc_ino(ino_t *pino)
188 {
189         int ino, rc;
190
191  retry:
192         spin_lock(&sysfs_ino_lock);
193         rc = ida_get_new_above(&sysfs_ino_ida, 2, &ino);
194         spin_unlock(&sysfs_ino_lock);
195
196         if (rc == -EAGAIN) {
197                 if (ida_pre_get(&sysfs_ino_ida, GFP_KERNEL))
198                         goto retry;
199                 rc = -ENOMEM;
200         }
201
202         *pino = ino;
203         return rc;
204 }
205
206 static void sysfs_free_ino(ino_t ino)
207 {
208         spin_lock(&sysfs_ino_lock);
209         ida_remove(&sysfs_ino_ida, ino);
210         spin_unlock(&sysfs_ino_lock);
211 }
212
213 void release_sysfs_dirent(struct sysfs_dirent * sd)
214 {
215         struct sysfs_dirent *parent_sd;
216
217  repeat:
218         /* Moving/renaming is always done while holding reference.
219          * sd->s_parent won't change beneath us.
220          */
221         parent_sd = sd->s_parent;
222
223         if (sysfs_type(sd) == SYSFS_KOBJ_LINK)
224                 sysfs_put(sd->s_elem.symlink.target_sd);
225         if (sysfs_type(sd) & SYSFS_COPY_NAME)
226                 kfree(sd->s_name);
227         kfree(sd->s_iattr);
228         sysfs_free_ino(sd->s_ino);
229         kmem_cache_free(sysfs_dir_cachep, sd);
230
231         sd = parent_sd;
232         if (sd && atomic_dec_and_test(&sd->s_count))
233                 goto repeat;
234 }
235
236 static void sysfs_d_iput(struct dentry * dentry, struct inode * inode)
237 {
238         struct sysfs_dirent * sd = dentry->d_fsdata;
239
240         if (sd) {
241                 /* sd->s_dentry is protected with sysfs_assoc_lock.
242                  * This allows sysfs_drop_dentry() to dereference it.
243                  */
244                 spin_lock(&sysfs_assoc_lock);
245
246                 /* The dentry might have been deleted or another
247                  * lookup could have happened updating sd->s_dentry to
248                  * point the new dentry.  Ignore if it isn't pointing
249                  * to this dentry.
250                  */
251                 if (sd->s_dentry == dentry)
252                         sd->s_dentry = NULL;
253                 spin_unlock(&sysfs_assoc_lock);
254                 sysfs_put(sd);
255         }
256         iput(inode);
257 }
258
259 static struct dentry_operations sysfs_dentry_ops = {
260         .d_iput         = sysfs_d_iput,
261 };
262
263 struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)
264 {
265         char *dup_name = NULL;
266         struct sysfs_dirent *sd = NULL;
267
268         if (type & SYSFS_COPY_NAME) {
269                 name = dup_name = kstrdup(name, GFP_KERNEL);
270                 if (!name)
271                         goto err_out;
272         }
273
274         sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL);
275         if (!sd)
276                 goto err_out;
277
278         if (sysfs_alloc_ino(&sd->s_ino))
279                 goto err_out;
280
281         atomic_set(&sd->s_count, 1);
282         atomic_set(&sd->s_active, 0);
283         atomic_set(&sd->s_event, 1);
284
285         sd->s_name = name;
286         sd->s_mode = mode;
287         sd->s_flags = type;
288
289         return sd;
290
291  err_out:
292         kfree(dup_name);
293         kmem_cache_free(sysfs_dir_cachep, sd);
294         return NULL;
295 }
296
297 /**
298  *      sysfs_attach_dentry - associate sysfs_dirent with dentry
299  *      @sd: target sysfs_dirent
300  *      @dentry: dentry to associate
301  *
302  *      Associate @sd with @dentry.  This is protected by
303  *      sysfs_assoc_lock to avoid race with sysfs_d_iput().
304  *
305  *      LOCKING:
306  *      mutex_lock(sysfs_mutex)
307  */
308 static void sysfs_attach_dentry(struct sysfs_dirent *sd, struct dentry *dentry)
309 {
310         dentry->d_op = &sysfs_dentry_ops;
311         dentry->d_fsdata = sysfs_get(sd);
312
313         /* protect sd->s_dentry against sysfs_d_iput */
314         spin_lock(&sysfs_assoc_lock);
315         sd->s_dentry = dentry;
316         spin_unlock(&sysfs_assoc_lock);
317
318         d_rehash(dentry);
319 }
320
321 /**
322  *      sysfs_attach_dirent - attach sysfs_dirent to its parent and dentry
323  *      @sd: sysfs_dirent to attach
324  *      @parent_sd: parent to attach to (optional)
325  *      @dentry: dentry to be associated to @sd (optional)
326  *
327  *      Attach @sd to @parent_sd and/or @dentry.  Both are optional.
328  *
329  *      LOCKING:
330  *      mutex_lock(sysfs_mutex)
331  */
332 void sysfs_attach_dirent(struct sysfs_dirent *sd,
333                          struct sysfs_dirent *parent_sd, struct dentry *dentry)
334 {
335         if (dentry)
336                 sysfs_attach_dentry(sd, dentry);
337
338         if (parent_sd) {
339                 sd->s_parent = sysfs_get(parent_sd);
340                 sysfs_link_sibling(sd);
341         }
342 }
343
344 /**
345  *      sysfs_find_dirent - find sysfs_dirent with the given name
346  *      @parent_sd: sysfs_dirent to search under
347  *      @name: name to look for
348  *
349  *      Look for sysfs_dirent with name @name under @parent_sd.
350  *
351  *      LOCKING:
352  *      mutex_lock(sysfs_mutex)
353  *
354  *      RETURNS:
355  *      Pointer to sysfs_dirent if found, NULL if not.
356  */
357 struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
358                                        const unsigned char *name)
359 {
360         struct sysfs_dirent *sd;
361
362         for (sd = parent_sd->s_children; sd; sd = sd->s_sibling)
363                 if (sysfs_type(sd) && !strcmp(sd->s_name, name))
364                         return sd;
365         return NULL;
366 }
367
368 /**
369  *      sysfs_get_dirent - find and get sysfs_dirent with the given name
370  *      @parent_sd: sysfs_dirent to search under
371  *      @name: name to look for
372  *
373  *      Look for sysfs_dirent with name @name under @parent_sd and get
374  *      it if found.
375  *
376  *      LOCKING:
377  *      Kernel thread context (may sleep).  Grabs sysfs_mutex.
378  *
379  *      RETURNS:
380  *      Pointer to sysfs_dirent if found, NULL if not.
381  */
382 struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
383                                       const unsigned char *name)
384 {
385         struct sysfs_dirent *sd;
386
387         mutex_lock(&sysfs_mutex);
388         sd = sysfs_find_dirent(parent_sd, name);
389         sysfs_get(sd);
390         mutex_unlock(&sysfs_mutex);
391
392         return sd;
393 }
394
395 static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd,
396                       const char *name, struct sysfs_dirent **p_sd)
397 {
398         struct dentry *parent = parent_sd->s_dentry;
399         int error;
400         umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
401         struct dentry *dentry;
402         struct inode *inode;
403         struct sysfs_dirent *sd;
404
405         mutex_lock(&parent->d_inode->i_mutex);
406
407         /* allocate */
408         dentry = lookup_one_len(name, parent, strlen(name));
409         if (IS_ERR(dentry)) {
410                 error = PTR_ERR(dentry);
411                 goto out_unlock;
412         }
413
414         error = -EEXIST;
415         if (dentry->d_inode)
416                 goto out_dput;
417
418         error = -ENOMEM;
419         sd = sysfs_new_dirent(name, mode, SYSFS_DIR);
420         if (!sd)
421                 goto out_drop;
422         sd->s_elem.dir.kobj = kobj;
423
424         inode = sysfs_get_inode(sd);
425         if (!inode)
426                 goto out_sput;
427
428         if (inode->i_state & I_NEW) {
429                 inode->i_op = &sysfs_dir_inode_operations;
430                 inode->i_fop = &sysfs_dir_operations;
431                 /* directory inodes start off with i_nlink == 2 (for ".") */
432                 inc_nlink(inode);
433         }
434
435         /* link in */
436         mutex_lock(&sysfs_mutex);
437
438         error = -EEXIST;
439         if (sysfs_find_dirent(parent_sd, name)) {
440                 mutex_unlock(&sysfs_mutex);
441                 goto out_iput;
442         }
443
444         sysfs_instantiate(dentry, inode);
445         inc_nlink(parent->d_inode);
446         sysfs_attach_dirent(sd, parent_sd, dentry);
447
448         mutex_unlock(&sysfs_mutex);
449
450         *p_sd = sd;
451         error = 0;
452         goto out_unlock;        /* pin directory dentry in core */
453
454  out_iput:
455         iput(inode);
456  out_sput:
457         sysfs_put(sd);
458  out_drop:
459         d_drop(dentry);
460  out_dput:
461         dput(dentry);
462  out_unlock:
463         mutex_unlock(&parent->d_inode->i_mutex);
464         return error;
465 }
466
467 int sysfs_create_subdir(struct kobject *kobj, const char *name,
468                         struct sysfs_dirent **p_sd)
469 {
470         return create_dir(kobj, kobj->sd, name, p_sd);
471 }
472
473 /**
474  *      sysfs_create_dir - create a directory for an object.
475  *      @kobj:          object we're creating directory for. 
476  *      @shadow_parent: parent object.
477  */
478 int sysfs_create_dir(struct kobject *kobj,
479                      struct sysfs_dirent *shadow_parent_sd)
480 {
481         struct sysfs_dirent *parent_sd, *sd;
482         int error = 0;
483
484         BUG_ON(!kobj);
485
486         if (shadow_parent_sd)
487                 parent_sd = shadow_parent_sd;
488         else if (kobj->parent)
489                 parent_sd = kobj->parent->sd;
490         else if (sysfs_mount && sysfs_mount->mnt_sb)
491                 parent_sd = sysfs_mount->mnt_sb->s_root->d_fsdata;
492         else
493                 return -EFAULT;
494
495         error = create_dir(kobj, parent_sd, kobject_name(kobj), &sd);
496         if (!error)
497                 kobj->sd = sd;
498         return error;
499 }
500
501 static struct dentry * sysfs_lookup(struct inode *dir, struct dentry *dentry,
502                                 struct nameidata *nd)
503 {
504         struct sysfs_dirent * parent_sd = dentry->d_parent->d_fsdata;
505         struct sysfs_dirent * sd;
506         struct bin_attribute *bin_attr;
507         struct inode *inode;
508         int found = 0;
509
510         for (sd = parent_sd->s_children; sd; sd = sd->s_sibling) {
511                 if ((sysfs_type(sd) & SYSFS_NOT_PINNED) &&
512                     !strcmp(sd->s_name, dentry->d_name.name)) {
513                         found = 1;
514                         break;
515                 }
516         }
517
518         /* no such entry */
519         if (!found)
520                 return NULL;
521
522         /* attach dentry and inode */
523         inode = sysfs_get_inode(sd);
524         if (!inode)
525                 return ERR_PTR(-ENOMEM);
526
527         mutex_lock(&sysfs_mutex);
528
529         if (inode->i_state & I_NEW) {
530                 /* initialize inode according to type */
531                 switch (sysfs_type(sd)) {
532                 case SYSFS_KOBJ_ATTR:
533                         inode->i_size = PAGE_SIZE;
534                         inode->i_fop = &sysfs_file_operations;
535                         break;
536                 case SYSFS_KOBJ_BIN_ATTR:
537                         bin_attr = sd->s_elem.bin_attr.bin_attr;
538                         inode->i_size = bin_attr->size;
539                         inode->i_fop = &bin_fops;
540                         break;
541                 case SYSFS_KOBJ_LINK:
542                         inode->i_op = &sysfs_symlink_inode_operations;
543                         break;
544                 default:
545                         BUG();
546                 }
547         }
548
549         sysfs_instantiate(dentry, inode);
550         sysfs_attach_dentry(sd, dentry);
551
552         mutex_unlock(&sysfs_mutex);
553
554         return NULL;
555 }
556
557 const struct inode_operations sysfs_dir_inode_operations = {
558         .lookup         = sysfs_lookup,
559         .setattr        = sysfs_setattr,
560 };
561
562 static void remove_dir(struct sysfs_dirent *sd)
563 {
564         mutex_lock(&sysfs_mutex);
565         sysfs_unlink_sibling(sd);
566         sd->s_flags |= SYSFS_FLAG_REMOVED;
567         mutex_unlock(&sysfs_mutex);
568
569         pr_debug(" o %s removing done\n", sd->s_name);
570
571         sysfs_drop_dentry(sd);
572         sysfs_deactivate(sd);
573         sysfs_put(sd);
574 }
575
576 void sysfs_remove_subdir(struct sysfs_dirent *sd)
577 {
578         remove_dir(sd);
579 }
580
581
582 static void __sysfs_remove_dir(struct sysfs_dirent *dir_sd)
583 {
584         struct sysfs_dirent *removed = NULL;
585         struct sysfs_dirent **pos;
586
587         if (!dir_sd)
588                 return;
589
590         pr_debug("sysfs %s: removing dir\n", dir_sd->s_name);
591         mutex_lock(&sysfs_mutex);
592         pos = &dir_sd->s_children;
593         while (*pos) {
594                 struct sysfs_dirent *sd = *pos;
595
596                 if (sysfs_type(sd) && (sysfs_type(sd) & SYSFS_NOT_PINNED)) {
597                         sd->s_flags |= SYSFS_FLAG_REMOVED;
598                         *pos = sd->s_sibling;
599                         sd->s_sibling = removed;
600                         removed = sd;
601                 } else
602                         pos = &(*pos)->s_sibling;
603         }
604         mutex_unlock(&sysfs_mutex);
605
606         while (removed) {
607                 struct sysfs_dirent *sd = removed;
608
609                 removed = sd->s_sibling;
610                 sd->s_sibling = NULL;
611
612                 sysfs_drop_dentry(sd);
613                 sysfs_deactivate(sd);
614                 sysfs_put(sd);
615         }
616
617         remove_dir(dir_sd);
618 }
619
620 /**
621  *      sysfs_remove_dir - remove an object's directory.
622  *      @kobj:  object.
623  *
624  *      The only thing special about this is that we remove any files in
625  *      the directory before we remove the directory, and we've inlined
626  *      what used to be sysfs_rmdir() below, instead of calling separately.
627  */
628
629 void sysfs_remove_dir(struct kobject * kobj)
630 {
631         struct sysfs_dirent *sd = kobj->sd;
632
633         spin_lock(&sysfs_assoc_lock);
634         kobj->sd = NULL;
635         spin_unlock(&sysfs_assoc_lock);
636
637         __sysfs_remove_dir(sd);
638 }
639
640 int sysfs_rename_dir(struct kobject *kobj, struct sysfs_dirent *new_parent_sd,
641                      const char *new_name)
642 {
643         struct sysfs_dirent *sd = kobj->sd;
644         struct dentry *new_parent = new_parent_sd->s_dentry;
645         struct dentry *new_dentry;
646         char *dup_name;
647         int error;
648
649         if (!new_parent_sd)
650                 return -EFAULT;
651
652         mutex_lock(&new_parent->d_inode->i_mutex);
653
654         new_dentry = lookup_one_len(new_name, new_parent, strlen(new_name));
655         if (IS_ERR(new_dentry)) {
656                 error = PTR_ERR(new_dentry);
657                 goto out_unlock;
658         }
659
660         /* By allowing two different directories with the same
661          * d_parent we allow this routine to move between different
662          * shadows of the same directory
663          */
664         error = -EINVAL;
665         if (sd->s_parent->s_dentry->d_inode != new_parent->d_inode ||
666             new_dentry->d_parent->d_inode != new_parent->d_inode ||
667             new_dentry == sd->s_dentry)
668                 goto out_dput;
669
670         error = -EEXIST;
671         if (new_dentry->d_inode)
672                 goto out_dput;
673
674         /* rename kobject and sysfs_dirent */
675         error = -ENOMEM;
676         new_name = dup_name = kstrdup(new_name, GFP_KERNEL);
677         if (!new_name)
678                 goto out_drop;
679
680         error = kobject_set_name(kobj, "%s", new_name);
681         if (error)
682                 goto out_free;
683
684         kfree(sd->s_name);
685         sd->s_name = new_name;
686
687         /* move under the new parent */
688         d_add(new_dentry, NULL);
689         d_move(sd->s_dentry, new_dentry);
690
691         mutex_lock(&sysfs_mutex);
692
693         sysfs_unlink_sibling(sd);
694         sysfs_get(new_parent_sd);
695         sysfs_put(sd->s_parent);
696         sd->s_parent = new_parent_sd;
697         sysfs_link_sibling(sd);
698
699         mutex_unlock(&sysfs_mutex);
700
701         error = 0;
702         goto out_unlock;
703
704  out_free:
705         kfree(dup_name);
706  out_drop:
707         d_drop(new_dentry);
708  out_dput:
709         dput(new_dentry);
710  out_unlock:
711         mutex_unlock(&new_parent->d_inode->i_mutex);
712         return error;
713 }
714
715 int sysfs_move_dir(struct kobject *kobj, struct kobject *new_parent)
716 {
717         struct dentry *old_parent_dentry, *new_parent_dentry, *new_dentry;
718         struct sysfs_dirent *new_parent_sd, *sd;
719         int error;
720
721         old_parent_dentry = kobj->parent ?
722                 kobj->parent->sd->s_dentry : sysfs_mount->mnt_sb->s_root;
723         new_parent_dentry = new_parent ?
724                 new_parent->sd->s_dentry : sysfs_mount->mnt_sb->s_root;
725
726         if (old_parent_dentry->d_inode == new_parent_dentry->d_inode)
727                 return 0;       /* nothing to move */
728 again:
729         mutex_lock(&old_parent_dentry->d_inode->i_mutex);
730         if (!mutex_trylock(&new_parent_dentry->d_inode->i_mutex)) {
731                 mutex_unlock(&old_parent_dentry->d_inode->i_mutex);
732                 goto again;
733         }
734
735         new_parent_sd = new_parent_dentry->d_fsdata;
736         sd = kobj->sd;
737
738         new_dentry = lookup_one_len(kobj->name, new_parent_dentry,
739                                     strlen(kobj->name));
740         if (IS_ERR(new_dentry)) {
741                 error = PTR_ERR(new_dentry);
742                 goto out;
743         } else
744                 error = 0;
745         d_add(new_dentry, NULL);
746         d_move(sd->s_dentry, new_dentry);
747         dput(new_dentry);
748
749         /* Remove from old parent's list and insert into new parent's list. */
750         mutex_lock(&sysfs_mutex);
751
752         sysfs_unlink_sibling(sd);
753         sysfs_get(new_parent_sd);
754         sysfs_put(sd->s_parent);
755         sd->s_parent = new_parent_sd;
756         sysfs_link_sibling(sd);
757
758         mutex_unlock(&sysfs_mutex);
759 out:
760         mutex_unlock(&new_parent_dentry->d_inode->i_mutex);
761         mutex_unlock(&old_parent_dentry->d_inode->i_mutex);
762
763         return error;
764 }
765
766 static int sysfs_dir_open(struct inode *inode, struct file *file)
767 {
768         struct dentry * dentry = file->f_path.dentry;
769         struct sysfs_dirent * parent_sd = dentry->d_fsdata;
770         struct sysfs_dirent * sd;
771
772         sd = sysfs_new_dirent("_DIR_", 0, 0);
773         if (sd) {
774                 mutex_lock(&sysfs_mutex);
775                 sysfs_attach_dirent(sd, parent_sd, NULL);
776                 mutex_unlock(&sysfs_mutex);
777         }
778
779         file->private_data = sd;
780         return sd ? 0 : -ENOMEM;
781 }
782
783 static int sysfs_dir_close(struct inode *inode, struct file *file)
784 {
785         struct sysfs_dirent * cursor = file->private_data;
786
787         mutex_lock(&sysfs_mutex);
788         sysfs_unlink_sibling(cursor);
789         mutex_unlock(&sysfs_mutex);
790
791         release_sysfs_dirent(cursor);
792
793         return 0;
794 }
795
796 /* Relationship between s_mode and the DT_xxx types */
797 static inline unsigned char dt_type(struct sysfs_dirent *sd)
798 {
799         return (sd->s_mode >> 12) & 15;
800 }
801
802 static int sysfs_readdir(struct file * filp, void * dirent, filldir_t filldir)
803 {
804         struct dentry *dentry = filp->f_path.dentry;
805         struct sysfs_dirent * parent_sd = dentry->d_fsdata;
806         struct sysfs_dirent *cursor = filp->private_data;
807         struct sysfs_dirent **pos;
808         ino_t ino;
809         int i = filp->f_pos;
810
811         switch (i) {
812                 case 0:
813                         ino = parent_sd->s_ino;
814                         if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
815                                 break;
816                         filp->f_pos++;
817                         i++;
818                         /* fallthrough */
819                 case 1:
820                         if (parent_sd->s_parent)
821                                 ino = parent_sd->s_parent->s_ino;
822                         else
823                                 ino = parent_sd->s_ino;
824                         if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
825                                 break;
826                         filp->f_pos++;
827                         i++;
828                         /* fallthrough */
829                 default:
830                         mutex_lock(&sysfs_mutex);
831
832                         pos = &parent_sd->s_children;
833                         while (*pos != cursor)
834                                 pos = &(*pos)->s_sibling;
835
836                         /* unlink cursor */
837                         *pos = cursor->s_sibling;
838
839                         if (filp->f_pos == 2)
840                                 pos = &parent_sd->s_children;
841
842                         for ( ; *pos; pos = &(*pos)->s_sibling) {
843                                 struct sysfs_dirent *next = *pos;
844                                 const char * name;
845                                 int len;
846
847                                 if (!sysfs_type(next))
848                                         continue;
849
850                                 name = next->s_name;
851                                 len = strlen(name);
852                                 ino = next->s_ino;
853
854                                 if (filldir(dirent, name, len, filp->f_pos, ino,
855                                                  dt_type(next)) < 0)
856                                         break;
857
858                                 filp->f_pos++;
859                         }
860
861                         /* put cursor back in */
862                         cursor->s_sibling = *pos;
863                         *pos = cursor;
864
865                         mutex_unlock(&sysfs_mutex);
866         }
867         return 0;
868 }
869
870 static loff_t sysfs_dir_lseek(struct file * file, loff_t offset, int origin)
871 {
872         struct dentry * dentry = file->f_path.dentry;
873
874         switch (origin) {
875                 case 1:
876                         offset += file->f_pos;
877                 case 0:
878                         if (offset >= 0)
879                                 break;
880                 default:
881                         return -EINVAL;
882         }
883         if (offset != file->f_pos) {
884                 mutex_lock(&sysfs_mutex);
885
886                 file->f_pos = offset;
887                 if (file->f_pos >= 2) {
888                         struct sysfs_dirent *sd = dentry->d_fsdata;
889                         struct sysfs_dirent *cursor = file->private_data;
890                         struct sysfs_dirent **pos;
891                         loff_t n = file->f_pos - 2;
892
893                         sysfs_unlink_sibling(cursor);
894
895                         pos = &sd->s_children;
896                         while (n && *pos) {
897                                 struct sysfs_dirent *next = *pos;
898                                 if (sysfs_type(next))
899                                         n--;
900                                 pos = &(*pos)->s_sibling;
901                         }
902
903                         cursor->s_sibling = *pos;
904                         *pos = cursor;
905                 }
906
907                 mutex_unlock(&sysfs_mutex);
908         }
909
910         return offset;
911 }
912
913
914 /**
915  *      sysfs_make_shadowed_dir - Setup so a directory can be shadowed
916  *      @kobj:  object we're creating shadow of.
917  */
918
919 int sysfs_make_shadowed_dir(struct kobject *kobj,
920         void * (*follow_link)(struct dentry *, struct nameidata *))
921 {
922         struct inode *inode;
923         struct inode_operations *i_op;
924
925         inode = kobj->sd->s_dentry->d_inode;
926         if (inode->i_op != &sysfs_dir_inode_operations)
927                 return -EINVAL;
928
929         i_op = kmalloc(sizeof(*i_op), GFP_KERNEL);
930         if (!i_op)
931                 return -ENOMEM;
932
933         memcpy(i_op, &sysfs_dir_inode_operations, sizeof(*i_op));
934         i_op->follow_link = follow_link;
935
936         /* Locking of inode->i_op?
937          * Since setting i_op is a single word write and they
938          * are atomic we should be ok here.
939          */
940         inode->i_op = i_op;
941         return 0;
942 }
943
944 /**
945  *      sysfs_create_shadow_dir - create a shadow directory for an object.
946  *      @kobj:  object we're creating directory for.
947  *
948  *      sysfs_make_shadowed_dir must already have been called on this
949  *      directory.
950  */
951
952 struct sysfs_dirent *sysfs_create_shadow_dir(struct kobject *kobj)
953 {
954         struct dentry *dir = kobj->sd->s_dentry;
955         struct inode *inode = dir->d_inode;
956         struct dentry *parent = dir->d_parent;
957         struct sysfs_dirent *parent_sd = parent->d_fsdata;
958         struct dentry *shadow;
959         struct sysfs_dirent *sd;
960
961         sd = ERR_PTR(-EINVAL);
962         if (!sysfs_is_shadowed_inode(inode))
963                 goto out;
964
965         shadow = d_alloc(parent, &dir->d_name);
966         if (!shadow)
967                 goto nomem;
968
969         sd = sysfs_new_dirent("_SHADOW_", inode->i_mode, SYSFS_DIR);
970         if (!sd)
971                 goto nomem;
972         sd->s_elem.dir.kobj = kobj;
973         /* point to parent_sd but don't attach to it */
974         sd->s_parent = sysfs_get(parent_sd);
975         mutex_lock(&sysfs_mutex);
976         sysfs_attach_dirent(sd, NULL, shadow);
977         mutex_unlock(&sysfs_mutex);
978
979         d_instantiate(shadow, igrab(inode));
980         inc_nlink(inode);
981         inc_nlink(parent->d_inode);
982
983         dget(shadow);           /* Extra count - pin the dentry in core */
984
985 out:
986         return sd;
987 nomem:
988         dput(shadow);
989         sd = ERR_PTR(-ENOMEM);
990         goto out;
991 }
992
993 /**
994  *      sysfs_remove_shadow_dir - remove an object's directory.
995  *      @shadow_sd: sysfs_dirent of shadow directory
996  *
997  *      The only thing special about this is that we remove any files in
998  *      the directory before we remove the directory, and we've inlined
999  *      what used to be sysfs_rmdir() below, instead of calling separately.
1000  */
1001
1002 void sysfs_remove_shadow_dir(struct sysfs_dirent *shadow_sd)
1003 {
1004         __sysfs_remove_dir(shadow_sd);
1005 }
1006
1007 const struct file_operations sysfs_dir_operations = {
1008         .open           = sysfs_dir_open,
1009         .release        = sysfs_dir_close,
1010         .llseek         = sysfs_dir_lseek,
1011         .read           = generic_read_dir,
1012         .readdir        = sysfs_readdir,
1013 };