sysfs, kernfs: remove sysfs_add_one()
[platform/adaptation/renesas_rcar/renesas_kernel.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_symlink_target_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  *      @name: Null terminated string to hash
39  *      @ns:   Namespace tag 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 char *name, const void *ns)
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 char *name,
60                               const void *ns, 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_name, left->s_ns,
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 /**
136  *      sysfs_get_active - get an active reference to sysfs_dirent
137  *      @sd: sysfs_dirent to get an active reference to
138  *
139  *      Get an active reference of @sd.  This function is noop if @sd
140  *      is NULL.
141  *
142  *      RETURNS:
143  *      Pointer to @sd on success, NULL on failure.
144  */
145 struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd)
146 {
147         if (unlikely(!sd))
148                 return NULL;
149
150         if (!atomic_inc_unless_negative(&sd->s_active))
151                 return NULL;
152
153         if (likely(!sysfs_ignore_lockdep(sd)))
154                 rwsem_acquire_read(&sd->dep_map, 0, 1, _RET_IP_);
155         return sd;
156 }
157
158 /**
159  *      sysfs_put_active - put an active reference to sysfs_dirent
160  *      @sd: sysfs_dirent to put an active reference to
161  *
162  *      Put an active reference to @sd.  This function is noop if @sd
163  *      is NULL.
164  */
165 void sysfs_put_active(struct sysfs_dirent *sd)
166 {
167         int v;
168
169         if (unlikely(!sd))
170                 return;
171
172         if (likely(!sysfs_ignore_lockdep(sd)))
173                 rwsem_release(&sd->dep_map, 1, _RET_IP_);
174         v = atomic_dec_return(&sd->s_active);
175         if (likely(v != SD_DEACTIVATED_BIAS))
176                 return;
177
178         /* atomic_dec_return() is a mb(), we'll always see the updated
179          * sd->u.completion.
180          */
181         complete(sd->u.completion);
182 }
183
184 /**
185  *      sysfs_deactivate - deactivate sysfs_dirent
186  *      @sd: sysfs_dirent to deactivate
187  *
188  *      Deny new active references and drain existing ones.
189  */
190 static void sysfs_deactivate(struct sysfs_dirent *sd)
191 {
192         DECLARE_COMPLETION_ONSTACK(wait);
193         int v;
194
195         BUG_ON(!(sd->s_flags & SYSFS_FLAG_REMOVED));
196
197         if (!(sysfs_type(sd) & SYSFS_ACTIVE_REF))
198                 return;
199
200         sd->u.completion = (void *)&wait;
201
202         rwsem_acquire(&sd->dep_map, 0, 0, _RET_IP_);
203         /* atomic_add_return() is a mb(), put_active() will always see
204          * the updated sd->u.completion.
205          */
206         v = atomic_add_return(SD_DEACTIVATED_BIAS, &sd->s_active);
207
208         if (v != SD_DEACTIVATED_BIAS) {
209                 lock_contended(&sd->dep_map, _RET_IP_);
210                 wait_for_completion(&wait);
211         }
212
213         lock_acquired(&sd->dep_map, _RET_IP_);
214         rwsem_release(&sd->dep_map, 1, _RET_IP_);
215 }
216
217 static int sysfs_alloc_ino(unsigned int *pino)
218 {
219         int ino, rc;
220
221  retry:
222         spin_lock(&sysfs_ino_lock);
223         rc = ida_get_new_above(&sysfs_ino_ida, 2, &ino);
224         spin_unlock(&sysfs_ino_lock);
225
226         if (rc == -EAGAIN) {
227                 if (ida_pre_get(&sysfs_ino_ida, GFP_KERNEL))
228                         goto retry;
229                 rc = -ENOMEM;
230         }
231
232         *pino = ino;
233         return rc;
234 }
235
236 static void sysfs_free_ino(unsigned int ino)
237 {
238         spin_lock(&sysfs_ino_lock);
239         ida_remove(&sysfs_ino_ida, ino);
240         spin_unlock(&sysfs_ino_lock);
241 }
242
243 void release_sysfs_dirent(struct sysfs_dirent *sd)
244 {
245         struct sysfs_dirent *parent_sd;
246
247  repeat:
248         /* Moving/renaming is always done while holding reference.
249          * sd->s_parent won't change beneath us.
250          */
251         parent_sd = sd->s_parent;
252
253         WARN(!(sd->s_flags & SYSFS_FLAG_REMOVED),
254                 "sysfs: free using entry: %s/%s\n",
255                 parent_sd ? parent_sd->s_name : "", sd->s_name);
256
257         if (sysfs_type(sd) == SYSFS_KOBJ_LINK)
258                 sysfs_put(sd->s_symlink.target_sd);
259         if (sysfs_type(sd) & SYSFS_COPY_NAME)
260                 kfree(sd->s_name);
261         if (sd->s_iattr && sd->s_iattr->ia_secdata)
262                 security_release_secctx(sd->s_iattr->ia_secdata,
263                                         sd->s_iattr->ia_secdata_len);
264         kfree(sd->s_iattr);
265         sysfs_free_ino(sd->s_ino);
266         kmem_cache_free(sysfs_dir_cachep, sd);
267
268         sd = parent_sd;
269         if (sd && atomic_dec_and_test(&sd->s_count))
270                 goto repeat;
271 }
272
273 static int sysfs_dentry_delete(const struct dentry *dentry)
274 {
275         struct sysfs_dirent *sd = dentry->d_fsdata;
276         return !(sd && !(sd->s_flags & SYSFS_FLAG_REMOVED));
277 }
278
279 static int sysfs_dentry_revalidate(struct dentry *dentry, unsigned int flags)
280 {
281         struct sysfs_dirent *sd;
282
283         if (flags & LOOKUP_RCU)
284                 return -ECHILD;
285
286         sd = dentry->d_fsdata;
287         mutex_lock(&sysfs_mutex);
288
289         /* The sysfs dirent has been deleted */
290         if (sd->s_flags & SYSFS_FLAG_REMOVED)
291                 goto out_bad;
292
293         /* The sysfs dirent has been moved? */
294         if (dentry->d_parent->d_fsdata != sd->s_parent)
295                 goto out_bad;
296
297         /* The sysfs dirent has been renamed */
298         if (strcmp(dentry->d_name.name, sd->s_name) != 0)
299                 goto out_bad;
300
301         /* The sysfs dirent has been moved to a different namespace */
302         if (sd->s_parent && (sd->s_parent->s_flags & SYSFS_FLAG_NS) &&
303             sysfs_info(dentry->d_sb)->ns != sd->s_ns)
304                 goto out_bad;
305
306         mutex_unlock(&sysfs_mutex);
307 out_valid:
308         return 1;
309 out_bad:
310         /* Remove the dentry from the dcache hashes.
311          * If this is a deleted dentry we use d_drop instead of d_delete
312          * so sysfs doesn't need to cope with negative dentries.
313          *
314          * If this is a dentry that has simply been renamed we
315          * use d_drop to remove it from the dcache lookup on its
316          * old parent.  If this dentry persists later when a lookup
317          * is performed at its new name the dentry will be readded
318          * to the dcache hashes.
319          */
320         mutex_unlock(&sysfs_mutex);
321
322         /* If we have submounts we must allow the vfs caches
323          * to lie about the state of the filesystem to prevent
324          * leaks and other nasty things.
325          */
326         if (check_submounts_and_drop(dentry) != 0)
327                 goto out_valid;
328
329         return 0;
330 }
331
332 static void sysfs_dentry_release(struct dentry *dentry)
333 {
334         sysfs_put(dentry->d_fsdata);
335 }
336
337 const struct dentry_operations sysfs_dentry_ops = {
338         .d_revalidate   = sysfs_dentry_revalidate,
339         .d_delete       = sysfs_dentry_delete,
340         .d_release      = sysfs_dentry_release,
341 };
342
343 struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)
344 {
345         char *dup_name = NULL;
346         struct sysfs_dirent *sd;
347
348         if (type & SYSFS_COPY_NAME) {
349                 name = dup_name = kstrdup(name, GFP_KERNEL);
350                 if (!name)
351                         return NULL;
352         }
353
354         sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL);
355         if (!sd)
356                 goto err_out1;
357
358         if (sysfs_alloc_ino(&sd->s_ino))
359                 goto err_out2;
360
361         atomic_set(&sd->s_count, 1);
362         atomic_set(&sd->s_active, 0);
363
364         sd->s_name = name;
365         sd->s_mode = mode;
366         sd->s_flags = type | SYSFS_FLAG_REMOVED;
367
368         return sd;
369
370  err_out2:
371         kmem_cache_free(sysfs_dir_cachep, sd);
372  err_out1:
373         kfree(dup_name);
374         return NULL;
375 }
376
377 /**
378  *      sysfs_addrm_start - prepare for sysfs_dirent add/remove
379  *      @acxt: pointer to sysfs_addrm_cxt to be used
380  *
381  *      This function is called when the caller is about to add or remove
382  *      sysfs_dirent.  This function acquires sysfs_mutex.  @acxt is used
383  *      to keep and pass context to other addrm functions.
384  *
385  *      LOCKING:
386  *      Kernel thread context (may sleep).  sysfs_mutex is locked on
387  *      return.
388  */
389 void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt)
390         __acquires(sysfs_mutex)
391 {
392         memset(acxt, 0, sizeof(*acxt));
393
394         mutex_lock(&sysfs_mutex);
395 }
396
397 /**
398  *      sysfs_add_one - add sysfs_dirent to parent without warning
399  *      @acxt: addrm context to use
400  *      @sd: sysfs_dirent to be added
401  *      @parent_sd: the parent sysfs_dirent to add @sd to
402  *
403  *      Get @parent_sd and set @sd->s_parent to it and increment nlink of
404  *      the parent inode if @sd is a directory and link into the children
405  *      list of the parent.
406  *
407  *      This function should be called between calls to
408  *      sysfs_addrm_start() and sysfs_addrm_finish() and should be
409  *      passed the same @acxt as passed to sysfs_addrm_start().
410  *
411  *      LOCKING:
412  *      Determined by sysfs_addrm_start().
413  *
414  *      RETURNS:
415  *      0 on success, -EEXIST if entry with the given name already
416  *      exists.
417  */
418 int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd,
419                   struct sysfs_dirent *parent_sd)
420 {
421         bool has_ns = parent_sd->s_flags & SYSFS_FLAG_NS;
422         struct sysfs_inode_attrs *ps_iattr;
423         int ret;
424
425         if (has_ns != (bool)sd->s_ns) {
426                 WARN(1, KERN_WARNING "sysfs: ns %s in '%s' for '%s'\n",
427                      has_ns ? "required" : "invalid",
428                      parent_sd->s_name, sd->s_name);
429                 return -EINVAL;
430         }
431
432         if (sysfs_type(parent_sd) != SYSFS_DIR)
433                 return -EINVAL;
434
435         sd->s_hash = sysfs_name_hash(sd->s_name, sd->s_ns);
436         sd->s_parent = sysfs_get(parent_sd);
437
438         ret = sysfs_link_sibling(sd);
439         if (ret)
440                 return ret;
441
442         /* Update timestamps on the parent */
443         ps_iattr = parent_sd->s_iattr;
444         if (ps_iattr) {
445                 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
446                 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
447         }
448
449         /* Mark the entry added into directory tree */
450         sd->s_flags &= ~SYSFS_FLAG_REMOVED;
451
452         return 0;
453 }
454
455 /**
456  *      sysfs_pathname - return full path to sysfs dirent
457  *      @sd: sysfs_dirent whose path we want
458  *      @path: caller allocated buffer of size PATH_MAX
459  *
460  *      Gives the name "/" to the sysfs_root entry; any path returned
461  *      is relative to wherever sysfs is mounted.
462  */
463 static char *sysfs_pathname(struct sysfs_dirent *sd, char *path)
464 {
465         if (sd->s_parent) {
466                 sysfs_pathname(sd->s_parent, path);
467                 strlcat(path, "/", PATH_MAX);
468         }
469         strlcat(path, sd->s_name, PATH_MAX);
470         return path;
471 }
472
473 void sysfs_warn_dup(struct sysfs_dirent *parent, const char *name)
474 {
475         char *path;
476
477         path = kzalloc(PATH_MAX, GFP_KERNEL);
478         if (path) {
479                 sysfs_pathname(parent, path);
480                 strlcat(path, "/", PATH_MAX);
481                 strlcat(path, name, PATH_MAX);
482         }
483
484         WARN(1, KERN_WARNING "sysfs: cannot create duplicate filename '%s'\n",
485              path ? path : name);
486
487         kfree(path);
488 }
489
490 /**
491  *      sysfs_remove_one - remove sysfs_dirent from parent
492  *      @acxt: addrm context to use
493  *      @sd: sysfs_dirent to be removed
494  *
495  *      Mark @sd removed and drop nlink of parent inode if @sd is a
496  *      directory.  @sd is unlinked from the children list.
497  *
498  *      This function should be called between calls to
499  *      sysfs_addrm_start() and sysfs_addrm_finish() and should be
500  *      passed the same @acxt as passed to sysfs_addrm_start().
501  *
502  *      LOCKING:
503  *      Determined by sysfs_addrm_start().
504  */
505 static void sysfs_remove_one(struct sysfs_addrm_cxt *acxt,
506                              struct sysfs_dirent *sd)
507 {
508         struct sysfs_inode_attrs *ps_iattr;
509
510         /*
511          * Removal can be called multiple times on the same node.  Only the
512          * first invocation is effective and puts the base ref.
513          */
514         if (sd->s_flags & SYSFS_FLAG_REMOVED)
515                 return;
516
517         sysfs_unlink_sibling(sd);
518
519         /* Update timestamps on the parent */
520         ps_iattr = sd->s_parent->s_iattr;
521         if (ps_iattr) {
522                 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
523                 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
524         }
525
526         sd->s_flags |= SYSFS_FLAG_REMOVED;
527         sd->u.removed_list = acxt->removed;
528         acxt->removed = sd;
529 }
530
531 /**
532  *      sysfs_addrm_finish - finish up sysfs_dirent add/remove
533  *      @acxt: addrm context to finish up
534  *
535  *      Finish up sysfs_dirent add/remove.  Resources acquired by
536  *      sysfs_addrm_start() are released and removed sysfs_dirents are
537  *      cleaned up.
538  *
539  *      LOCKING:
540  *      sysfs_mutex is released.
541  */
542 void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt)
543         __releases(sysfs_mutex)
544 {
545         /* release resources acquired by sysfs_addrm_start() */
546         mutex_unlock(&sysfs_mutex);
547
548         /* kill removed sysfs_dirents */
549         while (acxt->removed) {
550                 struct sysfs_dirent *sd = acxt->removed;
551
552                 acxt->removed = sd->u.removed_list;
553
554                 sysfs_deactivate(sd);
555                 sysfs_unmap_bin_file(sd);
556                 sysfs_put(sd);
557         }
558 }
559
560 /**
561  *      sysfs_find_dirent - find sysfs_dirent with the given name
562  *      @parent_sd: sysfs_dirent to search under
563  *      @name: name to look for
564  *      @ns: the namespace tag to use
565  *
566  *      Look for sysfs_dirent with name @name under @parent_sd.
567  *
568  *      LOCKING:
569  *      mutex_lock(sysfs_mutex)
570  *
571  *      RETURNS:
572  *      Pointer to sysfs_dirent if found, NULL if not.
573  */
574 struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
575                                        const unsigned char *name,
576                                        const void *ns)
577 {
578         struct rb_node *node = parent_sd->s_dir.children.rb_node;
579         bool has_ns = parent_sd->s_flags & SYSFS_FLAG_NS;
580         unsigned int hash;
581
582         if (has_ns != (bool)ns) {
583                 WARN(1, KERN_WARNING "sysfs: ns %s in '%s' for '%s'\n",
584                      has_ns ? "required" : "invalid",
585                      parent_sd->s_name, name);
586                 return NULL;
587         }
588
589         hash = sysfs_name_hash(name, ns);
590         while (node) {
591                 struct sysfs_dirent *sd;
592                 int result;
593
594                 sd = to_sysfs_dirent(node);
595                 result = sysfs_name_compare(hash, name, ns, sd);
596                 if (result < 0)
597                         node = node->rb_left;
598                 else if (result > 0)
599                         node = node->rb_right;
600                 else
601                         return sd;
602         }
603         return NULL;
604 }
605
606 /**
607  *      sysfs_get_dirent_ns - find and get sysfs_dirent with the given name
608  *      @parent_sd: sysfs_dirent to search under
609  *      @name: name to look for
610  *      @ns: the namespace tag to use
611  *
612  *      Look for sysfs_dirent with name @name under @parent_sd and get
613  *      it if found.
614  *
615  *      LOCKING:
616  *      Kernel thread context (may sleep).  Grabs sysfs_mutex.
617  *
618  *      RETURNS:
619  *      Pointer to sysfs_dirent if found, NULL if not.
620  */
621 struct sysfs_dirent *sysfs_get_dirent_ns(struct sysfs_dirent *parent_sd,
622                                          const unsigned char *name,
623                                          const void *ns)
624 {
625         struct sysfs_dirent *sd;
626
627         mutex_lock(&sysfs_mutex);
628         sd = sysfs_find_dirent(parent_sd, name, ns);
629         sysfs_get(sd);
630         mutex_unlock(&sysfs_mutex);
631
632         return sd;
633 }
634 EXPORT_SYMBOL_GPL(sysfs_get_dirent_ns);
635
636 /**
637  * kernfs_create_dir_ns - create a directory
638  * @parent: parent in which to create a new directory
639  * @name: name of the new directory
640  * @priv: opaque data associated with the new directory
641  * @ns: optional namespace tag of the directory
642  *
643  * Returns the created node on success, ERR_PTR() value on failure.
644  */
645 struct sysfs_dirent *kernfs_create_dir_ns(struct sysfs_dirent *parent,
646                                           const char *name, void *priv,
647                                           const void *ns)
648 {
649         umode_t mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO;
650         struct sysfs_addrm_cxt acxt;
651         struct sysfs_dirent *sd;
652         int rc;
653
654         /* allocate */
655         sd = sysfs_new_dirent(name, mode, SYSFS_DIR);
656         if (!sd)
657                 return ERR_PTR(-ENOMEM);
658
659         sd->s_ns = ns;
660         sd->priv = priv;
661
662         /* link in */
663         sysfs_addrm_start(&acxt);
664         rc = sysfs_add_one(&acxt, sd, parent);
665         sysfs_addrm_finish(&acxt);
666
667         if (!rc)
668                 return sd;
669
670         sysfs_put(sd);
671         return ERR_PTR(rc);
672 }
673
674 /**
675  * sysfs_create_dir_ns - create a directory for an object with a namespace tag
676  * @kobj: object we're creating directory for
677  * @ns: the namespace tag to use
678  */
679 int sysfs_create_dir_ns(struct kobject *kobj, const void *ns)
680 {
681         struct sysfs_dirent *parent_sd, *sd;
682
683         BUG_ON(!kobj);
684
685         if (kobj->parent)
686                 parent_sd = kobj->parent->sd;
687         else
688                 parent_sd = &sysfs_root;
689
690         if (!parent_sd)
691                 return -ENOENT;
692
693         sd = kernfs_create_dir_ns(parent_sd, kobject_name(kobj), kobj, ns);
694         if (IS_ERR(sd)) {
695                 if (PTR_ERR(sd) == -EEXIST)
696                         sysfs_warn_dup(parent_sd, kobject_name(kobj));
697                 return PTR_ERR(sd);
698         }
699
700         kobj->sd = sd;
701         return 0;
702 }
703
704 static struct dentry *sysfs_lookup(struct inode *dir, struct dentry *dentry,
705                                    unsigned int flags)
706 {
707         struct dentry *ret = NULL;
708         struct dentry *parent = dentry->d_parent;
709         struct sysfs_dirent *parent_sd = parent->d_fsdata;
710         struct sysfs_dirent *sd;
711         struct inode *inode;
712         const void *ns = NULL;
713
714         mutex_lock(&sysfs_mutex);
715
716         if (parent_sd->s_flags & SYSFS_FLAG_NS)
717                 ns = sysfs_info(dir->i_sb)->ns;
718
719         sd = sysfs_find_dirent(parent_sd, dentry->d_name.name, ns);
720
721         /* no such entry */
722         if (!sd) {
723                 ret = ERR_PTR(-ENOENT);
724                 goto out_unlock;
725         }
726         dentry->d_fsdata = sysfs_get(sd);
727
728         /* attach dentry and inode */
729         inode = sysfs_get_inode(dir->i_sb, sd);
730         if (!inode) {
731                 ret = ERR_PTR(-ENOMEM);
732                 goto out_unlock;
733         }
734
735         /* instantiate and hash dentry */
736         ret = d_materialise_unique(dentry, inode);
737  out_unlock:
738         mutex_unlock(&sysfs_mutex);
739         return ret;
740 }
741
742 const struct inode_operations sysfs_dir_inode_operations = {
743         .lookup         = sysfs_lookup,
744         .permission     = sysfs_permission,
745         .setattr        = sysfs_setattr,
746         .getattr        = sysfs_getattr,
747         .setxattr       = sysfs_setxattr,
748 };
749
750 static struct sysfs_dirent *sysfs_leftmost_descendant(struct sysfs_dirent *pos)
751 {
752         struct sysfs_dirent *last;
753
754         while (true) {
755                 struct rb_node *rbn;
756
757                 last = pos;
758
759                 if (sysfs_type(pos) != SYSFS_DIR)
760                         break;
761
762                 rbn = rb_first(&pos->s_dir.children);
763                 if (!rbn)
764                         break;
765
766                 pos = to_sysfs_dirent(rbn);
767         }
768
769         return last;
770 }
771
772 /**
773  * sysfs_next_descendant_post - find the next descendant for post-order walk
774  * @pos: the current position (%NULL to initiate traversal)
775  * @root: sysfs_dirent whose descendants to walk
776  *
777  * Find the next descendant to visit for post-order traversal of @root's
778  * descendants.  @root is included in the iteration and the last node to be
779  * visited.
780  */
781 static struct sysfs_dirent *sysfs_next_descendant_post(struct sysfs_dirent *pos,
782                                                        struct sysfs_dirent *root)
783 {
784         struct rb_node *rbn;
785
786         lockdep_assert_held(&sysfs_mutex);
787
788         /* if first iteration, visit leftmost descendant which may be root */
789         if (!pos)
790                 return sysfs_leftmost_descendant(root);
791
792         /* if we visited @root, we're done */
793         if (pos == root)
794                 return NULL;
795
796         /* if there's an unvisited sibling, visit its leftmost descendant */
797         rbn = rb_next(&pos->s_rb);
798         if (rbn)
799                 return sysfs_leftmost_descendant(to_sysfs_dirent(rbn));
800
801         /* no sibling left, visit parent */
802         return pos->s_parent;
803 }
804
805 static void __kernfs_remove(struct sysfs_addrm_cxt *acxt,
806                             struct sysfs_dirent *sd)
807 {
808         struct sysfs_dirent *pos, *next;
809
810         if (!sd)
811                 return;
812
813         pr_debug("sysfs %s: removing\n", sd->s_name);
814
815         next = NULL;
816         do {
817                 pos = next;
818                 next = sysfs_next_descendant_post(pos, sd);
819                 if (pos)
820                         sysfs_remove_one(acxt, pos);
821         } while (next);
822 }
823
824 /**
825  * kernfs_remove - remove a sysfs_dirent recursively
826  * @sd: the sysfs_dirent to remove
827  *
828  * Remove @sd along with all its subdirectories and files.
829  */
830 void kernfs_remove(struct sysfs_dirent *sd)
831 {
832         struct sysfs_addrm_cxt acxt;
833
834         sysfs_addrm_start(&acxt);
835         __kernfs_remove(&acxt, sd);
836         sysfs_addrm_finish(&acxt);
837 }
838
839 /**
840  * kernfs_remove_by_name_ns - find a sysfs_dirent by name and remove it
841  * @dir_sd: parent of the target
842  * @name: name of the sysfs_dirent to remove
843  * @ns: namespace tag of the sysfs_dirent to remove
844  *
845  * Look for the sysfs_dirent with @name and @ns under @dir_sd and remove
846  * it.  Returns 0 on success, -ENOENT if such entry doesn't exist.
847  */
848 int kernfs_remove_by_name_ns(struct sysfs_dirent *dir_sd, const char *name,
849                              const void *ns)
850 {
851         struct sysfs_addrm_cxt acxt;
852         struct sysfs_dirent *sd;
853
854         if (!dir_sd) {
855                 WARN(1, KERN_WARNING "sysfs: can not remove '%s', no directory\n",
856                         name);
857                 return -ENOENT;
858         }
859
860         sysfs_addrm_start(&acxt);
861
862         sd = sysfs_find_dirent(dir_sd, name, ns);
863         if (sd)
864                 __kernfs_remove(&acxt, sd);
865
866         sysfs_addrm_finish(&acxt);
867
868         if (sd)
869                 return 0;
870         else
871                 return -ENOENT;
872 }
873
874 /**
875  *      sysfs_remove_dir - remove an object's directory.
876  *      @kobj:  object.
877  *
878  *      The only thing special about this is that we remove any files in
879  *      the directory before we remove the directory, and we've inlined
880  *      what used to be sysfs_rmdir() below, instead of calling separately.
881  */
882 void sysfs_remove_dir(struct kobject *kobj)
883 {
884         struct sysfs_dirent *sd = kobj->sd;
885
886         /*
887          * In general, kboject owner is responsible for ensuring removal
888          * doesn't race with other operations and sysfs doesn't provide any
889          * protection; however, when @kobj is used as a symlink target, the
890          * symlinking entity usually doesn't own @kobj and thus has no
891          * control over removal.  @kobj->sd may be removed anytime and
892          * symlink code may end up dereferencing an already freed sd.
893          *
894          * sysfs_symlink_target_lock synchronizes @kobj->sd disassociation
895          * against symlink operations so that symlink code can safely
896          * dereference @kobj->sd.
897          */
898         spin_lock(&sysfs_symlink_target_lock);
899         kobj->sd = NULL;
900         spin_unlock(&sysfs_symlink_target_lock);
901
902         if (sd) {
903                 WARN_ON_ONCE(sysfs_type(sd) != SYSFS_DIR);
904                 kernfs_remove(sd);
905         }
906 }
907
908 /**
909  * kernfs_rename_ns - move and rename a kernfs_node
910  * @sd: target node
911  * @new_parent: new parent to put @sd under
912  * @new_name: new name
913  * @new_ns: new namespace tag
914  */
915 int kernfs_rename_ns(struct sysfs_dirent *sd, struct sysfs_dirent *new_parent,
916                      const char *new_name, const void *new_ns)
917 {
918         int error;
919
920         mutex_lock(&sysfs_mutex);
921
922         error = 0;
923         if ((sd->s_parent == new_parent) && (sd->s_ns == new_ns) &&
924             (strcmp(sd->s_name, new_name) == 0))
925                 goto out;       /* nothing to rename */
926
927         error = -EEXIST;
928         if (sysfs_find_dirent(new_parent, new_name, new_ns))
929                 goto out;
930
931         /* rename sysfs_dirent */
932         if (strcmp(sd->s_name, new_name) != 0) {
933                 error = -ENOMEM;
934                 new_name = kstrdup(new_name, GFP_KERNEL);
935                 if (!new_name)
936                         goto out;
937
938                 kfree(sd->s_name);
939                 sd->s_name = new_name;
940         }
941
942         /*
943          * Move to the appropriate place in the appropriate directories rbtree.
944          */
945         sysfs_unlink_sibling(sd);
946         sysfs_get(new_parent);
947         sysfs_put(sd->s_parent);
948         sd->s_ns = new_ns;
949         sd->s_hash = sysfs_name_hash(sd->s_name, sd->s_ns);
950         sd->s_parent = new_parent;
951         sysfs_link_sibling(sd);
952
953         error = 0;
954  out:
955         mutex_unlock(&sysfs_mutex);
956         return error;
957 }
958
959 int sysfs_rename_dir_ns(struct kobject *kobj, const char *new_name,
960                         const void *new_ns)
961 {
962         struct sysfs_dirent *parent_sd = kobj->sd->s_parent;
963
964         return kernfs_rename_ns(kobj->sd, parent_sd, new_name, new_ns);
965 }
966
967 int sysfs_move_dir_ns(struct kobject *kobj, struct kobject *new_parent_kobj,
968                       const void *new_ns)
969 {
970         struct sysfs_dirent *sd = kobj->sd;
971         struct sysfs_dirent *new_parent_sd;
972
973         BUG_ON(!sd->s_parent);
974         new_parent_sd = new_parent_kobj && new_parent_kobj->sd ?
975                 new_parent_kobj->sd : &sysfs_root;
976
977         return kernfs_rename_ns(sd, new_parent_sd, sd->s_name, new_ns);
978 }
979
980 /**
981  * kernfs_enable_ns - enable namespace under a directory
982  * @sd: directory of interest, should be empty
983  *
984  * This is to be called right after @sd is created to enable namespace
985  * under it.  All children of @sd must have non-NULL namespace tags and
986  * only the ones which match the super_block's tag will be visible.
987  */
988 void kernfs_enable_ns(struct sysfs_dirent *sd)
989 {
990         WARN_ON_ONCE(sysfs_type(sd) != SYSFS_DIR);
991         WARN_ON_ONCE(!RB_EMPTY_ROOT(&sd->s_dir.children));
992         sd->s_flags |= SYSFS_FLAG_NS;
993 }
994
995 /* Relationship between s_mode and the DT_xxx types */
996 static inline unsigned char dt_type(struct sysfs_dirent *sd)
997 {
998         return (sd->s_mode >> 12) & 15;
999 }
1000
1001 static int sysfs_dir_release(struct inode *inode, struct file *filp)
1002 {
1003         sysfs_put(filp->private_data);
1004         return 0;
1005 }
1006
1007 static struct sysfs_dirent *sysfs_dir_pos(const void *ns,
1008         struct sysfs_dirent *parent_sd, loff_t hash, struct sysfs_dirent *pos)
1009 {
1010         if (pos) {
1011                 int valid = !(pos->s_flags & SYSFS_FLAG_REMOVED) &&
1012                         pos->s_parent == parent_sd &&
1013                         hash == pos->s_hash;
1014                 sysfs_put(pos);
1015                 if (!valid)
1016                         pos = NULL;
1017         }
1018         if (!pos && (hash > 1) && (hash < INT_MAX)) {
1019                 struct rb_node *node = parent_sd->s_dir.children.rb_node;
1020                 while (node) {
1021                         pos = to_sysfs_dirent(node);
1022
1023                         if (hash < pos->s_hash)
1024                                 node = node->rb_left;
1025                         else if (hash > pos->s_hash)
1026                                 node = node->rb_right;
1027                         else
1028                                 break;
1029                 }
1030         }
1031         /* Skip over entries in the wrong namespace */
1032         while (pos && pos->s_ns != ns) {
1033                 struct rb_node *node = rb_next(&pos->s_rb);
1034                 if (!node)
1035                         pos = NULL;
1036                 else
1037                         pos = to_sysfs_dirent(node);
1038         }
1039         return pos;
1040 }
1041
1042 static struct sysfs_dirent *sysfs_dir_next_pos(const void *ns,
1043         struct sysfs_dirent *parent_sd, ino_t ino, struct sysfs_dirent *pos)
1044 {
1045         pos = sysfs_dir_pos(ns, parent_sd, ino, pos);
1046         if (pos)
1047                 do {
1048                         struct rb_node *node = rb_next(&pos->s_rb);
1049                         if (!node)
1050                                 pos = NULL;
1051                         else
1052                                 pos = to_sysfs_dirent(node);
1053                 } while (pos && pos->s_ns != ns);
1054         return pos;
1055 }
1056
1057 static int sysfs_readdir(struct file *file, struct dir_context *ctx)
1058 {
1059         struct dentry *dentry = file->f_path.dentry;
1060         struct sysfs_dirent *parent_sd = dentry->d_fsdata;
1061         struct sysfs_dirent *pos = file->private_data;
1062         const void *ns = NULL;
1063
1064         if (!dir_emit_dots(file, ctx))
1065                 return 0;
1066         mutex_lock(&sysfs_mutex);
1067
1068         if (parent_sd->s_flags & SYSFS_FLAG_NS)
1069                 ns = sysfs_info(dentry->d_sb)->ns;
1070
1071         for (pos = sysfs_dir_pos(ns, parent_sd, ctx->pos, pos);
1072              pos;
1073              pos = sysfs_dir_next_pos(ns, parent_sd, ctx->pos, pos)) {
1074                 const char *name = pos->s_name;
1075                 unsigned int type = dt_type(pos);
1076                 int len = strlen(name);
1077                 ino_t ino = pos->s_ino;
1078                 ctx->pos = pos->s_hash;
1079                 file->private_data = sysfs_get(pos);
1080
1081                 mutex_unlock(&sysfs_mutex);
1082                 if (!dir_emit(ctx, name, len, ino, type))
1083                         return 0;
1084                 mutex_lock(&sysfs_mutex);
1085         }
1086         mutex_unlock(&sysfs_mutex);
1087         file->private_data = NULL;
1088         ctx->pos = INT_MAX;
1089         return 0;
1090 }
1091
1092 static loff_t sysfs_dir_llseek(struct file *file, loff_t offset, int whence)
1093 {
1094         struct inode *inode = file_inode(file);
1095         loff_t ret;
1096
1097         mutex_lock(&inode->i_mutex);
1098         ret = generic_file_llseek(file, offset, whence);
1099         mutex_unlock(&inode->i_mutex);
1100
1101         return ret;
1102 }
1103
1104 const struct file_operations sysfs_dir_operations = {
1105         .read           = generic_read_dir,
1106         .iterate        = sysfs_readdir,
1107         .release        = sysfs_dir_release,
1108         .llseek         = sysfs_dir_llseek,
1109 };