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