blob: 0cdfd8128d3e5199eaf37e7dd7f2c54030100b68 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tejun Heo6d66f5c2007-09-20 17:31:38 +09002 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
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>
Christoph Hellwig5f45f1a2005-06-23 00:09:12 -070019#include <linux/namei.h>
Tejun Heo2b611bb2007-06-14 03:45:13 +090020#include <linux/idr.h>
Tejun Heo8619f972007-06-14 03:45:18 +090021#include <linux/completion.h>
Dave Young869512a2007-07-26 14:53:53 +000022#include <linux/mutex.h>
Robert P. J. Dayc6f87732008-03-13 22:41:52 -040023#include <linux/slab.h>
Eric W. Biederman4c3da222009-11-04 02:50:06 -080024#include <linux/security.h>
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080025#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "sysfs.h"
27
Tejun Heo3007e992007-06-14 04:27:23 +090028DEFINE_MUTEX(sysfs_mutex);
Roel Kluinf7a75f02007-10-16 23:30:25 -070029DEFINE_SPINLOCK(sysfs_assoc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Tejun Heobcac3762013-09-11 22:29:03 -040031#define to_sysfs_dirent(X) rb_entry((X), struct sysfs_dirent, s_rb)
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080032
Roel Kluinf7a75f02007-10-16 23:30:25 -070033static DEFINE_SPINLOCK(sysfs_ino_lock);
Tejun Heo2b611bb2007-06-14 03:45:13 +090034static DEFINE_IDA(sysfs_ino_ida);
35
Tejun Heob6b4a432007-06-14 03:45:18 +090036/**
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080037 * sysfs_name_hash
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080038 * @name: Null terminated string to hash
Tejun Heocfec0bc2013-09-11 22:29:09 -040039 * @ns: Namespace tag to hash
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080040 *
41 * Returns 31 bit hash of ns + name (so it fits in an off_t )
42 */
Tejun Heocfec0bc2013-09-11 22:29:09 -040043static unsigned int sysfs_name_hash(const char *name, const void *ns)
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080044{
45 unsigned long hash = init_name_hash();
46 unsigned int len = strlen(name);
47 while (len--)
48 hash = partial_name_hash(*name++, hash);
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -070049 hash = (end_name_hash(hash) ^ hash_ptr((void *)ns, 31));
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080050 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
Tejun Heocfec0bc2013-09-11 22:29:09 -040059static int sysfs_name_compare(unsigned int hash, const char *name,
60 const void *ns, const struct sysfs_dirent *sd)
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080061{
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
69static int sysfs_sd_compare(const struct sysfs_dirent *left,
70 const struct sysfs_dirent *right)
71{
Tejun Heocfec0bc2013-09-11 22:29:09 -040072 return sysfs_name_compare(left->s_hash, left->s_name, left->s_ns,
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080073 right);
74}
75
76/**
Warner Wang43474912013-05-13 11:11:05 +080077 * sysfs_link_sibling - link sysfs_dirent into sibling rbtree
Tejun Heo0c73f182007-06-14 03:45:18 +090078 * @sd: sysfs_dirent of interest
79 *
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080080 * Link @sd into its sibling rbtree which starts from
Tejun Heobc747f32007-09-20 16:05:12 +090081 * sd->s_parent->s_dir.children.
Tejun Heo0c73f182007-06-14 03:45:18 +090082 *
83 * Locking:
Tejun Heo3007e992007-06-14 04:27:23 +090084 * mutex_lock(sysfs_mutex)
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080085 *
86 * RETURNS:
87 * 0 on susccess -EEXIST on failure.
Tejun Heo0c73f182007-06-14 03:45:18 +090088 */
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080089static int sysfs_link_sibling(struct sysfs_dirent *sd)
Tejun Heo0c73f182007-06-14 03:45:18 +090090{
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080091 struct rb_node **node = &sd->s_parent->s_dir.children.rb_node;
92 struct rb_node *parent = NULL;
Mikulas Patocka4f72c0c2011-07-25 17:55:57 -040093
Greg Kroah-Hartman54d20f02012-03-08 13:03:10 -080094 if (sysfs_type(sd) == SYSFS_DIR)
95 sd->s_parent->s_dir.subdirs++;
96
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -080097 while (*node) {
98 struct sysfs_dirent *pos;
99 int result;
Mikulas Patocka4f72c0c2011-07-25 17:55:57 -0400100
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800101 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;
Mikulas Patocka4f72c0c2011-07-25 17:55:57 -0400110 }
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800111 /* 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);
Tejun Heocb26a312013-09-11 22:29:07 -0400114
115 /* if @sd has ns tag, mark the parent to enable ns filtering */
116 if (sd->s_ns)
117 sd->s_parent->s_flags |= SYSFS_FLAG_HAS_NS;
118
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800119 return 0;
Tejun Heo0c73f182007-06-14 03:45:18 +0900120}
121
122/**
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800123 * sysfs_unlink_sibling - unlink sysfs_dirent from sibling rbtree
Tejun Heo0c73f182007-06-14 03:45:18 +0900124 * @sd: sysfs_dirent of interest
125 *
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800126 * Unlink @sd from its sibling rbtree which starts from
Tejun Heobc747f32007-09-20 16:05:12 +0900127 * sd->s_parent->s_dir.children.
Tejun Heo0c73f182007-06-14 03:45:18 +0900128 *
129 * Locking:
Tejun Heo3007e992007-06-14 04:27:23 +0900130 * mutex_lock(sysfs_mutex)
Tejun Heo0c73f182007-06-14 03:45:18 +0900131 */
Tejun Heo41fc1c22007-08-02 21:38:03 +0900132static void sysfs_unlink_sibling(struct sysfs_dirent *sd)
Tejun Heo0c73f182007-06-14 03:45:18 +0900133{
Greg Kroah-Hartman54d20f02012-03-08 13:03:10 -0800134 if (sysfs_type(sd) == SYSFS_DIR)
135 sd->s_parent->s_dir.subdirs--;
136
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800137 rb_erase(&sd->s_rb, &sd->s_parent->s_dir.children);
Tejun Heocb26a312013-09-11 22:29:07 -0400138
139 /*
140 * Either all or none of the children have tags. Clearing HAS_NS
141 * when there's no child left is enough to keep the flag synced.
142 */
143 if (RB_EMPTY_ROOT(&sd->s_parent->s_dir.children))
144 sd->s_parent->s_flags &= ~SYSFS_FLAG_HAS_NS;
Tejun Heo0c73f182007-06-14 03:45:18 +0900145}
146
Alan Stern356c05d2012-05-14 13:30:03 -0400147#ifdef CONFIG_DEBUG_LOCK_ALLOC
148
149/* Test for attributes that want to ignore lockdep for read-locking */
150static bool ignore_lockdep(struct sysfs_dirent *sd)
151{
152 return sysfs_type(sd) == SYSFS_KOBJ_ATTR &&
153 sd->s_attr.attr->ignore_lockdep;
154}
155
156#else
157
158static inline bool ignore_lockdep(struct sysfs_dirent *sd)
159{
160 return true;
161}
162
163#endif
164
Tejun Heo0c73f182007-06-14 03:45:18 +0900165/**
Tejun Heob6b4a432007-06-14 03:45:18 +0900166 * sysfs_get_active - get an active reference to sysfs_dirent
167 * @sd: sysfs_dirent to get an active reference to
168 *
169 * Get an active reference of @sd. This function is noop if @sd
170 * is NULL.
171 *
172 * RETURNS:
173 * Pointer to @sd on success, NULL on failure.
174 */
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800175struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd)
Tejun Heob6b4a432007-06-14 03:45:18 +0900176{
Tejun Heo8619f972007-06-14 03:45:18 +0900177 if (unlikely(!sd))
178 return NULL;
179
Maarten Lankhorst3db3c622013-03-08 16:07:27 +0100180 if (!atomic_inc_unless_negative(&sd->s_active))
181 return NULL;
Alan Stern356c05d2012-05-14 13:30:03 -0400182
183 if (likely(!ignore_lockdep(sd)))
184 rwsem_acquire_read(&sd->dep_map, 0, 1, _RET_IP_);
185 return sd;
Tejun Heob6b4a432007-06-14 03:45:18 +0900186}
187
188/**
189 * sysfs_put_active - put an active reference to sysfs_dirent
190 * @sd: sysfs_dirent to put an active reference to
191 *
192 * Put an active reference to @sd. This function is noop if @sd
193 * is NULL.
194 */
Eric W. Biedermane72ceb82010-02-11 15:18:38 -0800195void sysfs_put_active(struct sysfs_dirent *sd)
Tejun Heob6b4a432007-06-14 03:45:18 +0900196{
Tejun Heo8619f972007-06-14 03:45:18 +0900197 int v;
198
199 if (unlikely(!sd))
200 return;
201
Alan Stern356c05d2012-05-14 13:30:03 -0400202 if (likely(!ignore_lockdep(sd)))
203 rwsem_release(&sd->dep_map, 1, _RET_IP_);
Tejun Heo8619f972007-06-14 03:45:18 +0900204 v = atomic_dec_return(&sd->s_active);
205 if (likely(v != SD_DEACTIVATED_BIAS))
206 return;
207
208 /* atomic_dec_return() is a mb(), we'll always see the updated
Mikulas Patocka58f2a4c2011-07-21 20:01:12 -0400209 * sd->u.completion.
Tejun Heo8619f972007-06-14 03:45:18 +0900210 */
Mikulas Patocka58f2a4c2011-07-21 20:01:12 -0400211 complete(sd->u.completion);
Tejun Heob6b4a432007-06-14 03:45:18 +0900212}
213
214/**
Tejun Heob6b4a432007-06-14 03:45:18 +0900215 * sysfs_deactivate - deactivate sysfs_dirent
216 * @sd: sysfs_dirent to deactivate
217 *
Tejun Heo8619f972007-06-14 03:45:18 +0900218 * Deny new active references and drain existing ones.
Tejun Heob6b4a432007-06-14 03:45:18 +0900219 */
Tejun Heofb6896d2007-06-14 04:27:24 +0900220static void sysfs_deactivate(struct sysfs_dirent *sd)
Tejun Heob6b4a432007-06-14 03:45:18 +0900221{
Tejun Heo8619f972007-06-14 03:45:18 +0900222 DECLARE_COMPLETION_ONSTACK(wait);
223 int v;
Tejun Heob6b4a432007-06-14 03:45:18 +0900224
Mikulas Patocka58f2a4c2011-07-21 20:01:12 -0400225 BUG_ON(!(sd->s_flags & SYSFS_FLAG_REMOVED));
Eric W. Biedermana2db6842010-02-11 15:20:00 -0800226
227 if (!(sysfs_type(sd) & SYSFS_ACTIVE_REF))
228 return;
229
Mikulas Patocka58f2a4c2011-07-21 20:01:12 -0400230 sd->u.completion = (void *)&wait;
Tejun Heo8619f972007-06-14 03:45:18 +0900231
Eric W. Biederman846f9972010-01-02 13:37:12 -0800232 rwsem_acquire(&sd->dep_map, 0, 0, _RET_IP_);
Tejun Heo8619f972007-06-14 03:45:18 +0900233 /* atomic_add_return() is a mb(), put_active() will always see
Mikulas Patocka58f2a4c2011-07-21 20:01:12 -0400234 * the updated sd->u.completion.
Tejun Heob6b4a432007-06-14 03:45:18 +0900235 */
Tejun Heo8619f972007-06-14 03:45:18 +0900236 v = atomic_add_return(SD_DEACTIVATED_BIAS, &sd->s_active);
237
Eric W. Biederman846f9972010-01-02 13:37:12 -0800238 if (v != SD_DEACTIVATED_BIAS) {
239 lock_contended(&sd->dep_map, _RET_IP_);
Tejun Heo8619f972007-06-14 03:45:18 +0900240 wait_for_completion(&wait);
Eric W. Biederman846f9972010-01-02 13:37:12 -0800241 }
Tejun Heo8619f972007-06-14 03:45:18 +0900242
Eric W. Biederman846f9972010-01-02 13:37:12 -0800243 lock_acquired(&sd->dep_map, _RET_IP_);
244 rwsem_release(&sd->dep_map, 1, _RET_IP_);
Tejun Heob6b4a432007-06-14 03:45:18 +0900245}
246
Eric W. Biedermancafa6b52011-12-18 20:08:16 -0800247static int sysfs_alloc_ino(unsigned int *pino)
Tejun Heo2b611bb2007-06-14 03:45:13 +0900248{
249 int ino, rc;
250
251 retry:
252 spin_lock(&sysfs_ino_lock);
253 rc = ida_get_new_above(&sysfs_ino_ida, 2, &ino);
254 spin_unlock(&sysfs_ino_lock);
255
256 if (rc == -EAGAIN) {
257 if (ida_pre_get(&sysfs_ino_ida, GFP_KERNEL))
258 goto retry;
259 rc = -ENOMEM;
260 }
261
262 *pino = ino;
263 return rc;
264}
265
Eric W. Biedermancafa6b52011-12-18 20:08:16 -0800266static void sysfs_free_ino(unsigned int ino)
Tejun Heo2b611bb2007-06-14 03:45:13 +0900267{
268 spin_lock(&sysfs_ino_lock);
269 ida_remove(&sysfs_ino_ida, ino);
270 spin_unlock(&sysfs_ino_lock);
271}
272
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -0700273void release_sysfs_dirent(struct sysfs_dirent *sd)
Tejun Heofa7f9122007-06-14 03:45:13 +0900274{
Tejun Heo13b30862007-06-14 03:45:14 +0900275 struct sysfs_dirent *parent_sd;
276
277 repeat:
Tejun Heo3007e992007-06-14 04:27:23 +0900278 /* Moving/renaming is always done while holding reference.
279 * sd->s_parent won't change beneath us.
280 */
Tejun Heo13b30862007-06-14 03:45:14 +0900281 parent_sd = sd->s_parent;
282
Ming Leibb2b0052013-04-04 22:22:37 +0800283 WARN(!(sd->s_flags & SYSFS_FLAG_REMOVED),
284 "sysfs: free using entry: %s/%s\n",
285 parent_sd ? parent_sd->s_name : "", sd->s_name);
286
Tejun Heob402d722007-06-14 04:27:21 +0900287 if (sysfs_type(sd) == SYSFS_KOBJ_LINK)
Tejun Heob1fc3d62007-09-20 16:05:11 +0900288 sysfs_put(sd->s_symlink.target_sd);
Tejun Heob402d722007-06-14 04:27:21 +0900289 if (sysfs_type(sd) & SYSFS_COPY_NAME)
Tejun Heo0c096b52007-06-14 03:45:15 +0900290 kfree(sd->s_name);
Eric W. Biederman4c3da222009-11-04 02:50:06 -0800291 if (sd->s_iattr && sd->s_iattr->ia_secdata)
292 security_release_secctx(sd->s_iattr->ia_secdata,
293 sd->s_iattr->ia_secdata_len);
Tejun Heofa7f9122007-06-14 03:45:13 +0900294 kfree(sd->s_iattr);
Tejun Heo2b611bb2007-06-14 03:45:13 +0900295 sysfs_free_ino(sd->s_ino);
Tejun Heofa7f9122007-06-14 03:45:13 +0900296 kmem_cache_free(sysfs_dir_cachep, sd);
Tejun Heo13b30862007-06-14 03:45:14 +0900297
298 sd = parent_sd;
299 if (sd && atomic_dec_and_test(&sd->s_count))
300 goto repeat;
Tejun Heofa7f9122007-06-14 03:45:13 +0900301}
302
Nick Pigginfe15ce42011-01-07 17:49:23 +1100303static int sysfs_dentry_delete(const struct dentry *dentry)
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800304{
305 struct sysfs_dirent *sd = dentry->d_fsdata;
Al Viro469796d2012-06-07 20:51:39 -0400306 return !(sd && !(sd->s_flags & SYSFS_FLAG_REMOVED));
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800307}
308
Al Viro0b728e12012-06-10 16:03:43 -0400309static int sysfs_dentry_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800310{
Nick Piggin34286d62011-01-07 17:49:57 +1100311 struct sysfs_dirent *sd;
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800312
Al Viro0b728e12012-06-10 16:03:43 -0400313 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +1100314 return -ECHILD;
315
316 sd = dentry->d_fsdata;
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800317 mutex_lock(&sysfs_mutex);
318
319 /* The sysfs dirent has been deleted */
320 if (sd->s_flags & SYSFS_FLAG_REMOVED)
321 goto out_bad;
322
Eric W. Biederman832b6af2009-11-20 16:08:56 -0800323 /* The sysfs dirent has been moved? */
324 if (dentry->d_parent->d_fsdata != sd->s_parent)
325 goto out_bad;
326
327 /* The sysfs dirent has been renamed */
328 if (strcmp(dentry->d_name.name, sd->s_name) != 0)
329 goto out_bad;
330
Glauber Costae5bcac62012-07-06 13:09:07 +0400331 /* The sysfs dirent has been moved to a different namespace */
Tejun Heocb26a312013-09-11 22:29:07 -0400332 if (sd->s_ns && sd->s_ns != sysfs_info(dentry->d_sb)->ns)
333 goto out_bad;
Glauber Costae5bcac62012-07-06 13:09:07 +0400334
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800335 mutex_unlock(&sysfs_mutex);
336out_valid:
337 return 1;
338out_bad:
339 /* Remove the dentry from the dcache hashes.
340 * If this is a deleted dentry we use d_drop instead of d_delete
341 * so sysfs doesn't need to cope with negative dentries.
Eric W. Biederman832b6af2009-11-20 16:08:56 -0800342 *
343 * If this is a dentry that has simply been renamed we
344 * use d_drop to remove it from the dcache lookup on its
345 * old parent. If this dentry persists later when a lookup
346 * is performed at its new name the dentry will be readded
347 * to the dcache hashes.
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800348 */
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800349 mutex_unlock(&sysfs_mutex);
Miklos Szeredi6497d162013-09-05 11:44:41 +0200350
351 /* If we have submounts we must allow the vfs caches
352 * to lie about the state of the filesystem to prevent
353 * leaks and other nasty things.
354 */
355 if (check_submounts_and_drop(dentry) != 0)
356 goto out_valid;
357
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800358 return 0;
359}
360
Al Viro469796d2012-06-07 20:51:39 -0400361static void sysfs_dentry_release(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Al Viro469796d2012-06-07 20:51:39 -0400363 sysfs_put(dentry->d_fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
Al Viro469796d2012-06-07 20:51:39 -0400366const struct dentry_operations sysfs_dentry_ops = {
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800367 .d_revalidate = sysfs_dentry_revalidate,
368 .d_delete = sysfs_dentry_delete,
Al Viro469796d2012-06-07 20:51:39 -0400369 .d_release = sysfs_dentry_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370};
371
Tejun Heo3e519032007-06-14 03:45:15 +0900372struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Tejun Heo0c096b52007-06-14 03:45:15 +0900374 char *dup_name = NULL;
Akinobu Mita01da2422007-07-14 11:03:35 +0900375 struct sysfs_dirent *sd;
Tejun Heo0c096b52007-06-14 03:45:15 +0900376
377 if (type & SYSFS_COPY_NAME) {
378 name = dup_name = kstrdup(name, GFP_KERNEL);
379 if (!name)
Akinobu Mita01da2422007-07-14 11:03:35 +0900380 return NULL;
Tejun Heo0c096b52007-06-14 03:45:15 +0900381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800383 sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (!sd)
Akinobu Mita01da2422007-07-14 11:03:35 +0900385 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Tejun Heo0c096b52007-06-14 03:45:15 +0900387 if (sysfs_alloc_ino(&sd->s_ino))
Akinobu Mita01da2422007-07-14 11:03:35 +0900388 goto err_out2;
Tejun Heo2b611bb2007-06-14 03:45:13 +0900389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 atomic_set(&sd->s_count, 1);
Tejun Heo8619f972007-06-14 03:45:18 +0900391 atomic_set(&sd->s_active, 0);
Tejun Heoa26cd722007-06-14 03:45:14 +0900392
Tejun Heo0c096b52007-06-14 03:45:15 +0900393 sd->s_name = name;
Tejun Heoa26cd722007-06-14 03:45:14 +0900394 sd->s_mode = mode;
Ming Leibb2b0052013-04-04 22:22:37 +0800395 sd->s_flags = type | SYSFS_FLAG_REMOVED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 return sd;
Tejun Heo0c096b52007-06-14 03:45:15 +0900398
Akinobu Mita01da2422007-07-14 11:03:35 +0900399 err_out2:
Tejun Heo0c096b52007-06-14 03:45:15 +0900400 kmem_cache_free(sysfs_dir_cachep, sd);
Akinobu Mita01da2422007-07-14 11:03:35 +0900401 err_out1:
402 kfree(dup_name);
Tejun Heo0c096b52007-06-14 03:45:15 +0900403 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
Tejun Heo3007e992007-06-14 04:27:23 +0900406/**
Tejun Heofb6896d2007-06-14 04:27:24 +0900407 * sysfs_addrm_start - prepare for sysfs_dirent add/remove
408 * @acxt: pointer to sysfs_addrm_cxt to be used
Tejun Heo3007e992007-06-14 04:27:23 +0900409 *
Tejun Heod69ac5a2013-09-18 17:15:35 -0400410 * This function is called when the caller is about to add or remove
411 * sysfs_dirent. This function acquires sysfs_mutex. @acxt is used
412 * to keep and pass context to other addrm functions.
Tejun Heo3007e992007-06-14 04:27:23 +0900413 *
414 * LOCKING:
Tejun Heofb6896d2007-06-14 04:27:24 +0900415 * Kernel thread context (may sleep). sysfs_mutex is locked on
Eric W. Biedermana16bbc32009-11-20 16:08:55 -0800416 * return.
Tejun Heo3007e992007-06-14 04:27:23 +0900417 */
Tejun Heod69ac5a2013-09-18 17:15:35 -0400418void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt)
419 __acquires(sysfs_mutex)
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700420{
Tejun Heofb6896d2007-06-14 04:27:24 +0900421 memset(acxt, 0, sizeof(*acxt));
Tejun Heofb6896d2007-06-14 04:27:24 +0900422
Tejun Heofb6896d2007-06-14 04:27:24 +0900423 mutex_lock(&sysfs_mutex);
Tejun Heofb6896d2007-06-14 04:27:24 +0900424}
425
426/**
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200427 * __sysfs_add_one - add sysfs_dirent to parent without warning
428 * @acxt: addrm context to use
429 * @sd: sysfs_dirent to be added
Tejun Heod69ac5a2013-09-18 17:15:35 -0400430 * @parent_sd: the parent sysfs_dirent to add @sd to
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200431 *
Tejun Heod69ac5a2013-09-18 17:15:35 -0400432 * Get @parent_sd and set @sd->s_parent to it and increment nlink of
433 * the parent inode if @sd is a directory and link into the children
434 * list of the parent.
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200435 *
436 * This function should be called between calls to
437 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
438 * passed the same @acxt as passed to sysfs_addrm_start().
439 *
440 * LOCKING:
441 * Determined by sysfs_addrm_start().
442 *
443 * RETURNS:
444 * 0 on success, -EEXIST if entry with the given name already
445 * exists.
446 */
Tejun Heod69ac5a2013-09-18 17:15:35 -0400447int __sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd,
448 struct sysfs_dirent *parent_sd)
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200449{
Eric W. Biederman6b0bfe92009-11-20 16:08:51 -0800450 struct sysfs_inode_attrs *ps_iattr;
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800451 int ret;
Eric W. Biederman6b0bfe92009-11-20 16:08:51 -0800452
Tejun Heocfec0bc2013-09-11 22:29:09 -0400453 sd->s_hash = sysfs_name_hash(sd->s_name, sd->s_ns);
Tejun Heod69ac5a2013-09-18 17:15:35 -0400454 sd->s_parent = sysfs_get(parent_sd);
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200455
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800456 ret = sysfs_link_sibling(sd);
457 if (ret)
458 return ret;
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200459
Eric W. Biederman6b0bfe92009-11-20 16:08:51 -0800460 /* Update timestamps on the parent */
Tejun Heod69ac5a2013-09-18 17:15:35 -0400461 ps_iattr = parent_sd->s_iattr;
Eric W. Biederman6b0bfe92009-11-20 16:08:51 -0800462 if (ps_iattr) {
463 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
464 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
465 }
466
Ming Leibb2b0052013-04-04 22:22:37 +0800467 /* Mark the entry added into directory tree */
468 sd->s_flags &= ~SYSFS_FLAG_REMOVED;
469
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200470 return 0;
471}
472
473/**
Alex Chiang425cb022009-02-12 10:56:59 -0700474 * sysfs_pathname - return full path to sysfs dirent
475 * @sd: sysfs_dirent whose path we want
Geert Uytterhoeven66081a72012-09-29 22:23:19 +0200476 * @path: caller allocated buffer of size PATH_MAX
Alex Chiang425cb022009-02-12 10:56:59 -0700477 *
478 * Gives the name "/" to the sysfs_root entry; any path returned
479 * is relative to wherever sysfs is mounted.
Alex Chiang425cb022009-02-12 10:56:59 -0700480 */
481static char *sysfs_pathname(struct sysfs_dirent *sd, char *path)
482{
483 if (sd->s_parent) {
484 sysfs_pathname(sd->s_parent, path);
Geert Uytterhoeven66081a72012-09-29 22:23:19 +0200485 strlcat(path, "/", PATH_MAX);
Alex Chiang425cb022009-02-12 10:56:59 -0700486 }
Geert Uytterhoeven66081a72012-09-29 22:23:19 +0200487 strlcat(path, sd->s_name, PATH_MAX);
Alex Chiang425cb022009-02-12 10:56:59 -0700488 return path;
489}
490
491/**
Tejun Heofb6896d2007-06-14 04:27:24 +0900492 * sysfs_add_one - add sysfs_dirent to parent
493 * @acxt: addrm context to use
494 * @sd: sysfs_dirent to be added
Tejun Heod69ac5a2013-09-18 17:15:35 -0400495 * @parent_sd: the parent sysfs_dirent to add @sd to
Tejun Heofb6896d2007-06-14 04:27:24 +0900496 *
Tejun Heod69ac5a2013-09-18 17:15:35 -0400497 * Get @parent_sd and set @sd->s_parent to it and increment nlink of
498 * the parent inode if @sd is a directory and link into the children
499 * list of the parent.
Tejun Heofb6896d2007-06-14 04:27:24 +0900500 *
501 * This function should be called between calls to
502 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
503 * passed the same @acxt as passed to sysfs_addrm_start().
504 *
505 * LOCKING:
506 * Determined by sysfs_addrm_start().
Tejun Heo23dc2792007-08-02 21:38:03 +0900507 *
508 * RETURNS:
509 * 0 on success, -EEXIST if entry with the given name already
510 * exists.
Tejun Heofb6896d2007-06-14 04:27:24 +0900511 */
Tejun Heod69ac5a2013-09-18 17:15:35 -0400512int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd,
513 struct sysfs_dirent *parent_sd)
Tejun Heofb6896d2007-06-14 04:27:24 +0900514{
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200515 int ret;
Tejun Heo23dc2792007-08-02 21:38:03 +0900516
Tejun Heod69ac5a2013-09-18 17:15:35 -0400517 ret = __sysfs_add_one(acxt, sd, parent_sd);
Alex Chiang425cb022009-02-12 10:56:59 -0700518 if (ret == -EEXIST) {
519 char *path = kzalloc(PATH_MAX, GFP_KERNEL);
520 WARN(1, KERN_WARNING
521 "sysfs: cannot create duplicate filename '%s'\n",
Geert Uytterhoeven66081a72012-09-29 22:23:19 +0200522 (path == NULL) ? sd->s_name
Tejun Heod69ac5a2013-09-18 17:15:35 -0400523 : (sysfs_pathname(parent_sd, path),
Geert Uytterhoeven66081a72012-09-29 22:23:19 +0200524 strlcat(path, "/", PATH_MAX),
525 strlcat(path, sd->s_name, PATH_MAX),
526 path));
Alex Chiang425cb022009-02-12 10:56:59 -0700527 kfree(path);
528 }
529
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200530 return ret;
Tejun Heofb6896d2007-06-14 04:27:24 +0900531}
532
533/**
534 * sysfs_remove_one - remove sysfs_dirent from parent
535 * @acxt: addrm context to use
Jean Delvare9fd5b1c2008-01-08 18:11:24 +0100536 * @sd: sysfs_dirent to be removed
Tejun Heofb6896d2007-06-14 04:27:24 +0900537 *
538 * Mark @sd removed and drop nlink of parent inode if @sd is a
Tejun Heo181b2e42007-09-20 16:05:09 +0900539 * directory. @sd is unlinked from the children list.
Tejun Heofb6896d2007-06-14 04:27:24 +0900540 *
541 * This function should be called between calls to
542 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
543 * passed the same @acxt as passed to sysfs_addrm_start().
544 *
545 * LOCKING:
546 * Determined by sysfs_addrm_start().
547 */
548void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
549{
Eric W. Biederman6b0bfe92009-11-20 16:08:51 -0800550 struct sysfs_inode_attrs *ps_iattr;
551
Tejun Heo26ea12d2013-09-18 17:15:36 -0400552 /*
553 * Removal can be called multiple times on the same node. Only the
554 * first invocation is effective and puts the base ref.
555 */
556 if (sd->s_flags & SYSFS_FLAG_REMOVED)
557 return;
Tejun Heo41fc1c22007-08-02 21:38:03 +0900558
559 sysfs_unlink_sibling(sd);
Tejun Heofb6896d2007-06-14 04:27:24 +0900560
Eric W. Biederman6b0bfe92009-11-20 16:08:51 -0800561 /* Update timestamps on the parent */
Tejun Heod69ac5a2013-09-18 17:15:35 -0400562 ps_iattr = sd->s_parent->s_iattr;
Eric W. Biederman6b0bfe92009-11-20 16:08:51 -0800563 if (ps_iattr) {
564 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
565 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
566 }
567
Tejun Heofb6896d2007-06-14 04:27:24 +0900568 sd->s_flags |= SYSFS_FLAG_REMOVED;
Mikulas Patocka58f2a4c2011-07-21 20:01:12 -0400569 sd->u.removed_list = acxt->removed;
Tejun Heofb6896d2007-06-14 04:27:24 +0900570 acxt->removed = sd;
Tejun Heoa0edd7c2007-06-14 04:27:24 +0900571}
572
573/**
Tejun Heofb6896d2007-06-14 04:27:24 +0900574 * sysfs_addrm_finish - finish up sysfs_dirent add/remove
575 * @acxt: addrm context to finish up
576 *
577 * Finish up sysfs_dirent add/remove. Resources acquired by
578 * sysfs_addrm_start() are released and removed sysfs_dirents are
Eric W. Biedermana16bbc32009-11-20 16:08:55 -0800579 * cleaned up.
Tejun Heofb6896d2007-06-14 04:27:24 +0900580 *
581 * LOCKING:
Eric W. Biedermana16bbc32009-11-20 16:08:55 -0800582 * sysfs_mutex is released.
Tejun Heofb6896d2007-06-14 04:27:24 +0900583 */
Tejun Heo990e53f2007-08-02 21:38:03 +0900584void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt)
Tejun Heod69ac5a2013-09-18 17:15:35 -0400585 __releases(sysfs_mutex)
Tejun Heofb6896d2007-06-14 04:27:24 +0900586{
587 /* release resources acquired by sysfs_addrm_start() */
588 mutex_unlock(&sysfs_mutex);
Tejun Heofb6896d2007-06-14 04:27:24 +0900589
590 /* kill removed sysfs_dirents */
591 while (acxt->removed) {
592 struct sysfs_dirent *sd = acxt->removed;
593
Mikulas Patocka58f2a4c2011-07-21 20:01:12 -0400594 acxt->removed = sd->u.removed_list;
Tejun Heofb6896d2007-06-14 04:27:24 +0900595
Tejun Heofb6896d2007-06-14 04:27:24 +0900596 sysfs_deactivate(sd);
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800597 unmap_bin_file(sd);
Tejun Heofb6896d2007-06-14 04:27:24 +0900598 sysfs_put(sd);
599 }
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700600}
601
Tejun Heof0b0af42007-06-14 04:27:22 +0900602/**
603 * sysfs_find_dirent - find sysfs_dirent with the given name
604 * @parent_sd: sysfs_dirent to search under
605 * @name: name to look for
Tejun Heocfec0bc2013-09-11 22:29:09 -0400606 * @ns: the namespace tag to use
Maneesh Sonic5168652006-03-09 19:40:14 +0530607 *
Tejun Heof0b0af42007-06-14 04:27:22 +0900608 * Look for sysfs_dirent with name @name under @parent_sd.
Maneesh Sonic5168652006-03-09 19:40:14 +0530609 *
Tejun Heof0b0af42007-06-14 04:27:22 +0900610 * LOCKING:
Tejun Heo3007e992007-06-14 04:27:23 +0900611 * mutex_lock(sysfs_mutex)
Tejun Heof0b0af42007-06-14 04:27:22 +0900612 *
613 * RETURNS:
614 * Pointer to sysfs_dirent if found, NULL if not.
Maneesh Sonic5168652006-03-09 19:40:14 +0530615 */
Tejun Heof0b0af42007-06-14 04:27:22 +0900616struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
Tejun Heocfec0bc2013-09-11 22:29:09 -0400617 const unsigned char *name,
618 const void *ns)
Maneesh Sonic5168652006-03-09 19:40:14 +0530619{
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800620 struct rb_node *node = parent_sd->s_dir.children.rb_node;
621 unsigned int hash;
Maneesh Sonic5168652006-03-09 19:40:14 +0530622
Tejun Heocfec0bc2013-09-11 22:29:09 -0400623 hash = sysfs_name_hash(name, ns);
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800624 while (node) {
625 struct sysfs_dirent *sd;
626 int result;
Mikulas Patocka4f72c0c2011-07-25 17:55:57 -0400627
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800628 sd = to_sysfs_dirent(node);
Tejun Heocfec0bc2013-09-11 22:29:09 -0400629 result = sysfs_name_compare(hash, name, ns, sd);
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800630 if (result < 0)
631 node = node->rb_left;
632 else if (result > 0)
633 node = node->rb_right;
634 else
635 return sd;
Mikulas Patocka4f72c0c2011-07-25 17:55:57 -0400636 }
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800637 return NULL;
Tejun Heof0b0af42007-06-14 04:27:22 +0900638}
Maneesh Sonic5168652006-03-09 19:40:14 +0530639
Tejun Heof0b0af42007-06-14 04:27:22 +0900640/**
Tejun Heo388975c2013-09-11 23:19:13 -0400641 * sysfs_get_dirent_ns - find and get sysfs_dirent with the given name
Tejun Heof0b0af42007-06-14 04:27:22 +0900642 * @parent_sd: sysfs_dirent to search under
643 * @name: name to look for
Tejun Heo388975c2013-09-11 23:19:13 -0400644 * @ns: the namespace tag to use
Tejun Heof0b0af42007-06-14 04:27:22 +0900645 *
646 * Look for sysfs_dirent with name @name under @parent_sd and get
647 * it if found.
648 *
649 * LOCKING:
Tejun Heo3007e992007-06-14 04:27:23 +0900650 * Kernel thread context (may sleep). Grabs sysfs_mutex.
Tejun Heof0b0af42007-06-14 04:27:22 +0900651 *
652 * RETURNS:
653 * Pointer to sysfs_dirent if found, NULL if not.
654 */
Tejun Heo388975c2013-09-11 23:19:13 -0400655struct sysfs_dirent *sysfs_get_dirent_ns(struct sysfs_dirent *parent_sd,
656 const unsigned char *name,
657 const void *ns)
Tejun Heof0b0af42007-06-14 04:27:22 +0900658{
659 struct sysfs_dirent *sd;
660
Tejun Heo3007e992007-06-14 04:27:23 +0900661 mutex_lock(&sysfs_mutex);
Tejun Heocfec0bc2013-09-11 22:29:09 -0400662 sd = sysfs_find_dirent(parent_sd, name, ns);
Tejun Heof0b0af42007-06-14 04:27:22 +0900663 sysfs_get(sd);
Tejun Heo3007e992007-06-14 04:27:23 +0900664 mutex_unlock(&sysfs_mutex);
Tejun Heof0b0af42007-06-14 04:27:22 +0900665
666 return sd;
Maneesh Sonic5168652006-03-09 19:40:14 +0530667}
Tejun Heo388975c2013-09-11 23:19:13 -0400668EXPORT_SYMBOL_GPL(sysfs_get_dirent_ns);
Maneesh Sonic5168652006-03-09 19:40:14 +0530669
Tejun Heo608e2662007-06-14 04:27:22 +0900670static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd,
Tejun Heocfec0bc2013-09-11 22:29:09 -0400671 const char *name, const void *ns,
672 struct sysfs_dirent **p_sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -0700674 umode_t mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO;
Tejun Heo51225032007-06-14 04:27:25 +0900675 struct sysfs_addrm_cxt acxt;
Tejun Heodfeb9fb2007-06-14 03:45:14 +0900676 struct sysfs_dirent *sd;
Tejun Heo23dc2792007-08-02 21:38:03 +0900677 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Tejun Heofc9f54b2007-06-14 03:45:17 +0900679 /* allocate */
Tejun Heo3e519032007-06-14 03:45:15 +0900680 sd = sysfs_new_dirent(name, mode, SYSFS_DIR);
Tejun Heoa26cd722007-06-14 03:45:14 +0900681 if (!sd)
Tejun Heo51225032007-06-14 04:27:25 +0900682 return -ENOMEM;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700683
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700684 sd->s_ns = ns;
Tejun Heob1fc3d62007-09-20 16:05:11 +0900685 sd->s_dir.kobj = kobj;
Tejun Heodfeb9fb2007-06-14 03:45:14 +0900686
Tejun Heo51225032007-06-14 04:27:25 +0900687 /* link in */
Tejun Heod69ac5a2013-09-18 17:15:35 -0400688 sysfs_addrm_start(&acxt);
689 rc = sysfs_add_one(&acxt, sd, parent_sd);
Tejun Heo23dc2792007-08-02 21:38:03 +0900690 sysfs_addrm_finish(&acxt);
Tejun Heo967e35d2007-07-18 16:38:11 +0900691
Tejun Heo23dc2792007-08-02 21:38:03 +0900692 if (rc == 0)
693 *p_sd = sd;
694 else
Tejun Heo967e35d2007-07-18 16:38:11 +0900695 sysfs_put(sd);
Tejun Heofc9f54b2007-06-14 03:45:17 +0900696
Tejun Heo23dc2792007-08-02 21:38:03 +0900697 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Tejun Heo608e2662007-06-14 04:27:22 +0900700int sysfs_create_subdir(struct kobject *kobj, const char *name,
701 struct sysfs_dirent **p_sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Tejun Heocfec0bc2013-09-11 22:29:09 -0400703 return create_dir(kobj, kobj->sd, name, NULL, p_sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
706/**
Tejun Heoe34ff492013-09-11 22:29:05 -0400707 * sysfs_create_dir_ns - create a directory for an object with a namespace tag
708 * @kobj: object we're creating directory for
709 * @ns: the namespace tag to use
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 */
Tejun Heoe34ff492013-09-11 22:29:05 -0400711int sysfs_create_dir_ns(struct kobject *kobj, const void *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Tejun Heo608e2662007-06-14 04:27:22 +0900713 struct sysfs_dirent *parent_sd, *sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int error = 0;
715
716 BUG_ON(!kobj);
717
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900718 if (kobj->parent)
Tejun Heo608e2662007-06-14 04:27:22 +0900719 parent_sd = kobj->parent->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 else
Eric W. Biederman7d0c7d62007-08-20 21:36:30 +0900721 parent_sd = &sysfs_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Dan Williams3a198882012-04-06 13:41:06 -0700723 if (!parent_sd)
724 return -ENOENT;
725
Tejun Heocfec0bc2013-09-11 22:29:09 -0400726 error = create_dir(kobj, parent_sd, kobject_name(kobj), ns, &sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (!error)
Tejun Heo608e2662007-06-14 04:27:22 +0900728 kobj->sd = sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return error;
730}
731
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -0700732static struct dentry *sysfs_lookup(struct inode *dir, struct dentry *dentry,
733 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Tejun Heo6cb52142007-07-31 19:15:08 +0900735 struct dentry *ret = NULL;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700736 struct dentry *parent = dentry->d_parent;
737 struct sysfs_dirent *parent_sd = parent->d_fsdata;
Tejun Heoa7a04752007-08-02 21:38:02 +0900738 struct sysfs_dirent *sd;
Tejun Heofc9f54b2007-06-14 03:45:17 +0900739 struct inode *inode;
Tejun Heocb26a312013-09-11 22:29:07 -0400740 const void *ns = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Tejun Heo6cb52142007-07-31 19:15:08 +0900742 mutex_lock(&sysfs_mutex);
743
Tejun Heocb26a312013-09-11 22:29:07 -0400744 if (parent_sd->s_flags & SYSFS_FLAG_HAS_NS)
745 ns = sysfs_info(dir->i_sb)->ns;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700746
Tejun Heocfec0bc2013-09-11 22:29:09 -0400747 sd = sysfs_find_dirent(parent_sd, dentry->d_name.name, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Tejun Heofc9f54b2007-06-14 03:45:17 +0900749 /* no such entry */
Tejun Heoe49452c2008-01-16 12:06:14 +0900750 if (!sd) {
751 ret = ERR_PTR(-ENOENT);
Tejun Heo6cb52142007-07-31 19:15:08 +0900752 goto out_unlock;
Tejun Heoe49452c2008-01-16 12:06:14 +0900753 }
Al Viro469796d2012-06-07 20:51:39 -0400754 dentry->d_fsdata = sysfs_get(sd);
Tejun Heofc9f54b2007-06-14 03:45:17 +0900755
756 /* attach dentry and inode */
Eric W. Biedermanfac26222010-02-12 19:22:27 -0800757 inode = sysfs_get_inode(dir->i_sb, sd);
Tejun Heo6cb52142007-07-31 19:15:08 +0900758 if (!inode) {
759 ret = ERR_PTR(-ENOMEM);
760 goto out_unlock;
761 }
Tejun Heo3007e992007-06-14 04:27:23 +0900762
Tejun Heod6b4fd22007-09-20 16:05:11 +0900763 /* instantiate and hash dentry */
Al Viroe77fb7c2012-06-07 20:56:54 -0400764 ret = d_materialise_unique(dentry, inode);
Tejun Heo6cb52142007-07-31 19:15:08 +0900765 out_unlock:
Tejun Heo3007e992007-06-14 04:27:23 +0900766 mutex_unlock(&sysfs_mutex);
Tejun Heo6cb52142007-07-31 19:15:08 +0900767 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800770const struct inode_operations sysfs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 .lookup = sysfs_lookup,
Eric W. Biedermane61ab4a2009-11-20 16:08:53 -0800772 .permission = sysfs_permission,
Maneesh Soni988d1862005-05-31 10:39:14 +0530773 .setattr = sysfs_setattr,
Eric W. Biedermane61ab4a2009-11-20 16:08:53 -0800774 .getattr = sysfs_getattr,
David P. Quigleyddd29ec2009-09-09 14:25:37 -0400775 .setxattr = sysfs_setxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776};
777
Tejun Heo608e2662007-06-14 04:27:22 +0900778static void remove_dir(struct sysfs_dirent *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Tejun Heofb6896d2007-06-14 04:27:24 +0900780 struct sysfs_addrm_cxt acxt;
781
Tejun Heod69ac5a2013-09-18 17:15:35 -0400782 sysfs_addrm_start(&acxt);
Tejun Heofb6896d2007-06-14 04:27:24 +0900783 sysfs_remove_one(&acxt, sd);
784 sysfs_addrm_finish(&acxt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
Tejun Heo608e2662007-06-14 04:27:22 +0900787void sysfs_remove_subdir(struct sysfs_dirent *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Tejun Heo608e2662007-06-14 04:27:22 +0900789 remove_dir(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
Tejun Heobcdde7e2013-09-18 17:15:37 -0400792static struct sysfs_dirent *sysfs_leftmost_descendant(struct sysfs_dirent *pos)
793{
794 struct sysfs_dirent *last;
795
796 while (true) {
797 struct rb_node *rbn;
798
799 last = pos;
800
801 if (sysfs_type(pos) != SYSFS_DIR)
802 break;
803
804 rbn = rb_first(&pos->s_dir.children);
805 if (!rbn)
806 break;
807
808 pos = to_sysfs_dirent(rbn);
809 }
810
811 return last;
812}
813
814/**
815 * sysfs_next_descendant_post - find the next descendant for post-order walk
816 * @pos: the current position (%NULL to initiate traversal)
817 * @root: sysfs_dirent whose descendants to walk
818 *
819 * Find the next descendant to visit for post-order traversal of @root's
820 * descendants. @root is included in the iteration and the last node to be
821 * visited.
822 */
823static struct sysfs_dirent *sysfs_next_descendant_post(struct sysfs_dirent *pos,
824 struct sysfs_dirent *root)
825{
826 struct rb_node *rbn;
827
828 lockdep_assert_held(&sysfs_mutex);
829
830 /* if first iteration, visit leftmost descendant which may be root */
831 if (!pos)
832 return sysfs_leftmost_descendant(root);
833
834 /* if we visited @root, we're done */
835 if (pos == root)
836 return NULL;
837
838 /* if there's an unvisited sibling, visit its leftmost descendant */
839 rbn = rb_next(&pos->s_rb);
840 if (rbn)
841 return sysfs_leftmost_descendant(to_sysfs_dirent(rbn));
842
843 /* no sibling left, visit parent */
844 return pos->s_parent;
845}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Tejun Heo608e2662007-06-14 04:27:22 +0900847static void __sysfs_remove_dir(struct sysfs_dirent *dir_sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Tejun Heofb6896d2007-06-14 04:27:24 +0900849 struct sysfs_addrm_cxt acxt;
Tejun Heobcdde7e2013-09-18 17:15:37 -0400850 struct sysfs_dirent *pos, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Tejun Heo608e2662007-06-14 04:27:22 +0900852 if (!dir_sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return;
854
Tejun Heo608e2662007-06-14 04:27:22 +0900855 pr_debug("sysfs %s: removing dir\n", dir_sd->s_name);
Tejun Heod69ac5a2013-09-18 17:15:35 -0400856 sysfs_addrm_start(&acxt);
Tejun Heo0ab66082007-06-14 03:45:16 +0900857
Tejun Heobcdde7e2013-09-18 17:15:37 -0400858 next = NULL;
859 do {
860 pos = next;
861 next = sysfs_next_descendant_post(pos, dir_sd);
862 if (pos)
863 sysfs_remove_one(&acxt, pos);
864 } while (next);
865
866 sysfs_addrm_finish(&acxt);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700867}
868
869/**
870 * sysfs_remove_dir - remove an object's directory.
871 * @kobj: object.
872 *
873 * The only thing special about this is that we remove any files in
874 * the directory before we remove the directory, and we've inlined
875 * what used to be sysfs_rmdir() below, instead of calling separately.
876 */
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -0700877void sysfs_remove_dir(struct kobject *kobj)
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700878{
Tejun Heo608e2662007-06-14 04:27:22 +0900879 struct sysfs_dirent *sd = kobj->sd;
Tejun Heoaecdced2007-06-14 03:45:15 +0900880
Tejun Heo5f995322007-06-14 04:27:23 +0900881 spin_lock(&sysfs_assoc_lock);
Tejun Heo608e2662007-06-14 04:27:22 +0900882 kobj->sd = NULL;
Tejun Heo5f995322007-06-14 04:27:23 +0900883 spin_unlock(&sysfs_assoc_lock);
Tejun Heoaecdced2007-06-14 03:45:15 +0900884
Tejun Heo608e2662007-06-14 04:27:22 +0900885 __sysfs_remove_dir(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
Tejun Heocfec0bc2013-09-11 22:29:09 -0400888int sysfs_rename(struct sysfs_dirent *sd, struct sysfs_dirent *new_parent_sd,
889 const char *new_name, const void *new_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Tejun Heo996b7372007-06-14 03:45:14 +0900891 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Eric W. Biederman832b6af2009-11-20 16:08:56 -0800893 mutex_lock(&sysfs_mutex);
Eric W. Biederman932ea2e2007-08-20 21:36:30 +0900894
Eric W. Biederman9918f9a2007-08-20 21:36:31 +0900895 error = 0;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700896 if ((sd->s_parent == new_parent_sd) && (sd->s_ns == new_ns) &&
Eric W. Biedermanca1bab32009-11-20 16:08:57 -0800897 (strcmp(sd->s_name, new_name) == 0))
Eric W. Biederman9918f9a2007-08-20 21:36:31 +0900898 goto out; /* nothing to rename */
899
Tejun Heo996b7372007-06-14 03:45:14 +0900900 error = -EEXIST;
Tejun Heocfec0bc2013-09-11 22:29:09 -0400901 if (sysfs_find_dirent(new_parent_sd, new_name, new_ns))
Eric W. Biederman832b6af2009-11-20 16:08:56 -0800902 goto out;
Tejun Heo996b7372007-06-14 03:45:14 +0900903
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700904 /* rename sysfs_dirent */
Eric W. Biedermanca1bab32009-11-20 16:08:57 -0800905 if (strcmp(sd->s_name, new_name) != 0) {
906 error = -ENOMEM;
Sasikantha babub4eafca2012-05-03 02:26:14 +0530907 new_name = kstrdup(new_name, GFP_KERNEL);
Eric W. Biedermanca1bab32009-11-20 16:08:57 -0800908 if (!new_name)
909 goto out;
Tejun Heo996b7372007-06-14 03:45:14 +0900910
Sasikantha babub4eafca2012-05-03 02:26:14 +0530911 kfree(sd->s_name);
Eric W. Biedermanca1bab32009-11-20 16:08:57 -0800912 sd->s_name = new_name;
913 }
914
Greg Kroah-Hartmanddfd6d02013-08-21 16:33:34 -0700915 /*
916 * Move to the appropriate place in the appropriate directories rbtree.
917 */
Eric W. Biedermanf6d90b42011-11-01 07:06:17 -0700918 sysfs_unlink_sibling(sd);
919 sysfs_get(new_parent_sd);
920 sysfs_put(sd->s_parent);
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700921 sd->s_ns = new_ns;
Tejun Heocfec0bc2013-09-11 22:29:09 -0400922 sd->s_hash = sysfs_name_hash(sd->s_name, sd->s_ns);
Eric W. Biedermanf6d90b42011-11-01 07:06:17 -0700923 sd->s_parent = new_parent_sd;
924 sysfs_link_sibling(sd);
Tejun Heo0c096b52007-06-14 03:45:15 +0900925
Tejun Heo996b7372007-06-14 03:45:14 +0900926 error = 0;
Eric W. Biederman9918f9a2007-08-20 21:36:31 +0900927 out:
Eric W. Biederman832b6af2009-11-20 16:08:56 -0800928 mutex_unlock(&sysfs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return error;
930}
931
Tejun Heoe34ff492013-09-11 22:29:05 -0400932int sysfs_rename_dir_ns(struct kobject *kobj, const char *new_name,
933 const void *new_ns)
Eric W. Biedermanca1bab32009-11-20 16:08:57 -0800934{
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700935 struct sysfs_dirent *parent_sd = kobj->sd->s_parent;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700936
Tejun Heocfec0bc2013-09-11 22:29:09 -0400937 return sysfs_rename(kobj->sd, parent_sd, new_name, new_ns);
Eric W. Biedermanca1bab32009-11-20 16:08:57 -0800938}
939
Tejun Heoe34ff492013-09-11 22:29:05 -0400940int sysfs_move_dir_ns(struct kobject *kobj, struct kobject *new_parent_kobj,
941 const void *new_ns)
Cornelia Huck8a824722006-11-20 17:07:51 +0100942{
Tejun Heo51225032007-06-14 04:27:25 +0900943 struct sysfs_dirent *sd = kobj->sd;
944 struct sysfs_dirent *new_parent_sd;
Cornelia Huck8a824722006-11-20 17:07:51 +0100945
Tejun Heo51225032007-06-14 04:27:25 +0900946 BUG_ON(!sd->s_parent);
Eric W. Biedermanca1bab32009-11-20 16:08:57 -0800947 new_parent_sd = new_parent_kobj && new_parent_kobj->sd ?
Cornelia Hucka6a83572009-10-06 15:33:35 +0200948 new_parent_kobj->sd : &sysfs_root;
Cornelia Huck8a824722006-11-20 17:07:51 +0100949
Tejun Heocfec0bc2013-09-11 22:29:09 -0400950 return sysfs_rename(sd, new_parent_sd, sd->s_name, new_ns);
Cornelia Huck8a824722006-11-20 17:07:51 +0100951}
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953/* Relationship between s_mode and the DT_xxx types */
954static inline unsigned char dt_type(struct sysfs_dirent *sd)
955{
956 return (sd->s_mode >> 12) & 15;
957}
958
Eric W. Biederman1e5289c2010-01-01 14:43:53 -0800959static int sysfs_dir_release(struct inode *inode, struct file *filp)
960{
961 sysfs_put(filp->private_data);
962 return 0;
963}
964
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700965static struct sysfs_dirent *sysfs_dir_pos(const void *ns,
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800966 struct sysfs_dirent *parent_sd, loff_t hash, struct sysfs_dirent *pos)
Eric W. Biederman1e5289c2010-01-01 14:43:53 -0800967{
968 if (pos) {
969 int valid = !(pos->s_flags & SYSFS_FLAG_REMOVED) &&
970 pos->s_parent == parent_sd &&
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800971 hash == pos->s_hash;
Eric W. Biederman1e5289c2010-01-01 14:43:53 -0800972 sysfs_put(pos);
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700973 if (!valid)
974 pos = NULL;
Eric W. Biederman1e5289c2010-01-01 14:43:53 -0800975 }
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800976 if (!pos && (hash > 1) && (hash < INT_MAX)) {
977 struct rb_node *node = parent_sd->s_dir.children.rb_node;
978 while (node) {
979 pos = to_sysfs_dirent(node);
980
981 if (hash < pos->s_hash)
982 node = node->rb_left;
983 else if (hash > pos->s_hash)
984 node = node->rb_right;
985 else
Mikulas Patockaa406f752011-07-25 17:57:03 -0400986 break;
Mikulas Patockaa406f752011-07-25 17:57:03 -0400987 }
Eric W. Biederman1e5289c2010-01-01 14:43:53 -0800988 }
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800989 /* Skip over entries in the wrong namespace */
Eric W. Biedermanb9e2780d2011-10-25 05:38:41 -0700990 while (pos && pos->s_ns != ns) {
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800991 struct rb_node *node = rb_next(&pos->s_rb);
992 if (!node)
Mikulas Patockaa406f752011-07-25 17:57:03 -0400993 pos = NULL;
994 else
Eric W. Biederman4e4d6d82011-12-18 20:05:43 -0800995 pos = to_sysfs_dirent(node);
Mikulas Patockaa406f752011-07-25 17:57:03 -0400996 }
Eric W. Biederman1e5289c2010-01-01 14:43:53 -0800997 return pos;
998}
999
Eric W. Biederman3ff195b2010-03-30 11:31:26 -07001000static struct sysfs_dirent *sysfs_dir_next_pos(const void *ns,
1001 struct sysfs_dirent *parent_sd, ino_t ino, struct sysfs_dirent *pos)
Eric W. Biederman1e5289c2010-01-01 14:43:53 -08001002{
Eric W. Biederman3ff195b2010-03-30 11:31:26 -07001003 pos = sysfs_dir_pos(ns, parent_sd, ino, pos);
Greg Kroah-Hartman37814ee2013-08-21 16:36:02 -07001004 if (pos)
1005 do {
1006 struct rb_node *node = rb_next(&pos->s_rb);
1007 if (!node)
1008 pos = NULL;
1009 else
1010 pos = to_sysfs_dirent(node);
1011 } while (pos && pos->s_ns != ns);
Eric W. Biederman1e5289c2010-01-01 14:43:53 -08001012 return pos;
1013}
1014
Al Virod55fea82013-05-16 14:31:02 -04001015static int sysfs_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Al Virod55fea82013-05-16 14:31:02 -04001017 struct dentry *dentry = file->f_path.dentry;
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -07001018 struct sysfs_dirent *parent_sd = dentry->d_fsdata;
Al Virod55fea82013-05-16 14:31:02 -04001019 struct sysfs_dirent *pos = file->private_data;
Tejun Heocb26a312013-09-11 22:29:07 -04001020 const void *ns = NULL;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -07001021
Al Virod55fea82013-05-16 14:31:02 -04001022 if (!dir_emit_dots(file, ctx))
1023 return 0;
Eric W. Biederman1e5289c2010-01-01 14:43:53 -08001024 mutex_lock(&sysfs_mutex);
Tejun Heocb26a312013-09-11 22:29:07 -04001025
1026 if (parent_sd->s_flags & SYSFS_FLAG_HAS_NS)
1027 ns = sysfs_info(dentry->d_sb)->ns;
1028
Al Virod55fea82013-05-16 14:31:02 -04001029 for (pos = sysfs_dir_pos(ns, parent_sd, ctx->pos, pos);
Eric W. Biederman1e5289c2010-01-01 14:43:53 -08001030 pos;
Al Virod55fea82013-05-16 14:31:02 -04001031 pos = sysfs_dir_next_pos(ns, parent_sd, ctx->pos, pos)) {
1032 const char *name = pos->s_name;
1033 unsigned int type = dt_type(pos);
1034 int len = strlen(name);
1035 ino_t ino = pos->s_ino;
1036 ctx->pos = pos->s_hash;
1037 file->private_data = sysfs_get(pos);
Eric W. Biederman3efa65b2007-08-20 21:36:30 +09001038
Eric W. Biederman3efa65b2007-08-20 21:36:30 +09001039 mutex_unlock(&sysfs_mutex);
Al Virod55fea82013-05-16 14:31:02 -04001040 if (!dir_emit(ctx, name, len, ino, type))
1041 return 0;
Eric W. Biederman1e5289c2010-01-01 14:43:53 -08001042 mutex_lock(&sysfs_mutex);
Eric W. Biederman1e5289c2010-01-01 14:43:53 -08001043 }
1044 mutex_unlock(&sysfs_mutex);
Al Virod55fea82013-05-16 14:31:02 -04001045 file->private_data = NULL;
1046 ctx->pos = INT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return 0;
1048}
1049
Ming Lei991f76f2013-03-20 23:25:24 +08001050static loff_t sysfs_dir_llseek(struct file *file, loff_t offset, int whence)
1051{
1052 struct inode *inode = file_inode(file);
1053 loff_t ret;
1054
1055 mutex_lock(&inode->i_mutex);
1056 ret = generic_file_llseek(file, offset, whence);
1057 mutex_unlock(&inode->i_mutex);
1058
1059 return ret;
1060}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001062const struct file_operations sysfs_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 .read = generic_read_dir,
Al Virod55fea82013-05-16 14:31:02 -04001064 .iterate = sysfs_readdir,
Eric W. Biederman1e5289c2010-01-01 14:43:53 -08001065 .release = sysfs_dir_release,
Ming Lei991f76f2013-03-20 23:25:24 +08001066 .llseek = sysfs_dir_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067};