proc.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * linux/fs/nfs/proc.c
  4. *
  5. * Copyright (C) 1992, 1993, 1994 Rick Sladkey
  6. *
  7. * OS-independent nfs remote procedure call functions
  8. *
  9. * Tuned by Alan Cox <A.Cox@swansea.ac.uk> for >3K buffers
  10. * so at last we can have decent(ish) throughput off a
  11. * Sun server.
  12. *
  13. * Coding optimized and cleaned up by Florian La Roche.
  14. * Note: Error returns are optimized for NFS_OK, which isn't translated via
  15. * nfs_stat_to_errno(), but happens to be already the right return code.
  16. *
  17. * Also, the code currently doesn't check the size of the packet, when
  18. * it decodes the packet.
  19. *
  20. * Feel free to fix it and mail me the diffs if it worries you.
  21. *
  22. * Completely rewritten to support the new RPC call interface;
  23. * rewrote and moved the entire XDR stuff to xdr.c
  24. * --Olaf Kirch June 1996
  25. *
  26. * The code below initializes all auto variables explicitly, otherwise
  27. * it will fail to work as a module (gcc generates a memset call for an
  28. * incomplete struct).
  29. */
  30. #include <linux/types.h>
  31. #include <linux/param.h>
  32. #include <linux/time.h>
  33. #include <linux/mm.h>
  34. #include <linux/errno.h>
  35. #include <linux/string.h>
  36. #include <linux/in.h>
  37. #include <linux/pagemap.h>
  38. #include <linux/sunrpc/clnt.h>
  39. #include <linux/nfs.h>
  40. #include <linux/nfs2.h>
  41. #include <linux/nfs_fs.h>
  42. #include <linux/nfs_page.h>
  43. #include <linux/lockd/bind.h>
  44. #include <linux/freezer.h>
  45. #include "internal.h"
  46. #define NFSDBG_FACILITY NFSDBG_PROC
  47. /*
  48. * Bare-bones access to getattr: this is for nfs_read_super.
  49. */
  50. static int
  51. nfs_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
  52. struct nfs_fsinfo *info)
  53. {
  54. struct nfs_fattr *fattr = info->fattr;
  55. struct nfs2_fsstat fsinfo;
  56. struct rpc_message msg = {
  57. .rpc_proc = &nfs_procedures[NFSPROC_GETATTR],
  58. .rpc_argp = fhandle,
  59. .rpc_resp = fattr,
  60. };
  61. int status;
  62. dprintk("%s: call getattr\n", __func__);
  63. nfs_fattr_init(fattr);
  64. status = rpc_call_sync(server->client, &msg, 0);
  65. /* Retry with default authentication if different */
  66. if (status && server->nfs_client->cl_rpcclient != server->client)
  67. status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0);
  68. dprintk("%s: reply getattr: %d\n", __func__, status);
  69. if (status)
  70. return status;
  71. dprintk("%s: call statfs\n", __func__);
  72. msg.rpc_proc = &nfs_procedures[NFSPROC_STATFS];
  73. msg.rpc_resp = &fsinfo;
  74. status = rpc_call_sync(server->client, &msg, 0);
  75. /* Retry with default authentication if different */
  76. if (status && server->nfs_client->cl_rpcclient != server->client)
  77. status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0);
  78. dprintk("%s: reply statfs: %d\n", __func__, status);
  79. if (status)
  80. return status;
  81. info->rtmax = NFS_MAXDATA;
  82. info->rtpref = fsinfo.tsize;
  83. info->rtmult = fsinfo.bsize;
  84. info->wtmax = NFS_MAXDATA;
  85. info->wtpref = fsinfo.tsize;
  86. info->wtmult = fsinfo.bsize;
  87. info->dtpref = fsinfo.tsize;
  88. info->maxfilesize = 0x7FFFFFFF;
  89. info->lease_time = 0;
  90. return 0;
  91. }
  92. /*
  93. * One function for each procedure in the NFS protocol.
  94. */
  95. static int
  96. nfs_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
  97. struct nfs_fattr *fattr, struct nfs4_label *label,
  98. struct inode *inode)
  99. {
  100. struct rpc_message msg = {
  101. .rpc_proc = &nfs_procedures[NFSPROC_GETATTR],
  102. .rpc_argp = fhandle,
  103. .rpc_resp = fattr,
  104. };
  105. int status;
  106. dprintk("NFS call getattr\n");
  107. nfs_fattr_init(fattr);
  108. status = rpc_call_sync(server->client, &msg, 0);
  109. dprintk("NFS reply getattr: %d\n", status);
  110. return status;
  111. }
  112. static int
  113. nfs_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
  114. struct iattr *sattr)
  115. {
  116. struct inode *inode = d_inode(dentry);
  117. struct nfs_sattrargs arg = {
  118. .fh = NFS_FH(inode),
  119. .sattr = sattr
  120. };
  121. struct rpc_message msg = {
  122. .rpc_proc = &nfs_procedures[NFSPROC_SETATTR],
  123. .rpc_argp = &arg,
  124. .rpc_resp = fattr,
  125. };
  126. int status;
  127. /* Mask out the non-modebit related stuff from attr->ia_mode */
  128. sattr->ia_mode &= S_IALLUGO;
  129. dprintk("NFS call setattr\n");
  130. if (sattr->ia_valid & ATTR_FILE)
  131. msg.rpc_cred = nfs_file_cred(sattr->ia_file);
  132. nfs_fattr_init(fattr);
  133. status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
  134. if (status == 0)
  135. nfs_setattr_update_inode(inode, sattr, fattr);
  136. dprintk("NFS reply setattr: %d\n", status);
  137. return status;
  138. }
  139. static int
  140. nfs_proc_lookup(struct inode *dir, const struct qstr *name,
  141. struct nfs_fh *fhandle, struct nfs_fattr *fattr,
  142. struct nfs4_label *label)
  143. {
  144. struct nfs_diropargs arg = {
  145. .fh = NFS_FH(dir),
  146. .name = name->name,
  147. .len = name->len
  148. };
  149. struct nfs_diropok res = {
  150. .fh = fhandle,
  151. .fattr = fattr
  152. };
  153. struct rpc_message msg = {
  154. .rpc_proc = &nfs_procedures[NFSPROC_LOOKUP],
  155. .rpc_argp = &arg,
  156. .rpc_resp = &res,
  157. };
  158. int status;
  159. dprintk("NFS call lookup %s\n", name->name);
  160. nfs_fattr_init(fattr);
  161. status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
  162. dprintk("NFS reply lookup: %d\n", status);
  163. return status;
  164. }
  165. static int nfs_proc_readlink(struct inode *inode, struct page *page,
  166. unsigned int pgbase, unsigned int pglen)
  167. {
  168. struct nfs_readlinkargs args = {
  169. .fh = NFS_FH(inode),
  170. .pgbase = pgbase,
  171. .pglen = pglen,
  172. .pages = &page
  173. };
  174. struct rpc_message msg = {
  175. .rpc_proc = &nfs_procedures[NFSPROC_READLINK],
  176. .rpc_argp = &args,
  177. };
  178. int status;
  179. dprintk("NFS call readlink\n");
  180. status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
  181. dprintk("NFS reply readlink: %d\n", status);
  182. return status;
  183. }
  184. struct nfs_createdata {
  185. struct nfs_createargs arg;
  186. struct nfs_diropok res;
  187. struct nfs_fh fhandle;
  188. struct nfs_fattr fattr;
  189. };
  190. static struct nfs_createdata *nfs_alloc_createdata(struct inode *dir,
  191. struct dentry *dentry, struct iattr *sattr)
  192. {
  193. struct nfs_createdata *data;
  194. data = kmalloc(sizeof(*data), GFP_KERNEL);
  195. if (data != NULL) {
  196. data->arg.fh = NFS_FH(dir);
  197. data->arg.name = dentry->d_name.name;
  198. data->arg.len = dentry->d_name.len;
  199. data->arg.sattr = sattr;
  200. nfs_fattr_init(&data->fattr);
  201. data->fhandle.size = 0;
  202. data->res.fh = &data->fhandle;
  203. data->res.fattr = &data->fattr;
  204. }
  205. return data;
  206. };
  207. static void nfs_free_createdata(const struct nfs_createdata *data)
  208. {
  209. kfree(data);
  210. }
  211. static int
  212. nfs_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
  213. int flags)
  214. {
  215. struct nfs_createdata *data;
  216. struct rpc_message msg = {
  217. .rpc_proc = &nfs_procedures[NFSPROC_CREATE],
  218. };
  219. int status = -ENOMEM;
  220. dprintk("NFS call create %pd\n", dentry);
  221. data = nfs_alloc_createdata(dir, dentry, sattr);
  222. if (data == NULL)
  223. goto out;
  224. msg.rpc_argp = &data->arg;
  225. msg.rpc_resp = &data->res;
  226. status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
  227. nfs_mark_for_revalidate(dir);
  228. if (status == 0)
  229. status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, NULL);
  230. nfs_free_createdata(data);
  231. out:
  232. dprintk("NFS reply create: %d\n", status);
  233. return status;
  234. }
  235. /*
  236. * In NFSv2, mknod is grafted onto the create call.
  237. */
  238. static int
  239. nfs_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
  240. dev_t rdev)
  241. {
  242. struct nfs_createdata *data;
  243. struct rpc_message msg = {
  244. .rpc_proc = &nfs_procedures[NFSPROC_CREATE],
  245. };
  246. umode_t mode;
  247. int status = -ENOMEM;
  248. dprintk("NFS call mknod %pd\n", dentry);
  249. mode = sattr->ia_mode;
  250. if (S_ISFIFO(mode)) {
  251. sattr->ia_mode = (mode & ~S_IFMT) | S_IFCHR;
  252. sattr->ia_valid &= ~ATTR_SIZE;
  253. } else if (S_ISCHR(mode) || S_ISBLK(mode)) {
  254. sattr->ia_valid |= ATTR_SIZE;
  255. sattr->ia_size = new_encode_dev(rdev);/* get out your barf bag */
  256. }
  257. data = nfs_alloc_createdata(dir, dentry, sattr);
  258. if (data == NULL)
  259. goto out;
  260. msg.rpc_argp = &data->arg;
  261. msg.rpc_resp = &data->res;
  262. status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
  263. nfs_mark_for_revalidate(dir);
  264. if (status == -EINVAL && S_ISFIFO(mode)) {
  265. sattr->ia_mode = mode;
  266. nfs_fattr_init(data->res.fattr);
  267. status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
  268. }
  269. if (status == 0)
  270. status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, NULL);
  271. nfs_free_createdata(data);
  272. out:
  273. dprintk("NFS reply mknod: %d\n", status);
  274. return status;
  275. }
  276. static int
  277. nfs_proc_remove(struct inode *dir, struct dentry *dentry)
  278. {
  279. struct nfs_removeargs arg = {
  280. .fh = NFS_FH(dir),
  281. .name = dentry->d_name,
  282. };
  283. struct rpc_message msg = {
  284. .rpc_proc = &nfs_procedures[NFSPROC_REMOVE],
  285. .rpc_argp = &arg,
  286. };
  287. int status;
  288. dprintk("NFS call remove %pd2\n",dentry);
  289. status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
  290. nfs_mark_for_revalidate(dir);
  291. dprintk("NFS reply remove: %d\n", status);
  292. return status;
  293. }
  294. static void
  295. nfs_proc_unlink_setup(struct rpc_message *msg,
  296. struct dentry *dentry,
  297. struct inode *inode)
  298. {
  299. msg->rpc_proc = &nfs_procedures[NFSPROC_REMOVE];
  300. }
  301. static void nfs_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data)
  302. {
  303. rpc_call_start(task);
  304. }
  305. static int nfs_proc_unlink_done(struct rpc_task *task, struct inode *dir)
  306. {
  307. nfs_mark_for_revalidate(dir);
  308. return 1;
  309. }
  310. static void
  311. nfs_proc_rename_setup(struct rpc_message *msg,
  312. struct dentry *old_dentry,
  313. struct dentry *new_dentry)
  314. {
  315. msg->rpc_proc = &nfs_procedures[NFSPROC_RENAME];
  316. }
  317. static void nfs_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data)
  318. {
  319. rpc_call_start(task);
  320. }
  321. static int
  322. nfs_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
  323. struct inode *new_dir)
  324. {
  325. nfs_mark_for_revalidate(old_dir);
  326. nfs_mark_for_revalidate(new_dir);
  327. return 1;
  328. }
  329. static int
  330. nfs_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
  331. {
  332. struct nfs_linkargs arg = {
  333. .fromfh = NFS_FH(inode),
  334. .tofh = NFS_FH(dir),
  335. .toname = name->name,
  336. .tolen = name->len
  337. };
  338. struct rpc_message msg = {
  339. .rpc_proc = &nfs_procedures[NFSPROC_LINK],
  340. .rpc_argp = &arg,
  341. };
  342. int status;
  343. dprintk("NFS call link %s\n", name->name);
  344. status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
  345. nfs_mark_for_revalidate(inode);
  346. nfs_mark_for_revalidate(dir);
  347. dprintk("NFS reply link: %d\n", status);
  348. return status;
  349. }
  350. static int
  351. nfs_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page,
  352. unsigned int len, struct iattr *sattr)
  353. {
  354. struct nfs_fh *fh;
  355. struct nfs_fattr *fattr;
  356. struct nfs_symlinkargs arg = {
  357. .fromfh = NFS_FH(dir),
  358. .fromname = dentry->d_name.name,
  359. .fromlen = dentry->d_name.len,
  360. .pages = &page,
  361. .pathlen = len,
  362. .sattr = sattr
  363. };
  364. struct rpc_message msg = {
  365. .rpc_proc = &nfs_procedures[NFSPROC_SYMLINK],
  366. .rpc_argp = &arg,
  367. };
  368. int status = -ENAMETOOLONG;
  369. dprintk("NFS call symlink %pd\n", dentry);
  370. if (len > NFS2_MAXPATHLEN)
  371. goto out;
  372. fh = nfs_alloc_fhandle();
  373. fattr = nfs_alloc_fattr();
  374. status = -ENOMEM;
  375. if (fh == NULL || fattr == NULL)
  376. goto out_free;
  377. status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
  378. nfs_mark_for_revalidate(dir);
  379. /*
  380. * V2 SYMLINK requests don't return any attributes. Setting the
  381. * filehandle size to zero indicates to nfs_instantiate that it
  382. * should fill in the data with a LOOKUP call on the wire.
  383. */
  384. if (status == 0)
  385. status = nfs_instantiate(dentry, fh, fattr, NULL);
  386. out_free:
  387. nfs_free_fattr(fattr);
  388. nfs_free_fhandle(fh);
  389. out:
  390. dprintk("NFS reply symlink: %d\n", status);
  391. return status;
  392. }
  393. static int
  394. nfs_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr)
  395. {
  396. struct nfs_createdata *data;
  397. struct rpc_message msg = {
  398. .rpc_proc = &nfs_procedures[NFSPROC_MKDIR],
  399. };
  400. int status = -ENOMEM;
  401. dprintk("NFS call mkdir %pd\n", dentry);
  402. data = nfs_alloc_createdata(dir, dentry, sattr);
  403. if (data == NULL)
  404. goto out;
  405. msg.rpc_argp = &data->arg;
  406. msg.rpc_resp = &data->res;
  407. status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
  408. nfs_mark_for_revalidate(dir);
  409. if (status == 0)
  410. status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, NULL);
  411. nfs_free_createdata(data);
  412. out:
  413. dprintk("NFS reply mkdir: %d\n", status);
  414. return status;
  415. }
  416. static int
  417. nfs_proc_rmdir(struct inode *dir, const struct qstr *name)
  418. {
  419. struct nfs_diropargs arg = {
  420. .fh = NFS_FH(dir),
  421. .name = name->name,
  422. .len = name->len
  423. };
  424. struct rpc_message msg = {
  425. .rpc_proc = &nfs_procedures[NFSPROC_RMDIR],
  426. .rpc_argp = &arg,
  427. };
  428. int status;
  429. dprintk("NFS call rmdir %s\n", name->name);
  430. status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
  431. nfs_mark_for_revalidate(dir);
  432. dprintk("NFS reply rmdir: %d\n", status);
  433. return status;
  434. }
  435. /*
  436. * The READDIR implementation is somewhat hackish - we pass a temporary
  437. * buffer to the encode function, which installs it in the receive
  438. * the receive iovec. The decode function just parses the reply to make
  439. * sure it is syntactically correct; the entries itself are decoded
  440. * from nfs_readdir by calling the decode_entry function directly.
  441. */
  442. static int
  443. nfs_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
  444. u64 cookie, struct page **pages, unsigned int count, bool plus)
  445. {
  446. struct inode *dir = d_inode(dentry);
  447. struct nfs_readdirargs arg = {
  448. .fh = NFS_FH(dir),
  449. .cookie = cookie,
  450. .count = count,
  451. .pages = pages,
  452. };
  453. struct rpc_message msg = {
  454. .rpc_proc = &nfs_procedures[NFSPROC_READDIR],
  455. .rpc_argp = &arg,
  456. .rpc_cred = cred,
  457. };
  458. int status;
  459. dprintk("NFS call readdir %d\n", (unsigned int)cookie);
  460. status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
  461. nfs_invalidate_atime(dir);
  462. dprintk("NFS reply readdir: %d\n", status);
  463. return status;
  464. }
  465. static int
  466. nfs_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
  467. struct nfs_fsstat *stat)
  468. {
  469. struct nfs2_fsstat fsinfo;
  470. struct rpc_message msg = {
  471. .rpc_proc = &nfs_procedures[NFSPROC_STATFS],
  472. .rpc_argp = fhandle,
  473. .rpc_resp = &fsinfo,
  474. };
  475. int status;
  476. dprintk("NFS call statfs\n");
  477. nfs_fattr_init(stat->fattr);
  478. status = rpc_call_sync(server->client, &msg, 0);
  479. dprintk("NFS reply statfs: %d\n", status);
  480. if (status)
  481. goto out;
  482. stat->tbytes = (u64)fsinfo.blocks * fsinfo.bsize;
  483. stat->fbytes = (u64)fsinfo.bfree * fsinfo.bsize;
  484. stat->abytes = (u64)fsinfo.bavail * fsinfo.bsize;
  485. stat->tfiles = 0;
  486. stat->ffiles = 0;
  487. stat->afiles = 0;
  488. out:
  489. return status;
  490. }
  491. static int
  492. nfs_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
  493. struct nfs_fsinfo *info)
  494. {
  495. struct nfs2_fsstat fsinfo;
  496. struct rpc_message msg = {
  497. .rpc_proc = &nfs_procedures[NFSPROC_STATFS],
  498. .rpc_argp = fhandle,
  499. .rpc_resp = &fsinfo,
  500. };
  501. int status;
  502. dprintk("NFS call fsinfo\n");
  503. nfs_fattr_init(info->fattr);
  504. status = rpc_call_sync(server->client, &msg, 0);
  505. dprintk("NFS reply fsinfo: %d\n", status);
  506. if (status)
  507. goto out;
  508. info->rtmax = NFS_MAXDATA;
  509. info->rtpref = fsinfo.tsize;
  510. info->rtmult = fsinfo.bsize;
  511. info->wtmax = NFS_MAXDATA;
  512. info->wtpref = fsinfo.tsize;
  513. info->wtmult = fsinfo.bsize;
  514. info->dtpref = fsinfo.tsize;
  515. info->maxfilesize = 0x7FFFFFFF;
  516. info->lease_time = 0;
  517. out:
  518. return status;
  519. }
  520. static int
  521. nfs_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
  522. struct nfs_pathconf *info)
  523. {
  524. info->max_link = 0;
  525. info->max_namelen = NFS2_MAXNAMLEN;
  526. return 0;
  527. }
  528. static int nfs_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
  529. {
  530. struct inode *inode = hdr->inode;
  531. nfs_invalidate_atime(inode);
  532. if (task->tk_status >= 0) {
  533. nfs_refresh_inode(inode, hdr->res.fattr);
  534. /* Emulate the eof flag, which isn't normally needed in NFSv2
  535. * as it is guaranteed to always return the file attributes
  536. */
  537. if ((hdr->res.count == 0 && hdr->args.count > 0) ||
  538. hdr->args.offset + hdr->res.count >= hdr->res.fattr->size)
  539. hdr->res.eof = 1;
  540. }
  541. return 0;
  542. }
  543. static void nfs_proc_read_setup(struct nfs_pgio_header *hdr,
  544. struct rpc_message *msg)
  545. {
  546. msg->rpc_proc = &nfs_procedures[NFSPROC_READ];
  547. }
  548. static int nfs_proc_pgio_rpc_prepare(struct rpc_task *task,
  549. struct nfs_pgio_header *hdr)
  550. {
  551. rpc_call_start(task);
  552. return 0;
  553. }
  554. static int nfs_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
  555. {
  556. if (task->tk_status >= 0) {
  557. hdr->res.count = hdr->args.count;
  558. nfs_writeback_update_inode(hdr);
  559. }
  560. return 0;
  561. }
  562. static void nfs_proc_write_setup(struct nfs_pgio_header *hdr,
  563. struct rpc_message *msg,
  564. struct rpc_clnt **clnt)
  565. {
  566. /* Note: NFSv2 ignores @stable and always uses NFS_FILE_SYNC */
  567. hdr->args.stable = NFS_FILE_SYNC;
  568. msg->rpc_proc = &nfs_procedures[NFSPROC_WRITE];
  569. }
  570. static void nfs_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
  571. {
  572. BUG();
  573. }
  574. static void
  575. nfs_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg,
  576. struct rpc_clnt **clnt)
  577. {
  578. BUG();
  579. }
  580. static int
  581. nfs_proc_lock(struct file *filp, int cmd, struct file_lock *fl)
  582. {
  583. struct inode *inode = file_inode(filp);
  584. return nlmclnt_proc(NFS_SERVER(inode)->nlm_host, cmd, fl, NULL);
  585. }
  586. /* Helper functions for NFS lock bounds checking */
  587. #define NFS_LOCK32_OFFSET_MAX ((__s32)0x7fffffffUL)
  588. static int nfs_lock_check_bounds(const struct file_lock *fl)
  589. {
  590. __s32 start, end;
  591. start = (__s32)fl->fl_start;
  592. if ((loff_t)start != fl->fl_start)
  593. goto out_einval;
  594. if (fl->fl_end != OFFSET_MAX) {
  595. end = (__s32)fl->fl_end;
  596. if ((loff_t)end != fl->fl_end)
  597. goto out_einval;
  598. } else
  599. end = NFS_LOCK32_OFFSET_MAX;
  600. if (start < 0 || start > end)
  601. goto out_einval;
  602. return 0;
  603. out_einval:
  604. return -EINVAL;
  605. }
  606. static int nfs_have_delegation(struct inode *inode, fmode_t flags)
  607. {
  608. return 0;
  609. }
  610. static const struct inode_operations nfs_dir_inode_operations = {
  611. .create = nfs_create,
  612. .lookup = nfs_lookup,
  613. .link = nfs_link,
  614. .unlink = nfs_unlink,
  615. .symlink = nfs_symlink,
  616. .mkdir = nfs_mkdir,
  617. .rmdir = nfs_rmdir,
  618. .mknod = nfs_mknod,
  619. .rename = nfs_rename,
  620. .permission = nfs_permission,
  621. .getattr = nfs_getattr,
  622. .setattr = nfs_setattr,
  623. };
  624. static const struct inode_operations nfs_file_inode_operations = {
  625. .permission = nfs_permission,
  626. .getattr = nfs_getattr,
  627. .setattr = nfs_setattr,
  628. };
  629. const struct nfs_rpc_ops nfs_v2_clientops = {
  630. .version = 2, /* protocol version */
  631. .dentry_ops = &nfs_dentry_operations,
  632. .dir_inode_ops = &nfs_dir_inode_operations,
  633. .file_inode_ops = &nfs_file_inode_operations,
  634. .file_ops = &nfs_file_operations,
  635. .getroot = nfs_proc_get_root,
  636. .submount = nfs_submount,
  637. .try_mount = nfs_try_mount,
  638. .getattr = nfs_proc_getattr,
  639. .setattr = nfs_proc_setattr,
  640. .lookup = nfs_proc_lookup,
  641. .access = NULL, /* access */
  642. .readlink = nfs_proc_readlink,
  643. .create = nfs_proc_create,
  644. .remove = nfs_proc_remove,
  645. .unlink_setup = nfs_proc_unlink_setup,
  646. .unlink_rpc_prepare = nfs_proc_unlink_rpc_prepare,
  647. .unlink_done = nfs_proc_unlink_done,
  648. .rename_setup = nfs_proc_rename_setup,
  649. .rename_rpc_prepare = nfs_proc_rename_rpc_prepare,
  650. .rename_done = nfs_proc_rename_done,
  651. .link = nfs_proc_link,
  652. .symlink = nfs_proc_symlink,
  653. .mkdir = nfs_proc_mkdir,
  654. .rmdir = nfs_proc_rmdir,
  655. .readdir = nfs_proc_readdir,
  656. .mknod = nfs_proc_mknod,
  657. .statfs = nfs_proc_statfs,
  658. .fsinfo = nfs_proc_fsinfo,
  659. .pathconf = nfs_proc_pathconf,
  660. .decode_dirent = nfs2_decode_dirent,
  661. .pgio_rpc_prepare = nfs_proc_pgio_rpc_prepare,
  662. .read_setup = nfs_proc_read_setup,
  663. .read_done = nfs_read_done,
  664. .write_setup = nfs_proc_write_setup,
  665. .write_done = nfs_write_done,
  666. .commit_setup = nfs_proc_commit_setup,
  667. .commit_rpc_prepare = nfs_proc_commit_rpc_prepare,
  668. .lock = nfs_proc_lock,
  669. .lock_check_bounds = nfs_lock_check_bounds,
  670. .close_context = nfs_close_context,
  671. .have_delegation = nfs_have_delegation,
  672. .alloc_client = nfs_alloc_client,
  673. .init_client = nfs_init_client,
  674. .free_client = nfs_free_client,
  675. .create_server = nfs_create_server,
  676. .clone_server = nfs_clone_server,
  677. };