1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Syscall interface to knfsd. 4 * 5 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de> 6 */ 7 8 #include <linux/slab.h> 9 #include <linux/namei.h> 10 #include <linux/ctype.h> 11 #include <linux/fs_context.h> 12 13 #include <linux/sunrpc/svcsock.h> 14 #include <linux/lockd/lockd.h> 15 #include <linux/sunrpc/addr.h> 16 #include <linux/sunrpc/gss_api.h> 17 #include <linux/sunrpc/rpc_pipe_fs.h> 18 #include <linux/module.h> 19 #include <linux/fsnotify.h> 20 21 #include "idmap.h" 22 #include "nfsd.h" 23 #include "cache.h" 24 #include "state.h" 25 #include "netns.h" 26 #include "pnfs.h" 27 #include "filecache.h" 28 29 /* 30 * We have a single directory with several nodes in it. 31 */ 32 enum { 33 NFSD_Root = 1, 34 NFSD_List, 35 NFSD_Export_Stats, 36 NFSD_Export_features, 37 NFSD_Fh, 38 NFSD_FO_UnlockIP, 39 NFSD_FO_UnlockFS, 40 NFSD_Threads, 41 NFSD_Pool_Threads, 42 NFSD_Pool_Stats, 43 NFSD_Reply_Cache_Stats, 44 NFSD_Versions, 45 NFSD_Ports, 46 NFSD_MaxBlkSize, 47 NFSD_MaxConnections, 48 NFSD_Filecache, 49 /* 50 * The below MUST come last. Otherwise we leave a hole in nfsd_files[] 51 * with !CONFIG_NFSD_V4 and simple_fill_super() goes oops 52 */ 53 #ifdef CONFIG_NFSD_V4 54 NFSD_Leasetime, 55 NFSD_Gracetime, 56 NFSD_RecoveryDir, 57 NFSD_V4EndGrace, 58 #endif 59 NFSD_MaxReserved 60 }; 61 62 /* 63 * write() for these nodes. 64 */ 65 static ssize_t write_filehandle(struct file *file, char *buf, size_t size); 66 static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size); 67 static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size); 68 static ssize_t write_threads(struct file *file, char *buf, size_t size); 69 static ssize_t write_pool_threads(struct file *file, char *buf, size_t size); 70 static ssize_t write_versions(struct file *file, char *buf, size_t size); 71 static ssize_t write_ports(struct file *file, char *buf, size_t size); 72 static ssize_t write_maxblksize(struct file *file, char *buf, size_t size); 73 static ssize_t write_maxconn(struct file *file, char *buf, size_t size); 74 #ifdef CONFIG_NFSD_V4 75 static ssize_t write_leasetime(struct file *file, char *buf, size_t size); 76 static ssize_t write_gracetime(struct file *file, char *buf, size_t size); 77 static ssize_t write_recoverydir(struct file *file, char *buf, size_t size); 78 static ssize_t write_v4_end_grace(struct file *file, char *buf, size_t size); 79 #endif 80 81 static ssize_t (*const write_op[])(struct file *, char *, size_t) = { 82 [NFSD_Fh] = write_filehandle, 83 [NFSD_FO_UnlockIP] = write_unlock_ip, 84 [NFSD_FO_UnlockFS] = write_unlock_fs, 85 [NFSD_Threads] = write_threads, 86 [NFSD_Pool_Threads] = write_pool_threads, 87 [NFSD_Versions] = write_versions, 88 [NFSD_Ports] = write_ports, 89 [NFSD_MaxBlkSize] = write_maxblksize, 90 [NFSD_MaxConnections] = write_maxconn, 91 #ifdef CONFIG_NFSD_V4 92 [NFSD_Leasetime] = write_leasetime, 93 [NFSD_Gracetime] = write_gracetime, 94 [NFSD_RecoveryDir] = write_recoverydir, 95 [NFSD_V4EndGrace] = write_v4_end_grace, 96 #endif 97 }; 98 99 static ssize_t nfsctl_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos) 100 { 101 ino_t ino = file_inode(file)->i_ino; 102 char *data; 103 ssize_t rv; 104 105 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino]) 106 return -EINVAL; 107 108 data = simple_transaction_get(file, buf, size); 109 if (IS_ERR(data)) 110 return PTR_ERR(data); 111 112 rv = write_op[ino](file, data, size); 113 if (rv >= 0) { 114 simple_transaction_set(file, rv); 115 rv = size; 116 } 117 return rv; 118 } 119 120 static ssize_t nfsctl_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos) 121 { 122 if (! file->private_data) { 123 /* An attempt to read a transaction file without writing 124 * causes a 0-byte write so that the file can return 125 * state information 126 */ 127 ssize_t rv = nfsctl_transaction_write(file, buf, 0, pos); 128 if (rv < 0) 129 return rv; 130 } 131 return simple_transaction_read(file, buf, size, pos); 132 } 133 134 static const struct file_operations transaction_ops = { 135 .write = nfsctl_transaction_write, 136 .read = nfsctl_transaction_read, 137 .release = simple_transaction_release, 138 .llseek = default_llseek, 139 }; 140 141 static int exports_net_open(struct net *net, struct file *file) 142 { 143 int err; 144 struct seq_file *seq; 145 struct nfsd_net *nn = net_generic(net, nfsd_net_id); 146 147 err = seq_open(file, &nfs_exports_op); 148 if (err) 149 return err; 150 151 seq = file->private_data; 152 seq->private = nn->svc_export_cache; 153 return 0; 154 } 155 156 static int exports_proc_open(struct inode *inode, struct file *file) 157 { 158 return exports_net_open(current->nsproxy->net_ns, file); 159 } 160 161 static const struct proc_ops exports_proc_ops = { 162 .proc_open = exports_proc_open, 163 .proc_read = seq_read, 164 .proc_lseek = seq_lseek, 165 .proc_release = seq_release, 166 }; 167 168 static int exports_nfsd_open(struct inode *inode, struct file *file) 169 { 170 return exports_net_open(inode->i_sb->s_fs_info, file); 171 } 172 173 static const struct file_operations exports_nfsd_operations = { 174 .open = exports_nfsd_open, 175 .read = seq_read, 176 .llseek = seq_lseek, 177 .release = seq_release, 178 }; 179 180 static int export_features_show(struct seq_file *m, void *v) 181 { 182 seq_printf(m, "0x%x 0x%x\n", NFSEXP_ALLFLAGS, NFSEXP_SECINFO_FLAGS); 183 return 0; 184 } 185 186 DEFINE_SHOW_ATTRIBUTE(export_features); 187 188 static const struct file_operations pool_stats_operations = { 189 .open = nfsd_pool_stats_open, 190 .read = seq_read, 191 .llseek = seq_lseek, 192 .release = nfsd_pool_stats_release, 193 }; 194 195 DEFINE_SHOW_ATTRIBUTE(nfsd_reply_cache_stats); 196 197 DEFINE_SHOW_ATTRIBUTE(nfsd_file_cache_stats); 198 199 /*----------------------------------------------------------------------------*/ 200 /* 201 * payload - write methods 202 */ 203 204 static inline struct net *netns(struct file *file) 205 { 206 return file_inode(file)->i_sb->s_fs_info; 207 } 208 209 /* 210 * write_unlock_ip - Release all locks used by a client 211 * 212 * Experimental. 213 * 214 * Input: 215 * buf: '\n'-terminated C string containing a 216 * presentation format IP address 217 * size: length of C string in @buf 218 * Output: 219 * On success: returns zero if all specified locks were released; 220 * returns one if one or more locks were not released 221 * On error: return code is negative errno value 222 */ 223 static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size) 224 { 225 struct sockaddr_storage address; 226 struct sockaddr *sap = (struct sockaddr *)&address; 227 size_t salen = sizeof(address); 228 char *fo_path; 229 struct net *net = netns(file); 230 231 /* sanity check */ 232 if (size == 0) 233 return -EINVAL; 234 235 if (buf[size-1] != '\n') 236 return -EINVAL; 237 238 fo_path = buf; 239 if (qword_get(&buf, fo_path, size) < 0) 240 return -EINVAL; 241 242 if (rpc_pton(net, fo_path, size, sap, salen) == 0) 243 return -EINVAL; 244 245 return nlmsvc_unlock_all_by_ip(sap); 246 } 247 248 /* 249 * write_unlock_fs - Release all locks on a local file system 250 * 251 * Experimental. 252 * 253 * Input: 254 * buf: '\n'-terminated C string containing the 255 * absolute pathname of a local file system 256 * size: length of C string in @buf 257 * Output: 258 * On success: returns zero if all specified locks were released; 259 * returns one if one or more locks were not released 260 * On error: return code is negative errno value 261 */ 262 static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size) 263 { 264 struct path path; 265 char *fo_path; 266 int error; 267 268 /* sanity check */ 269 if (size == 0) 270 return -EINVAL; 271 272 if (buf[size-1] != '\n') 273 return -EINVAL; 274 275 fo_path = buf; 276 if (qword_get(&buf, fo_path, size) < 0) 277 return -EINVAL; 278 279 error = kern_path(fo_path, 0, &path); 280 if (error) 281 return error; 282 283 /* 284 * XXX: Needs better sanity checking. Otherwise we could end up 285 * releasing locks on the wrong file system. 286 * 287 * For example: 288 * 1. Does the path refer to a directory? 289 * 2. Is that directory a mount point, or 290 * 3. Is that directory the root of an exported file system? 291 */ 292 error = nlmsvc_unlock_all_by_sb(path.dentry->d_sb); 293 294 path_put(&path); 295 return error; 296 } 297 298 /* 299 * write_filehandle - Get a variable-length NFS file handle by path 300 * 301 * On input, the buffer contains a '\n'-terminated C string comprised of 302 * three alphanumeric words separated by whitespace. The string may 303 * contain escape sequences. 304 * 305 * Input: 306 * buf: 307 * domain: client domain name 308 * path: export pathname 309 * maxsize: numeric maximum size of 310 * @buf 311 * size: length of C string in @buf 312 * Output: 313 * On success: passed-in buffer filled with '\n'-terminated C 314 * string containing a ASCII hex text version 315 * of the NFS file handle; 316 * return code is the size in bytes of the string 317 * On error: return code is negative errno value 318 */ 319 static ssize_t write_filehandle(struct file *file, char *buf, size_t size) 320 { 321 char *dname, *path; 322 int maxsize; 323 char *mesg = buf; 324 int len; 325 struct auth_domain *dom; 326 struct knfsd_fh fh; 327 328 if (size == 0) 329 return -EINVAL; 330 331 if (buf[size-1] != '\n') 332 return -EINVAL; 333 buf[size-1] = 0; 334 335 dname = mesg; 336 len = qword_get(&mesg, dname, size); 337 if (len <= 0) 338 return -EINVAL; 339 340 path = dname+len+1; 341 len = qword_get(&mesg, path, size); 342 if (len <= 0) 343 return -EINVAL; 344 345 len = get_int(&mesg, &maxsize); 346 if (len) 347 return len; 348 349 if (maxsize < NFS_FHSIZE) 350 return -EINVAL; 351 maxsize = min(maxsize, NFS3_FHSIZE); 352 353 if (qword_get(&mesg, mesg, size)>0) 354 return -EINVAL; 355 356 /* we have all the words, they are in buf.. */ 357 dom = unix_domain_find(dname); 358 if (!dom) 359 return -ENOMEM; 360 361 len = exp_rootfh(netns(file), dom, path, &fh, maxsize); 362 auth_domain_put(dom); 363 if (len) 364 return len; 365 366 mesg = buf; 367 len = SIMPLE_TRANSACTION_LIMIT; 368 qword_addhex(&mesg, &len, fh.fh_raw, fh.fh_size); 369 mesg[-1] = '\n'; 370 return mesg - buf; 371 } 372 373 /* 374 * write_threads - Start NFSD, or report the current number of running threads 375 * 376 * Input: 377 * buf: ignored 378 * size: zero 379 * Output: 380 * On success: passed-in buffer filled with '\n'-terminated C 381 * string numeric value representing the number of 382 * running NFSD threads; 383 * return code is the size in bytes of the string 384 * On error: return code is zero 385 * 386 * OR 387 * 388 * Input: 389 * buf: C string containing an unsigned 390 * integer value representing the 391 * number of NFSD threads to start 392 * size: non-zero length of C string in @buf 393 * Output: 394 * On success: NFS service is started; 395 * passed-in buffer filled with '\n'-terminated C 396 * string numeric value representing the number of 397 * running NFSD threads; 398 * return code is the size in bytes of the string 399 * On error: return code is zero or a negative errno value 400 */ 401 static ssize_t write_threads(struct file *file, char *buf, size_t size) 402 { 403 char *mesg = buf; 404 int rv; 405 struct net *net = netns(file); 406 407 if (size > 0) { 408 int newthreads; 409 rv = get_int(&mesg, &newthreads); 410 if (rv) 411 return rv; 412 if (newthreads < 0) 413 return -EINVAL; 414 rv = nfsd_svc(newthreads, net, file->f_cred); 415 if (rv < 0) 416 return rv; 417 } else 418 rv = nfsd_nrthreads(net); 419 420 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n", rv); 421 } 422 423 /* 424 * write_pool_threads - Set or report the current number of threads per pool 425 * 426 * Input: 427 * buf: ignored 428 * size: zero 429 * 430 * OR 431 * 432 * Input: 433 * buf: C string containing whitespace- 434 * separated unsigned integer values 435 * representing the number of NFSD 436 * threads to start in each pool 437 * size: non-zero length of C string in @buf 438 * Output: 439 * On success: passed-in buffer filled with '\n'-terminated C 440 * string containing integer values representing the 441 * number of NFSD threads in each pool; 442 * return code is the size in bytes of the string 443 * On error: return code is zero or a negative errno value 444 */ 445 static ssize_t write_pool_threads(struct file *file, char *buf, size_t size) 446 { 447 /* if size > 0, look for an array of number of threads per node 448 * and apply them then write out number of threads per node as reply 449 */ 450 char *mesg = buf; 451 int i; 452 int rv; 453 int len; 454 int npools; 455 int *nthreads; 456 struct net *net = netns(file); 457 458 mutex_lock(&nfsd_mutex); 459 npools = nfsd_nrpools(net); 460 if (npools == 0) { 461 /* 462 * NFS is shut down. The admin can start it by 463 * writing to the threads file but NOT the pool_threads 464 * file, sorry. Report zero threads. 465 */ 466 mutex_unlock(&nfsd_mutex); 467 strcpy(buf, "0\n"); 468 return strlen(buf); 469 } 470 471 nthreads = kcalloc(npools, sizeof(int), GFP_KERNEL); 472 rv = -ENOMEM; 473 if (nthreads == NULL) 474 goto out_free; 475 476 if (size > 0) { 477 for (i = 0; i < npools; i++) { 478 rv = get_int(&mesg, &nthreads[i]); 479 if (rv == -ENOENT) 480 break; /* fewer numbers than pools */ 481 if (rv) 482 goto out_free; /* syntax error */ 483 rv = -EINVAL; 484 if (nthreads[i] < 0) 485 goto out_free; 486 } 487 rv = nfsd_set_nrthreads(i, nthreads, net); 488 if (rv) 489 goto out_free; 490 } 491 492 rv = nfsd_get_nrthreads(npools, nthreads, net); 493 if (rv) 494 goto out_free; 495 496 mesg = buf; 497 size = SIMPLE_TRANSACTION_LIMIT; 498 for (i = 0; i < npools && size > 0; i++) { 499 snprintf(mesg, size, "%d%c", nthreads[i], (i == npools-1 ? '\n' : ' ')); 500 len = strlen(mesg); 501 size -= len; 502 mesg += len; 503 } 504 rv = mesg - buf; 505 out_free: 506 kfree(nthreads); 507 mutex_unlock(&nfsd_mutex); 508 return rv; 509 } 510 511 static ssize_t 512 nfsd_print_version_support(struct nfsd_net *nn, char *buf, int remaining, 513 const char *sep, unsigned vers, int minor) 514 { 515 const char *format = minor < 0 ? "%s%c%u" : "%s%c%u.%u"; 516 bool supported = !!nfsd_vers(nn, vers, NFSD_TEST); 517 518 if (vers == 4 && minor >= 0 && 519 !nfsd_minorversion(nn, minor, NFSD_TEST)) 520 supported = false; 521 if (minor == 0 && supported) 522 /* 523 * special case for backward compatability. 524 * +4.0 is never reported, it is implied by 525 * +4, unless -4.0 is present. 526 */ 527 return 0; 528 return snprintf(buf, remaining, format, sep, 529 supported ? '+' : '-', vers, minor); 530 } 531 532 static ssize_t __write_versions(struct file *file, char *buf, size_t size) 533 { 534 char *mesg = buf; 535 char *vers, *minorp, sign; 536 int len, num, remaining; 537 ssize_t tlen = 0; 538 char *sep; 539 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id); 540 541 if (size>0) { 542 if (nn->nfsd_serv) 543 /* Cannot change versions without updating 544 * nn->nfsd_serv->sv_xdrsize, and reallocing 545 * rq_argp and rq_resp 546 */ 547 return -EBUSY; 548 if (buf[size-1] != '\n') 549 return -EINVAL; 550 buf[size-1] = 0; 551 552 vers = mesg; 553 len = qword_get(&mesg, vers, size); 554 if (len <= 0) return -EINVAL; 555 do { 556 enum vers_op cmd; 557 unsigned minor; 558 sign = *vers; 559 if (sign == '+' || sign == '-') 560 num = simple_strtol((vers+1), &minorp, 0); 561 else 562 num = simple_strtol(vers, &minorp, 0); 563 if (*minorp == '.') { 564 if (num != 4) 565 return -EINVAL; 566 if (kstrtouint(minorp+1, 0, &minor) < 0) 567 return -EINVAL; 568 } 569 570 cmd = sign == '-' ? NFSD_CLEAR : NFSD_SET; 571 switch(num) { 572 #ifdef CONFIG_NFSD_V2 573 case 2: 574 #endif 575 case 3: 576 nfsd_vers(nn, num, cmd); 577 break; 578 case 4: 579 if (*minorp == '.') { 580 if (nfsd_minorversion(nn, minor, cmd) < 0) 581 return -EINVAL; 582 } else if ((cmd == NFSD_SET) != nfsd_vers(nn, num, NFSD_TEST)) { 583 /* 584 * Either we have +4 and no minors are enabled, 585 * or we have -4 and at least one minor is enabled. 586 * In either case, propagate 'cmd' to all minors. 587 */ 588 minor = 0; 589 while (nfsd_minorversion(nn, minor, cmd) >= 0) 590 minor++; 591 } 592 break; 593 default: 594 /* Ignore requests to disable non-existent versions */ 595 if (cmd == NFSD_SET) 596 return -EINVAL; 597 } 598 vers += len + 1; 599 } while ((len = qword_get(&mesg, vers, size)) > 0); 600 /* If all get turned off, turn them back on, as 601 * having no versions is BAD 602 */ 603 nfsd_reset_versions(nn); 604 } 605 606 /* Now write current state into reply buffer */ 607 sep = ""; 608 remaining = SIMPLE_TRANSACTION_LIMIT; 609 for (num=2 ; num <= 4 ; num++) { 610 int minor; 611 if (!nfsd_vers(nn, num, NFSD_AVAIL)) 612 continue; 613 614 minor = -1; 615 do { 616 len = nfsd_print_version_support(nn, buf, remaining, 617 sep, num, minor); 618 if (len >= remaining) 619 goto out; 620 remaining -= len; 621 buf += len; 622 tlen += len; 623 minor++; 624 if (len) 625 sep = " "; 626 } while (num == 4 && minor <= NFSD_SUPPORTED_MINOR_VERSION); 627 } 628 out: 629 len = snprintf(buf, remaining, "\n"); 630 if (len >= remaining) 631 return -EINVAL; 632 return tlen + len; 633 } 634 635 /* 636 * write_versions - Set or report the available NFS protocol versions 637 * 638 * Input: 639 * buf: ignored 640 * size: zero 641 * Output: 642 * On success: passed-in buffer filled with '\n'-terminated C 643 * string containing positive or negative integer 644 * values representing the current status of each 645 * protocol version; 646 * return code is the size in bytes of the string 647 * On error: return code is zero or a negative errno value 648 * 649 * OR 650 * 651 * Input: 652 * buf: C string containing whitespace- 653 * separated positive or negative 654 * integer values representing NFS 655 * protocol versions to enable ("+n") 656 * or disable ("-n") 657 * size: non-zero length of C string in @buf 658 * Output: 659 * On success: status of zero or more protocol versions has 660 * been updated; passed-in buffer filled with 661 * '\n'-terminated C string containing positive 662 * or negative integer values representing the 663 * current status of each protocol version; 664 * return code is the size in bytes of the string 665 * On error: return code is zero or a negative errno value 666 */ 667 static ssize_t write_versions(struct file *file, char *buf, size_t size) 668 { 669 ssize_t rv; 670 671 mutex_lock(&nfsd_mutex); 672 rv = __write_versions(file, buf, size); 673 mutex_unlock(&nfsd_mutex); 674 return rv; 675 } 676 677 /* 678 * Zero-length write. Return a list of NFSD's current listener 679 * transports. 680 */ 681 static ssize_t __write_ports_names(char *buf, struct net *net) 682 { 683 struct nfsd_net *nn = net_generic(net, nfsd_net_id); 684 685 if (nn->nfsd_serv == NULL) 686 return 0; 687 return svc_xprt_names(nn->nfsd_serv, buf, SIMPLE_TRANSACTION_LIMIT); 688 } 689 690 /* 691 * A single 'fd' number was written, in which case it must be for 692 * a socket of a supported family/protocol, and we use it as an 693 * nfsd listener. 694 */ 695 static ssize_t __write_ports_addfd(char *buf, struct net *net, const struct cred *cred) 696 { 697 char *mesg = buf; 698 int fd, err; 699 struct nfsd_net *nn = net_generic(net, nfsd_net_id); 700 701 err = get_int(&mesg, &fd); 702 if (err != 0 || fd < 0) 703 return -EINVAL; 704 705 if (svc_alien_sock(net, fd)) { 706 printk(KERN_ERR "%s: socket net is different to NFSd's one\n", __func__); 707 return -EINVAL; 708 } 709 710 err = nfsd_create_serv(net); 711 if (err != 0) 712 return err; 713 714 err = svc_addsock(nn->nfsd_serv, fd, buf, SIMPLE_TRANSACTION_LIMIT, cred); 715 716 if (err >= 0 && 717 !nn->nfsd_serv->sv_nrthreads && !xchg(&nn->keep_active, 1)) 718 svc_get(nn->nfsd_serv); 719 720 nfsd_put(net); 721 return err; 722 } 723 724 /* 725 * A transport listener is added by writing it's transport name and 726 * a port number. 727 */ 728 static ssize_t __write_ports_addxprt(char *buf, struct net *net, const struct cred *cred) 729 { 730 char transport[16]; 731 struct svc_xprt *xprt; 732 int port, err; 733 struct nfsd_net *nn = net_generic(net, nfsd_net_id); 734 735 if (sscanf(buf, "%15s %5u", transport, &port) != 2) 736 return -EINVAL; 737 738 if (port < 1 || port > USHRT_MAX) 739 return -EINVAL; 740 741 err = nfsd_create_serv(net); 742 if (err != 0) 743 return err; 744 745 err = svc_xprt_create(nn->nfsd_serv, transport, net, 746 PF_INET, port, SVC_SOCK_ANONYMOUS, cred); 747 if (err < 0) 748 goto out_err; 749 750 err = svc_xprt_create(nn->nfsd_serv, transport, net, 751 PF_INET6, port, SVC_SOCK_ANONYMOUS, cred); 752 if (err < 0 && err != -EAFNOSUPPORT) 753 goto out_close; 754 755 if (!nn->nfsd_serv->sv_nrthreads && !xchg(&nn->keep_active, 1)) 756 svc_get(nn->nfsd_serv); 757 758 nfsd_put(net); 759 return 0; 760 out_close: 761 xprt = svc_find_xprt(nn->nfsd_serv, transport, net, PF_INET, port); 762 if (xprt != NULL) { 763 svc_xprt_close(xprt); 764 svc_xprt_put(xprt); 765 } 766 out_err: 767 nfsd_put(net); 768 return err; 769 } 770 771 static ssize_t __write_ports(struct file *file, char *buf, size_t size, 772 struct net *net) 773 { 774 if (size == 0) 775 return __write_ports_names(buf, net); 776 777 if (isdigit(buf[0])) 778 return __write_ports_addfd(buf, net, file->f_cred); 779 780 if (isalpha(buf[0])) 781 return __write_ports_addxprt(buf, net, file->f_cred); 782 783 return -EINVAL; 784 } 785 786 /* 787 * write_ports - Pass a socket file descriptor or transport name to listen on 788 * 789 * Input: 790 * buf: ignored 791 * size: zero 792 * Output: 793 * On success: passed-in buffer filled with a '\n'-terminated C 794 * string containing a whitespace-separated list of 795 * named NFSD listeners; 796 * return code is the size in bytes of the string 797 * On error: return code is zero or a negative errno value 798 * 799 * OR 800 * 801 * Input: 802 * buf: C string containing an unsigned 803 * integer value representing a bound 804 * but unconnected socket that is to be 805 * used as an NFSD listener; listen(3) 806 * must be called for a SOCK_STREAM 807 * socket, otherwise it is ignored 808 * size: non-zero length of C string in @buf 809 * Output: 810 * On success: NFS service is started; 811 * passed-in buffer filled with a '\n'-terminated C 812 * string containing a unique alphanumeric name of 813 * the listener; 814 * return code is the size in bytes of the string 815 * On error: return code is a negative errno value 816 * 817 * OR 818 * 819 * Input: 820 * buf: C string containing a transport 821 * name and an unsigned integer value 822 * representing the port to listen on, 823 * separated by whitespace 824 * size: non-zero length of C string in @buf 825 * Output: 826 * On success: returns zero; NFS service is started 827 * On error: return code is a negative errno value 828 */ 829 static ssize_t write_ports(struct file *file, char *buf, size_t size) 830 { 831 ssize_t rv; 832 833 mutex_lock(&nfsd_mutex); 834 rv = __write_ports(file, buf, size, netns(file)); 835 mutex_unlock(&nfsd_mutex); 836 return rv; 837 } 838 839 840 int nfsd_max_blksize; 841 842 /* 843 * write_maxblksize - Set or report the current NFS blksize 844 * 845 * Input: 846 * buf: ignored 847 * size: zero 848 * 849 * OR 850 * 851 * Input: 852 * buf: C string containing an unsigned 853 * integer value representing the new 854 * NFS blksize 855 * size: non-zero length of C string in @buf 856 * Output: 857 * On success: passed-in buffer filled with '\n'-terminated C string 858 * containing numeric value of the current NFS blksize 859 * setting; 860 * return code is the size in bytes of the string 861 * On error: return code is zero or a negative errno value 862 */ 863 static ssize_t write_maxblksize(struct file *file, char *buf, size_t size) 864 { 865 char *mesg = buf; 866 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id); 867 868 if (size > 0) { 869 int bsize; 870 int rv = get_int(&mesg, &bsize); 871 if (rv) 872 return rv; 873 /* force bsize into allowed range and 874 * required alignment. 875 */ 876 bsize = max_t(int, bsize, 1024); 877 bsize = min_t(int, bsize, NFSSVC_MAXBLKSIZE); 878 bsize &= ~(1024-1); 879 mutex_lock(&nfsd_mutex); 880 if (nn->nfsd_serv) { 881 mutex_unlock(&nfsd_mutex); 882 return -EBUSY; 883 } 884 nfsd_max_blksize = bsize; 885 mutex_unlock(&nfsd_mutex); 886 } 887 888 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n", 889 nfsd_max_blksize); 890 } 891 892 /* 893 * write_maxconn - Set or report the current max number of connections 894 * 895 * Input: 896 * buf: ignored 897 * size: zero 898 * OR 899 * 900 * Input: 901 * buf: C string containing an unsigned 902 * integer value representing the new 903 * number of max connections 904 * size: non-zero length of C string in @buf 905 * Output: 906 * On success: passed-in buffer filled with '\n'-terminated C string 907 * containing numeric value of max_connections setting 908 * for this net namespace; 909 * return code is the size in bytes of the string 910 * On error: return code is zero or a negative errno value 911 */ 912 static ssize_t write_maxconn(struct file *file, char *buf, size_t size) 913 { 914 char *mesg = buf; 915 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id); 916 unsigned int maxconn = nn->max_connections; 917 918 if (size > 0) { 919 int rv = get_uint(&mesg, &maxconn); 920 921 if (rv) 922 return rv; 923 nn->max_connections = maxconn; 924 } 925 926 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%u\n", maxconn); 927 } 928 929 #ifdef CONFIG_NFSD_V4 930 static ssize_t __nfsd4_write_time(struct file *file, char *buf, size_t size, 931 time64_t *time, struct nfsd_net *nn) 932 { 933 char *mesg = buf; 934 int rv, i; 935 936 if (size > 0) { 937 if (nn->nfsd_serv) 938 return -EBUSY; 939 rv = get_int(&mesg, &i); 940 if (rv) 941 return rv; 942 /* 943 * Some sanity checking. We don't have a reason for 944 * these particular numbers, but problems with the 945 * extremes are: 946 * - Too short: the briefest network outage may 947 * cause clients to lose all their locks. Also, 948 * the frequent polling may be wasteful. 949 * - Too long: do you really want reboot recovery 950 * to take more than an hour? Or to make other 951 * clients wait an hour before being able to 952 * revoke a dead client's locks? 953 */ 954 if (i < 10 || i > 3600) 955 return -EINVAL; 956 *time = i; 957 } 958 959 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%lld\n", *time); 960 } 961 962 static ssize_t nfsd4_write_time(struct file *file, char *buf, size_t size, 963 time64_t *time, struct nfsd_net *nn) 964 { 965 ssize_t rv; 966 967 mutex_lock(&nfsd_mutex); 968 rv = __nfsd4_write_time(file, buf, size, time, nn); 969 mutex_unlock(&nfsd_mutex); 970 return rv; 971 } 972 973 /* 974 * write_leasetime - Set or report the current NFSv4 lease time 975 * 976 * Input: 977 * buf: ignored 978 * size: zero 979 * 980 * OR 981 * 982 * Input: 983 * buf: C string containing an unsigned 984 * integer value representing the new 985 * NFSv4 lease expiry time 986 * size: non-zero length of C string in @buf 987 * Output: 988 * On success: passed-in buffer filled with '\n'-terminated C 989 * string containing unsigned integer value of the 990 * current lease expiry time; 991 * return code is the size in bytes of the string 992 * On error: return code is zero or a negative errno value 993 */ 994 static ssize_t write_leasetime(struct file *file, char *buf, size_t size) 995 { 996 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id); 997 return nfsd4_write_time(file, buf, size, &nn->nfsd4_lease, nn); 998 } 999 1000 /* 1001 * write_gracetime - Set or report current NFSv4 grace period time 1002 * 1003 * As above, but sets the time of the NFSv4 grace period. 1004 * 1005 * Note this should never be set to less than the *previous* 1006 * lease-period time, but we don't try to enforce this. (In the common 1007 * case (a new boot), we don't know what the previous lease time was 1008 * anyway.) 1009 */ 1010 static ssize_t write_gracetime(struct file *file, char *buf, size_t size) 1011 { 1012 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id); 1013 return nfsd4_write_time(file, buf, size, &nn->nfsd4_grace, nn); 1014 } 1015 1016 static ssize_t __write_recoverydir(struct file *file, char *buf, size_t size, 1017 struct nfsd_net *nn) 1018 { 1019 char *mesg = buf; 1020 char *recdir; 1021 int len, status; 1022 1023 if (size > 0) { 1024 if (nn->nfsd_serv) 1025 return -EBUSY; 1026 if (size > PATH_MAX || buf[size-1] != '\n') 1027 return -EINVAL; 1028 buf[size-1] = 0; 1029 1030 recdir = mesg; 1031 len = qword_get(&mesg, recdir, size); 1032 if (len <= 0) 1033 return -EINVAL; 1034 1035 status = nfs4_reset_recoverydir(recdir); 1036 if (status) 1037 return status; 1038 } 1039 1040 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%s\n", 1041 nfs4_recoverydir()); 1042 } 1043 1044 /* 1045 * write_recoverydir - Set or report the pathname of the recovery directory 1046 * 1047 * Input: 1048 * buf: ignored 1049 * size: zero 1050 * 1051 * OR 1052 * 1053 * Input: 1054 * buf: C string containing the pathname 1055 * of the directory on a local file 1056 * system containing permanent NFSv4 1057 * recovery data 1058 * size: non-zero length of C string in @buf 1059 * Output: 1060 * On success: passed-in buffer filled with '\n'-terminated C string 1061 * containing the current recovery pathname setting; 1062 * return code is the size in bytes of the string 1063 * On error: return code is zero or a negative errno value 1064 */ 1065 static ssize_t write_recoverydir(struct file *file, char *buf, size_t size) 1066 { 1067 ssize_t rv; 1068 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id); 1069 1070 mutex_lock(&nfsd_mutex); 1071 rv = __write_recoverydir(file, buf, size, nn); 1072 mutex_unlock(&nfsd_mutex); 1073 return rv; 1074 } 1075 1076 /* 1077 * write_v4_end_grace - release grace period for nfsd's v4.x lock manager 1078 * 1079 * Input: 1080 * buf: ignored 1081 * size: zero 1082 * OR 1083 * 1084 * Input: 1085 * buf: any value 1086 * size: non-zero length of C string in @buf 1087 * Output: 1088 * passed-in buffer filled with "Y" or "N" with a newline 1089 * and NULL-terminated C string. This indicates whether 1090 * the grace period has ended in the current net 1091 * namespace. Return code is the size in bytes of the 1092 * string. Writing a string that starts with 'Y', 'y', or 1093 * '1' to the file will end the grace period for nfsd's v4 1094 * lock manager. 1095 */ 1096 static ssize_t write_v4_end_grace(struct file *file, char *buf, size_t size) 1097 { 1098 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id); 1099 1100 if (size > 0) { 1101 switch(buf[0]) { 1102 case 'Y': 1103 case 'y': 1104 case '1': 1105 if (!nn->nfsd_serv) 1106 return -EBUSY; 1107 nfsd4_end_grace(nn); 1108 break; 1109 default: 1110 return -EINVAL; 1111 } 1112 } 1113 1114 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%c\n", 1115 nn->grace_ended ? 'Y' : 'N'); 1116 } 1117 1118 #endif 1119 1120 /*----------------------------------------------------------------------------*/ 1121 /* 1122 * populating the filesystem. 1123 */ 1124 1125 /* Basically copying rpc_get_inode. */ 1126 static struct inode *nfsd_get_inode(struct super_block *sb, umode_t mode) 1127 { 1128 struct inode *inode = new_inode(sb); 1129 if (!inode) 1130 return NULL; 1131 /* Following advice from simple_fill_super documentation: */ 1132 inode->i_ino = iunique(sb, NFSD_MaxReserved); 1133 inode->i_mode = mode; 1134 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode); 1135 switch (mode & S_IFMT) { 1136 case S_IFDIR: 1137 inode->i_fop = &simple_dir_operations; 1138 inode->i_op = &simple_dir_inode_operations; 1139 inc_nlink(inode); 1140 break; 1141 case S_IFLNK: 1142 inode->i_op = &simple_symlink_inode_operations; 1143 break; 1144 default: 1145 break; 1146 } 1147 return inode; 1148 } 1149 1150 static int __nfsd_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode, struct nfsdfs_client *ncl) 1151 { 1152 struct inode *inode; 1153 1154 inode = nfsd_get_inode(dir->i_sb, mode); 1155 if (!inode) 1156 return -ENOMEM; 1157 if (ncl) { 1158 inode->i_private = ncl; 1159 kref_get(&ncl->cl_ref); 1160 } 1161 d_add(dentry, inode); 1162 inc_nlink(dir); 1163 fsnotify_mkdir(dir, dentry); 1164 return 0; 1165 } 1166 1167 static struct dentry *nfsd_mkdir(struct dentry *parent, struct nfsdfs_client *ncl, char *name) 1168 { 1169 struct inode *dir = parent->d_inode; 1170 struct dentry *dentry; 1171 int ret = -ENOMEM; 1172 1173 inode_lock(dir); 1174 dentry = d_alloc_name(parent, name); 1175 if (!dentry) 1176 goto out_err; 1177 ret = __nfsd_mkdir(d_inode(parent), dentry, S_IFDIR | 0600, ncl); 1178 if (ret) 1179 goto out_err; 1180 out: 1181 inode_unlock(dir); 1182 return dentry; 1183 out_err: 1184 dput(dentry); 1185 dentry = ERR_PTR(ret); 1186 goto out; 1187 } 1188 1189 #if IS_ENABLED(CONFIG_SUNRPC_GSS) 1190 static int __nfsd_symlink(struct inode *dir, struct dentry *dentry, 1191 umode_t mode, const char *content) 1192 { 1193 struct inode *inode; 1194 1195 inode = nfsd_get_inode(dir->i_sb, mode); 1196 if (!inode) 1197 return -ENOMEM; 1198 1199 inode->i_link = (char *)content; 1200 inode->i_size = strlen(content); 1201 1202 d_add(dentry, inode); 1203 inc_nlink(dir); 1204 fsnotify_create(dir, dentry); 1205 return 0; 1206 } 1207 1208 /* 1209 * @content is assumed to be a NUL-terminated string that lives 1210 * longer than the symlink itself. 1211 */ 1212 static void nfsd_symlink(struct dentry *parent, const char *name, 1213 const char *content) 1214 { 1215 struct inode *dir = parent->d_inode; 1216 struct dentry *dentry; 1217 int ret; 1218 1219 inode_lock(dir); 1220 dentry = d_alloc_name(parent, name); 1221 if (!dentry) 1222 goto out; 1223 ret = __nfsd_symlink(d_inode(parent), dentry, S_IFLNK | 0777, content); 1224 if (ret) 1225 dput(dentry); 1226 out: 1227 inode_unlock(dir); 1228 } 1229 #else 1230 static inline void nfsd_symlink(struct dentry *parent, const char *name, 1231 const char *content) 1232 { 1233 } 1234 1235 #endif 1236 1237 static void clear_ncl(struct inode *inode) 1238 { 1239 struct nfsdfs_client *ncl = inode->i_private; 1240 1241 inode->i_private = NULL; 1242 kref_put(&ncl->cl_ref, ncl->cl_release); 1243 } 1244 1245 static struct nfsdfs_client *__get_nfsdfs_client(struct inode *inode) 1246 { 1247 struct nfsdfs_client *nc = inode->i_private; 1248 1249 if (nc) 1250 kref_get(&nc->cl_ref); 1251 return nc; 1252 } 1253 1254 struct nfsdfs_client *get_nfsdfs_client(struct inode *inode) 1255 { 1256 struct nfsdfs_client *nc; 1257 1258 inode_lock_shared(inode); 1259 nc = __get_nfsdfs_client(inode); 1260 inode_unlock_shared(inode); 1261 return nc; 1262 } 1263 /* from __rpc_unlink */ 1264 static void nfsdfs_remove_file(struct inode *dir, struct dentry *dentry) 1265 { 1266 int ret; 1267 1268 clear_ncl(d_inode(dentry)); 1269 dget(dentry); 1270 ret = simple_unlink(dir, dentry); 1271 d_drop(dentry); 1272 fsnotify_unlink(dir, dentry); 1273 dput(dentry); 1274 WARN_ON_ONCE(ret); 1275 } 1276 1277 static void nfsdfs_remove_files(struct dentry *root) 1278 { 1279 struct dentry *dentry, *tmp; 1280 1281 list_for_each_entry_safe(dentry, tmp, &root->d_subdirs, d_child) { 1282 if (!simple_positive(dentry)) { 1283 WARN_ON_ONCE(1); /* I think this can't happen? */ 1284 continue; 1285 } 1286 nfsdfs_remove_file(d_inode(root), dentry); 1287 } 1288 } 1289 1290 /* XXX: cut'n'paste from simple_fill_super; figure out if we could share 1291 * code instead. */ 1292 static int nfsdfs_create_files(struct dentry *root, 1293 const struct tree_descr *files, 1294 struct dentry **fdentries) 1295 { 1296 struct inode *dir = d_inode(root); 1297 struct inode *inode; 1298 struct dentry *dentry; 1299 int i; 1300 1301 inode_lock(dir); 1302 for (i = 0; files->name && files->name[0]; i++, files++) { 1303 dentry = d_alloc_name(root, files->name); 1304 if (!dentry) 1305 goto out; 1306 inode = nfsd_get_inode(d_inode(root)->i_sb, 1307 S_IFREG | files->mode); 1308 if (!inode) { 1309 dput(dentry); 1310 goto out; 1311 } 1312 inode->i_fop = files->ops; 1313 inode->i_private = __get_nfsdfs_client(dir); 1314 d_add(dentry, inode); 1315 fsnotify_create(dir, dentry); 1316 if (fdentries) 1317 fdentries[i] = dentry; 1318 } 1319 inode_unlock(dir); 1320 return 0; 1321 out: 1322 nfsdfs_remove_files(root); 1323 inode_unlock(dir); 1324 return -ENOMEM; 1325 } 1326 1327 /* on success, returns positive number unique to that client. */ 1328 struct dentry *nfsd_client_mkdir(struct nfsd_net *nn, 1329 struct nfsdfs_client *ncl, u32 id, 1330 const struct tree_descr *files, 1331 struct dentry **fdentries) 1332 { 1333 struct dentry *dentry; 1334 char name[11]; 1335 int ret; 1336 1337 sprintf(name, "%u", id); 1338 1339 dentry = nfsd_mkdir(nn->nfsd_client_dir, ncl, name); 1340 if (IS_ERR(dentry)) /* XXX: tossing errors? */ 1341 return NULL; 1342 ret = nfsdfs_create_files(dentry, files, fdentries); 1343 if (ret) { 1344 nfsd_client_rmdir(dentry); 1345 return NULL; 1346 } 1347 return dentry; 1348 } 1349 1350 /* Taken from __rpc_rmdir: */ 1351 void nfsd_client_rmdir(struct dentry *dentry) 1352 { 1353 struct inode *dir = d_inode(dentry->d_parent); 1354 struct inode *inode = d_inode(dentry); 1355 int ret; 1356 1357 inode_lock(dir); 1358 nfsdfs_remove_files(dentry); 1359 clear_ncl(inode); 1360 dget(dentry); 1361 ret = simple_rmdir(dir, dentry); 1362 WARN_ON_ONCE(ret); 1363 d_drop(dentry); 1364 fsnotify_rmdir(dir, dentry); 1365 dput(dentry); 1366 inode_unlock(dir); 1367 } 1368 1369 static int nfsd_fill_super(struct super_block *sb, struct fs_context *fc) 1370 { 1371 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns, 1372 nfsd_net_id); 1373 struct dentry *dentry; 1374 int ret; 1375 1376 static const struct tree_descr nfsd_files[] = { 1377 [NFSD_List] = {"exports", &exports_nfsd_operations, S_IRUGO}, 1378 /* Per-export io stats use same ops as exports file */ 1379 [NFSD_Export_Stats] = {"export_stats", &exports_nfsd_operations, S_IRUGO}, 1380 [NFSD_Export_features] = {"export_features", 1381 &export_features_fops, S_IRUGO}, 1382 [NFSD_FO_UnlockIP] = {"unlock_ip", 1383 &transaction_ops, S_IWUSR|S_IRUSR}, 1384 [NFSD_FO_UnlockFS] = {"unlock_filesystem", 1385 &transaction_ops, S_IWUSR|S_IRUSR}, 1386 [NFSD_Fh] = {"filehandle", &transaction_ops, S_IWUSR|S_IRUSR}, 1387 [NFSD_Threads] = {"threads", &transaction_ops, S_IWUSR|S_IRUSR}, 1388 [NFSD_Pool_Threads] = {"pool_threads", &transaction_ops, S_IWUSR|S_IRUSR}, 1389 [NFSD_Pool_Stats] = {"pool_stats", &pool_stats_operations, S_IRUGO}, 1390 [NFSD_Reply_Cache_Stats] = {"reply_cache_stats", 1391 &nfsd_reply_cache_stats_fops, S_IRUGO}, 1392 [NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR}, 1393 [NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO}, 1394 [NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO}, 1395 [NFSD_MaxConnections] = {"max_connections", &transaction_ops, S_IWUSR|S_IRUGO}, 1396 [NFSD_Filecache] = {"filecache", &nfsd_file_cache_stats_fops, S_IRUGO}, 1397 #ifdef CONFIG_NFSD_V4 1398 [NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR}, 1399 [NFSD_Gracetime] = {"nfsv4gracetime", &transaction_ops, S_IWUSR|S_IRUSR}, 1400 [NFSD_RecoveryDir] = {"nfsv4recoverydir", &transaction_ops, S_IWUSR|S_IRUSR}, 1401 [NFSD_V4EndGrace] = {"v4_end_grace", &transaction_ops, S_IWUSR|S_IRUGO}, 1402 #endif 1403 /* last one */ {""} 1404 }; 1405 1406 ret = simple_fill_super(sb, 0x6e667364, nfsd_files); 1407 if (ret) 1408 return ret; 1409 nfsd_symlink(sb->s_root, "supported_krb5_enctypes", 1410 "/proc/net/rpc/gss_krb5_enctypes"); 1411 dentry = nfsd_mkdir(sb->s_root, NULL, "clients"); 1412 if (IS_ERR(dentry)) 1413 return PTR_ERR(dentry); 1414 nn->nfsd_client_dir = dentry; 1415 return 0; 1416 } 1417 1418 static int nfsd_fs_get_tree(struct fs_context *fc) 1419 { 1420 return get_tree_keyed(fc, nfsd_fill_super, get_net(fc->net_ns)); 1421 } 1422 1423 static void nfsd_fs_free_fc(struct fs_context *fc) 1424 { 1425 if (fc->s_fs_info) 1426 put_net(fc->s_fs_info); 1427 } 1428 1429 static const struct fs_context_operations nfsd_fs_context_ops = { 1430 .free = nfsd_fs_free_fc, 1431 .get_tree = nfsd_fs_get_tree, 1432 }; 1433 1434 static int nfsd_init_fs_context(struct fs_context *fc) 1435 { 1436 put_user_ns(fc->user_ns); 1437 fc->user_ns = get_user_ns(fc->net_ns->user_ns); 1438 fc->ops = &nfsd_fs_context_ops; 1439 return 0; 1440 } 1441 1442 static void nfsd_umount(struct super_block *sb) 1443 { 1444 struct net *net = sb->s_fs_info; 1445 1446 nfsd_shutdown_threads(net); 1447 1448 kill_litter_super(sb); 1449 put_net(net); 1450 } 1451 1452 static struct file_system_type nfsd_fs_type = { 1453 .owner = THIS_MODULE, 1454 .name = "nfsd", 1455 .init_fs_context = nfsd_init_fs_context, 1456 .kill_sb = nfsd_umount, 1457 }; 1458 MODULE_ALIAS_FS("nfsd"); 1459 1460 #ifdef CONFIG_PROC_FS 1461 static int create_proc_exports_entry(void) 1462 { 1463 struct proc_dir_entry *entry; 1464 1465 entry = proc_mkdir("fs/nfs", NULL); 1466 if (!entry) 1467 return -ENOMEM; 1468 entry = proc_create("exports", 0, entry, &exports_proc_ops); 1469 if (!entry) { 1470 remove_proc_entry("fs/nfs", NULL); 1471 return -ENOMEM; 1472 } 1473 return 0; 1474 } 1475 #else /* CONFIG_PROC_FS */ 1476 static int create_proc_exports_entry(void) 1477 { 1478 return 0; 1479 } 1480 #endif 1481 1482 unsigned int nfsd_net_id; 1483 1484 static __net_init int nfsd_init_net(struct net *net) 1485 { 1486 int retval; 1487 struct nfsd_net *nn = net_generic(net, nfsd_net_id); 1488 1489 retval = nfsd_export_init(net); 1490 if (retval) 1491 goto out_export_error; 1492 retval = nfsd_idmap_init(net); 1493 if (retval) 1494 goto out_idmap_error; 1495 nn->nfsd_versions = NULL; 1496 nn->nfsd4_minorversions = NULL; 1497 nfsd4_init_leases_net(nn); 1498 get_random_bytes(&nn->siphash_key, sizeof(nn->siphash_key)); 1499 seqlock_init(&nn->writeverf_lock); 1500 1501 return 0; 1502 1503 out_idmap_error: 1504 nfsd_export_shutdown(net); 1505 out_export_error: 1506 return retval; 1507 } 1508 1509 static __net_exit void nfsd_exit_net(struct net *net) 1510 { 1511 nfsd_idmap_shutdown(net); 1512 nfsd_export_shutdown(net); 1513 nfsd_netns_free_versions(net_generic(net, nfsd_net_id)); 1514 } 1515 1516 static struct pernet_operations nfsd_net_ops = { 1517 .init = nfsd_init_net, 1518 .exit = nfsd_exit_net, 1519 .id = &nfsd_net_id, 1520 .size = sizeof(struct nfsd_net), 1521 }; 1522 1523 static int __init init_nfsd(void) 1524 { 1525 int retval; 1526 1527 retval = nfsd4_init_slabs(); 1528 if (retval) 1529 return retval; 1530 retval = nfsd4_init_pnfs(); 1531 if (retval) 1532 goto out_free_slabs; 1533 retval = nfsd_stat_init(); /* Statistics */ 1534 if (retval) 1535 goto out_free_pnfs; 1536 retval = nfsd_drc_slab_create(); 1537 if (retval) 1538 goto out_free_stat; 1539 nfsd_lockd_init(); /* lockd->nfsd callbacks */ 1540 retval = create_proc_exports_entry(); 1541 if (retval) 1542 goto out_free_lockd; 1543 retval = register_pernet_subsys(&nfsd_net_ops); 1544 if (retval < 0) 1545 goto out_free_exports; 1546 retval = register_cld_notifier(); 1547 if (retval) 1548 goto out_free_subsys; 1549 retval = nfsd4_create_laundry_wq(); 1550 if (retval) 1551 goto out_free_cld; 1552 retval = register_filesystem(&nfsd_fs_type); 1553 if (retval) 1554 goto out_free_all; 1555 return 0; 1556 out_free_all: 1557 nfsd4_destroy_laundry_wq(); 1558 out_free_cld: 1559 unregister_cld_notifier(); 1560 out_free_subsys: 1561 unregister_pernet_subsys(&nfsd_net_ops); 1562 out_free_exports: 1563 remove_proc_entry("fs/nfs/exports", NULL); 1564 remove_proc_entry("fs/nfs", NULL); 1565 out_free_lockd: 1566 nfsd_lockd_shutdown(); 1567 nfsd_drc_slab_free(); 1568 out_free_stat: 1569 nfsd_stat_shutdown(); 1570 out_free_pnfs: 1571 nfsd4_exit_pnfs(); 1572 out_free_slabs: 1573 nfsd4_free_slabs(); 1574 return retval; 1575 } 1576 1577 static void __exit exit_nfsd(void) 1578 { 1579 unregister_filesystem(&nfsd_fs_type); 1580 nfsd4_destroy_laundry_wq(); 1581 unregister_cld_notifier(); 1582 unregister_pernet_subsys(&nfsd_net_ops); 1583 nfsd_drc_slab_free(); 1584 remove_proc_entry("fs/nfs/exports", NULL); 1585 remove_proc_entry("fs/nfs", NULL); 1586 nfsd_stat_shutdown(); 1587 nfsd_lockd_shutdown(); 1588 nfsd4_free_slabs(); 1589 nfsd4_exit_pnfs(); 1590 } 1591 1592 MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>"); 1593 MODULE_LICENSE("GPL"); 1594 module_init(init_nfsd) 1595 module_exit(exit_nfsd) 1596