]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - fs/kernfs/dir.c
a347792c2e5a1b60e410433f1c392be21ae7ed67
[karo-tx-linux.git] / fs / kernfs / dir.c
1 /*
2  * fs/kernfs/dir.c - kernfs directory implementation
3  *
4  * Copyright (c) 2001-3 Patrick Mochel
5  * Copyright (c) 2007 SUSE Linux Products GmbH
6  * Copyright (c) 2007, 2013 Tejun Heo <tj@kernel.org>
7  *
8  * This file is released under the GPLv2.
9  */
10
11 #include <linux/sched.h>
12 #include <linux/fs.h>
13 #include <linux/namei.h>
14 #include <linux/idr.h>
15 #include <linux/slab.h>
16 #include <linux/security.h>
17 #include <linux/hash.h>
18
19 #include "kernfs-internal.h"
20
21 DEFINE_MUTEX(kernfs_mutex);
22 static DEFINE_SPINLOCK(kernfs_rename_lock);     /* kn->parent and ->name */
23 static char kernfs_pr_cont_buf[PATH_MAX];       /* protected by rename_lock */
24
25 #define rb_to_kn(X) rb_entry((X), struct kernfs_node, rb)
26
27 static bool kernfs_active(struct kernfs_node *kn)
28 {
29         lockdep_assert_held(&kernfs_mutex);
30         return atomic_read(&kn->active) >= 0;
31 }
32
33 static bool kernfs_lockdep(struct kernfs_node *kn)
34 {
35 #ifdef CONFIG_DEBUG_LOCK_ALLOC
36         return kn->flags & KERNFS_LOCKDEP;
37 #else
38         return false;
39 #endif
40 }
41
42 static int kernfs_name_locked(struct kernfs_node *kn, char *buf, size_t buflen)
43 {
44         return strlcpy(buf, kn->parent ? kn->name : "/", buflen);
45 }
46
47 static char * __must_check kernfs_path_locked(struct kernfs_node *kn, char *buf,
48                                               size_t buflen)
49 {
50         char *p = buf + buflen;
51         int len;
52
53         *--p = '\0';
54
55         do {
56                 len = strlen(kn->name);
57                 if (p - buf < len + 1) {
58                         buf[0] = '\0';
59                         p = NULL;
60                         break;
61                 }
62                 p -= len;
63                 memcpy(p, kn->name, len);
64                 *--p = '/';
65                 kn = kn->parent;
66         } while (kn && kn->parent);
67
68         return p;
69 }
70
71 /**
72  * kernfs_name - obtain the name of a given node
73  * @kn: kernfs_node of interest
74  * @buf: buffer to copy @kn's name into
75  * @buflen: size of @buf
76  *
77  * Copies the name of @kn into @buf of @buflen bytes.  The behavior is
78  * similar to strlcpy().  It returns the length of @kn's name and if @buf
79  * isn't long enough, it's filled upto @buflen-1 and nul terminated.
80  *
81  * This function can be called from any context.
82  */
83 int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen)
84 {
85         unsigned long flags;
86         int ret;
87
88         spin_lock_irqsave(&kernfs_rename_lock, flags);
89         ret = kernfs_name_locked(kn, buf, buflen);
90         spin_unlock_irqrestore(&kernfs_rename_lock, flags);
91         return ret;
92 }
93
94 /**
95  * kernfs_path - build full path of a given node
96  * @kn: kernfs_node of interest
97  * @buf: buffer to copy @kn's name into
98  * @buflen: size of @buf
99  *
100  * Builds and returns the full path of @kn in @buf of @buflen bytes.  The
101  * path is built from the end of @buf so the returned pointer usually
102  * doesn't match @buf.  If @buf isn't long enough, @buf is nul terminated
103  * and %NULL is returned.
104  */
105 char *kernfs_path(struct kernfs_node *kn, char *buf, size_t buflen)
106 {
107         unsigned long flags;
108         char *p;
109
110         spin_lock_irqsave(&kernfs_rename_lock, flags);
111         p = kernfs_path_locked(kn, buf, buflen);
112         spin_unlock_irqrestore(&kernfs_rename_lock, flags);
113         return p;
114 }
115
116 /**
117  * pr_cont_kernfs_name - pr_cont name of a kernfs_node
118  * @kn: kernfs_node of interest
119  *
120  * This function can be called from any context.
121  */
122 void pr_cont_kernfs_name(struct kernfs_node *kn)
123 {
124         unsigned long flags;
125
126         spin_lock_irqsave(&kernfs_rename_lock, flags);
127
128         kernfs_name_locked(kn, kernfs_pr_cont_buf, sizeof(kernfs_pr_cont_buf));
129         pr_cont("%s", kernfs_pr_cont_buf);
130
131         spin_unlock_irqrestore(&kernfs_rename_lock, flags);
132 }
133
134 /**
135  * pr_cont_kernfs_path - pr_cont path of a kernfs_node
136  * @kn: kernfs_node of interest
137  *
138  * This function can be called from any context.
139  */
140 void pr_cont_kernfs_path(struct kernfs_node *kn)
141 {
142         unsigned long flags;
143         char *p;
144
145         spin_lock_irqsave(&kernfs_rename_lock, flags);
146
147         p = kernfs_path_locked(kn, kernfs_pr_cont_buf,
148                                sizeof(kernfs_pr_cont_buf));
149         if (p)
150                 pr_cont("%s", p);
151         else
152                 pr_cont("<name too long>");
153
154         spin_unlock_irqrestore(&kernfs_rename_lock, flags);
155 }
156
157 /**
158  * kernfs_get_parent - determine the parent node and pin it
159  * @kn: kernfs_node of interest
160  *
161  * Determines @kn's parent, pins and returns it.  This function can be
162  * called from any context.
163  */
164 struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
165 {
166         struct kernfs_node *parent;
167         unsigned long flags;
168
169         spin_lock_irqsave(&kernfs_rename_lock, flags);
170         parent = kn->parent;
171         kernfs_get(parent);
172         spin_unlock_irqrestore(&kernfs_rename_lock, flags);
173
174         return parent;
175 }
176
177 /**
178  *      kernfs_name_hash
179  *      @name: Null terminated string to hash
180  *      @ns:   Namespace tag to hash
181  *
182  *      Returns 31 bit hash of ns + name (so it fits in an off_t )
183  */
184 static unsigned int kernfs_name_hash(const char *name, const void *ns)
185 {
186         unsigned long hash = init_name_hash();
187         unsigned int len = strlen(name);
188         while (len--)
189                 hash = partial_name_hash(*name++, hash);
190         hash = (end_name_hash(hash) ^ hash_ptr((void *)ns, 31));
191         hash &= 0x7fffffffU;
192         /* Reserve hash numbers 0, 1 and INT_MAX for magic directory entries */
193         if (hash < 1)
194                 hash += 2;
195         if (hash >= INT_MAX)
196                 hash = INT_MAX - 1;
197         return hash;
198 }
199
200 static int kernfs_name_compare(unsigned int hash, const char *name,
201                                const void *ns, const struct kernfs_node *kn)
202 {
203         if (hash != kn->hash)
204                 return hash - kn->hash;
205         if (ns != kn->ns)
206                 return ns - kn->ns;
207         return strcmp(name, kn->name);
208 }
209
210 static int kernfs_sd_compare(const struct kernfs_node *left,
211                              const struct kernfs_node *right)
212 {
213         return kernfs_name_compare(left->hash, left->name, left->ns, right);
214 }
215
216 /**
217  *      kernfs_link_sibling - link kernfs_node into sibling rbtree
218  *      @kn: kernfs_node of interest
219  *
220  *      Link @kn into its sibling rbtree which starts from
221  *      @kn->parent->dir.children.
222  *
223  *      Locking:
224  *      mutex_lock(kernfs_mutex)
225  *
226  *      RETURNS:
227  *      0 on susccess -EEXIST on failure.
228  */
229 static int kernfs_link_sibling(struct kernfs_node *kn)
230 {
231         struct rb_node **node = &kn->parent->dir.children.rb_node;
232         struct rb_node *parent = NULL;
233
234         if (kernfs_type(kn) == KERNFS_DIR)
235                 kn->parent->dir.subdirs++;
236
237         while (*node) {
238                 struct kernfs_node *pos;
239                 int result;
240
241                 pos = rb_to_kn(*node);
242                 parent = *node;
243                 result = kernfs_sd_compare(kn, pos);
244                 if (result < 0)
245                         node = &pos->rb.rb_left;
246                 else if (result > 0)
247                         node = &pos->rb.rb_right;
248                 else
249                         return -EEXIST;
250         }
251         /* add new node and rebalance the tree */
252         rb_link_node(&kn->rb, parent, node);
253         rb_insert_color(&kn->rb, &kn->parent->dir.children);
254         return 0;
255 }
256
257 /**
258  *      kernfs_unlink_sibling - unlink kernfs_node from sibling rbtree
259  *      @kn: kernfs_node of interest
260  *
261  *      Try to unlink @kn from its sibling rbtree which starts from
262  *      kn->parent->dir.children.  Returns %true if @kn was actually
263  *      removed, %false if @kn wasn't on the rbtree.
264  *
265  *      Locking:
266  *      mutex_lock(kernfs_mutex)
267  */
268 static bool kernfs_unlink_sibling(struct kernfs_node *kn)
269 {
270         if (RB_EMPTY_NODE(&kn->rb))
271                 return false;
272
273         if (kernfs_type(kn) == KERNFS_DIR)
274                 kn->parent->dir.subdirs--;
275
276         rb_erase(&kn->rb, &kn->parent->dir.children);
277         RB_CLEAR_NODE(&kn->rb);
278         return true;
279 }
280
281 /**
282  *      kernfs_get_active - get an active reference to kernfs_node
283  *      @kn: kernfs_node to get an active reference to
284  *
285  *      Get an active reference of @kn.  This function is noop if @kn
286  *      is NULL.
287  *
288  *      RETURNS:
289  *      Pointer to @kn on success, NULL on failure.
290  */
291 struct kernfs_node *kernfs_get_active(struct kernfs_node *kn)
292 {
293         if (unlikely(!kn))
294                 return NULL;
295
296         if (!atomic_inc_unless_negative(&kn->active))
297                 return NULL;
298
299         if (kernfs_lockdep(kn))
300                 rwsem_acquire_read(&kn->dep_map, 0, 1, _RET_IP_);
301         return kn;
302 }
303
304 /**
305  *      kernfs_put_active - put an active reference to kernfs_node
306  *      @kn: kernfs_node to put an active reference to
307  *
308  *      Put an active reference to @kn.  This function is noop if @kn
309  *      is NULL.
310  */
311 void kernfs_put_active(struct kernfs_node *kn)
312 {
313         struct kernfs_root *root = kernfs_root(kn);
314         int v;
315
316         if (unlikely(!kn))
317                 return;
318
319         if (kernfs_lockdep(kn))
320                 rwsem_release(&kn->dep_map, 1, _RET_IP_);
321         v = atomic_dec_return(&kn->active);
322         if (likely(v != KN_DEACTIVATED_BIAS))
323                 return;
324
325         wake_up_all(&root->deactivate_waitq);
326 }
327
328 /**
329  * kernfs_drain - drain kernfs_node
330  * @kn: kernfs_node to drain
331  *
332  * Drain existing usages and nuke all existing mmaps of @kn.  Mutiple
333  * removers may invoke this function concurrently on @kn and all will
334  * return after draining is complete.
335  */
336 static void kernfs_drain(struct kernfs_node *kn)
337         __releases(&kernfs_mutex) __acquires(&kernfs_mutex)
338 {
339         struct kernfs_root *root = kernfs_root(kn);
340
341         lockdep_assert_held(&kernfs_mutex);
342         WARN_ON_ONCE(kernfs_active(kn));
343
344         mutex_unlock(&kernfs_mutex);
345
346         if (kernfs_lockdep(kn)) {
347                 rwsem_acquire(&kn->dep_map, 0, 0, _RET_IP_);
348                 if (atomic_read(&kn->active) != KN_DEACTIVATED_BIAS)
349                         lock_contended(&kn->dep_map, _RET_IP_);
350         }
351
352         /* but everyone should wait for draining */
353         wait_event(root->deactivate_waitq,
354                    atomic_read(&kn->active) == KN_DEACTIVATED_BIAS);
355
356         if (kernfs_lockdep(kn)) {
357                 lock_acquired(&kn->dep_map, _RET_IP_);
358                 rwsem_release(&kn->dep_map, 1, _RET_IP_);
359         }
360
361         kernfs_unmap_bin_file(kn);
362
363         mutex_lock(&kernfs_mutex);
364 }
365
366 /**
367  * kernfs_get - get a reference count on a kernfs_node
368  * @kn: the target kernfs_node
369  */
370 void kernfs_get(struct kernfs_node *kn)
371 {
372         if (kn) {
373                 WARN_ON(!atomic_read(&kn->count));
374                 atomic_inc(&kn->count);
375         }
376 }
377 EXPORT_SYMBOL_GPL(kernfs_get);
378
379 /**
380  * kernfs_put - put a reference count on a kernfs_node
381  * @kn: the target kernfs_node
382  *
383  * Put a reference count of @kn and destroy it if it reached zero.
384  */
385 void kernfs_put(struct kernfs_node *kn)
386 {
387         struct kernfs_node *parent;
388         struct kernfs_root *root;
389
390         if (!kn || !atomic_dec_and_test(&kn->count))
391                 return;
392         root = kernfs_root(kn);
393  repeat:
394         /*
395          * Moving/renaming is always done while holding reference.
396          * kn->parent won't change beneath us.
397          */
398         parent = kn->parent;
399
400         WARN_ONCE(atomic_read(&kn->active) != KN_DEACTIVATED_BIAS,
401                   "kernfs_put: %s/%s: released with incorrect active_ref %d\n",
402                   parent ? parent->name : "", kn->name, atomic_read(&kn->active));
403
404         if (kernfs_type(kn) == KERNFS_LINK)
405                 kernfs_put(kn->symlink.target_kn);
406         if (!(kn->flags & KERNFS_STATIC_NAME))
407                 kfree(kn->name);
408         if (kn->iattr) {
409                 if (kn->iattr->ia_secdata)
410                         security_release_secctx(kn->iattr->ia_secdata,
411                                                 kn->iattr->ia_secdata_len);
412                 simple_xattrs_free(&kn->iattr->xattrs);
413         }
414         kfree(kn->iattr);
415         ida_simple_remove(&root->ino_ida, kn->ino);
416         kmem_cache_free(kernfs_node_cache, kn);
417
418         kn = parent;
419         if (kn) {
420                 if (atomic_dec_and_test(&kn->count))
421                         goto repeat;
422         } else {
423                 /* just released the root kn, free @root too */
424                 ida_destroy(&root->ino_ida);
425                 kfree(root);
426         }
427 }
428 EXPORT_SYMBOL_GPL(kernfs_put);
429
430 static int kernfs_dop_revalidate(struct dentry *dentry, unsigned int flags)
431 {
432         struct kernfs_node *kn;
433
434         if (flags & LOOKUP_RCU)
435                 return -ECHILD;
436
437         /* Always perform fresh lookup for negatives */
438         if (!dentry->d_inode)
439                 goto out_bad_unlocked;
440
441         kn = dentry->d_fsdata;
442         mutex_lock(&kernfs_mutex);
443
444         /* The kernfs node has been deactivated */
445         if (!kernfs_active(kn))
446                 goto out_bad;
447
448         /* The kernfs node has been moved? */
449         if (dentry->d_parent->d_fsdata != kn->parent)
450                 goto out_bad;
451
452         /* The kernfs node has been renamed */
453         if (strcmp(dentry->d_name.name, kn->name) != 0)
454                 goto out_bad;
455
456         /* The kernfs node has been moved to a different namespace */
457         if (kn->parent && kernfs_ns_enabled(kn->parent) &&
458             kernfs_info(dentry->d_sb)->ns != kn->ns)
459                 goto out_bad;
460
461         mutex_unlock(&kernfs_mutex);
462 out_valid:
463         return 1;
464 out_bad:
465         mutex_unlock(&kernfs_mutex);
466 out_bad_unlocked:
467         /*
468          * @dentry doesn't match the underlying kernfs node, drop the
469          * dentry and force lookup.  If we have submounts we must allow the
470          * vfs caches to lie about the state of the filesystem to prevent
471          * leaks and other nasty things, so use check_submounts_and_drop()
472          * instead of d_drop().
473          */
474         if (check_submounts_and_drop(dentry) != 0)
475                 goto out_valid;
476
477         return 0;
478 }
479
480 static void kernfs_dop_release(struct dentry *dentry)
481 {
482         kernfs_put(dentry->d_fsdata);
483 }
484
485 const struct dentry_operations kernfs_dops = {
486         .d_revalidate   = kernfs_dop_revalidate,
487         .d_release      = kernfs_dop_release,
488 };
489
490 /**
491  * kernfs_node_from_dentry - determine kernfs_node associated with a dentry
492  * @dentry: the dentry in question
493  *
494  * Return the kernfs_node associated with @dentry.  If @dentry is not a
495  * kernfs one, %NULL is returned.
496  *
497  * While the returned kernfs_node will stay accessible as long as @dentry
498  * is accessible, the returned node can be in any state and the caller is
499  * fully responsible for determining what's accessible.
500  */
501 struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry)
502 {
503         if (dentry->d_op == &kernfs_dops)
504                 return dentry->d_fsdata;
505         return NULL;
506 }
507
508 static struct kernfs_node *__kernfs_new_node(struct kernfs_root *root,
509                                              const char *name, umode_t mode,
510                                              unsigned flags)
511 {
512         char *dup_name = NULL;
513         struct kernfs_node *kn;
514         int ret;
515
516         if (!(flags & KERNFS_STATIC_NAME)) {
517                 name = dup_name = kstrdup(name, GFP_KERNEL);
518                 if (!name)
519                         return NULL;
520         }
521
522         kn = kmem_cache_zalloc(kernfs_node_cache, GFP_KERNEL);
523         if (!kn)
524                 goto err_out1;
525
526         ret = ida_simple_get(&root->ino_ida, 1, 0, GFP_KERNEL);
527         if (ret < 0)
528                 goto err_out2;
529         kn->ino = ret;
530
531         atomic_set(&kn->count, 1);
532         atomic_set(&kn->active, KN_DEACTIVATED_BIAS);
533         RB_CLEAR_NODE(&kn->rb);
534
535         kn->name = name;
536         kn->mode = mode;
537         kn->flags = flags;
538
539         return kn;
540
541  err_out2:
542         kmem_cache_free(kernfs_node_cache, kn);
543  err_out1:
544         kfree(dup_name);
545         return NULL;
546 }
547
548 struct kernfs_node *kernfs_new_node(struct kernfs_node *parent,
549                                     const char *name, umode_t mode,
550                                     unsigned flags)
551 {
552         struct kernfs_node *kn;
553
554         kn = __kernfs_new_node(kernfs_root(parent), name, mode, flags);
555         if (kn) {
556                 kernfs_get(parent);
557                 kn->parent = parent;
558         }
559         return kn;
560 }
561
562 /**
563  *      kernfs_add_one - add kernfs_node to parent without warning
564  *      @kn: kernfs_node to be added
565  *
566  *      The caller must already have initialized @kn->parent.  This
567  *      function increments nlink of the parent's inode if @kn is a
568  *      directory and link into the children list of the parent.
569  *
570  *      RETURNS:
571  *      0 on success, -EEXIST if entry with the given name already
572  *      exists.
573  */
574 int kernfs_add_one(struct kernfs_node *kn)
575 {
576         struct kernfs_node *parent = kn->parent;
577         struct kernfs_iattrs *ps_iattr;
578         bool has_ns;
579         int ret;
580
581         mutex_lock(&kernfs_mutex);
582
583         ret = -EINVAL;
584         has_ns = kernfs_ns_enabled(parent);
585         if (WARN(has_ns != (bool)kn->ns, KERN_WARNING "kernfs: ns %s in '%s' for '%s'\n",
586                  has_ns ? "required" : "invalid", parent->name, kn->name))
587                 goto out_unlock;
588
589         if (kernfs_type(parent) != KERNFS_DIR)
590                 goto out_unlock;
591
592         ret = -ENOENT;
593         if ((parent->flags & KERNFS_ACTIVATED) && !kernfs_active(parent))
594                 goto out_unlock;
595
596         kn->hash = kernfs_name_hash(kn->name, kn->ns);
597
598         ret = kernfs_link_sibling(kn);
599         if (ret)
600                 goto out_unlock;
601
602         /* Update timestamps on the parent */
603         ps_iattr = parent->iattr;
604         if (ps_iattr) {
605                 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
606                 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
607         }
608
609         mutex_unlock(&kernfs_mutex);
610
611         /*
612          * Activate the new node unless CREATE_DEACTIVATED is requested.
613          * If not activated here, the kernfs user is responsible for
614          * activating the node with kernfs_activate().  A node which hasn't
615          * been activated is not visible to userland and its removal won't
616          * trigger deactivation.
617          */
618         if (!(kernfs_root(kn)->flags & KERNFS_ROOT_CREATE_DEACTIVATED))
619                 kernfs_activate(kn);
620         return 0;
621
622 out_unlock:
623         mutex_unlock(&kernfs_mutex);
624         return ret;
625 }
626
627 /**
628  * kernfs_find_ns - find kernfs_node with the given name
629  * @parent: kernfs_node to search under
630  * @name: name to look for
631  * @ns: the namespace tag to use
632  *
633  * Look for kernfs_node with name @name under @parent.  Returns pointer to
634  * the found kernfs_node on success, %NULL on failure.
635  */
636 static struct kernfs_node *kernfs_find_ns(struct kernfs_node *parent,
637                                           const unsigned char *name,
638                                           const void *ns)
639 {
640         struct rb_node *node = parent->dir.children.rb_node;
641         bool has_ns = kernfs_ns_enabled(parent);
642         unsigned int hash;
643
644         lockdep_assert_held(&kernfs_mutex);
645
646         if (has_ns != (bool)ns) {
647                 WARN(1, KERN_WARNING "kernfs: ns %s in '%s' for '%s'\n",
648                      has_ns ? "required" : "invalid", parent->name, name);
649                 return NULL;
650         }
651
652         hash = kernfs_name_hash(name, ns);
653         while (node) {
654                 struct kernfs_node *kn;
655                 int result;
656
657                 kn = rb_to_kn(node);
658                 result = kernfs_name_compare(hash, name, ns, kn);
659                 if (result < 0)
660                         node = node->rb_left;
661                 else if (result > 0)
662                         node = node->rb_right;
663                 else
664                         return kn;
665         }
666         return NULL;
667 }
668
669 /**
670  * kernfs_find_and_get_ns - find and get kernfs_node with the given name
671  * @parent: kernfs_node to search under
672  * @name: name to look for
673  * @ns: the namespace tag to use
674  *
675  * Look for kernfs_node with name @name under @parent and get a reference
676  * if found.  This function may sleep and returns pointer to the found
677  * kernfs_node on success, %NULL on failure.
678  */
679 struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
680                                            const char *name, const void *ns)
681 {
682         struct kernfs_node *kn;
683
684         mutex_lock(&kernfs_mutex);
685         kn = kernfs_find_ns(parent, name, ns);
686         kernfs_get(kn);
687         mutex_unlock(&kernfs_mutex);
688
689         return kn;
690 }
691 EXPORT_SYMBOL_GPL(kernfs_find_and_get_ns);
692
693 /**
694  * kernfs_create_root - create a new kernfs hierarchy
695  * @scops: optional syscall operations for the hierarchy
696  * @flags: KERNFS_ROOT_* flags
697  * @priv: opaque data associated with the new directory
698  *
699  * Returns the root of the new hierarchy on success, ERR_PTR() value on
700  * failure.
701  */
702 struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
703                                        unsigned int flags, void *priv)
704 {
705         struct kernfs_root *root;
706         struct kernfs_node *kn;
707
708         root = kzalloc(sizeof(*root), GFP_KERNEL);
709         if (!root)
710                 return ERR_PTR(-ENOMEM);
711
712         ida_init(&root->ino_ida);
713
714         kn = __kernfs_new_node(root, "", S_IFDIR | S_IRUGO | S_IXUGO,
715                                KERNFS_DIR);
716         if (!kn) {
717                 ida_destroy(&root->ino_ida);
718                 kfree(root);
719                 return ERR_PTR(-ENOMEM);
720         }
721
722         kn->priv = priv;
723         kn->dir.root = root;
724
725         root->syscall_ops = scops;
726         root->flags = flags;
727         root->kn = kn;
728         init_waitqueue_head(&root->deactivate_waitq);
729
730         if (!(root->flags & KERNFS_ROOT_CREATE_DEACTIVATED))
731                 kernfs_activate(kn);
732
733         return root;
734 }
735
736 /**
737  * kernfs_destroy_root - destroy a kernfs hierarchy
738  * @root: root of the hierarchy to destroy
739  *
740  * Destroy the hierarchy anchored at @root by removing all existing
741  * directories and destroying @root.
742  */
743 void kernfs_destroy_root(struct kernfs_root *root)
744 {
745         kernfs_remove(root->kn);        /* will also free @root */
746 }
747
748 /**
749  * kernfs_create_dir_ns - create a directory
750  * @parent: parent in which to create a new directory
751  * @name: name of the new directory
752  * @mode: mode of the new directory
753  * @priv: opaque data associated with the new directory
754  * @ns: optional namespace tag of the directory
755  *
756  * Returns the created node on success, ERR_PTR() value on failure.
757  */
758 struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
759                                          const char *name, umode_t mode,
760                                          void *priv, const void *ns)
761 {
762         struct kernfs_node *kn;
763         int rc;
764
765         /* allocate */
766         kn = kernfs_new_node(parent, name, mode | S_IFDIR, KERNFS_DIR);
767         if (!kn)
768                 return ERR_PTR(-ENOMEM);
769
770         kn->dir.root = parent->dir.root;
771         kn->ns = ns;
772         kn->priv = priv;
773
774         /* link in */
775         rc = kernfs_add_one(kn);
776         if (!rc)
777                 return kn;
778
779         kernfs_put(kn);
780         return ERR_PTR(rc);
781 }
782
783 static struct dentry *kernfs_iop_lookup(struct inode *dir,
784                                         struct dentry *dentry,
785                                         unsigned int flags)
786 {
787         struct dentry *ret;
788         struct kernfs_node *parent = dentry->d_parent->d_fsdata;
789         struct kernfs_node *kn;
790         struct inode *inode;
791         const void *ns = NULL;
792
793         mutex_lock(&kernfs_mutex);
794
795         if (kernfs_ns_enabled(parent))
796                 ns = kernfs_info(dir->i_sb)->ns;
797
798         kn = kernfs_find_ns(parent, dentry->d_name.name, ns);
799
800         /* no such entry */
801         if (!kn || !kernfs_active(kn)) {
802                 ret = NULL;
803                 goto out_unlock;
804         }
805         kernfs_get(kn);
806         dentry->d_fsdata = kn;
807
808         /* attach dentry and inode */
809         inode = kernfs_get_inode(dir->i_sb, kn);
810         if (!inode) {
811                 ret = ERR_PTR(-ENOMEM);
812                 goto out_unlock;
813         }
814
815         /* instantiate and hash dentry */
816         ret = d_materialise_unique(dentry, inode);
817  out_unlock:
818         mutex_unlock(&kernfs_mutex);
819         return ret;
820 }
821
822 static int kernfs_iop_mkdir(struct inode *dir, struct dentry *dentry,
823                             umode_t mode)
824 {
825         struct kernfs_node *parent = dir->i_private;
826         struct kernfs_syscall_ops *scops = kernfs_root(parent)->syscall_ops;
827         int ret;
828
829         if (!scops || !scops->mkdir)
830                 return -EPERM;
831
832         if (!kernfs_get_active(parent))
833                 return -ENODEV;
834
835         ret = scops->mkdir(parent, dentry->d_name.name, mode);
836
837         kernfs_put_active(parent);
838         return ret;
839 }
840
841 static int kernfs_iop_rmdir(struct inode *dir, struct dentry *dentry)
842 {
843         struct kernfs_node *kn  = dentry->d_fsdata;
844         struct kernfs_syscall_ops *scops = kernfs_root(kn)->syscall_ops;
845         int ret;
846
847         if (!scops || !scops->rmdir)
848                 return -EPERM;
849
850         if (!kernfs_get_active(kn))
851                 return -ENODEV;
852
853         ret = scops->rmdir(kn);
854
855         kernfs_put_active(kn);
856         return ret;
857 }
858
859 static int kernfs_iop_rename(struct inode *old_dir, struct dentry *old_dentry,
860                              struct inode *new_dir, struct dentry *new_dentry)
861 {
862         struct kernfs_node *kn  = old_dentry->d_fsdata;
863         struct kernfs_node *new_parent = new_dir->i_private;
864         struct kernfs_syscall_ops *scops = kernfs_root(kn)->syscall_ops;
865         int ret;
866
867         if (!scops || !scops->rename)
868                 return -EPERM;
869
870         if (!kernfs_get_active(kn))
871                 return -ENODEV;
872
873         if (!kernfs_get_active(new_parent)) {
874                 kernfs_put_active(kn);
875                 return -ENODEV;
876         }
877
878         ret = scops->rename(kn, new_parent, new_dentry->d_name.name);
879
880         kernfs_put_active(new_parent);
881         kernfs_put_active(kn);
882         return ret;
883 }
884
885 const struct inode_operations kernfs_dir_iops = {
886         .lookup         = kernfs_iop_lookup,
887         .permission     = kernfs_iop_permission,
888         .setattr        = kernfs_iop_setattr,
889         .getattr        = kernfs_iop_getattr,
890         .setxattr       = kernfs_iop_setxattr,
891         .removexattr    = kernfs_iop_removexattr,
892         .getxattr       = kernfs_iop_getxattr,
893         .listxattr      = kernfs_iop_listxattr,
894
895         .mkdir          = kernfs_iop_mkdir,
896         .rmdir          = kernfs_iop_rmdir,
897         .rename         = kernfs_iop_rename,
898 };
899
900 static struct kernfs_node *kernfs_leftmost_descendant(struct kernfs_node *pos)
901 {
902         struct kernfs_node *last;
903
904         while (true) {
905                 struct rb_node *rbn;
906
907                 last = pos;
908
909                 if (kernfs_type(pos) != KERNFS_DIR)
910                         break;
911
912                 rbn = rb_first(&pos->dir.children);
913                 if (!rbn)
914                         break;
915
916                 pos = rb_to_kn(rbn);
917         }
918
919         return last;
920 }
921
922 /**
923  * kernfs_next_descendant_post - find the next descendant for post-order walk
924  * @pos: the current position (%NULL to initiate traversal)
925  * @root: kernfs_node whose descendants to walk
926  *
927  * Find the next descendant to visit for post-order traversal of @root's
928  * descendants.  @root is included in the iteration and the last node to be
929  * visited.
930  */
931 static struct kernfs_node *kernfs_next_descendant_post(struct kernfs_node *pos,
932                                                        struct kernfs_node *root)
933 {
934         struct rb_node *rbn;
935
936         lockdep_assert_held(&kernfs_mutex);
937
938         /* if first iteration, visit leftmost descendant which may be root */
939         if (!pos)
940                 return kernfs_leftmost_descendant(root);
941
942         /* if we visited @root, we're done */
943         if (pos == root)
944                 return NULL;
945
946         /* if there's an unvisited sibling, visit its leftmost descendant */
947         rbn = rb_next(&pos->rb);
948         if (rbn)
949                 return kernfs_leftmost_descendant(rb_to_kn(rbn));
950
951         /* no sibling left, visit parent */
952         return pos->parent;
953 }
954
955 /**
956  * kernfs_activate - activate a node which started deactivated
957  * @kn: kernfs_node whose subtree is to be activated
958  *
959  * If the root has KERNFS_ROOT_CREATE_DEACTIVATED set, a newly created node
960  * needs to be explicitly activated.  A node which hasn't been activated
961  * isn't visible to userland and deactivation is skipped during its
962  * removal.  This is useful to construct atomic init sequences where
963  * creation of multiple nodes should either succeed or fail atomically.
964  *
965  * The caller is responsible for ensuring that this function is not called
966  * after kernfs_remove*() is invoked on @kn.
967  */
968 void kernfs_activate(struct kernfs_node *kn)
969 {
970         struct kernfs_node *pos;
971
972         mutex_lock(&kernfs_mutex);
973
974         pos = NULL;
975         while ((pos = kernfs_next_descendant_post(pos, kn))) {
976                 if (!pos || (pos->flags & KERNFS_ACTIVATED))
977                         continue;
978
979                 WARN_ON_ONCE(pos->parent && RB_EMPTY_NODE(&pos->rb));
980                 WARN_ON_ONCE(atomic_read(&pos->active) != KN_DEACTIVATED_BIAS);
981
982                 atomic_sub(KN_DEACTIVATED_BIAS, &pos->active);
983                 pos->flags |= KERNFS_ACTIVATED;
984         }
985
986         mutex_unlock(&kernfs_mutex);
987 }
988
989 static void __kernfs_remove(struct kernfs_node *kn)
990 {
991         struct kernfs_node *pos;
992
993         lockdep_assert_held(&kernfs_mutex);
994
995         /*
996          * Short-circuit if non-root @kn has already finished removal.
997          * This is for kernfs_remove_self() which plays with active ref
998          * after removal.
999          */
1000         if (!kn || (kn->parent && RB_EMPTY_NODE(&kn->rb)))
1001                 return;
1002
1003         pr_debug("kernfs %s: removing\n", kn->name);
1004
1005         /* prevent any new usage under @kn by deactivating all nodes */
1006         pos = NULL;
1007         while ((pos = kernfs_next_descendant_post(pos, kn)))
1008                 if (kernfs_active(pos))
1009                         atomic_add(KN_DEACTIVATED_BIAS, &pos->active);
1010
1011         /* deactivate and unlink the subtree node-by-node */
1012         do {
1013                 pos = kernfs_leftmost_descendant(kn);
1014
1015                 /*
1016                  * kernfs_drain() drops kernfs_mutex temporarily and @pos's
1017                  * base ref could have been put by someone else by the time
1018                  * the function returns.  Make sure it doesn't go away
1019                  * underneath us.
1020                  */
1021                 kernfs_get(pos);
1022
1023                 /*
1024                  * Drain iff @kn was activated.  This avoids draining and
1025                  * its lockdep annotations for nodes which have never been
1026                  * activated and allows embedding kernfs_remove() in create
1027                  * error paths without worrying about draining.
1028                  */
1029                 if (kn->flags & KERNFS_ACTIVATED)
1030                         kernfs_drain(pos);
1031                 else
1032                         WARN_ON_ONCE(atomic_read(&kn->active) != KN_DEACTIVATED_BIAS);
1033
1034                 /*
1035                  * kernfs_unlink_sibling() succeeds once per node.  Use it
1036                  * to decide who's responsible for cleanups.
1037                  */
1038                 if (!pos->parent || kernfs_unlink_sibling(pos)) {
1039                         struct kernfs_iattrs *ps_iattr =
1040                                 pos->parent ? pos->parent->iattr : NULL;
1041
1042                         /* update timestamps on the parent */
1043                         if (ps_iattr) {
1044                                 ps_iattr->ia_iattr.ia_ctime = CURRENT_TIME;
1045                                 ps_iattr->ia_iattr.ia_mtime = CURRENT_TIME;
1046                         }
1047
1048                         kernfs_put(pos);
1049                 }
1050
1051                 kernfs_put(pos);
1052         } while (pos != kn);
1053 }
1054
1055 /**
1056  * kernfs_remove - remove a kernfs_node recursively
1057  * @kn: the kernfs_node to remove
1058  *
1059  * Remove @kn along with all its subdirectories and files.
1060  */
1061 void kernfs_remove(struct kernfs_node *kn)
1062 {
1063         mutex_lock(&kernfs_mutex);
1064         __kernfs_remove(kn);
1065         mutex_unlock(&kernfs_mutex);
1066 }
1067
1068 /**
1069  * kernfs_break_active_protection - break out of active protection
1070  * @kn: the self kernfs_node
1071  *
1072  * The caller must be running off of a kernfs operation which is invoked
1073  * with an active reference - e.g. one of kernfs_ops.  Each invocation of
1074  * this function must also be matched with an invocation of
1075  * kernfs_unbreak_active_protection().
1076  *
1077  * This function releases the active reference of @kn the caller is
1078  * holding.  Once this function is called, @kn may be removed at any point
1079  * and the caller is solely responsible for ensuring that the objects it
1080  * dereferences are accessible.
1081  */
1082 void kernfs_break_active_protection(struct kernfs_node *kn)
1083 {
1084         /*
1085          * Take out ourself out of the active ref dependency chain.  If
1086          * we're called without an active ref, lockdep will complain.
1087          */
1088         kernfs_put_active(kn);
1089 }
1090
1091 /**
1092  * kernfs_unbreak_active_protection - undo kernfs_break_active_protection()
1093  * @kn: the self kernfs_node
1094  *
1095  * If kernfs_break_active_protection() was called, this function must be
1096  * invoked before finishing the kernfs operation.  Note that while this
1097  * function restores the active reference, it doesn't and can't actually
1098  * restore the active protection - @kn may already or be in the process of
1099  * being removed.  Once kernfs_break_active_protection() is invoked, that
1100  * protection is irreversibly gone for the kernfs operation instance.
1101  *
1102  * While this function may be called at any point after
1103  * kernfs_break_active_protection() is invoked, its most useful location
1104  * would be right before the enclosing kernfs operation returns.
1105  */
1106 void kernfs_unbreak_active_protection(struct kernfs_node *kn)
1107 {
1108         /*
1109          * @kn->active could be in any state; however, the increment we do
1110          * here will be undone as soon as the enclosing kernfs operation
1111          * finishes and this temporary bump can't break anything.  If @kn
1112          * is alive, nothing changes.  If @kn is being deactivated, the
1113          * soon-to-follow put will either finish deactivation or restore
1114          * deactivated state.  If @kn is already removed, the temporary
1115          * bump is guaranteed to be gone before @kn is released.
1116          */
1117         atomic_inc(&kn->active);
1118         if (kernfs_lockdep(kn))
1119                 rwsem_acquire(&kn->dep_map, 0, 1, _RET_IP_);
1120 }
1121
1122 /**
1123  * kernfs_remove_self - remove a kernfs_node from its own method
1124  * @kn: the self kernfs_node to remove
1125  *
1126  * The caller must be running off of a kernfs operation which is invoked
1127  * with an active reference - e.g. one of kernfs_ops.  This can be used to
1128  * implement a file operation which deletes itself.
1129  *
1130  * For example, the "delete" file for a sysfs device directory can be
1131  * implemented by invoking kernfs_remove_self() on the "delete" file
1132  * itself.  This function breaks the circular dependency of trying to
1133  * deactivate self while holding an active ref itself.  It isn't necessary
1134  * to modify the usual removal path to use kernfs_remove_self().  The
1135  * "delete" implementation can simply invoke kernfs_remove_self() on self
1136  * before proceeding with the usual removal path.  kernfs will ignore later
1137  * kernfs_remove() on self.
1138  *
1139  * kernfs_remove_self() can be called multiple times concurrently on the
1140  * same kernfs_node.  Only the first one actually performs removal and
1141  * returns %true.  All others will wait until the kernfs operation which
1142  * won self-removal finishes and return %false.  Note that the losers wait
1143  * for the completion of not only the winning kernfs_remove_self() but also
1144  * the whole kernfs_ops which won the arbitration.  This can be used to
1145  * guarantee, for example, all concurrent writes to a "delete" file to
1146  * finish only after the whole operation is complete.
1147  */
1148 bool kernfs_remove_self(struct kernfs_node *kn)
1149 {
1150         bool ret;
1151
1152         mutex_lock(&kernfs_mutex);
1153         kernfs_break_active_protection(kn);
1154
1155         /*
1156          * SUICIDAL is used to arbitrate among competing invocations.  Only
1157          * the first one will actually perform removal.  When the removal
1158          * is complete, SUICIDED is set and the active ref is restored
1159          * while holding kernfs_mutex.  The ones which lost arbitration
1160          * waits for SUICDED && drained which can happen only after the
1161          * enclosing kernfs operation which executed the winning instance
1162          * of kernfs_remove_self() finished.
1163          */
1164         if (!(kn->flags & KERNFS_SUICIDAL)) {
1165                 kn->flags |= KERNFS_SUICIDAL;
1166                 __kernfs_remove(kn);
1167                 kn->flags |= KERNFS_SUICIDED;
1168                 ret = true;
1169         } else {
1170                 wait_queue_head_t *waitq = &kernfs_root(kn)->deactivate_waitq;
1171                 DEFINE_WAIT(wait);
1172
1173                 while (true) {
1174                         prepare_to_wait(waitq, &wait, TASK_UNINTERRUPTIBLE);
1175
1176                         if ((kn->flags & KERNFS_SUICIDED) &&
1177                             atomic_read(&kn->active) == KN_DEACTIVATED_BIAS)
1178                                 break;
1179
1180                         mutex_unlock(&kernfs_mutex);
1181                         schedule();
1182                         mutex_lock(&kernfs_mutex);
1183                 }
1184                 finish_wait(waitq, &wait);
1185                 WARN_ON_ONCE(!RB_EMPTY_NODE(&kn->rb));
1186                 ret = false;
1187         }
1188
1189         /*
1190          * This must be done while holding kernfs_mutex; otherwise, waiting
1191          * for SUICIDED && deactivated could finish prematurely.
1192          */
1193         kernfs_unbreak_active_protection(kn);
1194
1195         mutex_unlock(&kernfs_mutex);
1196         return ret;
1197 }
1198
1199 /**
1200  * kernfs_remove_by_name_ns - find a kernfs_node by name and remove it
1201  * @parent: parent of the target
1202  * @name: name of the kernfs_node to remove
1203  * @ns: namespace tag of the kernfs_node to remove
1204  *
1205  * Look for the kernfs_node with @name and @ns under @parent and remove it.
1206  * Returns 0 on success, -ENOENT if such entry doesn't exist.
1207  */
1208 int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
1209                              const void *ns)
1210 {
1211         struct kernfs_node *kn;
1212
1213         if (!parent) {
1214                 WARN(1, KERN_WARNING "kernfs: can not remove '%s', no directory\n",
1215                         name);
1216                 return -ENOENT;
1217         }
1218
1219         mutex_lock(&kernfs_mutex);
1220
1221         kn = kernfs_find_ns(parent, name, ns);
1222         if (kn)
1223                 __kernfs_remove(kn);
1224
1225         mutex_unlock(&kernfs_mutex);
1226
1227         if (kn)
1228                 return 0;
1229         else
1230                 return -ENOENT;
1231 }
1232
1233 /**
1234  * kernfs_rename_ns - move and rename a kernfs_node
1235  * @kn: target node
1236  * @new_parent: new parent to put @sd under
1237  * @new_name: new name
1238  * @new_ns: new namespace tag
1239  */
1240 int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
1241                      const char *new_name, const void *new_ns)
1242 {
1243         struct kernfs_node *old_parent;
1244         const char *old_name = NULL;
1245         int error;
1246
1247         /* can't move or rename root */
1248         if (!kn->parent)
1249                 return -EINVAL;
1250
1251         mutex_lock(&kernfs_mutex);
1252
1253         error = -ENOENT;
1254         if (!kernfs_active(kn) || !kernfs_active(new_parent))
1255                 goto out;
1256
1257         error = 0;
1258         if ((kn->parent == new_parent) && (kn->ns == new_ns) &&
1259             (strcmp(kn->name, new_name) == 0))
1260                 goto out;       /* nothing to rename */
1261
1262         error = -EEXIST;
1263         if (kernfs_find_ns(new_parent, new_name, new_ns))
1264                 goto out;
1265
1266         /* rename kernfs_node */
1267         if (strcmp(kn->name, new_name) != 0) {
1268                 error = -ENOMEM;
1269                 new_name = kstrdup(new_name, GFP_KERNEL);
1270                 if (!new_name)
1271                         goto out;
1272         } else {
1273                 new_name = NULL;
1274         }
1275
1276         /*
1277          * Move to the appropriate place in the appropriate directories rbtree.
1278          */
1279         kernfs_unlink_sibling(kn);
1280         kernfs_get(new_parent);
1281
1282         /* rename_lock protects ->parent and ->name accessors */
1283         spin_lock_irq(&kernfs_rename_lock);
1284
1285         old_parent = kn->parent;
1286         kn->parent = new_parent;
1287
1288         kn->ns = new_ns;
1289         if (new_name) {
1290                 if (!(kn->flags & KERNFS_STATIC_NAME))
1291                         old_name = kn->name;
1292                 kn->flags &= ~KERNFS_STATIC_NAME;
1293                 kn->name = new_name;
1294         }
1295
1296         spin_unlock_irq(&kernfs_rename_lock);
1297
1298         kn->hash = kernfs_name_hash(new_name, new_ns);
1299         kernfs_link_sibling(kn);
1300
1301         kernfs_put(old_parent);
1302         kfree(old_name);
1303
1304         error = 0;
1305  out:
1306         mutex_unlock(&kernfs_mutex);
1307         return error;
1308 }
1309
1310 /* Relationship between s_mode and the DT_xxx types */
1311 static inline unsigned char dt_type(struct kernfs_node *kn)
1312 {
1313         return (kn->mode >> 12) & 15;
1314 }
1315
1316 static int kernfs_dir_fop_release(struct inode *inode, struct file *filp)
1317 {
1318         kernfs_put(filp->private_data);
1319         return 0;
1320 }
1321
1322 static struct kernfs_node *kernfs_dir_pos(const void *ns,
1323         struct kernfs_node *parent, loff_t hash, struct kernfs_node *pos)
1324 {
1325         if (pos) {
1326                 int valid = kernfs_active(pos) &&
1327                         pos->parent == parent && hash == pos->hash;
1328                 kernfs_put(pos);
1329                 if (!valid)
1330                         pos = NULL;
1331         }
1332         if (!pos && (hash > 1) && (hash < INT_MAX)) {
1333                 struct rb_node *node = parent->dir.children.rb_node;
1334                 while (node) {
1335                         pos = rb_to_kn(node);
1336
1337                         if (hash < pos->hash)
1338                                 node = node->rb_left;
1339                         else if (hash > pos->hash)
1340                                 node = node->rb_right;
1341                         else
1342                                 break;
1343                 }
1344         }
1345         /* Skip over entries which are dying/dead or in the wrong namespace */
1346         while (pos && (!kernfs_active(pos) || pos->ns != ns)) {
1347                 struct rb_node *node = rb_next(&pos->rb);
1348                 if (!node)
1349                         pos = NULL;
1350                 else
1351                         pos = rb_to_kn(node);
1352         }
1353         return pos;
1354 }
1355
1356 static struct kernfs_node *kernfs_dir_next_pos(const void *ns,
1357         struct kernfs_node *parent, ino_t ino, struct kernfs_node *pos)
1358 {
1359         pos = kernfs_dir_pos(ns, parent, ino, pos);
1360         if (pos) {
1361                 do {
1362                         struct rb_node *node = rb_next(&pos->rb);
1363                         if (!node)
1364                                 pos = NULL;
1365                         else
1366                                 pos = rb_to_kn(node);
1367                 } while (pos && (!kernfs_active(pos) || pos->ns != ns));
1368         }
1369         return pos;
1370 }
1371
1372 static int kernfs_fop_readdir(struct file *file, struct dir_context *ctx)
1373 {
1374         struct dentry *dentry = file->f_path.dentry;
1375         struct kernfs_node *parent = dentry->d_fsdata;
1376         struct kernfs_node *pos = file->private_data;
1377         const void *ns = NULL;
1378
1379         if (!dir_emit_dots(file, ctx))
1380                 return 0;
1381         mutex_lock(&kernfs_mutex);
1382
1383         if (kernfs_ns_enabled(parent))
1384                 ns = kernfs_info(dentry->d_sb)->ns;
1385
1386         for (pos = kernfs_dir_pos(ns, parent, ctx->pos, pos);
1387              pos;
1388              pos = kernfs_dir_next_pos(ns, parent, ctx->pos, pos)) {
1389                 const char *name = pos->name;
1390                 unsigned int type = dt_type(pos);
1391                 int len = strlen(name);
1392                 ino_t ino = pos->ino;
1393
1394                 ctx->pos = pos->hash;
1395                 file->private_data = pos;
1396                 kernfs_get(pos);
1397
1398                 mutex_unlock(&kernfs_mutex);
1399                 if (!dir_emit(ctx, name, len, ino, type))
1400                         return 0;
1401                 mutex_lock(&kernfs_mutex);
1402         }
1403         mutex_unlock(&kernfs_mutex);
1404         file->private_data = NULL;
1405         ctx->pos = INT_MAX;
1406         return 0;
1407 }
1408
1409 static loff_t kernfs_dir_fop_llseek(struct file *file, loff_t offset,
1410                                     int whence)
1411 {
1412         struct inode *inode = file_inode(file);
1413         loff_t ret;
1414
1415         mutex_lock(&inode->i_mutex);
1416         ret = generic_file_llseek(file, offset, whence);
1417         mutex_unlock(&inode->i_mutex);
1418
1419         return ret;
1420 }
1421
1422 const struct file_operations kernfs_dir_fops = {
1423         .read           = generic_read_dir,
1424         .iterate        = kernfs_fop_readdir,
1425         .release        = kernfs_dir_fop_release,
1426         .llseek         = kernfs_dir_fop_llseek,
1427 };