1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * /proc/sys support 4 */ 5 #include <linux/init.h> 6 #include <linux/sysctl.h> 7 #include <linux/poll.h> 8 #include <linux/proc_fs.h> 9 #include <linux/printk.h> 10 #include <linux/security.h> 11 #include <linux/sched.h> 12 #include <linux/cred.h> 13 #include <linux/namei.h> 14 #include <linux/mm.h> 15 #include <linux/uio.h> 16 #include <linux/module.h> 17 #include <linux/bpf-cgroup.h> 18 #include <linux/mount.h> 19 #include <linux/kmemleak.h> 20 #include "internal.h" 21 22 #define list_for_each_table_entry(entry, header) \ 23 entry = header->ctl_table; \ 24 for (size_t i = 0 ; i < header->ctl_table_size && entry->procname; ++i, entry++) 25 26 static const struct dentry_operations proc_sys_dentry_operations; 27 static const struct file_operations proc_sys_file_operations; 28 static const struct inode_operations proc_sys_inode_operations; 29 static const struct file_operations proc_sys_dir_file_operations; 30 static const struct inode_operations proc_sys_dir_operations; 31 32 /* Support for permanently empty directories */ 33 static struct ctl_table sysctl_mount_point[] = { 34 {.type = SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY } 35 }; 36 37 /** 38 * register_sysctl_mount_point() - registers a sysctl mount point 39 * @path: path for the mount point 40 * 41 * Used to create a permanently empty directory to serve as mount point. 42 * There are some subtle but important permission checks this allows in the 43 * case of unprivileged mounts. 44 */ 45 struct ctl_table_header *register_sysctl_mount_point(const char *path) 46 { 47 return register_sysctl(path, sysctl_mount_point); 48 } 49 EXPORT_SYMBOL(register_sysctl_mount_point); 50 51 #define sysctl_is_perm_empty_ctl_table(tptr) \ 52 (tptr[0].type == SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY) 53 #define sysctl_is_perm_empty_ctl_header(hptr) \ 54 (sysctl_is_perm_empty_ctl_table(hptr->ctl_table)) 55 #define sysctl_set_perm_empty_ctl_header(hptr) \ 56 (hptr->ctl_table[0].type = SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY) 57 #define sysctl_clear_perm_empty_ctl_header(hptr) \ 58 (hptr->ctl_table[0].type = SYSCTL_TABLE_TYPE_DEFAULT) 59 60 void proc_sys_poll_notify(struct ctl_table_poll *poll) 61 { 62 if (!poll) 63 return; 64 65 atomic_inc(&poll->event); 66 wake_up_interruptible(&poll->wait); 67 } 68 69 static struct ctl_table root_table[] = { 70 { 71 .procname = "", 72 .mode = S_IFDIR|S_IRUGO|S_IXUGO, 73 }, 74 }; 75 static struct ctl_table_root sysctl_table_root = { 76 .default_set.dir.header = { 77 {{.count = 1, 78 .nreg = 1, 79 .ctl_table = root_table }}, 80 .ctl_table_arg = root_table, 81 .root = &sysctl_table_root, 82 .set = &sysctl_table_root.default_set, 83 }, 84 }; 85 86 static DEFINE_SPINLOCK(sysctl_lock); 87 88 static void drop_sysctl_table(struct ctl_table_header *header); 89 static int sysctl_follow_link(struct ctl_table_header **phead, 90 struct ctl_table **pentry); 91 static int insert_links(struct ctl_table_header *head); 92 static void put_links(struct ctl_table_header *header); 93 94 static void sysctl_print_dir(struct ctl_dir *dir) 95 { 96 if (dir->header.parent) 97 sysctl_print_dir(dir->header.parent); 98 pr_cont("%s/", dir->header.ctl_table[0].procname); 99 } 100 101 static int namecmp(const char *name1, int len1, const char *name2, int len2) 102 { 103 int cmp; 104 105 cmp = memcmp(name1, name2, min(len1, len2)); 106 if (cmp == 0) 107 cmp = len1 - len2; 108 return cmp; 109 } 110 111 /* Called under sysctl_lock */ 112 static struct ctl_table *find_entry(struct ctl_table_header **phead, 113 struct ctl_dir *dir, const char *name, int namelen) 114 { 115 struct ctl_table_header *head; 116 struct ctl_table *entry; 117 struct rb_node *node = dir->root.rb_node; 118 119 while (node) 120 { 121 struct ctl_node *ctl_node; 122 const char *procname; 123 int cmp; 124 125 ctl_node = rb_entry(node, struct ctl_node, node); 126 head = ctl_node->header; 127 entry = &head->ctl_table[ctl_node - head->node]; 128 procname = entry->procname; 129 130 cmp = namecmp(name, namelen, procname, strlen(procname)); 131 if (cmp < 0) 132 node = node->rb_left; 133 else if (cmp > 0) 134 node = node->rb_right; 135 else { 136 *phead = head; 137 return entry; 138 } 139 } 140 return NULL; 141 } 142 143 static int insert_entry(struct ctl_table_header *head, struct ctl_table *entry) 144 { 145 struct rb_node *node = &head->node[entry - head->ctl_table].node; 146 struct rb_node **p = &head->parent->root.rb_node; 147 struct rb_node *parent = NULL; 148 const char *name = entry->procname; 149 int namelen = strlen(name); 150 151 while (*p) { 152 struct ctl_table_header *parent_head; 153 struct ctl_table *parent_entry; 154 struct ctl_node *parent_node; 155 const char *parent_name; 156 int cmp; 157 158 parent = *p; 159 parent_node = rb_entry(parent, struct ctl_node, node); 160 parent_head = parent_node->header; 161 parent_entry = &parent_head->ctl_table[parent_node - parent_head->node]; 162 parent_name = parent_entry->procname; 163 164 cmp = namecmp(name, namelen, parent_name, strlen(parent_name)); 165 if (cmp < 0) 166 p = &(*p)->rb_left; 167 else if (cmp > 0) 168 p = &(*p)->rb_right; 169 else { 170 pr_err("sysctl duplicate entry: "); 171 sysctl_print_dir(head->parent); 172 pr_cont("%s\n", entry->procname); 173 return -EEXIST; 174 } 175 } 176 177 rb_link_node(node, parent, p); 178 rb_insert_color(node, &head->parent->root); 179 return 0; 180 } 181 182 static void erase_entry(struct ctl_table_header *head, struct ctl_table *entry) 183 { 184 struct rb_node *node = &head->node[entry - head->ctl_table].node; 185 186 rb_erase(node, &head->parent->root); 187 } 188 189 static void init_header(struct ctl_table_header *head, 190 struct ctl_table_root *root, struct ctl_table_set *set, 191 struct ctl_node *node, struct ctl_table *table, size_t table_size) 192 { 193 head->ctl_table = table; 194 head->ctl_table_size = table_size; 195 head->ctl_table_arg = table; 196 head->used = 0; 197 head->count = 1; 198 head->nreg = 1; 199 head->unregistering = NULL; 200 head->root = root; 201 head->set = set; 202 head->parent = NULL; 203 head->node = node; 204 INIT_HLIST_HEAD(&head->inodes); 205 if (node) { 206 struct ctl_table *entry; 207 208 list_for_each_table_entry(entry, head) { 209 node->header = head; 210 node++; 211 } 212 } 213 } 214 215 static void erase_header(struct ctl_table_header *head) 216 { 217 struct ctl_table *entry; 218 219 list_for_each_table_entry(entry, head) 220 erase_entry(head, entry); 221 } 222 223 static int insert_header(struct ctl_dir *dir, struct ctl_table_header *header) 224 { 225 struct ctl_table *entry; 226 struct ctl_table_header *dir_h = &dir->header; 227 int err; 228 229 230 /* Is this a permanently empty directory? */ 231 if (sysctl_is_perm_empty_ctl_header(dir_h)) 232 return -EROFS; 233 234 /* Am I creating a permanently empty directory? */ 235 if (header->ctl_table_size > 0 && 236 sysctl_is_perm_empty_ctl_table(header->ctl_table)) { 237 if (!RB_EMPTY_ROOT(&dir->root)) 238 return -EINVAL; 239 sysctl_set_perm_empty_ctl_header(dir_h); 240 } 241 242 dir_h->nreg++; 243 header->parent = dir; 244 err = insert_links(header); 245 if (err) 246 goto fail_links; 247 list_for_each_table_entry(entry, header) { 248 err = insert_entry(header, entry); 249 if (err) 250 goto fail; 251 } 252 return 0; 253 fail: 254 erase_header(header); 255 put_links(header); 256 fail_links: 257 if (header->ctl_table == sysctl_mount_point) 258 sysctl_clear_perm_empty_ctl_header(dir_h); 259 header->parent = NULL; 260 drop_sysctl_table(dir_h); 261 return err; 262 } 263 264 /* called under sysctl_lock */ 265 static int use_table(struct ctl_table_header *p) 266 { 267 if (unlikely(p->unregistering)) 268 return 0; 269 p->used++; 270 return 1; 271 } 272 273 /* called under sysctl_lock */ 274 static void unuse_table(struct ctl_table_header *p) 275 { 276 if (!--p->used) 277 if (unlikely(p->unregistering)) 278 complete(p->unregistering); 279 } 280 281 static void proc_sys_invalidate_dcache(struct ctl_table_header *head) 282 { 283 proc_invalidate_siblings_dcache(&head->inodes, &sysctl_lock); 284 } 285 286 /* called under sysctl_lock, will reacquire if has to wait */ 287 static void start_unregistering(struct ctl_table_header *p) 288 { 289 /* 290 * if p->used is 0, nobody will ever touch that entry again; 291 * we'll eliminate all paths to it before dropping sysctl_lock 292 */ 293 if (unlikely(p->used)) { 294 struct completion wait; 295 init_completion(&wait); 296 p->unregistering = &wait; 297 spin_unlock(&sysctl_lock); 298 wait_for_completion(&wait); 299 } else { 300 /* anything non-NULL; we'll never dereference it */ 301 p->unregistering = ERR_PTR(-EINVAL); 302 spin_unlock(&sysctl_lock); 303 } 304 /* 305 * Invalidate dentries for unregistered sysctls: namespaced sysctls 306 * can have duplicate names and contaminate dcache very badly. 307 */ 308 proc_sys_invalidate_dcache(p); 309 /* 310 * do not remove from the list until nobody holds it; walking the 311 * list in do_sysctl() relies on that. 312 */ 313 spin_lock(&sysctl_lock); 314 erase_header(p); 315 } 316 317 static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head) 318 { 319 BUG_ON(!head); 320 spin_lock(&sysctl_lock); 321 if (!use_table(head)) 322 head = ERR_PTR(-ENOENT); 323 spin_unlock(&sysctl_lock); 324 return head; 325 } 326 327 static void sysctl_head_finish(struct ctl_table_header *head) 328 { 329 if (!head) 330 return; 331 spin_lock(&sysctl_lock); 332 unuse_table(head); 333 spin_unlock(&sysctl_lock); 334 } 335 336 static struct ctl_table_set * 337 lookup_header_set(struct ctl_table_root *root) 338 { 339 struct ctl_table_set *set = &root->default_set; 340 if (root->lookup) 341 set = root->lookup(root); 342 return set; 343 } 344 345 static struct ctl_table *lookup_entry(struct ctl_table_header **phead, 346 struct ctl_dir *dir, 347 const char *name, int namelen) 348 { 349 struct ctl_table_header *head; 350 struct ctl_table *entry; 351 352 spin_lock(&sysctl_lock); 353 entry = find_entry(&head, dir, name, namelen); 354 if (entry && use_table(head)) 355 *phead = head; 356 else 357 entry = NULL; 358 spin_unlock(&sysctl_lock); 359 return entry; 360 } 361 362 static struct ctl_node *first_usable_entry(struct rb_node *node) 363 { 364 struct ctl_node *ctl_node; 365 366 for (;node; node = rb_next(node)) { 367 ctl_node = rb_entry(node, struct ctl_node, node); 368 if (use_table(ctl_node->header)) 369 return ctl_node; 370 } 371 return NULL; 372 } 373 374 static void first_entry(struct ctl_dir *dir, 375 struct ctl_table_header **phead, struct ctl_table **pentry) 376 { 377 struct ctl_table_header *head = NULL; 378 struct ctl_table *entry = NULL; 379 struct ctl_node *ctl_node; 380 381 spin_lock(&sysctl_lock); 382 ctl_node = first_usable_entry(rb_first(&dir->root)); 383 spin_unlock(&sysctl_lock); 384 if (ctl_node) { 385 head = ctl_node->header; 386 entry = &head->ctl_table[ctl_node - head->node]; 387 } 388 *phead = head; 389 *pentry = entry; 390 } 391 392 static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry) 393 { 394 struct ctl_table_header *head = *phead; 395 struct ctl_table *entry = *pentry; 396 struct ctl_node *ctl_node = &head->node[entry - head->ctl_table]; 397 398 spin_lock(&sysctl_lock); 399 unuse_table(head); 400 401 ctl_node = first_usable_entry(rb_next(&ctl_node->node)); 402 spin_unlock(&sysctl_lock); 403 head = NULL; 404 if (ctl_node) { 405 head = ctl_node->header; 406 entry = &head->ctl_table[ctl_node - head->node]; 407 } 408 *phead = head; 409 *pentry = entry; 410 } 411 412 /* 413 * sysctl_perm does NOT grant the superuser all rights automatically, because 414 * some sysctl variables are readonly even to root. 415 */ 416 417 static int test_perm(int mode, int op) 418 { 419 if (uid_eq(current_euid(), GLOBAL_ROOT_UID)) 420 mode >>= 6; 421 else if (in_egroup_p(GLOBAL_ROOT_GID)) 422 mode >>= 3; 423 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0) 424 return 0; 425 return -EACCES; 426 } 427 428 static int sysctl_perm(struct ctl_table_header *head, struct ctl_table *table, int op) 429 { 430 struct ctl_table_root *root = head->root; 431 int mode; 432 433 if (root->permissions) 434 mode = root->permissions(head, table); 435 else 436 mode = table->mode; 437 438 return test_perm(mode, op); 439 } 440 441 static struct inode *proc_sys_make_inode(struct super_block *sb, 442 struct ctl_table_header *head, struct ctl_table *table) 443 { 444 struct ctl_table_root *root = head->root; 445 struct inode *inode; 446 struct proc_inode *ei; 447 448 inode = new_inode(sb); 449 if (!inode) 450 return ERR_PTR(-ENOMEM); 451 452 inode->i_ino = get_next_ino(); 453 454 ei = PROC_I(inode); 455 456 spin_lock(&sysctl_lock); 457 if (unlikely(head->unregistering)) { 458 spin_unlock(&sysctl_lock); 459 iput(inode); 460 return ERR_PTR(-ENOENT); 461 } 462 ei->sysctl = head; 463 ei->sysctl_entry = table; 464 hlist_add_head_rcu(&ei->sibling_inodes, &head->inodes); 465 head->count++; 466 spin_unlock(&sysctl_lock); 467 468 simple_inode_init_ts(inode); 469 inode->i_mode = table->mode; 470 if (!S_ISDIR(table->mode)) { 471 inode->i_mode |= S_IFREG; 472 inode->i_op = &proc_sys_inode_operations; 473 inode->i_fop = &proc_sys_file_operations; 474 } else { 475 inode->i_mode |= S_IFDIR; 476 inode->i_op = &proc_sys_dir_operations; 477 inode->i_fop = &proc_sys_dir_file_operations; 478 if (sysctl_is_perm_empty_ctl_header(head)) 479 make_empty_dir_inode(inode); 480 } 481 482 if (root->set_ownership) 483 root->set_ownership(head, table, &inode->i_uid, &inode->i_gid); 484 else { 485 inode->i_uid = GLOBAL_ROOT_UID; 486 inode->i_gid = GLOBAL_ROOT_GID; 487 } 488 489 return inode; 490 } 491 492 void proc_sys_evict_inode(struct inode *inode, struct ctl_table_header *head) 493 { 494 spin_lock(&sysctl_lock); 495 hlist_del_init_rcu(&PROC_I(inode)->sibling_inodes); 496 if (!--head->count) 497 kfree_rcu(head, rcu); 498 spin_unlock(&sysctl_lock); 499 } 500 501 static struct ctl_table_header *grab_header(struct inode *inode) 502 { 503 struct ctl_table_header *head = PROC_I(inode)->sysctl; 504 if (!head) 505 head = &sysctl_table_root.default_set.dir.header; 506 return sysctl_head_grab(head); 507 } 508 509 static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry, 510 unsigned int flags) 511 { 512 struct ctl_table_header *head = grab_header(dir); 513 struct ctl_table_header *h = NULL; 514 const struct qstr *name = &dentry->d_name; 515 struct ctl_table *p; 516 struct inode *inode; 517 struct dentry *err = ERR_PTR(-ENOENT); 518 struct ctl_dir *ctl_dir; 519 int ret; 520 521 if (IS_ERR(head)) 522 return ERR_CAST(head); 523 524 ctl_dir = container_of(head, struct ctl_dir, header); 525 526 p = lookup_entry(&h, ctl_dir, name->name, name->len); 527 if (!p) 528 goto out; 529 530 if (S_ISLNK(p->mode)) { 531 ret = sysctl_follow_link(&h, &p); 532 err = ERR_PTR(ret); 533 if (ret) 534 goto out; 535 } 536 537 inode = proc_sys_make_inode(dir->i_sb, h ? h : head, p); 538 if (IS_ERR(inode)) { 539 err = ERR_CAST(inode); 540 goto out; 541 } 542 543 d_set_d_op(dentry, &proc_sys_dentry_operations); 544 err = d_splice_alias(inode, dentry); 545 546 out: 547 if (h) 548 sysctl_head_finish(h); 549 sysctl_head_finish(head); 550 return err; 551 } 552 553 static ssize_t proc_sys_call_handler(struct kiocb *iocb, struct iov_iter *iter, 554 int write) 555 { 556 struct inode *inode = file_inode(iocb->ki_filp); 557 struct ctl_table_header *head = grab_header(inode); 558 struct ctl_table *table = PROC_I(inode)->sysctl_entry; 559 size_t count = iov_iter_count(iter); 560 char *kbuf; 561 ssize_t error; 562 563 if (IS_ERR(head)) 564 return PTR_ERR(head); 565 566 /* 567 * At this point we know that the sysctl was not unregistered 568 * and won't be until we finish. 569 */ 570 error = -EPERM; 571 if (sysctl_perm(head, table, write ? MAY_WRITE : MAY_READ)) 572 goto out; 573 574 /* if that can happen at all, it should be -EINVAL, not -EISDIR */ 575 error = -EINVAL; 576 if (!table->proc_handler) 577 goto out; 578 579 /* don't even try if the size is too large */ 580 error = -ENOMEM; 581 if (count >= KMALLOC_MAX_SIZE) 582 goto out; 583 kbuf = kvzalloc(count + 1, GFP_KERNEL); 584 if (!kbuf) 585 goto out; 586 587 if (write) { 588 error = -EFAULT; 589 if (!copy_from_iter_full(kbuf, count, iter)) 590 goto out_free_buf; 591 kbuf[count] = '\0'; 592 } 593 594 error = BPF_CGROUP_RUN_PROG_SYSCTL(head, table, write, &kbuf, &count, 595 &iocb->ki_pos); 596 if (error) 597 goto out_free_buf; 598 599 /* careful: calling conventions are nasty here */ 600 error = table->proc_handler(table, write, kbuf, &count, &iocb->ki_pos); 601 if (error) 602 goto out_free_buf; 603 604 if (!write) { 605 error = -EFAULT; 606 if (copy_to_iter(kbuf, count, iter) < count) 607 goto out_free_buf; 608 } 609 610 error = count; 611 out_free_buf: 612 kvfree(kbuf); 613 out: 614 sysctl_head_finish(head); 615 616 return error; 617 } 618 619 static ssize_t proc_sys_read(struct kiocb *iocb, struct iov_iter *iter) 620 { 621 return proc_sys_call_handler(iocb, iter, 0); 622 } 623 624 static ssize_t proc_sys_write(struct kiocb *iocb, struct iov_iter *iter) 625 { 626 return proc_sys_call_handler(iocb, iter, 1); 627 } 628 629 static int proc_sys_open(struct inode *inode, struct file *filp) 630 { 631 struct ctl_table_header *head = grab_header(inode); 632 struct ctl_table *table = PROC_I(inode)->sysctl_entry; 633 634 /* sysctl was unregistered */ 635 if (IS_ERR(head)) 636 return PTR_ERR(head); 637 638 if (table->poll) 639 filp->private_data = proc_sys_poll_event(table->poll); 640 641 sysctl_head_finish(head); 642 643 return 0; 644 } 645 646 static __poll_t proc_sys_poll(struct file *filp, poll_table *wait) 647 { 648 struct inode *inode = file_inode(filp); 649 struct ctl_table_header *head = grab_header(inode); 650 struct ctl_table *table = PROC_I(inode)->sysctl_entry; 651 __poll_t ret = DEFAULT_POLLMASK; 652 unsigned long event; 653 654 /* sysctl was unregistered */ 655 if (IS_ERR(head)) 656 return EPOLLERR | EPOLLHUP; 657 658 if (!table->proc_handler) 659 goto out; 660 661 if (!table->poll) 662 goto out; 663 664 event = (unsigned long)filp->private_data; 665 poll_wait(filp, &table->poll->wait, wait); 666 667 if (event != atomic_read(&table->poll->event)) { 668 filp->private_data = proc_sys_poll_event(table->poll); 669 ret = EPOLLIN | EPOLLRDNORM | EPOLLERR | EPOLLPRI; 670 } 671 672 out: 673 sysctl_head_finish(head); 674 675 return ret; 676 } 677 678 static bool proc_sys_fill_cache(struct file *file, 679 struct dir_context *ctx, 680 struct ctl_table_header *head, 681 struct ctl_table *table) 682 { 683 struct dentry *child, *dir = file->f_path.dentry; 684 struct inode *inode; 685 struct qstr qname; 686 ino_t ino = 0; 687 unsigned type = DT_UNKNOWN; 688 689 qname.name = table->procname; 690 qname.len = strlen(table->procname); 691 qname.hash = full_name_hash(dir, qname.name, qname.len); 692 693 child = d_lookup(dir, &qname); 694 if (!child) { 695 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); 696 child = d_alloc_parallel(dir, &qname, &wq); 697 if (IS_ERR(child)) 698 return false; 699 if (d_in_lookup(child)) { 700 struct dentry *res; 701 inode = proc_sys_make_inode(dir->d_sb, head, table); 702 if (IS_ERR(inode)) { 703 d_lookup_done(child); 704 dput(child); 705 return false; 706 } 707 d_set_d_op(child, &proc_sys_dentry_operations); 708 res = d_splice_alias(inode, child); 709 d_lookup_done(child); 710 if (unlikely(res)) { 711 if (IS_ERR(res)) { 712 dput(child); 713 return false; 714 } 715 dput(child); 716 child = res; 717 } 718 } 719 } 720 inode = d_inode(child); 721 ino = inode->i_ino; 722 type = inode->i_mode >> 12; 723 dput(child); 724 return dir_emit(ctx, qname.name, qname.len, ino, type); 725 } 726 727 static bool proc_sys_link_fill_cache(struct file *file, 728 struct dir_context *ctx, 729 struct ctl_table_header *head, 730 struct ctl_table *table) 731 { 732 bool ret = true; 733 734 head = sysctl_head_grab(head); 735 if (IS_ERR(head)) 736 return false; 737 738 /* It is not an error if we can not follow the link ignore it */ 739 if (sysctl_follow_link(&head, &table)) 740 goto out; 741 742 ret = proc_sys_fill_cache(file, ctx, head, table); 743 out: 744 sysctl_head_finish(head); 745 return ret; 746 } 747 748 static int scan(struct ctl_table_header *head, struct ctl_table *table, 749 unsigned long *pos, struct file *file, 750 struct dir_context *ctx) 751 { 752 bool res; 753 754 if ((*pos)++ < ctx->pos) 755 return true; 756 757 if (unlikely(S_ISLNK(table->mode))) 758 res = proc_sys_link_fill_cache(file, ctx, head, table); 759 else 760 res = proc_sys_fill_cache(file, ctx, head, table); 761 762 if (res) 763 ctx->pos = *pos; 764 765 return res; 766 } 767 768 static int proc_sys_readdir(struct file *file, struct dir_context *ctx) 769 { 770 struct ctl_table_header *head = grab_header(file_inode(file)); 771 struct ctl_table_header *h = NULL; 772 struct ctl_table *entry; 773 struct ctl_dir *ctl_dir; 774 unsigned long pos; 775 776 if (IS_ERR(head)) 777 return PTR_ERR(head); 778 779 ctl_dir = container_of(head, struct ctl_dir, header); 780 781 if (!dir_emit_dots(file, ctx)) 782 goto out; 783 784 pos = 2; 785 786 for (first_entry(ctl_dir, &h, &entry); h; next_entry(&h, &entry)) { 787 if (!scan(h, entry, &pos, file, ctx)) { 788 sysctl_head_finish(h); 789 break; 790 } 791 } 792 out: 793 sysctl_head_finish(head); 794 return 0; 795 } 796 797 static int proc_sys_permission(struct mnt_idmap *idmap, 798 struct inode *inode, int mask) 799 { 800 /* 801 * sysctl entries that are not writeable, 802 * are _NOT_ writeable, capabilities or not. 803 */ 804 struct ctl_table_header *head; 805 struct ctl_table *table; 806 int error; 807 808 /* Executable files are not allowed under /proc/sys/ */ 809 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) 810 return -EACCES; 811 812 head = grab_header(inode); 813 if (IS_ERR(head)) 814 return PTR_ERR(head); 815 816 table = PROC_I(inode)->sysctl_entry; 817 if (!table) /* global root - r-xr-xr-x */ 818 error = mask & MAY_WRITE ? -EACCES : 0; 819 else /* Use the permissions on the sysctl table entry */ 820 error = sysctl_perm(head, table, mask & ~MAY_NOT_BLOCK); 821 822 sysctl_head_finish(head); 823 return error; 824 } 825 826 static int proc_sys_setattr(struct mnt_idmap *idmap, 827 struct dentry *dentry, struct iattr *attr) 828 { 829 struct inode *inode = d_inode(dentry); 830 int error; 831 832 if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID)) 833 return -EPERM; 834 835 error = setattr_prepare(&nop_mnt_idmap, dentry, attr); 836 if (error) 837 return error; 838 839 setattr_copy(&nop_mnt_idmap, inode, attr); 840 return 0; 841 } 842 843 static int proc_sys_getattr(struct mnt_idmap *idmap, 844 const struct path *path, struct kstat *stat, 845 u32 request_mask, unsigned int query_flags) 846 { 847 struct inode *inode = d_inode(path->dentry); 848 struct ctl_table_header *head = grab_header(inode); 849 struct ctl_table *table = PROC_I(inode)->sysctl_entry; 850 851 if (IS_ERR(head)) 852 return PTR_ERR(head); 853 854 generic_fillattr(&nop_mnt_idmap, request_mask, inode, stat); 855 if (table) 856 stat->mode = (stat->mode & S_IFMT) | table->mode; 857 858 sysctl_head_finish(head); 859 return 0; 860 } 861 862 static const struct file_operations proc_sys_file_operations = { 863 .open = proc_sys_open, 864 .poll = proc_sys_poll, 865 .read_iter = proc_sys_read, 866 .write_iter = proc_sys_write, 867 .splice_read = copy_splice_read, 868 .splice_write = iter_file_splice_write, 869 .llseek = default_llseek, 870 }; 871 872 static const struct file_operations proc_sys_dir_file_operations = { 873 .read = generic_read_dir, 874 .iterate_shared = proc_sys_readdir, 875 .llseek = generic_file_llseek, 876 }; 877 878 static const struct inode_operations proc_sys_inode_operations = { 879 .permission = proc_sys_permission, 880 .setattr = proc_sys_setattr, 881 .getattr = proc_sys_getattr, 882 }; 883 884 static const struct inode_operations proc_sys_dir_operations = { 885 .lookup = proc_sys_lookup, 886 .permission = proc_sys_permission, 887 .setattr = proc_sys_setattr, 888 .getattr = proc_sys_getattr, 889 }; 890 891 static int proc_sys_revalidate(struct dentry *dentry, unsigned int flags) 892 { 893 if (flags & LOOKUP_RCU) 894 return -ECHILD; 895 return !PROC_I(d_inode(dentry))->sysctl->unregistering; 896 } 897 898 static int proc_sys_delete(const struct dentry *dentry) 899 { 900 return !!PROC_I(d_inode(dentry))->sysctl->unregistering; 901 } 902 903 static int sysctl_is_seen(struct ctl_table_header *p) 904 { 905 struct ctl_table_set *set = p->set; 906 int res; 907 spin_lock(&sysctl_lock); 908 if (p->unregistering) 909 res = 0; 910 else if (!set->is_seen) 911 res = 1; 912 else 913 res = set->is_seen(set); 914 spin_unlock(&sysctl_lock); 915 return res; 916 } 917 918 static int proc_sys_compare(const struct dentry *dentry, 919 unsigned int len, const char *str, const struct qstr *name) 920 { 921 struct ctl_table_header *head; 922 struct inode *inode; 923 924 /* Although proc doesn't have negative dentries, rcu-walk means 925 * that inode here can be NULL */ 926 /* AV: can it, indeed? */ 927 inode = d_inode_rcu(dentry); 928 if (!inode) 929 return 1; 930 if (name->len != len) 931 return 1; 932 if (memcmp(name->name, str, len)) 933 return 1; 934 head = rcu_dereference(PROC_I(inode)->sysctl); 935 return !head || !sysctl_is_seen(head); 936 } 937 938 static const struct dentry_operations proc_sys_dentry_operations = { 939 .d_revalidate = proc_sys_revalidate, 940 .d_delete = proc_sys_delete, 941 .d_compare = proc_sys_compare, 942 }; 943 944 static struct ctl_dir *find_subdir(struct ctl_dir *dir, 945 const char *name, int namelen) 946 { 947 struct ctl_table_header *head; 948 struct ctl_table *entry; 949 950 entry = find_entry(&head, dir, name, namelen); 951 if (!entry) 952 return ERR_PTR(-ENOENT); 953 if (!S_ISDIR(entry->mode)) 954 return ERR_PTR(-ENOTDIR); 955 return container_of(head, struct ctl_dir, header); 956 } 957 958 static struct ctl_dir *new_dir(struct ctl_table_set *set, 959 const char *name, int namelen) 960 { 961 struct ctl_table *table; 962 struct ctl_dir *new; 963 struct ctl_node *node; 964 char *new_name; 965 966 new = kzalloc(sizeof(*new) + sizeof(struct ctl_node) + 967 sizeof(struct ctl_table)*2 + namelen + 1, 968 GFP_KERNEL); 969 if (!new) 970 return NULL; 971 972 node = (struct ctl_node *)(new + 1); 973 table = (struct ctl_table *)(node + 1); 974 new_name = (char *)(table + 2); 975 memcpy(new_name, name, namelen); 976 table[0].procname = new_name; 977 table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO; 978 init_header(&new->header, set->dir.header.root, set, node, table, 1); 979 980 return new; 981 } 982 983 /** 984 * get_subdir - find or create a subdir with the specified name. 985 * @dir: Directory to create the subdirectory in 986 * @name: The name of the subdirectory to find or create 987 * @namelen: The length of name 988 * 989 * Takes a directory with an elevated reference count so we know that 990 * if we drop the lock the directory will not go away. Upon success 991 * the reference is moved from @dir to the returned subdirectory. 992 * Upon error an error code is returned and the reference on @dir is 993 * simply dropped. 994 */ 995 static struct ctl_dir *get_subdir(struct ctl_dir *dir, 996 const char *name, int namelen) 997 { 998 struct ctl_table_set *set = dir->header.set; 999 struct ctl_dir *subdir, *new = NULL; 1000 int err; 1001 1002 spin_lock(&sysctl_lock); 1003 subdir = find_subdir(dir, name, namelen); 1004 if (!IS_ERR(subdir)) 1005 goto found; 1006 if (PTR_ERR(subdir) != -ENOENT) 1007 goto failed; 1008 1009 spin_unlock(&sysctl_lock); 1010 new = new_dir(set, name, namelen); 1011 spin_lock(&sysctl_lock); 1012 subdir = ERR_PTR(-ENOMEM); 1013 if (!new) 1014 goto failed; 1015 1016 /* Was the subdir added while we dropped the lock? */ 1017 subdir = find_subdir(dir, name, namelen); 1018 if (!IS_ERR(subdir)) 1019 goto found; 1020 if (PTR_ERR(subdir) != -ENOENT) 1021 goto failed; 1022 1023 /* Nope. Use the our freshly made directory entry. */ 1024 err = insert_header(dir, &new->header); 1025 subdir = ERR_PTR(err); 1026 if (err) 1027 goto failed; 1028 subdir = new; 1029 found: 1030 subdir->header.nreg++; 1031 failed: 1032 if (IS_ERR(subdir)) { 1033 pr_err("sysctl could not get directory: "); 1034 sysctl_print_dir(dir); 1035 pr_cont("%*.*s %ld\n", namelen, namelen, name, 1036 PTR_ERR(subdir)); 1037 } 1038 drop_sysctl_table(&dir->header); 1039 if (new) 1040 drop_sysctl_table(&new->header); 1041 spin_unlock(&sysctl_lock); 1042 return subdir; 1043 } 1044 1045 static struct ctl_dir *xlate_dir(struct ctl_table_set *set, struct ctl_dir *dir) 1046 { 1047 struct ctl_dir *parent; 1048 const char *procname; 1049 if (!dir->header.parent) 1050 return &set->dir; 1051 parent = xlate_dir(set, dir->header.parent); 1052 if (IS_ERR(parent)) 1053 return parent; 1054 procname = dir->header.ctl_table[0].procname; 1055 return find_subdir(parent, procname, strlen(procname)); 1056 } 1057 1058 static int sysctl_follow_link(struct ctl_table_header **phead, 1059 struct ctl_table **pentry) 1060 { 1061 struct ctl_table_header *head; 1062 struct ctl_table_root *root; 1063 struct ctl_table_set *set; 1064 struct ctl_table *entry; 1065 struct ctl_dir *dir; 1066 int ret; 1067 1068 spin_lock(&sysctl_lock); 1069 root = (*pentry)->data; 1070 set = lookup_header_set(root); 1071 dir = xlate_dir(set, (*phead)->parent); 1072 if (IS_ERR(dir)) 1073 ret = PTR_ERR(dir); 1074 else { 1075 const char *procname = (*pentry)->procname; 1076 head = NULL; 1077 entry = find_entry(&head, dir, procname, strlen(procname)); 1078 ret = -ENOENT; 1079 if (entry && use_table(head)) { 1080 unuse_table(*phead); 1081 *phead = head; 1082 *pentry = entry; 1083 ret = 0; 1084 } 1085 } 1086 1087 spin_unlock(&sysctl_lock); 1088 return ret; 1089 } 1090 1091 static int sysctl_err(const char *path, struct ctl_table *table, char *fmt, ...) 1092 { 1093 struct va_format vaf; 1094 va_list args; 1095 1096 va_start(args, fmt); 1097 vaf.fmt = fmt; 1098 vaf.va = &args; 1099 1100 pr_err("sysctl table check failed: %s/%s %pV\n", 1101 path, table->procname, &vaf); 1102 1103 va_end(args); 1104 return -EINVAL; 1105 } 1106 1107 static int sysctl_check_table_array(const char *path, struct ctl_table *table) 1108 { 1109 int err = 0; 1110 1111 if ((table->proc_handler == proc_douintvec) || 1112 (table->proc_handler == proc_douintvec_minmax)) { 1113 if (table->maxlen != sizeof(unsigned int)) 1114 err |= sysctl_err(path, table, "array not allowed"); 1115 } 1116 1117 if (table->proc_handler == proc_dou8vec_minmax) { 1118 if (table->maxlen != sizeof(u8)) 1119 err |= sysctl_err(path, table, "array not allowed"); 1120 } 1121 1122 if (table->proc_handler == proc_dobool) { 1123 if (table->maxlen != sizeof(bool)) 1124 err |= sysctl_err(path, table, "array not allowed"); 1125 } 1126 1127 return err; 1128 } 1129 1130 static int sysctl_check_table(const char *path, struct ctl_table_header *header) 1131 { 1132 struct ctl_table *entry; 1133 int err = 0; 1134 list_for_each_table_entry(entry, header) { 1135 if ((entry->proc_handler == proc_dostring) || 1136 (entry->proc_handler == proc_dobool) || 1137 (entry->proc_handler == proc_dointvec) || 1138 (entry->proc_handler == proc_douintvec) || 1139 (entry->proc_handler == proc_douintvec_minmax) || 1140 (entry->proc_handler == proc_dointvec_minmax) || 1141 (entry->proc_handler == proc_dou8vec_minmax) || 1142 (entry->proc_handler == proc_dointvec_jiffies) || 1143 (entry->proc_handler == proc_dointvec_userhz_jiffies) || 1144 (entry->proc_handler == proc_dointvec_ms_jiffies) || 1145 (entry->proc_handler == proc_doulongvec_minmax) || 1146 (entry->proc_handler == proc_doulongvec_ms_jiffies_minmax)) { 1147 if (!entry->data) 1148 err |= sysctl_err(path, entry, "No data"); 1149 if (!entry->maxlen) 1150 err |= sysctl_err(path, entry, "No maxlen"); 1151 else 1152 err |= sysctl_check_table_array(path, entry); 1153 } 1154 if (!entry->proc_handler) 1155 err |= sysctl_err(path, entry, "No proc_handler"); 1156 1157 if ((entry->mode & (S_IRUGO|S_IWUGO)) != entry->mode) 1158 err |= sysctl_err(path, entry, "bogus .mode 0%o", 1159 entry->mode); 1160 } 1161 return err; 1162 } 1163 1164 static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table_header *head) 1165 { 1166 struct ctl_table *link_table, *entry, *link; 1167 struct ctl_table_header *links; 1168 struct ctl_node *node; 1169 char *link_name; 1170 int nr_entries, name_bytes; 1171 1172 name_bytes = 0; 1173 nr_entries = 0; 1174 list_for_each_table_entry(entry, head) { 1175 nr_entries++; 1176 name_bytes += strlen(entry->procname) + 1; 1177 } 1178 1179 links = kzalloc(sizeof(struct ctl_table_header) + 1180 sizeof(struct ctl_node)*nr_entries + 1181 sizeof(struct ctl_table)*(nr_entries + 1) + 1182 name_bytes, 1183 GFP_KERNEL); 1184 1185 if (!links) 1186 return NULL; 1187 1188 node = (struct ctl_node *)(links + 1); 1189 link_table = (struct ctl_table *)(node + nr_entries); 1190 link_name = (char *)&link_table[nr_entries + 1]; 1191 link = link_table; 1192 1193 list_for_each_table_entry(entry, head) { 1194 int len = strlen(entry->procname) + 1; 1195 memcpy(link_name, entry->procname, len); 1196 link->procname = link_name; 1197 link->mode = S_IFLNK|S_IRWXUGO; 1198 link->data = head->root; 1199 link_name += len; 1200 link++; 1201 } 1202 init_header(links, dir->header.root, dir->header.set, node, link_table, 1203 head->ctl_table_size); 1204 links->nreg = nr_entries; 1205 1206 return links; 1207 } 1208 1209 static bool get_links(struct ctl_dir *dir, 1210 struct ctl_table_header *header, 1211 struct ctl_table_root *link_root) 1212 { 1213 struct ctl_table_header *tmp_head; 1214 struct ctl_table *entry, *link; 1215 1216 if (header->ctl_table_size == 0 || 1217 sysctl_is_perm_empty_ctl_table(header->ctl_table)) 1218 return true; 1219 1220 /* Are there links available for every entry in table? */ 1221 list_for_each_table_entry(entry, header) { 1222 const char *procname = entry->procname; 1223 link = find_entry(&tmp_head, dir, procname, strlen(procname)); 1224 if (!link) 1225 return false; 1226 if (S_ISDIR(link->mode) && S_ISDIR(entry->mode)) 1227 continue; 1228 if (S_ISLNK(link->mode) && (link->data == link_root)) 1229 continue; 1230 return false; 1231 } 1232 1233 /* The checks passed. Increase the registration count on the links */ 1234 list_for_each_table_entry(entry, header) { 1235 const char *procname = entry->procname; 1236 link = find_entry(&tmp_head, dir, procname, strlen(procname)); 1237 tmp_head->nreg++; 1238 } 1239 return true; 1240 } 1241 1242 static int insert_links(struct ctl_table_header *head) 1243 { 1244 struct ctl_table_set *root_set = &sysctl_table_root.default_set; 1245 struct ctl_dir *core_parent; 1246 struct ctl_table_header *links; 1247 int err; 1248 1249 if (head->set == root_set) 1250 return 0; 1251 1252 core_parent = xlate_dir(root_set, head->parent); 1253 if (IS_ERR(core_parent)) 1254 return 0; 1255 1256 if (get_links(core_parent, head, head->root)) 1257 return 0; 1258 1259 core_parent->header.nreg++; 1260 spin_unlock(&sysctl_lock); 1261 1262 links = new_links(core_parent, head); 1263 1264 spin_lock(&sysctl_lock); 1265 err = -ENOMEM; 1266 if (!links) 1267 goto out; 1268 1269 err = 0; 1270 if (get_links(core_parent, head, head->root)) { 1271 kfree(links); 1272 goto out; 1273 } 1274 1275 err = insert_header(core_parent, links); 1276 if (err) 1277 kfree(links); 1278 out: 1279 drop_sysctl_table(&core_parent->header); 1280 return err; 1281 } 1282 1283 /* Find the directory for the ctl_table. If one is not found create it. */ 1284 static struct ctl_dir *sysctl_mkdir_p(struct ctl_dir *dir, const char *path) 1285 { 1286 const char *name, *nextname; 1287 1288 for (name = path; name; name = nextname) { 1289 int namelen; 1290 nextname = strchr(name, '/'); 1291 if (nextname) { 1292 namelen = nextname - name; 1293 nextname++; 1294 } else { 1295 namelen = strlen(name); 1296 } 1297 if (namelen == 0) 1298 continue; 1299 1300 /* 1301 * namelen ensures if name is "foo/bar/yay" only foo is 1302 * registered first. We traverse as if using mkdir -p and 1303 * return a ctl_dir for the last directory entry. 1304 */ 1305 dir = get_subdir(dir, name, namelen); 1306 if (IS_ERR(dir)) 1307 break; 1308 } 1309 return dir; 1310 } 1311 1312 /** 1313 * __register_sysctl_table - register a leaf sysctl table 1314 * @set: Sysctl tree to register on 1315 * @path: The path to the directory the sysctl table is in. 1316 * @table: the top-level table structure without any child. This table 1317 * should not be free'd after registration. So it should not be 1318 * used on stack. It can either be a global or dynamically allocated 1319 * by the caller and free'd later after sysctl unregistration. 1320 * @table_size : The number of elements in table 1321 * 1322 * Register a sysctl table hierarchy. @table should be a filled in ctl_table 1323 * array. A completely 0 filled entry terminates the table. 1324 * 1325 * The members of the &struct ctl_table structure are used as follows: 1326 * 1327 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not 1328 * enter a sysctl file 1329 * 1330 * data - a pointer to data for use by proc_handler 1331 * 1332 * maxlen - the maximum size in bytes of the data 1333 * 1334 * mode - the file permissions for the /proc/sys file 1335 * 1336 * child - must be %NULL. 1337 * 1338 * proc_handler - the text handler routine (described below) 1339 * 1340 * extra1, extra2 - extra pointers usable by the proc handler routines 1341 * XXX: we should eventually modify these to use long min / max [0] 1342 * [0] https://lkml.kernel.org/87zgpte9o4.fsf@email.froward.int.ebiederm.org 1343 * 1344 * Leaf nodes in the sysctl tree will be represented by a single file 1345 * under /proc; non-leaf nodes (where child is not NULL) are not allowed, 1346 * sysctl_check_table() verifies this. 1347 * 1348 * There must be a proc_handler routine for any terminal nodes. 1349 * Several default handlers are available to cover common cases - 1350 * 1351 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(), 1352 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(), 1353 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax() 1354 * 1355 * It is the handler's job to read the input buffer from user memory 1356 * and process it. The handler should return 0 on success. 1357 * 1358 * This routine returns %NULL on a failure to register, and a pointer 1359 * to the table header on success. 1360 */ 1361 struct ctl_table_header *__register_sysctl_table( 1362 struct ctl_table_set *set, 1363 const char *path, struct ctl_table *table, size_t table_size) 1364 { 1365 struct ctl_table_root *root = set->dir.header.root; 1366 struct ctl_table_header *header; 1367 struct ctl_dir *dir; 1368 struct ctl_node *node; 1369 1370 header = kzalloc(sizeof(struct ctl_table_header) + 1371 sizeof(struct ctl_node)*table_size, GFP_KERNEL_ACCOUNT); 1372 if (!header) 1373 return NULL; 1374 1375 node = (struct ctl_node *)(header + 1); 1376 init_header(header, root, set, node, table, table_size); 1377 if (sysctl_check_table(path, header)) 1378 goto fail; 1379 1380 spin_lock(&sysctl_lock); 1381 dir = &set->dir; 1382 /* Reference moved down the directory tree get_subdir */ 1383 dir->header.nreg++; 1384 spin_unlock(&sysctl_lock); 1385 1386 dir = sysctl_mkdir_p(dir, path); 1387 if (IS_ERR(dir)) 1388 goto fail; 1389 spin_lock(&sysctl_lock); 1390 if (insert_header(dir, header)) 1391 goto fail_put_dir_locked; 1392 1393 drop_sysctl_table(&dir->header); 1394 spin_unlock(&sysctl_lock); 1395 1396 return header; 1397 1398 fail_put_dir_locked: 1399 drop_sysctl_table(&dir->header); 1400 spin_unlock(&sysctl_lock); 1401 fail: 1402 kfree(header); 1403 return NULL; 1404 } 1405 1406 /** 1407 * register_sysctl_sz - register a sysctl table 1408 * @path: The path to the directory the sysctl table is in. If the path 1409 * doesn't exist we will create it for you. 1410 * @table: the table structure. The calller must ensure the life of the @table 1411 * will be kept during the lifetime use of the syctl. It must not be freed 1412 * until unregister_sysctl_table() is called with the given returned table 1413 * with this registration. If your code is non modular then you don't need 1414 * to call unregister_sysctl_table() and can instead use something like 1415 * register_sysctl_init() which does not care for the result of the syctl 1416 * registration. 1417 * @table_size: The number of elements in table. 1418 * 1419 * Register a sysctl table. @table should be a filled in ctl_table 1420 * array. A completely 0 filled entry terminates the table. 1421 * 1422 * See __register_sysctl_table for more details. 1423 */ 1424 struct ctl_table_header *register_sysctl_sz(const char *path, struct ctl_table *table, 1425 size_t table_size) 1426 { 1427 return __register_sysctl_table(&sysctl_table_root.default_set, 1428 path, table, table_size); 1429 } 1430 EXPORT_SYMBOL(register_sysctl_sz); 1431 1432 /** 1433 * __register_sysctl_init() - register sysctl table to path 1434 * @path: path name for sysctl base. If that path doesn't exist we will create 1435 * it for you. 1436 * @table: This is the sysctl table that needs to be registered to the path. 1437 * The caller must ensure the life of the @table will be kept during the 1438 * lifetime use of the sysctl. 1439 * @table_name: The name of sysctl table, only used for log printing when 1440 * registration fails 1441 * @table_size: The number of elements in table 1442 * 1443 * The sysctl interface is used by userspace to query or modify at runtime 1444 * a predefined value set on a variable. These variables however have default 1445 * values pre-set. Code which depends on these variables will always work even 1446 * if register_sysctl() fails. If register_sysctl() fails you'd just loose the 1447 * ability to query or modify the sysctls dynamically at run time. Chances of 1448 * register_sysctl() failing on init are extremely low, and so for both reasons 1449 * this function does not return any error as it is used by initialization code. 1450 * 1451 * Context: if your base directory does not exist it will be created for you. 1452 */ 1453 void __init __register_sysctl_init(const char *path, struct ctl_table *table, 1454 const char *table_name, size_t table_size) 1455 { 1456 struct ctl_table_header *hdr = register_sysctl_sz(path, table, table_size); 1457 1458 if (unlikely(!hdr)) { 1459 pr_err("failed when register_sysctl_sz %s to %s\n", table_name, path); 1460 return; 1461 } 1462 kmemleak_not_leak(hdr); 1463 } 1464 1465 static void put_links(struct ctl_table_header *header) 1466 { 1467 struct ctl_table_set *root_set = &sysctl_table_root.default_set; 1468 struct ctl_table_root *root = header->root; 1469 struct ctl_dir *parent = header->parent; 1470 struct ctl_dir *core_parent; 1471 struct ctl_table *entry; 1472 1473 if (header->set == root_set) 1474 return; 1475 1476 core_parent = xlate_dir(root_set, parent); 1477 if (IS_ERR(core_parent)) 1478 return; 1479 1480 list_for_each_table_entry(entry, header) { 1481 struct ctl_table_header *link_head; 1482 struct ctl_table *link; 1483 const char *name = entry->procname; 1484 1485 link = find_entry(&link_head, core_parent, name, strlen(name)); 1486 if (link && 1487 ((S_ISDIR(link->mode) && S_ISDIR(entry->mode)) || 1488 (S_ISLNK(link->mode) && (link->data == root)))) { 1489 drop_sysctl_table(link_head); 1490 } 1491 else { 1492 pr_err("sysctl link missing during unregister: "); 1493 sysctl_print_dir(parent); 1494 pr_cont("%s\n", name); 1495 } 1496 } 1497 } 1498 1499 static void drop_sysctl_table(struct ctl_table_header *header) 1500 { 1501 struct ctl_dir *parent = header->parent; 1502 1503 if (--header->nreg) 1504 return; 1505 1506 if (parent) { 1507 put_links(header); 1508 start_unregistering(header); 1509 } 1510 1511 if (!--header->count) 1512 kfree_rcu(header, rcu); 1513 1514 if (parent) 1515 drop_sysctl_table(&parent->header); 1516 } 1517 1518 /** 1519 * unregister_sysctl_table - unregister a sysctl table hierarchy 1520 * @header: the header returned from register_sysctl or __register_sysctl_table 1521 * 1522 * Unregisters the sysctl table and all children. proc entries may not 1523 * actually be removed until they are no longer used by anyone. 1524 */ 1525 void unregister_sysctl_table(struct ctl_table_header * header) 1526 { 1527 might_sleep(); 1528 1529 if (header == NULL) 1530 return; 1531 1532 spin_lock(&sysctl_lock); 1533 drop_sysctl_table(header); 1534 spin_unlock(&sysctl_lock); 1535 } 1536 EXPORT_SYMBOL(unregister_sysctl_table); 1537 1538 void setup_sysctl_set(struct ctl_table_set *set, 1539 struct ctl_table_root *root, 1540 int (*is_seen)(struct ctl_table_set *)) 1541 { 1542 memset(set, 0, sizeof(*set)); 1543 set->is_seen = is_seen; 1544 init_header(&set->dir.header, root, set, NULL, root_table, 1); 1545 } 1546 1547 void retire_sysctl_set(struct ctl_table_set *set) 1548 { 1549 WARN_ON(!RB_EMPTY_ROOT(&set->dir.root)); 1550 } 1551 1552 int __init proc_sys_init(void) 1553 { 1554 struct proc_dir_entry *proc_sys_root; 1555 1556 proc_sys_root = proc_mkdir("sys", NULL); 1557 proc_sys_root->proc_iops = &proc_sys_dir_operations; 1558 proc_sys_root->proc_dir_ops = &proc_sys_dir_file_operations; 1559 proc_sys_root->nlink = 0; 1560 1561 return sysctl_init_bases(); 1562 } 1563 1564 struct sysctl_alias { 1565 const char *kernel_param; 1566 const char *sysctl_param; 1567 }; 1568 1569 /* 1570 * Historically some settings had both sysctl and a command line parameter. 1571 * With the generic sysctl. parameter support, we can handle them at a single 1572 * place and only keep the historical name for compatibility. This is not meant 1573 * to add brand new aliases. When adding existing aliases, consider whether 1574 * the possibly different moment of changing the value (e.g. from early_param 1575 * to the moment do_sysctl_args() is called) is an issue for the specific 1576 * parameter. 1577 */ 1578 static const struct sysctl_alias sysctl_aliases[] = { 1579 {"hardlockup_all_cpu_backtrace", "kernel.hardlockup_all_cpu_backtrace" }, 1580 {"hung_task_panic", "kernel.hung_task_panic" }, 1581 {"numa_zonelist_order", "vm.numa_zonelist_order" }, 1582 {"softlockup_all_cpu_backtrace", "kernel.softlockup_all_cpu_backtrace" }, 1583 { } 1584 }; 1585 1586 static const char *sysctl_find_alias(char *param) 1587 { 1588 const struct sysctl_alias *alias; 1589 1590 for (alias = &sysctl_aliases[0]; alias->kernel_param != NULL; alias++) { 1591 if (strcmp(alias->kernel_param, param) == 0) 1592 return alias->sysctl_param; 1593 } 1594 1595 return NULL; 1596 } 1597 1598 bool sysctl_is_alias(char *param) 1599 { 1600 const char *alias = sysctl_find_alias(param); 1601 1602 return alias != NULL; 1603 } 1604 1605 /* Set sysctl value passed on kernel command line. */ 1606 static int process_sysctl_arg(char *param, char *val, 1607 const char *unused, void *arg) 1608 { 1609 char *path; 1610 struct vfsmount **proc_mnt = arg; 1611 struct file_system_type *proc_fs_type; 1612 struct file *file; 1613 int len; 1614 int err; 1615 loff_t pos = 0; 1616 ssize_t wret; 1617 1618 if (strncmp(param, "sysctl", sizeof("sysctl") - 1) == 0) { 1619 param += sizeof("sysctl") - 1; 1620 1621 if (param[0] != '/' && param[0] != '.') 1622 return 0; 1623 1624 param++; 1625 } else { 1626 param = (char *) sysctl_find_alias(param); 1627 if (!param) 1628 return 0; 1629 } 1630 1631 if (!val) 1632 return -EINVAL; 1633 len = strlen(val); 1634 if (len == 0) 1635 return -EINVAL; 1636 1637 /* 1638 * To set sysctl options, we use a temporary mount of proc, look up the 1639 * respective sys/ file and write to it. To avoid mounting it when no 1640 * options were given, we mount it only when the first sysctl option is 1641 * found. Why not a persistent mount? There are problems with a 1642 * persistent mount of proc in that it forces userspace not to use any 1643 * proc mount options. 1644 */ 1645 if (!*proc_mnt) { 1646 proc_fs_type = get_fs_type("proc"); 1647 if (!proc_fs_type) { 1648 pr_err("Failed to find procfs to set sysctl from command line\n"); 1649 return 0; 1650 } 1651 *proc_mnt = kern_mount(proc_fs_type); 1652 put_filesystem(proc_fs_type); 1653 if (IS_ERR(*proc_mnt)) { 1654 pr_err("Failed to mount procfs to set sysctl from command line\n"); 1655 return 0; 1656 } 1657 } 1658 1659 path = kasprintf(GFP_KERNEL, "sys/%s", param); 1660 if (!path) 1661 panic("%s: Failed to allocate path for %s\n", __func__, param); 1662 strreplace(path, '.', '/'); 1663 1664 file = file_open_root_mnt(*proc_mnt, path, O_WRONLY, 0); 1665 if (IS_ERR(file)) { 1666 err = PTR_ERR(file); 1667 if (err == -ENOENT) 1668 pr_err("Failed to set sysctl parameter '%s=%s': parameter not found\n", 1669 param, val); 1670 else if (err == -EACCES) 1671 pr_err("Failed to set sysctl parameter '%s=%s': permission denied (read-only?)\n", 1672 param, val); 1673 else 1674 pr_err("Error %pe opening proc file to set sysctl parameter '%s=%s'\n", 1675 file, param, val); 1676 goto out; 1677 } 1678 wret = kernel_write(file, val, len, &pos); 1679 if (wret < 0) { 1680 err = wret; 1681 if (err == -EINVAL) 1682 pr_err("Failed to set sysctl parameter '%s=%s': invalid value\n", 1683 param, val); 1684 else 1685 pr_err("Error %pe writing to proc file to set sysctl parameter '%s=%s'\n", 1686 ERR_PTR(err), param, val); 1687 } else if (wret != len) { 1688 pr_err("Wrote only %zd bytes of %d writing to proc file %s to set sysctl parameter '%s=%s\n", 1689 wret, len, path, param, val); 1690 } 1691 1692 err = filp_close(file, NULL); 1693 if (err) 1694 pr_err("Error %pe closing proc file to set sysctl parameter '%s=%s\n", 1695 ERR_PTR(err), param, val); 1696 out: 1697 kfree(path); 1698 return 0; 1699 } 1700 1701 void do_sysctl_args(void) 1702 { 1703 char *command_line; 1704 struct vfsmount *proc_mnt = NULL; 1705 1706 command_line = kstrdup(saved_command_line, GFP_KERNEL); 1707 if (!command_line) 1708 panic("%s: Failed to allocate copy of command line\n", __func__); 1709 1710 parse_args("Setting sysctl args", command_line, 1711 NULL, 0, -1, -1, &proc_mnt, process_sysctl_arg); 1712 1713 if (proc_mnt) 1714 kern_unmount(proc_mnt); 1715 1716 kfree(command_line); 1717 } 1718