| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Tejun Heo | 6d66f5c | 2007-09-20 17:31:38 +0900 | [diff] [blame] | 2 | * fs/sysfs/dir.c - sysfs core and dir operation implementation | 
|  | 3 | * | 
|  | 4 | * Copyright (c) 2001-3 Patrick Mochel | 
|  | 5 | * Copyright (c) 2007 SUSE Linux Products GmbH | 
|  | 6 | * Copyright (c) 2007 Tejun Heo <teheo@suse.de> | 
|  | 7 | * | 
|  | 8 | * This file is released under the GPLv2. | 
|  | 9 | * | 
|  | 10 | * Please see Documentation/filesystems/sysfs.txt for more information. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ | 
|  | 12 |  | 
|  | 13 | #undef DEBUG | 
|  | 14 |  | 
|  | 15 | #include <linux/fs.h> | 
|  | 16 | #include <linux/mount.h> | 
|  | 17 | #include <linux/module.h> | 
|  | 18 | #include <linux/kobject.h> | 
| Christoph Hellwig | 5f45f1a | 2005-06-23 00:09:12 -0700 | [diff] [blame] | 19 | #include <linux/namei.h> | 
| Tejun Heo | 2b611bb | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 20 | #include <linux/idr.h> | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 21 | #include <linux/completion.h> | 
| Dave Young | 869512a | 2007-07-26 14:53:53 +0000 | [diff] [blame] | 22 | #include <linux/mutex.h> | 
| Robert P. J. Day | c6f8773 | 2008-03-13 22:41:52 -0400 | [diff] [blame] | 23 | #include <linux/slab.h> | 
| Eric W. Biederman | 4c3da22 | 2009-11-04 02:50:06 -0800 | [diff] [blame] | 24 | #include <linux/security.h> | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 25 | #include <linux/hash.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include "sysfs.h" | 
|  | 27 |  | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 28 | DEFINE_MUTEX(sysfs_mutex); | 
| Roel Kluin | f7a75f0 | 2007-10-16 23:30:25 -0700 | [diff] [blame] | 29 | DEFINE_SPINLOCK(sysfs_assoc_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 |  | 
| Tejun Heo | bcac376 | 2013-09-11 22:29:03 -0400 | [diff] [blame] | 31 | #define to_sysfs_dirent(X) rb_entry((X), struct sysfs_dirent, s_rb) | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 32 |  | 
| Roel Kluin | f7a75f0 | 2007-10-16 23:30:25 -0700 | [diff] [blame] | 33 | static DEFINE_SPINLOCK(sysfs_ino_lock); | 
| Tejun Heo | 2b611bb | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 34 | static DEFINE_IDA(sysfs_ino_ida); | 
|  | 35 |  | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 36 | /** | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 37 | *	sysfs_name_hash | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 38 | *	@name: Null terminated string to hash | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 39 | *	@ns:   Namespace tag to hash | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 40 | * | 
|  | 41 | *	Returns 31 bit hash of ns + name (so it fits in an off_t ) | 
|  | 42 | */ | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 43 | static unsigned int sysfs_name_hash(const char *name, const void *ns) | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 44 | { | 
|  | 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-Hartman | 1b18dc2 | 2013-08-21 16:28:26 -0700 | [diff] [blame] | 49 | hash = (end_name_hash(hash) ^ hash_ptr((void *)ns, 31)); | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 50 | hash &= 0x7fffffffU; | 
|  | 51 | /* Reserve hash numbers 0, 1 and INT_MAX for magic directory entries */ | 
|  | 52 | if (hash < 1) | 
|  | 53 | hash += 2; | 
|  | 54 | if (hash >= INT_MAX) | 
|  | 55 | hash = INT_MAX - 1; | 
|  | 56 | return hash; | 
|  | 57 | } | 
|  | 58 |  | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 59 | static int sysfs_name_compare(unsigned int hash, const char *name, | 
|  | 60 | const void *ns, const struct sysfs_dirent *sd) | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 61 | { | 
|  | 62 | if (hash != sd->s_hash) | 
|  | 63 | return hash - sd->s_hash; | 
|  | 64 | if (ns != sd->s_ns) | 
|  | 65 | return ns - sd->s_ns; | 
|  | 66 | return strcmp(name, sd->s_name); | 
|  | 67 | } | 
|  | 68 |  | 
|  | 69 | static int sysfs_sd_compare(const struct sysfs_dirent *left, | 
|  | 70 | const struct sysfs_dirent *right) | 
|  | 71 | { | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 72 | return sysfs_name_compare(left->s_hash, left->s_name, left->s_ns, | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 73 | right); | 
|  | 74 | } | 
|  | 75 |  | 
|  | 76 | /** | 
| Warner Wang | 4347491 | 2013-05-13 11:11:05 +0800 | [diff] [blame] | 77 | *	sysfs_link_sibling - link sysfs_dirent into sibling rbtree | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 78 | *	@sd: sysfs_dirent of interest | 
|  | 79 | * | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 80 | *	Link @sd into its sibling rbtree which starts from | 
| Tejun Heo | bc747f3 | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 81 | *	sd->s_parent->s_dir.children. | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 82 | * | 
|  | 83 | *	Locking: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 84 | *	mutex_lock(sysfs_mutex) | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 85 | * | 
|  | 86 | *	RETURNS: | 
|  | 87 | *	0 on susccess -EEXIST on failure. | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 88 | */ | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 89 | static int sysfs_link_sibling(struct sysfs_dirent *sd) | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 90 | { | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 91 | struct rb_node **node = &sd->s_parent->s_dir.children.rb_node; | 
|  | 92 | struct rb_node *parent = NULL; | 
| Mikulas Patocka | 4f72c0c | 2011-07-25 17:55:57 -0400 | [diff] [blame] | 93 |  | 
| Greg Kroah-Hartman | 54d20f0 | 2012-03-08 13:03:10 -0800 | [diff] [blame] | 94 | if (sysfs_type(sd) == SYSFS_DIR) | 
|  | 95 | sd->s_parent->s_dir.subdirs++; | 
|  | 96 |  | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 97 | while (*node) { | 
|  | 98 | struct sysfs_dirent *pos; | 
|  | 99 | int result; | 
| Mikulas Patocka | 4f72c0c | 2011-07-25 17:55:57 -0400 | [diff] [blame] | 100 |  | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 101 | pos = to_sysfs_dirent(*node); | 
|  | 102 | parent = *node; | 
|  | 103 | result = sysfs_sd_compare(sd, pos); | 
|  | 104 | if (result < 0) | 
|  | 105 | node = &pos->s_rb.rb_left; | 
|  | 106 | else if (result > 0) | 
|  | 107 | node = &pos->s_rb.rb_right; | 
|  | 108 | else | 
|  | 109 | return -EEXIST; | 
| Mikulas Patocka | 4f72c0c | 2011-07-25 17:55:57 -0400 | [diff] [blame] | 110 | } | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 111 | /* add new node and rebalance the tree */ | 
|  | 112 | rb_link_node(&sd->s_rb, parent, node); | 
|  | 113 | rb_insert_color(&sd->s_rb, &sd->s_parent->s_dir.children); | 
| Tejun Heo | cb26a31 | 2013-09-11 22:29:07 -0400 | [diff] [blame] | 114 |  | 
|  | 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. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 119 | return 0; | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 120 | } | 
|  | 121 |  | 
|  | 122 | /** | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 123 | *	sysfs_unlink_sibling - unlink sysfs_dirent from sibling rbtree | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 124 | *	@sd: sysfs_dirent of interest | 
|  | 125 | * | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 126 | *	Unlink @sd from its sibling rbtree which starts from | 
| Tejun Heo | bc747f3 | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 127 | *	sd->s_parent->s_dir.children. | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 128 | * | 
|  | 129 | *	Locking: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 130 | *	mutex_lock(sysfs_mutex) | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 131 | */ | 
| Tejun Heo | 41fc1c2 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 132 | static void sysfs_unlink_sibling(struct sysfs_dirent *sd) | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 133 | { | 
| Greg Kroah-Hartman | 54d20f0 | 2012-03-08 13:03:10 -0800 | [diff] [blame] | 134 | if (sysfs_type(sd) == SYSFS_DIR) | 
|  | 135 | sd->s_parent->s_dir.subdirs--; | 
|  | 136 |  | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 137 | rb_erase(&sd->s_rb, &sd->s_parent->s_dir.children); | 
| Tejun Heo | cb26a31 | 2013-09-11 22:29:07 -0400 | [diff] [blame] | 138 |  | 
|  | 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 Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 145 | } | 
|  | 146 |  | 
| Alan Stern | 356c05d | 2012-05-14 13:30:03 -0400 | [diff] [blame] | 147 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 
|  | 148 |  | 
|  | 149 | /* Test for attributes that want to ignore lockdep for read-locking */ | 
|  | 150 | static 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 |  | 
|  | 158 | static inline bool ignore_lockdep(struct sysfs_dirent *sd) | 
|  | 159 | { | 
|  | 160 | return true; | 
|  | 161 | } | 
|  | 162 |  | 
|  | 163 | #endif | 
|  | 164 |  | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 165 | /** | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 166 | *	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. Biederman | e72ceb8 | 2010-02-11 15:18:38 -0800 | [diff] [blame] | 175 | struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd) | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 176 | { | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 177 | if (unlikely(!sd)) | 
|  | 178 | return NULL; | 
|  | 179 |  | 
| Maarten Lankhorst | 3db3c62 | 2013-03-08 16:07:27 +0100 | [diff] [blame] | 180 | if (!atomic_inc_unless_negative(&sd->s_active)) | 
|  | 181 | return NULL; | 
| Alan Stern | 356c05d | 2012-05-14 13:30:03 -0400 | [diff] [blame] | 182 |  | 
|  | 183 | if (likely(!ignore_lockdep(sd))) | 
|  | 184 | rwsem_acquire_read(&sd->dep_map, 0, 1, _RET_IP_); | 
|  | 185 | return sd; | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 186 | } | 
|  | 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. Biederman | e72ceb8 | 2010-02-11 15:18:38 -0800 | [diff] [blame] | 195 | void sysfs_put_active(struct sysfs_dirent *sd) | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 196 | { | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 197 | int v; | 
|  | 198 |  | 
|  | 199 | if (unlikely(!sd)) | 
|  | 200 | return; | 
|  | 201 |  | 
| Alan Stern | 356c05d | 2012-05-14 13:30:03 -0400 | [diff] [blame] | 202 | if (likely(!ignore_lockdep(sd))) | 
|  | 203 | rwsem_release(&sd->dep_map, 1, _RET_IP_); | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 204 | 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 Patocka | 58f2a4c | 2011-07-21 20:01:12 -0400 | [diff] [blame] | 209 | * sd->u.completion. | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 210 | */ | 
| Mikulas Patocka | 58f2a4c | 2011-07-21 20:01:12 -0400 | [diff] [blame] | 211 | complete(sd->u.completion); | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 212 | } | 
|  | 213 |  | 
|  | 214 | /** | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 215 | *	sysfs_deactivate - deactivate sysfs_dirent | 
|  | 216 | *	@sd: sysfs_dirent to deactivate | 
|  | 217 | * | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 218 | *	Deny new active references and drain existing ones. | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 219 | */ | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 220 | static void sysfs_deactivate(struct sysfs_dirent *sd) | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 221 | { | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 222 | DECLARE_COMPLETION_ONSTACK(wait); | 
|  | 223 | int v; | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 224 |  | 
| Mikulas Patocka | 58f2a4c | 2011-07-21 20:01:12 -0400 | [diff] [blame] | 225 | BUG_ON(!(sd->s_flags & SYSFS_FLAG_REMOVED)); | 
| Eric W. Biederman | a2db684 | 2010-02-11 15:20:00 -0800 | [diff] [blame] | 226 |  | 
|  | 227 | if (!(sysfs_type(sd) & SYSFS_ACTIVE_REF)) | 
|  | 228 | return; | 
|  | 229 |  | 
| Mikulas Patocka | 58f2a4c | 2011-07-21 20:01:12 -0400 | [diff] [blame] | 230 | sd->u.completion = (void *)&wait; | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 231 |  | 
| Eric W. Biederman | 846f997 | 2010-01-02 13:37:12 -0800 | [diff] [blame] | 232 | rwsem_acquire(&sd->dep_map, 0, 0, _RET_IP_); | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 233 | /* atomic_add_return() is a mb(), put_active() will always see | 
| Mikulas Patocka | 58f2a4c | 2011-07-21 20:01:12 -0400 | [diff] [blame] | 234 | * the updated sd->u.completion. | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 235 | */ | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 236 | v = atomic_add_return(SD_DEACTIVATED_BIAS, &sd->s_active); | 
|  | 237 |  | 
| Eric W. Biederman | 846f997 | 2010-01-02 13:37:12 -0800 | [diff] [blame] | 238 | if (v != SD_DEACTIVATED_BIAS) { | 
|  | 239 | lock_contended(&sd->dep_map, _RET_IP_); | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 240 | wait_for_completion(&wait); | 
| Eric W. Biederman | 846f997 | 2010-01-02 13:37:12 -0800 | [diff] [blame] | 241 | } | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 242 |  | 
| Eric W. Biederman | 846f997 | 2010-01-02 13:37:12 -0800 | [diff] [blame] | 243 | lock_acquired(&sd->dep_map, _RET_IP_); | 
|  | 244 | rwsem_release(&sd->dep_map, 1, _RET_IP_); | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 245 | } | 
|  | 246 |  | 
| Eric W. Biederman | cafa6b5 | 2011-12-18 20:08:16 -0800 | [diff] [blame] | 247 | static int sysfs_alloc_ino(unsigned int *pino) | 
| Tejun Heo | 2b611bb | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 248 | { | 
|  | 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. Biederman | cafa6b5 | 2011-12-18 20:08:16 -0800 | [diff] [blame] | 266 | static void sysfs_free_ino(unsigned int ino) | 
| Tejun Heo | 2b611bb | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 267 | { | 
|  | 268 | spin_lock(&sysfs_ino_lock); | 
|  | 269 | ida_remove(&sysfs_ino_ida, ino); | 
|  | 270 | spin_unlock(&sysfs_ino_lock); | 
|  | 271 | } | 
|  | 272 |  | 
| Greg Kroah-Hartman | 1b18dc2 | 2013-08-21 16:28:26 -0700 | [diff] [blame] | 273 | void release_sysfs_dirent(struct sysfs_dirent *sd) | 
| Tejun Heo | fa7f912 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 274 | { | 
| Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 275 | struct sysfs_dirent *parent_sd; | 
|  | 276 |  | 
|  | 277 | repeat: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 278 | /* Moving/renaming is always done while holding reference. | 
|  | 279 | * sd->s_parent won't change beneath us. | 
|  | 280 | */ | 
| Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 281 | parent_sd = sd->s_parent; | 
|  | 282 |  | 
| Ming Lei | bb2b005 | 2013-04-04 22:22:37 +0800 | [diff] [blame] | 283 | 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 Heo | b402d72 | 2007-06-14 04:27:21 +0900 | [diff] [blame] | 287 | if (sysfs_type(sd) == SYSFS_KOBJ_LINK) | 
| Tejun Heo | b1fc3d6 | 2007-09-20 16:05:11 +0900 | [diff] [blame] | 288 | sysfs_put(sd->s_symlink.target_sd); | 
| Tejun Heo | b402d72 | 2007-06-14 04:27:21 +0900 | [diff] [blame] | 289 | if (sysfs_type(sd) & SYSFS_COPY_NAME) | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 290 | kfree(sd->s_name); | 
| Eric W. Biederman | 4c3da22 | 2009-11-04 02:50:06 -0800 | [diff] [blame] | 291 | 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 Heo | fa7f912 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 294 | kfree(sd->s_iattr); | 
| Tejun Heo | 2b611bb | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 295 | sysfs_free_ino(sd->s_ino); | 
| Tejun Heo | fa7f912 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 296 | kmem_cache_free(sysfs_dir_cachep, sd); | 
| Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 297 |  | 
|  | 298 | sd = parent_sd; | 
|  | 299 | if (sd && atomic_dec_and_test(&sd->s_count)) | 
|  | 300 | goto repeat; | 
| Tejun Heo | fa7f912 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 301 | } | 
|  | 302 |  | 
| Nick Piggin | fe15ce4 | 2011-01-07 17:49:23 +1100 | [diff] [blame] | 303 | static int sysfs_dentry_delete(const struct dentry *dentry) | 
| Eric W. Biederman | e8f077c | 2009-11-07 23:27:01 -0800 | [diff] [blame] | 304 | { | 
|  | 305 | struct sysfs_dirent *sd = dentry->d_fsdata; | 
| Al Viro | 469796d | 2012-06-07 20:51:39 -0400 | [diff] [blame] | 306 | return !(sd && !(sd->s_flags & SYSFS_FLAG_REMOVED)); | 
| Eric W. Biederman | e8f077c | 2009-11-07 23:27:01 -0800 | [diff] [blame] | 307 | } | 
|  | 308 |  | 
| Al Viro | 0b728e1 | 2012-06-10 16:03:43 -0400 | [diff] [blame] | 309 | static int sysfs_dentry_revalidate(struct dentry *dentry, unsigned int flags) | 
| Eric W. Biederman | e8f077c | 2009-11-07 23:27:01 -0800 | [diff] [blame] | 310 | { | 
| Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 311 | struct sysfs_dirent *sd; | 
| Eric W. Biederman | e8f077c | 2009-11-07 23:27:01 -0800 | [diff] [blame] | 312 |  | 
| Al Viro | 0b728e1 | 2012-06-10 16:03:43 -0400 | [diff] [blame] | 313 | if (flags & LOOKUP_RCU) | 
| Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 314 | return -ECHILD; | 
|  | 315 |  | 
|  | 316 | sd = dentry->d_fsdata; | 
| Eric W. Biederman | e8f077c | 2009-11-07 23:27:01 -0800 | [diff] [blame] | 317 | 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. Biederman | 832b6af | 2009-11-20 16:08:56 -0800 | [diff] [blame] | 323 | /* 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 Costa | e5bcac6 | 2012-07-06 13:09:07 +0400 | [diff] [blame] | 331 | /* The sysfs dirent has been moved to a different namespace */ | 
| Tejun Heo | cb26a31 | 2013-09-11 22:29:07 -0400 | [diff] [blame] | 332 | if (sd->s_ns && sd->s_ns != sysfs_info(dentry->d_sb)->ns) | 
|  | 333 | goto out_bad; | 
| Glauber Costa | e5bcac6 | 2012-07-06 13:09:07 +0400 | [diff] [blame] | 334 |  | 
| Eric W. Biederman | e8f077c | 2009-11-07 23:27:01 -0800 | [diff] [blame] | 335 | mutex_unlock(&sysfs_mutex); | 
|  | 336 | out_valid: | 
|  | 337 | return 1; | 
|  | 338 | out_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. Biederman | 832b6af | 2009-11-20 16:08:56 -0800 | [diff] [blame] | 342 | * | 
|  | 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. Biederman | e8f077c | 2009-11-07 23:27:01 -0800 | [diff] [blame] | 348 | */ | 
| Eric W. Biederman | e8f077c | 2009-11-07 23:27:01 -0800 | [diff] [blame] | 349 | mutex_unlock(&sysfs_mutex); | 
| Miklos Szeredi | 6497d16 | 2013-09-05 11:44:41 +0200 | [diff] [blame] | 350 |  | 
|  | 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. Biederman | e8f077c | 2009-11-07 23:27:01 -0800 | [diff] [blame] | 358 | return 0; | 
|  | 359 | } | 
|  | 360 |  | 
| Al Viro | 469796d | 2012-06-07 20:51:39 -0400 | [diff] [blame] | 361 | static void sysfs_dentry_release(struct dentry *dentry) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | { | 
| Al Viro | 469796d | 2012-06-07 20:51:39 -0400 | [diff] [blame] | 363 | sysfs_put(dentry->d_fsdata); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | } | 
|  | 365 |  | 
| Al Viro | 469796d | 2012-06-07 20:51:39 -0400 | [diff] [blame] | 366 | const struct dentry_operations sysfs_dentry_ops = { | 
| Eric W. Biederman | e8f077c | 2009-11-07 23:27:01 -0800 | [diff] [blame] | 367 | .d_revalidate	= sysfs_dentry_revalidate, | 
|  | 368 | .d_delete	= sysfs_dentry_delete, | 
| Al Viro | 469796d | 2012-06-07 20:51:39 -0400 | [diff] [blame] | 369 | .d_release	= sysfs_dentry_release, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | }; | 
|  | 371 |  | 
| Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 372 | struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | { | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 374 | char *dup_name = NULL; | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 375 | struct sysfs_dirent *sd; | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 376 |  | 
|  | 377 | if (type & SYSFS_COPY_NAME) { | 
|  | 378 | name = dup_name = kstrdup(name, GFP_KERNEL); | 
|  | 379 | if (!name) | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 380 | return NULL; | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 381 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 |  | 
| Robert P. J. Day | c376222 | 2007-02-10 01:45:03 -0800 | [diff] [blame] | 383 | sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | if (!sd) | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 385 | goto err_out1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 |  | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 387 | if (sysfs_alloc_ino(&sd->s_ino)) | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 388 | goto err_out2; | 
| Tejun Heo | 2b611bb | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 389 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | atomic_set(&sd->s_count, 1); | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 391 | atomic_set(&sd->s_active, 0); | 
| Tejun Heo | a26cd72 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 392 |  | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 393 | sd->s_name = name; | 
| Tejun Heo | a26cd72 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 394 | sd->s_mode = mode; | 
| Ming Lei | bb2b005 | 2013-04-04 22:22:37 +0800 | [diff] [blame] | 395 | sd->s_flags = type | SYSFS_FLAG_REMOVED; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 |  | 
|  | 397 | return sd; | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 398 |  | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 399 | err_out2: | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 400 | kmem_cache_free(sysfs_dir_cachep, sd); | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 401 | err_out1: | 
|  | 402 | kfree(dup_name); | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 403 | return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | } | 
|  | 405 |  | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 406 | /** | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 407 | *	sysfs_addrm_start - prepare for sysfs_dirent add/remove | 
|  | 408 | *	@acxt: pointer to sysfs_addrm_cxt to be used | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 409 | * | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 410 | *	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 Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 413 | * | 
|  | 414 | *	LOCKING: | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 415 | *	Kernel thread context (may sleep).  sysfs_mutex is locked on | 
| Eric W. Biederman | a16bbc3 | 2009-11-20 16:08:55 -0800 | [diff] [blame] | 416 | *	return. | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 417 | */ | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 418 | void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt) | 
|  | 419 | __acquires(sysfs_mutex) | 
| Eric W. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 420 | { | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 421 | memset(acxt, 0, sizeof(*acxt)); | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 422 |  | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 423 | mutex_lock(&sysfs_mutex); | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 424 | } | 
|  | 425 |  | 
|  | 426 | /** | 
| Cornelia Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 427 | *	__sysfs_add_one - add sysfs_dirent to parent without warning | 
|  | 428 | *	@acxt: addrm context to use | 
|  | 429 | *	@sd: sysfs_dirent to be added | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 430 | *	@parent_sd: the parent sysfs_dirent to add @sd to | 
| Cornelia Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 431 | * | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 432 | *	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 Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 435 | * | 
|  | 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 Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 447 | int __sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd, | 
|  | 448 | struct sysfs_dirent *parent_sd) | 
| Cornelia Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 449 | { | 
| Eric W. Biederman | 6b0bfe9 | 2009-11-20 16:08:51 -0800 | [diff] [blame] | 450 | struct sysfs_inode_attrs *ps_iattr; | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 451 | int ret; | 
| Eric W. Biederman | 6b0bfe9 | 2009-11-20 16:08:51 -0800 | [diff] [blame] | 452 |  | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 453 | sd->s_hash = sysfs_name_hash(sd->s_name, sd->s_ns); | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 454 | sd->s_parent = sysfs_get(parent_sd); | 
| Cornelia Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 455 |  | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 456 | ret = sysfs_link_sibling(sd); | 
|  | 457 | if (ret) | 
|  | 458 | return ret; | 
| Cornelia Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 459 |  | 
| Eric W. Biederman | 6b0bfe9 | 2009-11-20 16:08:51 -0800 | [diff] [blame] | 460 | /* Update timestamps on the parent */ | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 461 | ps_iattr = parent_sd->s_iattr; | 
| Eric W. Biederman | 6b0bfe9 | 2009-11-20 16:08:51 -0800 | [diff] [blame] | 462 | 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 Lei | bb2b005 | 2013-04-04 22:22:37 +0800 | [diff] [blame] | 467 | /* Mark the entry added into directory tree */ | 
|  | 468 | sd->s_flags &= ~SYSFS_FLAG_REMOVED; | 
|  | 469 |  | 
| Cornelia Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 470 | return 0; | 
|  | 471 | } | 
|  | 472 |  | 
|  | 473 | /** | 
| Alex Chiang | 425cb02 | 2009-02-12 10:56:59 -0700 | [diff] [blame] | 474 | *	sysfs_pathname - return full path to sysfs dirent | 
|  | 475 | *	@sd: sysfs_dirent whose path we want | 
| Geert Uytterhoeven | 66081a7 | 2012-09-29 22:23:19 +0200 | [diff] [blame] | 476 | *	@path: caller allocated buffer of size PATH_MAX | 
| Alex Chiang | 425cb02 | 2009-02-12 10:56:59 -0700 | [diff] [blame] | 477 | * | 
|  | 478 | *	Gives the name "/" to the sysfs_root entry; any path returned | 
|  | 479 | *	is relative to wherever sysfs is mounted. | 
| Alex Chiang | 425cb02 | 2009-02-12 10:56:59 -0700 | [diff] [blame] | 480 | */ | 
|  | 481 | static char *sysfs_pathname(struct sysfs_dirent *sd, char *path) | 
|  | 482 | { | 
|  | 483 | if (sd->s_parent) { | 
|  | 484 | sysfs_pathname(sd->s_parent, path); | 
| Geert Uytterhoeven | 66081a7 | 2012-09-29 22:23:19 +0200 | [diff] [blame] | 485 | strlcat(path, "/", PATH_MAX); | 
| Alex Chiang | 425cb02 | 2009-02-12 10:56:59 -0700 | [diff] [blame] | 486 | } | 
| Geert Uytterhoeven | 66081a7 | 2012-09-29 22:23:19 +0200 | [diff] [blame] | 487 | strlcat(path, sd->s_name, PATH_MAX); | 
| Alex Chiang | 425cb02 | 2009-02-12 10:56:59 -0700 | [diff] [blame] | 488 | return path; | 
|  | 489 | } | 
|  | 490 |  | 
|  | 491 | /** | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 492 | *	sysfs_add_one - add sysfs_dirent to parent | 
|  | 493 | *	@acxt: addrm context to use | 
|  | 494 | *	@sd: sysfs_dirent to be added | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 495 | *	@parent_sd: the parent sysfs_dirent to add @sd to | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 496 | * | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 497 | *	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 Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 500 | * | 
|  | 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 Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 507 | * | 
|  | 508 | *	RETURNS: | 
|  | 509 | *	0 on success, -EEXIST if entry with the given name already | 
|  | 510 | *	exists. | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 511 | */ | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 512 | int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd, | 
|  | 513 | struct sysfs_dirent *parent_sd) | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 514 | { | 
| Cornelia Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 515 | int ret; | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 516 |  | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 517 | ret = __sysfs_add_one(acxt, sd, parent_sd); | 
| Alex Chiang | 425cb02 | 2009-02-12 10:56:59 -0700 | [diff] [blame] | 518 | 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 Uytterhoeven | 66081a7 | 2012-09-29 22:23:19 +0200 | [diff] [blame] | 522 | (path == NULL) ? sd->s_name | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 523 | : (sysfs_pathname(parent_sd, path), | 
| Geert Uytterhoeven | 66081a7 | 2012-09-29 22:23:19 +0200 | [diff] [blame] | 524 | strlcat(path, "/", PATH_MAX), | 
|  | 525 | strlcat(path, sd->s_name, PATH_MAX), | 
|  | 526 | path)); | 
| Alex Chiang | 425cb02 | 2009-02-12 10:56:59 -0700 | [diff] [blame] | 527 | kfree(path); | 
|  | 528 | } | 
|  | 529 |  | 
| Cornelia Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 530 | return ret; | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 531 | } | 
|  | 532 |  | 
|  | 533 | /** | 
|  | 534 | *	sysfs_remove_one - remove sysfs_dirent from parent | 
|  | 535 | *	@acxt: addrm context to use | 
| Jean Delvare | 9fd5b1c | 2008-01-08 18:11:24 +0100 | [diff] [blame] | 536 | *	@sd: sysfs_dirent to be removed | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 537 | * | 
|  | 538 | *	Mark @sd removed and drop nlink of parent inode if @sd is a | 
| Tejun Heo | 181b2e4 | 2007-09-20 16:05:09 +0900 | [diff] [blame] | 539 | *	directory.  @sd is unlinked from the children list. | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 540 | * | 
|  | 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 | */ | 
|  | 548 | void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd) | 
|  | 549 | { | 
| Eric W. Biederman | 6b0bfe9 | 2009-11-20 16:08:51 -0800 | [diff] [blame] | 550 | struct sysfs_inode_attrs *ps_iattr; | 
|  | 551 |  | 
| Tejun Heo | 26ea12d | 2013-09-18 17:15:36 -0400 | [diff] [blame] | 552 | /* | 
|  | 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 Heo | 41fc1c2 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 558 |  | 
|  | 559 | sysfs_unlink_sibling(sd); | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 560 |  | 
| Eric W. Biederman | 6b0bfe9 | 2009-11-20 16:08:51 -0800 | [diff] [blame] | 561 | /* Update timestamps on the parent */ | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 562 | ps_iattr = sd->s_parent->s_iattr; | 
| Eric W. Biederman | 6b0bfe9 | 2009-11-20 16:08:51 -0800 | [diff] [blame] | 563 | 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 Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 568 | sd->s_flags |= SYSFS_FLAG_REMOVED; | 
| Mikulas Patocka | 58f2a4c | 2011-07-21 20:01:12 -0400 | [diff] [blame] | 569 | sd->u.removed_list = acxt->removed; | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 570 | acxt->removed = sd; | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 571 | } | 
|  | 572 |  | 
|  | 573 | /** | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 574 | *	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. Biederman | a16bbc3 | 2009-11-20 16:08:55 -0800 | [diff] [blame] | 579 | *	cleaned up. | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 580 | * | 
|  | 581 | *	LOCKING: | 
| Eric W. Biederman | a16bbc3 | 2009-11-20 16:08:55 -0800 | [diff] [blame] | 582 | *	sysfs_mutex is released. | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 583 | */ | 
| Tejun Heo | 990e53f | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 584 | void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt) | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 585 | __releases(sysfs_mutex) | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 586 | { | 
|  | 587 | /* release resources acquired by sysfs_addrm_start() */ | 
|  | 588 | mutex_unlock(&sysfs_mutex); | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 589 |  | 
|  | 590 | /* kill removed sysfs_dirents */ | 
|  | 591 | while (acxt->removed) { | 
|  | 592 | struct sysfs_dirent *sd = acxt->removed; | 
|  | 593 |  | 
| Mikulas Patocka | 58f2a4c | 2011-07-21 20:01:12 -0400 | [diff] [blame] | 594 | acxt->removed = sd->u.removed_list; | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 595 |  | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 596 | sysfs_deactivate(sd); | 
| Eric W. Biederman | e0edd3c | 2009-03-04 11:57:20 -0800 | [diff] [blame] | 597 | unmap_bin_file(sd); | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 598 | sysfs_put(sd); | 
|  | 599 | } | 
| Eric W. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 600 | } | 
|  | 601 |  | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 602 | /** | 
|  | 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 Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 606 | *	@ns: the namespace tag to use | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 607 | * | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 608 | *	Look for sysfs_dirent with name @name under @parent_sd. | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 609 | * | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 610 | *	LOCKING: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 611 | *	mutex_lock(sysfs_mutex) | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 612 | * | 
|  | 613 | *	RETURNS: | 
|  | 614 | *	Pointer to sysfs_dirent if found, NULL if not. | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 615 | */ | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 616 | struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd, | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 617 | const unsigned char *name, | 
|  | 618 | const void *ns) | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 619 | { | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 620 | struct rb_node *node = parent_sd->s_dir.children.rb_node; | 
|  | 621 | unsigned int hash; | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 622 |  | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 623 | hash = sysfs_name_hash(name, ns); | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 624 | while (node) { | 
|  | 625 | struct sysfs_dirent *sd; | 
|  | 626 | int result; | 
| Mikulas Patocka | 4f72c0c | 2011-07-25 17:55:57 -0400 | [diff] [blame] | 627 |  | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 628 | sd = to_sysfs_dirent(node); | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 629 | result = sysfs_name_compare(hash, name, ns, sd); | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 630 | if (result < 0) | 
|  | 631 | node = node->rb_left; | 
|  | 632 | else if (result > 0) | 
|  | 633 | node = node->rb_right; | 
|  | 634 | else | 
|  | 635 | return sd; | 
| Mikulas Patocka | 4f72c0c | 2011-07-25 17:55:57 -0400 | [diff] [blame] | 636 | } | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 637 | return NULL; | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 638 | } | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 639 |  | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 640 | /** | 
| Tejun Heo | 388975c | 2013-09-11 23:19:13 -0400 | [diff] [blame] | 641 | *	sysfs_get_dirent_ns - find and get sysfs_dirent with the given name | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 642 | *	@parent_sd: sysfs_dirent to search under | 
|  | 643 | *	@name: name to look for | 
| Tejun Heo | 388975c | 2013-09-11 23:19:13 -0400 | [diff] [blame] | 644 | *	@ns: the namespace tag to use | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 645 | * | 
|  | 646 | *	Look for sysfs_dirent with name @name under @parent_sd and get | 
|  | 647 | *	it if found. | 
|  | 648 | * | 
|  | 649 | *	LOCKING: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 650 | *	Kernel thread context (may sleep).  Grabs sysfs_mutex. | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 651 | * | 
|  | 652 | *	RETURNS: | 
|  | 653 | *	Pointer to sysfs_dirent if found, NULL if not. | 
|  | 654 | */ | 
| Tejun Heo | 388975c | 2013-09-11 23:19:13 -0400 | [diff] [blame] | 655 | struct sysfs_dirent *sysfs_get_dirent_ns(struct sysfs_dirent *parent_sd, | 
|  | 656 | const unsigned char *name, | 
|  | 657 | const void *ns) | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 658 | { | 
|  | 659 | struct sysfs_dirent *sd; | 
|  | 660 |  | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 661 | mutex_lock(&sysfs_mutex); | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 662 | sd = sysfs_find_dirent(parent_sd, name, ns); | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 663 | sysfs_get(sd); | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 664 | mutex_unlock(&sysfs_mutex); | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 665 |  | 
|  | 666 | return sd; | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 667 | } | 
| Tejun Heo | 388975c | 2013-09-11 23:19:13 -0400 | [diff] [blame] | 668 | EXPORT_SYMBOL_GPL(sysfs_get_dirent_ns); | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 669 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 670 | static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd, | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 671 | const char *name, const void *ns, | 
|  | 672 | struct sysfs_dirent **p_sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | { | 
| Greg Kroah-Hartman | 1b18dc2 | 2013-08-21 16:28:26 -0700 | [diff] [blame] | 674 | umode_t mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO; | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 675 | struct sysfs_addrm_cxt acxt; | 
| Tejun Heo | dfeb9fb | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 676 | struct sysfs_dirent *sd; | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 677 | int rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 |  | 
| Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 679 | /* allocate */ | 
| Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 680 | sd = sysfs_new_dirent(name, mode, SYSFS_DIR); | 
| Tejun Heo | a26cd72 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 681 | if (!sd) | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 682 | return -ENOMEM; | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 683 |  | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 684 | sd->s_ns = ns; | 
| Tejun Heo | b1fc3d6 | 2007-09-20 16:05:11 +0900 | [diff] [blame] | 685 | sd->s_dir.kobj = kobj; | 
| Tejun Heo | dfeb9fb | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 686 |  | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 687 | /* link in */ | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 688 | sysfs_addrm_start(&acxt); | 
|  | 689 | rc = sysfs_add_one(&acxt, sd, parent_sd); | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 690 | sysfs_addrm_finish(&acxt); | 
| Tejun Heo | 967e35d | 2007-07-18 16:38:11 +0900 | [diff] [blame] | 691 |  | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 692 | if (rc == 0) | 
|  | 693 | *p_sd = sd; | 
|  | 694 | else | 
| Tejun Heo | 967e35d | 2007-07-18 16:38:11 +0900 | [diff] [blame] | 695 | sysfs_put(sd); | 
| Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 696 |  | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 697 | return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | } | 
|  | 699 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 700 | int sysfs_create_subdir(struct kobject *kobj, const char *name, | 
|  | 701 | struct sysfs_dirent **p_sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | { | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 703 | return create_dir(kobj, kobj->sd, name, NULL, p_sd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | } | 
|  | 705 |  | 
|  | 706 | /** | 
| Tejun Heo | e34ff49 | 2013-09-11 22:29:05 -0400 | [diff] [blame] | 707 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | */ | 
| Tejun Heo | e34ff49 | 2013-09-11 22:29:05 -0400 | [diff] [blame] | 711 | int sysfs_create_dir_ns(struct kobject *kobj, const void *ns) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | { | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 713 | struct sysfs_dirent *parent_sd, *sd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | int error = 0; | 
|  | 715 |  | 
|  | 716 | BUG_ON(!kobj); | 
|  | 717 |  | 
| Eric W. Biederman | 90bc613 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 718 | if (kobj->parent) | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 719 | parent_sd = kobj->parent->sd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | else | 
| Eric W. Biederman | 7d0c7d6 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 721 | parent_sd = &sysfs_root; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 |  | 
| Dan Williams | 3a19888 | 2012-04-06 13:41:06 -0700 | [diff] [blame] | 723 | if (!parent_sd) | 
|  | 724 | return -ENOENT; | 
|  | 725 |  | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 726 | error = create_dir(kobj, parent_sd, kobject_name(kobj), ns, &sd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | if (!error) | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 728 | kobj->sd = sd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | return error; | 
|  | 730 | } | 
|  | 731 |  | 
| Greg Kroah-Hartman | 1b18dc2 | 2013-08-21 16:28:26 -0700 | [diff] [blame] | 732 | static struct dentry *sysfs_lookup(struct inode *dir, struct dentry *dentry, | 
|  | 733 | unsigned int flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | { | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 735 | struct dentry *ret = NULL; | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 736 | struct dentry *parent = dentry->d_parent; | 
|  | 737 | struct sysfs_dirent *parent_sd = parent->d_fsdata; | 
| Tejun Heo | a7a0475 | 2007-08-02 21:38:02 +0900 | [diff] [blame] | 738 | struct sysfs_dirent *sd; | 
| Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 739 | struct inode *inode; | 
| Tejun Heo | cb26a31 | 2013-09-11 22:29:07 -0400 | [diff] [blame] | 740 | const void *ns = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 |  | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 742 | mutex_lock(&sysfs_mutex); | 
|  | 743 |  | 
| Tejun Heo | cb26a31 | 2013-09-11 22:29:07 -0400 | [diff] [blame] | 744 | if (parent_sd->s_flags & SYSFS_FLAG_HAS_NS) | 
|  | 745 | ns = sysfs_info(dir->i_sb)->ns; | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 746 |  | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 747 | sd = sysfs_find_dirent(parent_sd, dentry->d_name.name, ns); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 |  | 
| Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 749 | /* no such entry */ | 
| Tejun Heo | e49452c | 2008-01-16 12:06:14 +0900 | [diff] [blame] | 750 | if (!sd) { | 
|  | 751 | ret = ERR_PTR(-ENOENT); | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 752 | goto out_unlock; | 
| Tejun Heo | e49452c | 2008-01-16 12:06:14 +0900 | [diff] [blame] | 753 | } | 
| Al Viro | 469796d | 2012-06-07 20:51:39 -0400 | [diff] [blame] | 754 | dentry->d_fsdata = sysfs_get(sd); | 
| Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 755 |  | 
|  | 756 | /* attach dentry and inode */ | 
| Eric W. Biederman | fac2622 | 2010-02-12 19:22:27 -0800 | [diff] [blame] | 757 | inode = sysfs_get_inode(dir->i_sb, sd); | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 758 | if (!inode) { | 
|  | 759 | ret = ERR_PTR(-ENOMEM); | 
|  | 760 | goto out_unlock; | 
|  | 761 | } | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 762 |  | 
| Tejun Heo | d6b4fd2 | 2007-09-20 16:05:11 +0900 | [diff] [blame] | 763 | /* instantiate and hash dentry */ | 
| Al Viro | e77fb7c | 2012-06-07 20:56:54 -0400 | [diff] [blame] | 764 | ret = d_materialise_unique(dentry, inode); | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 765 | out_unlock: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 766 | mutex_unlock(&sysfs_mutex); | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 767 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | } | 
|  | 769 |  | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 770 | const struct inode_operations sysfs_dir_inode_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | .lookup		= sysfs_lookup, | 
| Eric W. Biederman | e61ab4a | 2009-11-20 16:08:53 -0800 | [diff] [blame] | 772 | .permission	= sysfs_permission, | 
| Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 773 | .setattr	= sysfs_setattr, | 
| Eric W. Biederman | e61ab4a | 2009-11-20 16:08:53 -0800 | [diff] [blame] | 774 | .getattr	= sysfs_getattr, | 
| David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 775 | .setxattr	= sysfs_setxattr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | }; | 
|  | 777 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 778 | static void remove_dir(struct sysfs_dirent *sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | { | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 780 | struct sysfs_addrm_cxt acxt; | 
|  | 781 |  | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 782 | sysfs_addrm_start(&acxt); | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 783 | sysfs_remove_one(&acxt, sd); | 
|  | 784 | sysfs_addrm_finish(&acxt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | } | 
|  | 786 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 787 | void sysfs_remove_subdir(struct sysfs_dirent *sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | { | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 789 | remove_dir(sd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | } | 
|  | 791 |  | 
| Tejun Heo | bcdde7e | 2013-09-18 17:15:37 -0400 | [diff] [blame^] | 792 | static 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 | */ | 
|  | 823 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 847 | static void __sysfs_remove_dir(struct sysfs_dirent *dir_sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | { | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 849 | struct sysfs_addrm_cxt acxt; | 
| Tejun Heo | bcdde7e | 2013-09-18 17:15:37 -0400 | [diff] [blame^] | 850 | struct sysfs_dirent *pos, *next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 852 | if (!dir_sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | return; | 
|  | 854 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 855 | pr_debug("sysfs %s: removing dir\n", dir_sd->s_name); | 
| Tejun Heo | d69ac5a | 2013-09-18 17:15:35 -0400 | [diff] [blame] | 856 | sysfs_addrm_start(&acxt); | 
| Tejun Heo | 0ab6608 | 2007-06-14 03:45:16 +0900 | [diff] [blame] | 857 |  | 
| Tejun Heo | bcdde7e | 2013-09-18 17:15:37 -0400 | [diff] [blame^] | 858 | 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. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 867 | } | 
|  | 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-Hartman | 1b18dc2 | 2013-08-21 16:28:26 -0700 | [diff] [blame] | 877 | void sysfs_remove_dir(struct kobject *kobj) | 
| Eric W. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 878 | { | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 879 | struct sysfs_dirent *sd = kobj->sd; | 
| Tejun Heo | aecdced | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 880 |  | 
| Tejun Heo | 5f99532 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 881 | spin_lock(&sysfs_assoc_lock); | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 882 | kobj->sd = NULL; | 
| Tejun Heo | 5f99532 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 883 | spin_unlock(&sysfs_assoc_lock); | 
| Tejun Heo | aecdced | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 884 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 885 | __sysfs_remove_dir(sd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | } | 
|  | 887 |  | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 888 | int sysfs_rename(struct sysfs_dirent *sd, struct sysfs_dirent *new_parent_sd, | 
|  | 889 | const char *new_name, const void *new_ns) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | { | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 891 | int error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 |  | 
| Eric W. Biederman | 832b6af | 2009-11-20 16:08:56 -0800 | [diff] [blame] | 893 | mutex_lock(&sysfs_mutex); | 
| Eric W. Biederman | 932ea2e | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 894 |  | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 895 | error = 0; | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 896 | if ((sd->s_parent == new_parent_sd) && (sd->s_ns == new_ns) && | 
| Eric W. Biederman | ca1bab3 | 2009-11-20 16:08:57 -0800 | [diff] [blame] | 897 | (strcmp(sd->s_name, new_name) == 0)) | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 898 | goto out;	/* nothing to rename */ | 
|  | 899 |  | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 900 | error = -EEXIST; | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 901 | if (sysfs_find_dirent(new_parent_sd, new_name, new_ns)) | 
| Eric W. Biederman | 832b6af | 2009-11-20 16:08:56 -0800 | [diff] [blame] | 902 | goto out; | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 903 |  | 
| Eric W. Biederman | 0b4a4fe | 2008-07-03 18:05:28 -0700 | [diff] [blame] | 904 | /* rename sysfs_dirent */ | 
| Eric W. Biederman | ca1bab3 | 2009-11-20 16:08:57 -0800 | [diff] [blame] | 905 | if (strcmp(sd->s_name, new_name) != 0) { | 
|  | 906 | error = -ENOMEM; | 
| Sasikantha babu | b4eafca | 2012-05-03 02:26:14 +0530 | [diff] [blame] | 907 | new_name = kstrdup(new_name, GFP_KERNEL); | 
| Eric W. Biederman | ca1bab3 | 2009-11-20 16:08:57 -0800 | [diff] [blame] | 908 | if (!new_name) | 
|  | 909 | goto out; | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 910 |  | 
| Sasikantha babu | b4eafca | 2012-05-03 02:26:14 +0530 | [diff] [blame] | 911 | kfree(sd->s_name); | 
| Eric W. Biederman | ca1bab3 | 2009-11-20 16:08:57 -0800 | [diff] [blame] | 912 | sd->s_name = new_name; | 
|  | 913 | } | 
|  | 914 |  | 
| Greg Kroah-Hartman | ddfd6d0 | 2013-08-21 16:33:34 -0700 | [diff] [blame] | 915 | /* | 
|  | 916 | * Move to the appropriate place in the appropriate directories rbtree. | 
|  | 917 | */ | 
| Eric W. Biederman | f6d90b4 | 2011-11-01 07:06:17 -0700 | [diff] [blame] | 918 | sysfs_unlink_sibling(sd); | 
|  | 919 | sysfs_get(new_parent_sd); | 
|  | 920 | sysfs_put(sd->s_parent); | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 921 | sd->s_ns = new_ns; | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 922 | sd->s_hash = sysfs_name_hash(sd->s_name, sd->s_ns); | 
| Eric W. Biederman | f6d90b4 | 2011-11-01 07:06:17 -0700 | [diff] [blame] | 923 | sd->s_parent = new_parent_sd; | 
|  | 924 | sysfs_link_sibling(sd); | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 925 |  | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 926 | error = 0; | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 927 | out: | 
| Eric W. Biederman | 832b6af | 2009-11-20 16:08:56 -0800 | [diff] [blame] | 928 | mutex_unlock(&sysfs_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | return error; | 
|  | 930 | } | 
|  | 931 |  | 
| Tejun Heo | e34ff49 | 2013-09-11 22:29:05 -0400 | [diff] [blame] | 932 | int sysfs_rename_dir_ns(struct kobject *kobj, const char *new_name, | 
|  | 933 | const void *new_ns) | 
| Eric W. Biederman | ca1bab3 | 2009-11-20 16:08:57 -0800 | [diff] [blame] | 934 | { | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 935 | struct sysfs_dirent *parent_sd = kobj->sd->s_parent; | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 936 |  | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 937 | return sysfs_rename(kobj->sd, parent_sd, new_name, new_ns); | 
| Eric W. Biederman | ca1bab3 | 2009-11-20 16:08:57 -0800 | [diff] [blame] | 938 | } | 
|  | 939 |  | 
| Tejun Heo | e34ff49 | 2013-09-11 22:29:05 -0400 | [diff] [blame] | 940 | int sysfs_move_dir_ns(struct kobject *kobj, struct kobject *new_parent_kobj, | 
|  | 941 | const void *new_ns) | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 942 | { | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 943 | struct sysfs_dirent *sd = kobj->sd; | 
|  | 944 | struct sysfs_dirent *new_parent_sd; | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 945 |  | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 946 | BUG_ON(!sd->s_parent); | 
| Eric W. Biederman | ca1bab3 | 2009-11-20 16:08:57 -0800 | [diff] [blame] | 947 | new_parent_sd = new_parent_kobj && new_parent_kobj->sd ? | 
| Cornelia Huck | a6a8357 | 2009-10-06 15:33:35 +0200 | [diff] [blame] | 948 | new_parent_kobj->sd : &sysfs_root; | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 949 |  | 
| Tejun Heo | cfec0bc | 2013-09-11 22:29:09 -0400 | [diff] [blame] | 950 | return sysfs_rename(sd, new_parent_sd, sd->s_name, new_ns); | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 951 | } | 
|  | 952 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | /* Relationship between s_mode and the DT_xxx types */ | 
|  | 954 | static inline unsigned char dt_type(struct sysfs_dirent *sd) | 
|  | 955 | { | 
|  | 956 | return (sd->s_mode >> 12) & 15; | 
|  | 957 | } | 
|  | 958 |  | 
| Eric W. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 959 | static int sysfs_dir_release(struct inode *inode, struct file *filp) | 
|  | 960 | { | 
|  | 961 | sysfs_put(filp->private_data); | 
|  | 962 | return 0; | 
|  | 963 | } | 
|  | 964 |  | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 965 | static struct sysfs_dirent *sysfs_dir_pos(const void *ns, | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 966 | struct sysfs_dirent *parent_sd,	loff_t hash, struct sysfs_dirent *pos) | 
| Eric W. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 967 | { | 
|  | 968 | if (pos) { | 
|  | 969 | int valid = !(pos->s_flags & SYSFS_FLAG_REMOVED) && | 
|  | 970 | pos->s_parent == parent_sd && | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 971 | hash == pos->s_hash; | 
| Eric W. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 972 | sysfs_put(pos); | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 973 | if (!valid) | 
|  | 974 | pos = NULL; | 
| Eric W. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 975 | } | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 976 | 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 Patocka | a406f75 | 2011-07-25 17:57:03 -0400 | [diff] [blame] | 986 | break; | 
| Mikulas Patocka | a406f75 | 2011-07-25 17:57:03 -0400 | [diff] [blame] | 987 | } | 
| Eric W. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 988 | } | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 989 | /* Skip over entries in the wrong namespace */ | 
| Eric W. Biederman | b9e2780d | 2011-10-25 05:38:41 -0700 | [diff] [blame] | 990 | while (pos && pos->s_ns != ns) { | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 991 | struct rb_node *node = rb_next(&pos->s_rb); | 
|  | 992 | if (!node) | 
| Mikulas Patocka | a406f75 | 2011-07-25 17:57:03 -0400 | [diff] [blame] | 993 | pos = NULL; | 
|  | 994 | else | 
| Eric W. Biederman | 4e4d6d8 | 2011-12-18 20:05:43 -0800 | [diff] [blame] | 995 | pos = to_sysfs_dirent(node); | 
| Mikulas Patocka | a406f75 | 2011-07-25 17:57:03 -0400 | [diff] [blame] | 996 | } | 
| Eric W. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 997 | return pos; | 
|  | 998 | } | 
|  | 999 |  | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 1000 | static 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. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 1002 | { | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 1003 | pos = sysfs_dir_pos(ns, parent_sd, ino, pos); | 
| Greg Kroah-Hartman | 37814ee | 2013-08-21 16:36:02 -0700 | [diff] [blame] | 1004 | 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. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 1012 | return pos; | 
|  | 1013 | } | 
|  | 1014 |  | 
| Al Viro | d55fea8 | 2013-05-16 14:31:02 -0400 | [diff] [blame] | 1015 | static int sysfs_readdir(struct file *file, struct dir_context *ctx) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | { | 
| Al Viro | d55fea8 | 2013-05-16 14:31:02 -0400 | [diff] [blame] | 1017 | struct dentry *dentry = file->f_path.dentry; | 
| Greg Kroah-Hartman | 1b18dc2 | 2013-08-21 16:28:26 -0700 | [diff] [blame] | 1018 | struct sysfs_dirent *parent_sd = dentry->d_fsdata; | 
| Al Viro | d55fea8 | 2013-05-16 14:31:02 -0400 | [diff] [blame] | 1019 | struct sysfs_dirent *pos = file->private_data; | 
| Tejun Heo | cb26a31 | 2013-09-11 22:29:07 -0400 | [diff] [blame] | 1020 | const void *ns = NULL; | 
| Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 1021 |  | 
| Al Viro | d55fea8 | 2013-05-16 14:31:02 -0400 | [diff] [blame] | 1022 | if (!dir_emit_dots(file, ctx)) | 
|  | 1023 | return 0; | 
| Eric W. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 1024 | mutex_lock(&sysfs_mutex); | 
| Tejun Heo | cb26a31 | 2013-09-11 22:29:07 -0400 | [diff] [blame] | 1025 |  | 
|  | 1026 | if (parent_sd->s_flags & SYSFS_FLAG_HAS_NS) | 
|  | 1027 | ns = sysfs_info(dentry->d_sb)->ns; | 
|  | 1028 |  | 
| Al Viro | d55fea8 | 2013-05-16 14:31:02 -0400 | [diff] [blame] | 1029 | for (pos = sysfs_dir_pos(ns, parent_sd, ctx->pos, pos); | 
| Eric W. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 1030 | pos; | 
| Al Viro | d55fea8 | 2013-05-16 14:31:02 -0400 | [diff] [blame] | 1031 | 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. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 1038 |  | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 1039 | mutex_unlock(&sysfs_mutex); | 
| Al Viro | d55fea8 | 2013-05-16 14:31:02 -0400 | [diff] [blame] | 1040 | if (!dir_emit(ctx, name, len, ino, type)) | 
|  | 1041 | return 0; | 
| Eric W. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 1042 | mutex_lock(&sysfs_mutex); | 
| Eric W. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 1043 | } | 
|  | 1044 | mutex_unlock(&sysfs_mutex); | 
| Al Viro | d55fea8 | 2013-05-16 14:31:02 -0400 | [diff] [blame] | 1045 | file->private_data = NULL; | 
|  | 1046 | ctx->pos = INT_MAX; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | return 0; | 
|  | 1048 | } | 
|  | 1049 |  | 
| Ming Lei | 991f76f | 2013-03-20 23:25:24 +0800 | [diff] [blame] | 1050 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 |  | 
| Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 1062 | const struct file_operations sysfs_dir_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | .read		= generic_read_dir, | 
| Al Viro | d55fea8 | 2013-05-16 14:31:02 -0400 | [diff] [blame] | 1064 | .iterate	= sysfs_readdir, | 
| Eric W. Biederman | 1e5289c | 2010-01-01 14:43:53 -0800 | [diff] [blame] | 1065 | .release	= sysfs_dir_release, | 
| Ming Lei | 991f76f | 2013-03-20 23:25:24 +0800 | [diff] [blame] | 1066 | .llseek		= sysfs_dir_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | }; |