]> git.karo-electronics.de Git - karo-tx-linux.git/blob - fs/sysfs/dir.c
vfs: Lazily remove mounts on unlinked files and directories. v2
[karo-tx-linux.git] / fs / sysfs / dir.c
1 /*
2  * fs/sysfs/dir.c - sysfs core and dir operation implementation
3  *
4  * Copyright (c) 2001-3 Patrick Mochel
5  * Copyright (c) 2007 SUSE Linux Products GmbH
6  * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
7  *
8  * This file is released under the GPLv2.
9  *
10  * Please see Documentation/filesystems/sysfs.txt for more information.
11  */
12
13 #undef DEBUG
14
15 #include <linux/fs.h>
16 #include <linux/mount.h>
17 #include <linux/module.h>
18 #include <linux/kobject.h>
19 #include <linux/namei.h>
20 #include <linux/idr.h>
21 #include <linux/completion.h>
22 #include <linux/mutex.h>
23 #include <linux/slab.h>
24 #include <linux/security.h>
25 #include <linux/hash.h>
26 #include "sysfs.h"
27
28 DEFINE_MUTEX(sysfs_mutex);
29 DEFINE_SPINLOCK(sysfs_assoc_lock);
30
31 #define to_sysfs_dirent(X) rb_entry((X), struct sysfs_dirent, s_rb);
32
33 static DEFINE_SPINLOCK(sysfs_ino_lock);
34 static DEFINE_IDA(sysfs_ino_ida);
35
36 /**
37  *      sysfs_name_hash
38  *      @ns:   Namespace tag to hash
39  *      @name: Null terminated string to hash
40  *
41  *      Returns 31 bit hash of ns + name (so it fits in an off_t )
42  */
43 static unsigned int sysfs_name_hash(const void *ns, const char *name)
44 {
45         unsigned long hash = init_name_hash();
46         unsigned int len = strlen(name);
47         while (len--)
48                 hash = partial_name_hash(*name++, hash);
49         hash = (end_name_hash(hash) ^ hash_ptr((void *)ns, 31));
50         hash &= 0x7fffffffU;
51         /* Reserve hash numbers 0, 1 and INT_MAX for magic directory entries */
52         if (hash < 1)
53                 hash += 2;
54         if (hash >= INT_MAX)
55                 hash = INT_MAX - 1;
56         return hash;
57 }
58
59 static int sysfs_name_compare(unsigned int hash, const void *ns,
60         const char *name, const struct sysfs_dirent *sd)
61 {
62         if (hash != sd->s_hash)
63                 return hash - sd->s_hash;
64         if (ns != sd->s_ns)
65                 return ns - sd->s_ns;
66         return strcmp(name, sd->s_name);
67 }
68
69 static int sysfs_sd_compare(const struct sysfs_dirent *left,
70                             const struct sysfs_dirent *right)
71 {
72         return sysfs_name_compare(left->s_hash, left->s_ns, left->s_name,
73                                   right);
74 }
75
76 /**
77  *      sysfs_link_sibling - link sysfs_dirent into sibling rbtree
78  *      @sd: sysfs_dirent of interest
79  *
80  *      Link @sd into its sibling rbtree which starts from
81  *      sd->s_parent->s_dir.children.
82  *
83  *      Locking:
84  *      mutex_lock(sysfs_mutex)
85  *
86  *      RETURNS:
87  *      0 on susccess -EEXIST on failure.
88  */
89 static int sysfs_link_sibling(struct sysfs_dirent *sd)
90 {
91         struct rb_node **node = &sd->s_parent->s_dir.children.rb_node;
92         struct rb_node *parent = NULL;
93
94         if (sysfs_type(sd) == SYSFS_DIR)
95                 sd->s_parent->s_dir.subdirs++;
96
97         while (*node) {
98                 struct sysfs_dirent *pos;
99                 int result;
100
101                 pos = to_sysfs_dirent(*node);
102                 parent = *node;
103                 result = sysfs_sd_compare(sd, pos);
104                 if (result < 0)
105                         node = &pos->s_rb.rb_left;
106                 else if (result > 0)
107                         node = &pos->s_rb.rb_right;
108                 else
109                         return -EEXIST;
110         }
111         /* add new node and rebalance the tree */
112         rb_link_node(&sd->s_rb, parent, node);
113         rb_insert_color(&sd->s_rb, &sd->s_parent->s_dir.children);
114         return 0;
115 }
116
117 /**
118  *      sysfs_unlink_sibling - unlink sysfs_dirent from sibling rbtree
119  *      @sd: sysfs_dirent of interest
120  *
121  *      Unlink @sd from its sibling rbtree which starts from
122  *      sd->s_parent->s_dir.children.
123  *
124  *      Locking:
125  *      mutex_lock(sysfs_mutex)
126  */
127 static void sysfs_unlink_sibling(struct sysfs_dirent *sd)
128 {
129         if (sysfs_type(sd) == SYSFS_DIR)
130                 sd->s_parent->s_dir.subdirs--;
131
132         rb_erase(&sd->s_rb, &sd->s_parent->s_dir.children);
133 }
134
135 #ifdef CONFIG_DEBUG_LOCK_ALLOC
136
137 /* Test for attributes that want to ignore lockdep for read-locking */
138 static bool ignore_lockdep(struct sysfs_dirent *sd)
139 {
140         return sysfs_type(sd) == SYSFS_KOBJ_ATTR &&
141                         sd->s_attr.attr->ignore_lockdep;
142 }
143
144 #else
145
146 static inline bool ignore_lockdep(struct sysfs_dirent *sd)
147 {
148         return true;
149 }
150
151 #endif
152
153 /**
154  *      sysfs_get_active - get an active reference to sysfs_dirent
155  *      @sd: sysfs_dirent to get an active reference to
156  *
157  *      Get an active reference of @sd.  This function is noop if @sd
158  *      is NULL.
159  *
160  *      RETURNS:
161  *      Pointer to @sd on success, NULL on failure.
162  */
163 struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd)
164 {
165         if (unlikely(!sd))
166                 return NULL;
167
168         if (!atomic_inc_unless_negative(&sd->s_active))
169                 return NULL;
170
171         if (likely(!ignore_lockdep(sd)))
172                 rwsem_acquire_read(&sd->dep_map, 0, 1, _RET_IP_);
173         return sd;
174 }
175
176 /**
177  *      sysfs_put_active - put an active reference to sysfs_dirent
178  *      @sd: sysfs_dirent to put an active reference to
179  *
180  *      Put an active reference to @sd.  This function is noop if @sd
181  *      is NULL.
182  */
183 void sysfs_put_active(struct sysfs_dirent *sd)
184 {
185         int v;
186
187         if (unlikely(!sd))
188                 return;
189
190         if (likely(!ignore_lockdep(sd)))
191                 rwsem_release(&sd->dep_map, 1, _RET_IP_);
192         v = atomic_dec_return(&sd->s_active);
193         if (likely(v != SD_DEACTIVATED_BIAS))
194                 return;
195
196         /* atomic_dec_return() is a mb(), we'll always see the updated
197          * sd->u.completion.
198          */
199         complete(sd->u.completion);
200 }
201
202 /**
203  *      sysfs_deactivate - deactivate sysfs_dirent
204  *      @sd: sysfs_dirent to deactivate
205  *
206  *      Deny new active references and drain existing ones.
207  */
208 static void sysfs_deactivate(struct sysfs_dirent *sd)
209 {
210         DECLARE_COMPLETION_ONSTACK(wait);
211         int v;
212
213         BUG_ON(!(sd->s_flags & SYSFS_FLAG_REMOVED));
214
215         if (!(sysfs_type(sd) & SYSFS_ACTIVE_REF))
216                 return;
217
218         sd->u.completion = (void *)&wait;
219
220         rwsem_acquire(&sd->dep_map, 0, 0, _RET_IP_);
221         /* atomic_add_return() is a mb(), put_active() will always see
222          * the updated sd->u.completion.
223          */
224         v = atomic_add_return(SD_DEACTIVATED_BIAS, &sd->s_active);
225
226         if (v != SD_DEACTIVATED_BIAS) {
227                 lock_contended(&sd->dep_map, _RET_IP_);
228                 wait_for_completion(&wait);
229         }
230
231         lock_acquired(&sd->dep_map, _RET_IP_);
232         rwsem_release(&sd->dep_map, 1, _RET_IP_);
233 }
234
235 static int sysfs_alloc_ino(unsigned int *pino)
236 {
237         int ino, rc;
238
239  retry:
240         spin_lock(&sysfs_ino_lock);
241         rc = ida_get_new_above(&sysfs_ino_ida, 2, &ino);
242         spin_unlock(&sysfs_ino_lock);
243
244         if (rc == -EAGAIN) {
245                 if (ida_pre_get(&sysfs_ino_ida, GFP_KERNEL))
246                         goto retry;
247                 rc = -ENOMEM;
248         }
249
250         *pino = ino;
251         return rc;
252 }
253
254 static void sysfs_free_ino(unsigned int ino)
255 {
256         spin_lock(&sysfs_ino_lock);
257         ida_remove(&sysfs_ino_ida, ino);
258         spin_unlock(&sysfs_ino_lock);
259 }
260
261 void release_sysfs_dirent(struct sysfs_dirent *sd)
262 {
263         struct sysfs_dirent *parent_sd;
264
265  repeat:
266         /* Moving/renaming is always done while holding reference.
267          * sd->s_parent won't change beneath us.
268          */
269         parent_sd = sd->s_parent;
270
271         WARN(!(sd->s_flags & SYSFS_FLAG_REMOVED),
272                 "sysfs: free using entry: %s/%s\n",
273                 parent_sd ? parent_sd->s_name : "", sd->s_name);
274
275         if (sysfs_type(sd) == SYSFS_KOBJ_LINK)
276                 sysfs_put(sd->s_symlink.target_sd);
277         if (sysfs_type(sd) & SYSFS_COPY_NAME)
278                 kfree(sd->s_name);
279         if (sd->s_iattr && sd->s_iattr->ia_secdata)
280                 security_release_secctx(sd->s_iattr->ia_secdata,
281                                         sd->s_iattr->ia_secdata_len);
282         kfree(sd->s_iattr);
283         sysfs_free_ino(sd->s_ino);
284         kmem_cache_free(sysfs_dir_cachep, sd);
285
286         sd = parent_sd;
287         if (sd && atomic_dec_and_test(&sd->s_count))
288                 goto repeat;
289 }
290
291 static int sysfs_dentry_delete(const struct dentry *dentry)
292 {
293         struct sysfs_dirent *sd = dentry->d_fsdata;
294         return !(sd && !(sd->s_flags & SYSFS_FLAG_REMOVED));
295 }
296
297 static int sysfs_dentry_revalidate(struct dentry *dentry, unsigned int flags)
298 {
299         struct sysfs_dirent *sd;
300         int type;
301
302         if (flags & LOOKUP_RCU)
303                 return -ECHILD;
304
305         sd = dentry->d_fsdata;
306         mutex_lock(&sysfs_mutex);
307
308         /* The sysfs dirent has been deleted */
309         if (sd->s_flags & SYSFS_FLAG_REMOVED)
310                 goto out_bad;
311
312         /* The sysfs dirent has been moved? */
313         if (dentry->d_parent->d_fsdata != sd->s_parent)
314                 goto out_bad;
315
316         /* The sysfs dirent has been renamed */
317         if (strcmp(dentry->d_name.name, sd->s_name) != 0)
318                 goto out_bad;
319
320         /* The sysfs dirent has been moved to a different namespace */
321         type = KOBJ_NS_TYPE_NONE;
322         if (sd->s_parent) {
323                 type = sysfs_ns_type(sd->s_parent);
324                 if (type != KOBJ_NS_TYPE_NONE &&
325                                 sysfs_info(dentry->d_sb)->ns[type] != sd->s_ns)
326                         goto out_bad;
327         }
328
329         mutex_unlock(&sysfs_mutex);
330         return 1;
331 out_bad:
332         /* Remove the dentry from the dcache hashes.
333          * If this is a deleted dentry we use d_drop instead of d_delete
334          * so sysfs doesn't need to cope with negative dentries.
335          *
336          * If this is a dentry that has simply been renamed we
337          * use d_drop to remove it from the dcache lookup on its
338          * old parent.  If this dentry persists later when a lookup
339          * is performed at its new name the dentry will be readded
340          * to the dcache hashes.
341          */
342         mutex_unlock(&sysfs_mutex);
343         shrink_submounts_and_drop(dentry);
344
345         return 0;
346 }
347
348 static void sysfs_dentry_release(struct dentry *dentry)
349 {
350         sysfs_put(dentry->d_fsdata);
351 }
352
353 const struct dentry_operations sysfs_dentry_ops = {
354         .d_revalidate   = sysfs_dentry_revalidate,
355         .d_delete       = sysfs_dentry_delete,
356         .d_release      = sysfs_dentry_release,
357 };
358
359 struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)
360 {
361         char *dup_name = NULL;
362         struct sysfs_dirent *sd;
363
364         if (type & SYSFS_COPY_NAME) {
365                 name = dup_name = kstrdup(name, GFP_KERNEL);
366                 if (!name)
367                         return NULL;
368         }
369
370         sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL);
371         if (!sd)
372                 goto err_out1;
373
374         if (sysfs_alloc_ino(&sd->s_ino))
375                 goto err_out2;
376
377         atomic_set(&sd->s_count, 1);
378         atomic_set(&sd->s_active, 0);
379
380         sd->s_name = name;
381         sd->s_mode = mode;
382         sd->s_flags = type | SYSFS_FLAG_REMOVED;
383
384         return sd;
385
386  err_out2:
387         kmem_cache_free(sysfs_dir_cachep, sd);
388  err_out1:
389         kfree(dup_name);
390         return NULL;
391 }
392
393 /**
394  *      sysfs_addrm_start - prepare for sysfs_dirent add/remove
395  *      @acxt: pointer to sysfs_addrm_cxt to be used
396  *      @parent_sd: parent sysfs_dirent
397  *
398  *      This function is called when the caller is about to add or
399  *      remove sysfs_dirent under @parent_sd.  This function acquires
400  *      sysfs_mutex.  @acxt is used to keep and pass context to
401  *      other addrm functions.
402  *
403  *      LOCKING:
404  *      Kernel thread context (may sleep).  sysfs_mutex is locked on
405  *      return.
406  */
407 void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt,
408                        struct sysfs_dirent *parent_sd)
409 {
410         memset(acxt, 0, sizeof(*acxt));
411         acxt->parent_sd = parent_sd;
412
413         mutex_lock(&sysfs_mutex);
414 }
415
416 /**
417  *      __sysfs_add_one - add sysfs_dirent to parent without warning
418  *      @acxt: addrm context to use
419  *      @sd: sysfs_dirent to be added
420  *
421  *      Get @acxt->parent_sd and set sd->s_parent to it and increment
422  *      nlink of parent inode if @sd is a directory and link into the
423  *      children list of the parent.
424  *
425  *      This function should be called between calls to
426  *      sysfs_addrm_start() and sysfs_addrm_finish() and should be
427  *      passed the same @acxt as passed to sysfs_addrm_start().
428  *
429  *      LOCKING:
430  *      Determined by sysfs_addrm_start().
431  *
432  *      RETURNS:
433  *      0 on success, -EEXIST if entry with the given name already
434  *      exists.
435  */
436 int __sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
437 {
438         struct sysfs_inode_attrs *ps_iattr;
439         int ret;
440
441         if (!!sysfs_ns_type(acxt->parent_sd) != !!sd->s_ns) {
442                 WARN(1, KERN_WARNING "sysfs: ns %s in '%s' for '%s'\n",
443                         sysfs_ns_type(acxt->parent_sd) ? "required" : "invalid",
444                         acxt->parent_sd->s_name, sd->s_name);
445                 return -EINVAL;
446         }
447
448         sd->s_hash = sysfs_name_hash(sd->s_ns, sd->s_name);
449         sd->s_parent = sysfs_get(acxt->parent_sd);
450
451         ret = sysfs_link_sibling(sd);
452         if (ret)
453                 return ret;
454
455         /* Update timestamps on the parent */
456         ps_iattr = acxt->parent_sd->s_iattr;
457         if (ps_iattr) {
458                 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
459                 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
460         }
461
462         /* Mark the entry added into directory tree */
463         sd->s_flags &= ~SYSFS_FLAG_REMOVED;
464
465         return 0;
466 }
467
468 /**
469  *      sysfs_pathname - return full path to sysfs dirent
470  *      @sd: sysfs_dirent whose path we want
471  *      @path: caller allocated buffer of size PATH_MAX
472  *
473  *      Gives the name "/" to the sysfs_root entry; any path returned
474  *      is relative to wherever sysfs is mounted.
475  */
476 static char *sysfs_pathname(struct sysfs_dirent *sd, char *path)
477 {
478         if (sd->s_parent) {
479                 sysfs_pathname(sd->s_parent, path);
480                 strlcat(path, "/", PATH_MAX);
481         }
482         strlcat(path, sd->s_name, PATH_MAX);
483         return path;
484 }
485
486 /**
487  *      sysfs_add_one - add sysfs_dirent to parent
488  *      @acxt: addrm context to use
489  *      @sd: sysfs_dirent to be added
490  *
491  *      Get @acxt->parent_sd and set sd->s_parent to it and increment
492  *      nlink of parent inode if @sd is a directory and link into the
493  *      children list of the parent.
494  *
495  *      This function should be called between calls to
496  *      sysfs_addrm_start() and sysfs_addrm_finish() and should be
497  *      passed the same @acxt as passed to sysfs_addrm_start().
498  *
499  *      LOCKING:
500  *      Determined by sysfs_addrm_start().
501  *
502  *      RETURNS:
503  *      0 on success, -EEXIST if entry with the given name already
504  *      exists.
505  */
506 int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
507 {
508         int ret;
509
510         ret = __sysfs_add_one(acxt, sd);
511         if (ret == -EEXIST) {
512                 char *path = kzalloc(PATH_MAX, GFP_KERNEL);
513                 WARN(1, KERN_WARNING
514                      "sysfs: cannot create duplicate filename '%s'\n",
515                      (path == NULL) ? sd->s_name
516                                     : (sysfs_pathname(acxt->parent_sd, path),
517                                        strlcat(path, "/", PATH_MAX),
518                                        strlcat(path, sd->s_name, PATH_MAX),
519                                        path));
520                 kfree(path);
521         }
522
523         return ret;
524 }
525
526 /**
527  *      sysfs_remove_one - remove sysfs_dirent from parent
528  *      @acxt: addrm context to use
529  *      @sd: sysfs_dirent to be removed
530  *
531  *      Mark @sd removed and drop nlink of parent inode if @sd is a
532  *      directory.  @sd is unlinked from the children list.
533  *
534  *      This function should be called between calls to
535  *      sysfs_addrm_start() and sysfs_addrm_finish() and should be
536  *      passed the same @acxt as passed to sysfs_addrm_start().
537  *
538  *      LOCKING:
539  *      Determined by sysfs_addrm_start().
540  */
541 void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
542 {
543         struct sysfs_inode_attrs *ps_iattr;
544
545         BUG_ON(sd->s_flags & SYSFS_FLAG_REMOVED);
546
547         sysfs_unlink_sibling(sd);
548
549         /* Update timestamps on the parent */
550         ps_iattr = acxt->parent_sd->s_iattr;
551         if (ps_iattr) {
552                 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
553                 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
554         }
555
556         sd->s_flags |= SYSFS_FLAG_REMOVED;
557         sd->u.removed_list = acxt->removed;
558         acxt->removed = sd;
559 }
560
561 /**
562  *      sysfs_addrm_finish - finish up sysfs_dirent add/remove
563  *      @acxt: addrm context to finish up
564  *
565  *      Finish up sysfs_dirent add/remove.  Resources acquired by
566  *      sysfs_addrm_start() are released and removed sysfs_dirents are
567  *      cleaned up.
568  *
569  *      LOCKING:
570  *      sysfs_mutex is released.
571  */
572 void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt)
573 {
574         /* release resources acquired by sysfs_addrm_start() */
575         mutex_unlock(&sysfs_mutex);
576
577         /* kill removed sysfs_dirents */
578         while (acxt->removed) {
579                 struct sysfs_dirent *sd = acxt->removed;
580
581                 acxt->removed = sd->u.removed_list;
582
583                 sysfs_deactivate(sd);
584                 unmap_bin_file(sd);
585                 sysfs_put(sd);
586         }
587 }
588
589 /**
590  *      sysfs_find_dirent - find sysfs_dirent with the given name
591  *      @parent_sd: sysfs_dirent to search under
592  *      @name: name to look for
593  *
594  *      Look for sysfs_dirent with name @name under @parent_sd.
595  *
596  *      LOCKING:
597  *      mutex_lock(sysfs_mutex)
598  *
599  *      RETURNS:
600  *      Pointer to sysfs_dirent if found, NULL if not.
601  */
602 struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
603                                        const void *ns,
604                                        const unsigned char *name)
605 {
606         struct rb_node *node = parent_sd->s_dir.children.rb_node;
607         unsigned int hash;
608
609         if (!!sysfs_ns_type(parent_sd) != !!ns) {
610                 WARN(1, KERN_WARNING "sysfs: ns %s in '%s' for '%s'\n",
611                         sysfs_ns_type(parent_sd) ? "required" : "invalid",
612                         parent_sd->s_name, name);
613                 return NULL;
614         }
615
616         hash = sysfs_name_hash(ns, name);
617         while (node) {
618                 struct sysfs_dirent *sd;
619                 int result;
620
621                 sd = to_sysfs_dirent(node);
622                 result = sysfs_name_compare(hash, ns, name, sd);
623                 if (result < 0)
624                         node = node->rb_left;
625                 else if (result > 0)
626                         node = node->rb_right;
627                 else
628                         return sd;
629         }
630         return NULL;
631 }
632
633 /**
634  *      sysfs_get_dirent - find and get sysfs_dirent with the given name
635  *      @parent_sd: sysfs_dirent to search under
636  *      @name: name to look for
637  *
638  *      Look for sysfs_dirent with name @name under @parent_sd and get
639  *      it if found.
640  *
641  *      LOCKING:
642  *      Kernel thread context (may sleep).  Grabs sysfs_mutex.
643  *
644  *      RETURNS:
645  *      Pointer to sysfs_dirent if found, NULL if not.
646  */
647 struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
648                                       const void *ns,
649                                       const unsigned char *name)
650 {
651         struct sysfs_dirent *sd;
652
653         mutex_lock(&sysfs_mutex);
654         sd = sysfs_find_dirent(parent_sd, ns, name);
655         sysfs_get(sd);
656         mutex_unlock(&sysfs_mutex);
657
658         return sd;
659 }
660 EXPORT_SYMBOL_GPL(sysfs_get_dirent);
661
662 static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd,
663         enum kobj_ns_type type, const void *ns, const char *name,
664         struct sysfs_dirent **p_sd)
665 {
666         umode_t mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO;
667         struct sysfs_addrm_cxt acxt;
668         struct sysfs_dirent *sd;
669         int rc;
670
671         /* allocate */
672         sd = sysfs_new_dirent(name, mode, SYSFS_DIR);
673         if (!sd)
674                 return -ENOMEM;
675
676         sd->s_flags |= (type << SYSFS_NS_TYPE_SHIFT);
677         sd->s_ns = ns;
678         sd->s_dir.kobj = kobj;
679
680         /* link in */
681         sysfs_addrm_start(&acxt, parent_sd);
682         rc = sysfs_add_one(&acxt, sd);
683         sysfs_addrm_finish(&acxt);
684
685         if (rc == 0)
686                 *p_sd = sd;
687         else
688                 sysfs_put(sd);
689
690         return rc;
691 }
692
693 int sysfs_create_subdir(struct kobject *kobj, const char *name,
694                         struct sysfs_dirent **p_sd)
695 {
696         return create_dir(kobj, kobj->sd,
697                           KOBJ_NS_TYPE_NONE, NULL, name, p_sd);
698 }
699
700 /**
701  *      sysfs_read_ns_type: return associated ns_type
702  *      @kobj: the kobject being queried
703  *
704  *      Each kobject can be tagged with exactly one namespace type
705  *      (i.e. network or user).  Return the ns_type associated with
706  *      this object if any
707  */
708 static enum kobj_ns_type sysfs_read_ns_type(struct kobject *kobj)
709 {
710         const struct kobj_ns_type_operations *ops;
711         enum kobj_ns_type type;
712
713         ops = kobj_child_ns_ops(kobj);
714         if (!ops)
715                 return KOBJ_NS_TYPE_NONE;
716
717         type = ops->type;
718         BUG_ON(type <= KOBJ_NS_TYPE_NONE);
719         BUG_ON(type >= KOBJ_NS_TYPES);
720         BUG_ON(!kobj_ns_type_registered(type));
721
722         return type;
723 }
724
725 /**
726  *      sysfs_create_dir - create a directory for an object.
727  *      @kobj:          object we're creating directory for.
728  */
729 int sysfs_create_dir(struct kobject *kobj)
730 {
731         enum kobj_ns_type type;
732         struct sysfs_dirent *parent_sd, *sd;
733         const void *ns = NULL;
734         int error = 0;
735
736         BUG_ON(!kobj);
737
738         if (kobj->parent)
739                 parent_sd = kobj->parent->sd;
740         else
741                 parent_sd = &sysfs_root;
742
743         if (!parent_sd)
744                 return -ENOENT;
745
746         if (sysfs_ns_type(parent_sd))
747                 ns = kobj->ktype->namespace(kobj);
748         type = sysfs_read_ns_type(kobj);
749
750         error = create_dir(kobj, parent_sd, type, ns, kobject_name(kobj), &sd);
751         if (!error)
752                 kobj->sd = sd;
753         return error;
754 }
755
756 static struct dentry *sysfs_lookup(struct inode *dir, struct dentry *dentry,
757                                    unsigned int flags)
758 {
759         struct dentry *ret = NULL;
760         struct dentry *parent = dentry->d_parent;
761         struct sysfs_dirent *parent_sd = parent->d_fsdata;
762         struct sysfs_dirent *sd;
763         struct inode *inode;
764         enum kobj_ns_type type;
765         const void *ns;
766
767         mutex_lock(&sysfs_mutex);
768
769         type = sysfs_ns_type(parent_sd);
770         ns = sysfs_info(dir->i_sb)->ns[type];
771
772         sd = sysfs_find_dirent(parent_sd, ns, dentry->d_name.name);
773
774         /* no such entry */
775         if (!sd) {
776                 ret = ERR_PTR(-ENOENT);
777                 goto out_unlock;
778         }
779         dentry->d_fsdata = sysfs_get(sd);
780
781         /* attach dentry and inode */
782         inode = sysfs_get_inode(dir->i_sb, sd);
783         if (!inode) {
784                 ret = ERR_PTR(-ENOMEM);
785                 goto out_unlock;
786         }
787
788         /* instantiate and hash dentry */
789         ret = d_materialise_unique(dentry, inode);
790  out_unlock:
791         mutex_unlock(&sysfs_mutex);
792         return ret;
793 }
794
795 const struct inode_operations sysfs_dir_inode_operations = {
796         .lookup         = sysfs_lookup,
797         .permission     = sysfs_permission,
798         .setattr        = sysfs_setattr,
799         .getattr        = sysfs_getattr,
800         .setxattr       = sysfs_setxattr,
801 };
802
803 static void remove_dir(struct sysfs_dirent *sd)
804 {
805         struct sysfs_addrm_cxt acxt;
806
807         sysfs_addrm_start(&acxt, sd->s_parent);
808         sysfs_remove_one(&acxt, sd);
809         sysfs_addrm_finish(&acxt);
810 }
811
812 void sysfs_remove_subdir(struct sysfs_dirent *sd)
813 {
814         remove_dir(sd);
815 }
816
817
818 static void __sysfs_remove_dir(struct sysfs_dirent *dir_sd)
819 {
820         struct sysfs_addrm_cxt acxt;
821         struct rb_node *pos;
822
823         if (!dir_sd)
824                 return;
825
826         pr_debug("sysfs %s: removing dir\n", dir_sd->s_name);
827         sysfs_addrm_start(&acxt, dir_sd);
828         pos = rb_first(&dir_sd->s_dir.children);
829         while (pos) {
830                 struct sysfs_dirent *sd = to_sysfs_dirent(pos);
831                 pos = rb_next(pos);
832                 if (sysfs_type(sd) != SYSFS_DIR)
833                         sysfs_remove_one(&acxt, sd);
834         }
835         sysfs_addrm_finish(&acxt);
836
837         remove_dir(dir_sd);
838 }
839
840 /**
841  *      sysfs_remove_dir - remove an object's directory.
842  *      @kobj:  object.
843  *
844  *      The only thing special about this is that we remove any files in
845  *      the directory before we remove the directory, and we've inlined
846  *      what used to be sysfs_rmdir() below, instead of calling separately.
847  */
848
849 void sysfs_remove_dir(struct kobject *kobj)
850 {
851         struct sysfs_dirent *sd = kobj->sd;
852
853         spin_lock(&sysfs_assoc_lock);
854         kobj->sd = NULL;
855         spin_unlock(&sysfs_assoc_lock);
856
857         __sysfs_remove_dir(sd);
858 }
859
860 int sysfs_rename(struct sysfs_dirent *sd,
861         struct sysfs_dirent *new_parent_sd, const void *new_ns,
862         const char *new_name)
863 {
864         int error;
865
866         mutex_lock(&sysfs_mutex);
867
868         error = 0;
869         if ((sd->s_parent == new_parent_sd) && (sd->s_ns == new_ns) &&
870             (strcmp(sd->s_name, new_name) == 0))
871                 goto out;       /* nothing to rename */
872
873         error = -EEXIST;
874         if (sysfs_find_dirent(new_parent_sd, new_ns, new_name))
875                 goto out;
876
877         /* rename sysfs_dirent */
878         if (strcmp(sd->s_name, new_name) != 0) {
879                 error = -ENOMEM;
880                 new_name = kstrdup(new_name, GFP_KERNEL);
881                 if (!new_name)
882                         goto out;
883
884                 kfree(sd->s_name);
885                 sd->s_name = new_name;
886         }
887
888         /*
889          * Move to the appropriate place in the appropriate directories rbtree.
890          */
891         sysfs_unlink_sibling(sd);
892         sysfs_get(new_parent_sd);
893         sysfs_put(sd->s_parent);
894         sd->s_ns = new_ns;
895         sd->s_hash = sysfs_name_hash(sd->s_ns, sd->s_name);
896         sd->s_parent = new_parent_sd;
897         sysfs_link_sibling(sd);
898
899         error = 0;
900  out:
901         mutex_unlock(&sysfs_mutex);
902         return error;
903 }
904
905 int sysfs_rename_dir(struct kobject *kobj, const char *new_name)
906 {
907         struct sysfs_dirent *parent_sd = kobj->sd->s_parent;
908         const void *new_ns = NULL;
909
910         if (sysfs_ns_type(parent_sd))
911                 new_ns = kobj->ktype->namespace(kobj);
912
913         return sysfs_rename(kobj->sd, parent_sd, new_ns, new_name);
914 }
915
916 int sysfs_move_dir(struct kobject *kobj, struct kobject *new_parent_kobj)
917 {
918         struct sysfs_dirent *sd = kobj->sd;
919         struct sysfs_dirent *new_parent_sd;
920         const void *new_ns = NULL;
921
922         BUG_ON(!sd->s_parent);
923         if (sysfs_ns_type(sd->s_parent))
924                 new_ns = kobj->ktype->namespace(kobj);
925         new_parent_sd = new_parent_kobj && new_parent_kobj->sd ?
926                 new_parent_kobj->sd : &sysfs_root;
927
928         return sysfs_rename(sd, new_parent_sd, new_ns, sd->s_name);
929 }
930
931 /* Relationship between s_mode and the DT_xxx types */
932 static inline unsigned char dt_type(struct sysfs_dirent *sd)
933 {
934         return (sd->s_mode >> 12) & 15;
935 }
936
937 static int sysfs_dir_release(struct inode *inode, struct file *filp)
938 {
939         sysfs_put(filp->private_data);
940         return 0;
941 }
942
943 static struct sysfs_dirent *sysfs_dir_pos(const void *ns,
944         struct sysfs_dirent *parent_sd, loff_t hash, struct sysfs_dirent *pos)
945 {
946         if (pos) {
947                 int valid = !(pos->s_flags & SYSFS_FLAG_REMOVED) &&
948                         pos->s_parent == parent_sd &&
949                         hash == pos->s_hash;
950                 sysfs_put(pos);
951                 if (!valid)
952                         pos = NULL;
953         }
954         if (!pos && (hash > 1) && (hash < INT_MAX)) {
955                 struct rb_node *node = parent_sd->s_dir.children.rb_node;
956                 while (node) {
957                         pos = to_sysfs_dirent(node);
958
959                         if (hash < pos->s_hash)
960                                 node = node->rb_left;
961                         else if (hash > pos->s_hash)
962                                 node = node->rb_right;
963                         else
964                                 break;
965                 }
966         }
967         /* Skip over entries in the wrong namespace */
968         while (pos && pos->s_ns != ns) {
969                 struct rb_node *node = rb_next(&pos->s_rb);
970                 if (!node)
971                         pos = NULL;
972                 else
973                         pos = to_sysfs_dirent(node);
974         }
975         return pos;
976 }
977
978 static struct sysfs_dirent *sysfs_dir_next_pos(const void *ns,
979         struct sysfs_dirent *parent_sd, ino_t ino, struct sysfs_dirent *pos)
980 {
981         pos = sysfs_dir_pos(ns, parent_sd, ino, pos);
982         if (pos)
983                 do {
984                         struct rb_node *node = rb_next(&pos->s_rb);
985                         if (!node)
986                                 pos = NULL;
987                         else
988                                 pos = to_sysfs_dirent(node);
989                 } while (pos && pos->s_ns != ns);
990         return pos;
991 }
992
993 static int sysfs_readdir(struct file *file, struct dir_context *ctx)
994 {
995         struct dentry *dentry = file->f_path.dentry;
996         struct sysfs_dirent *parent_sd = dentry->d_fsdata;
997         struct sysfs_dirent *pos = file->private_data;
998         enum kobj_ns_type type;
999         const void *ns;
1000
1001         type = sysfs_ns_type(parent_sd);
1002         ns = sysfs_info(dentry->d_sb)->ns[type];
1003
1004         if (!dir_emit_dots(file, ctx))
1005                 return 0;
1006         mutex_lock(&sysfs_mutex);
1007         for (pos = sysfs_dir_pos(ns, parent_sd, ctx->pos, pos);
1008              pos;
1009              pos = sysfs_dir_next_pos(ns, parent_sd, ctx->pos, pos)) {
1010                 const char *name = pos->s_name;
1011                 unsigned int type = dt_type(pos);
1012                 int len = strlen(name);
1013                 ino_t ino = pos->s_ino;
1014                 ctx->pos = pos->s_hash;
1015                 file->private_data = sysfs_get(pos);
1016
1017                 mutex_unlock(&sysfs_mutex);
1018                 if (!dir_emit(ctx, name, len, ino, type))
1019                         return 0;
1020                 mutex_lock(&sysfs_mutex);
1021         }
1022         mutex_unlock(&sysfs_mutex);
1023         file->private_data = NULL;
1024         ctx->pos = INT_MAX;
1025         return 0;
1026 }
1027
1028 static loff_t sysfs_dir_llseek(struct file *file, loff_t offset, int whence)
1029 {
1030         struct inode *inode = file_inode(file);
1031         loff_t ret;
1032
1033         mutex_lock(&inode->i_mutex);
1034         ret = generic_file_llseek(file, offset, whence);
1035         mutex_unlock(&inode->i_mutex);
1036
1037         return ret;
1038 }
1039
1040 const struct file_operations sysfs_dir_operations = {
1041         .read           = generic_read_dir,
1042         .iterate        = sysfs_readdir,
1043         .release        = sysfs_dir_release,
1044         .llseek         = sysfs_dir_llseek,
1045 };