callback_proc.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  1. /*
  2. * linux/fs/nfs/callback_proc.c
  3. *
  4. * Copyright (C) 2004 Trond Myklebust
  5. *
  6. * NFSv4 callback procedures
  7. */
  8. #include <linux/nfs4.h>
  9. #include <linux/nfs_fs.h>
  10. #include <linux/slab.h>
  11. #include <linux/rcupdate.h>
  12. #include "nfs4_fs.h"
  13. #include "callback.h"
  14. #include "delegation.h"
  15. #include "internal.h"
  16. #include "pnfs.h"
  17. #ifdef NFS_DEBUG
  18. #define NFSDBG_FACILITY NFSDBG_CALLBACK
  19. #endif
  20. __be32 nfs4_callback_getattr(struct cb_getattrargs *args,
  21. struct cb_getattrres *res,
  22. struct cb_process_state *cps)
  23. {
  24. struct nfs_delegation *delegation;
  25. struct nfs_inode *nfsi;
  26. struct inode *inode;
  27. res->status = htonl(NFS4ERR_OP_NOT_IN_SESSION);
  28. if (!cps->clp) /* Always set for v4.0. Set in cb_sequence for v4.1 */
  29. goto out;
  30. res->bitmap[0] = res->bitmap[1] = 0;
  31. res->status = htonl(NFS4ERR_BADHANDLE);
  32. dprintk_rcu("NFS: GETATTR callback request from %s\n",
  33. rpc_peeraddr2str(cps->clp->cl_rpcclient, RPC_DISPLAY_ADDR));
  34. inode = nfs_delegation_find_inode(cps->clp, &args->fh);
  35. if (inode == NULL)
  36. goto out;
  37. nfsi = NFS_I(inode);
  38. rcu_read_lock();
  39. delegation = rcu_dereference(nfsi->delegation);
  40. if (delegation == NULL || (delegation->type & FMODE_WRITE) == 0)
  41. goto out_iput;
  42. res->size = i_size_read(inode);
  43. res->change_attr = delegation->change_attr;
  44. if (nfsi->npages != 0)
  45. res->change_attr++;
  46. res->ctime = inode->i_ctime;
  47. res->mtime = inode->i_mtime;
  48. res->bitmap[0] = (FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE) &
  49. args->bitmap[0];
  50. res->bitmap[1] = (FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY) &
  51. args->bitmap[1];
  52. res->status = 0;
  53. out_iput:
  54. rcu_read_unlock();
  55. iput(inode);
  56. out:
  57. dprintk("%s: exit with status = %d\n", __func__, ntohl(res->status));
  58. return res->status;
  59. }
  60. __be32 nfs4_callback_recall(struct cb_recallargs *args, void *dummy,
  61. struct cb_process_state *cps)
  62. {
  63. struct inode *inode;
  64. __be32 res;
  65. res = htonl(NFS4ERR_OP_NOT_IN_SESSION);
  66. if (!cps->clp) /* Always set for v4.0. Set in cb_sequence for v4.1 */
  67. goto out;
  68. dprintk_rcu("NFS: RECALL callback request from %s\n",
  69. rpc_peeraddr2str(cps->clp->cl_rpcclient, RPC_DISPLAY_ADDR));
  70. res = htonl(NFS4ERR_BADHANDLE);
  71. inode = nfs_delegation_find_inode(cps->clp, &args->fh);
  72. if (inode == NULL)
  73. goto out;
  74. /* Set up a helper thread to actually return the delegation */
  75. switch (nfs_async_inode_return_delegation(inode, &args->stateid)) {
  76. case 0:
  77. res = 0;
  78. break;
  79. case -ENOENT:
  80. res = htonl(NFS4ERR_BAD_STATEID);
  81. break;
  82. default:
  83. res = htonl(NFS4ERR_RESOURCE);
  84. }
  85. iput(inode);
  86. out:
  87. dprintk("%s: exit with status = %d\n", __func__, ntohl(res));
  88. return res;
  89. }
  90. int nfs4_validate_delegation_stateid(struct nfs_delegation *delegation, const nfs4_stateid *stateid)
  91. {
  92. if (delegation == NULL || memcmp(delegation->stateid.data, stateid->data,
  93. sizeof(delegation->stateid.data)) != 0)
  94. return 0;
  95. return 1;
  96. }
  97. #if defined(CONFIG_NFS_V4_1)
  98. /*
  99. * Lookup a layout by filehandle.
  100. *
  101. * Note: gets a refcount on the layout hdr and on its respective inode.
  102. * Caller must put the layout hdr and the inode.
  103. *
  104. * TODO: keep track of all layouts (and delegations) in a hash table
  105. * hashed by filehandle.
  106. */
  107. static struct pnfs_layout_hdr * get_layout_by_fh_locked(struct nfs_client *clp, struct nfs_fh *fh)
  108. {
  109. struct nfs_server *server;
  110. struct inode *ino;
  111. struct pnfs_layout_hdr *lo;
  112. list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
  113. list_for_each_entry(lo, &server->layouts, plh_layouts) {
  114. if (nfs_compare_fh(fh, &NFS_I(lo->plh_inode)->fh))
  115. continue;
  116. ino = igrab(lo->plh_inode);
  117. if (!ino)
  118. continue;
  119. get_layout_hdr(lo);
  120. return lo;
  121. }
  122. }
  123. return NULL;
  124. }
  125. static struct pnfs_layout_hdr * get_layout_by_fh(struct nfs_client *clp, struct nfs_fh *fh)
  126. {
  127. struct pnfs_layout_hdr *lo;
  128. spin_lock(&clp->cl_lock);
  129. rcu_read_lock();
  130. lo = get_layout_by_fh_locked(clp, fh);
  131. rcu_read_unlock();
  132. spin_unlock(&clp->cl_lock);
  133. return lo;
  134. }
  135. static u32 initiate_file_draining(struct nfs_client *clp,
  136. struct cb_layoutrecallargs *args)
  137. {
  138. struct inode *ino;
  139. struct pnfs_layout_hdr *lo;
  140. u32 rv = NFS4ERR_NOMATCHING_LAYOUT;
  141. LIST_HEAD(free_me_list);
  142. lo = get_layout_by_fh(clp, &args->cbl_fh);
  143. if (!lo)
  144. return NFS4ERR_NOMATCHING_LAYOUT;
  145. ino = lo->plh_inode;
  146. spin_lock(&ino->i_lock);
  147. if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags) ||
  148. mark_matching_lsegs_invalid(lo, &free_me_list,
  149. &args->cbl_range))
  150. rv = NFS4ERR_DELAY;
  151. else
  152. rv = NFS4ERR_NOMATCHING_LAYOUT;
  153. pnfs_set_layout_stateid(lo, &args->cbl_stateid, true);
  154. spin_unlock(&ino->i_lock);
  155. pnfs_free_lseg_list(&free_me_list);
  156. put_layout_hdr(lo);
  157. iput(ino);
  158. return rv;
  159. }
  160. static u32 initiate_bulk_draining(struct nfs_client *clp,
  161. struct cb_layoutrecallargs *args)
  162. {
  163. struct nfs_server *server;
  164. struct pnfs_layout_hdr *lo;
  165. struct inode *ino;
  166. u32 rv = NFS4ERR_NOMATCHING_LAYOUT;
  167. struct pnfs_layout_hdr *tmp;
  168. LIST_HEAD(recall_list);
  169. LIST_HEAD(free_me_list);
  170. struct pnfs_layout_range range = {
  171. .iomode = IOMODE_ANY,
  172. .offset = 0,
  173. .length = NFS4_MAX_UINT64,
  174. };
  175. spin_lock(&clp->cl_lock);
  176. rcu_read_lock();
  177. list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
  178. if ((args->cbl_recall_type == RETURN_FSID) &&
  179. memcmp(&server->fsid, &args->cbl_fsid,
  180. sizeof(struct nfs_fsid)))
  181. continue;
  182. list_for_each_entry(lo, &server->layouts, plh_layouts) {
  183. if (!igrab(lo->plh_inode))
  184. continue;
  185. get_layout_hdr(lo);
  186. BUG_ON(!list_empty(&lo->plh_bulk_recall));
  187. list_add(&lo->plh_bulk_recall, &recall_list);
  188. }
  189. }
  190. rcu_read_unlock();
  191. spin_unlock(&clp->cl_lock);
  192. list_for_each_entry_safe(lo, tmp,
  193. &recall_list, plh_bulk_recall) {
  194. ino = lo->plh_inode;
  195. spin_lock(&ino->i_lock);
  196. set_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags);
  197. if (mark_matching_lsegs_invalid(lo, &free_me_list, &range))
  198. rv = NFS4ERR_DELAY;
  199. list_del_init(&lo->plh_bulk_recall);
  200. spin_unlock(&ino->i_lock);
  201. pnfs_free_lseg_list(&free_me_list);
  202. put_layout_hdr(lo);
  203. iput(ino);
  204. }
  205. return rv;
  206. }
  207. static u32 do_callback_layoutrecall(struct nfs_client *clp,
  208. struct cb_layoutrecallargs *args)
  209. {
  210. u32 res;
  211. dprintk("%s enter, type=%i\n", __func__, args->cbl_recall_type);
  212. if (args->cbl_recall_type == RETURN_FILE)
  213. res = initiate_file_draining(clp, args);
  214. else
  215. res = initiate_bulk_draining(clp, args);
  216. dprintk("%s returning %i\n", __func__, res);
  217. return res;
  218. }
  219. __be32 nfs4_callback_layoutrecall(struct cb_layoutrecallargs *args,
  220. void *dummy, struct cb_process_state *cps)
  221. {
  222. u32 res;
  223. dprintk("%s: -->\n", __func__);
  224. if (cps->clp)
  225. res = do_callback_layoutrecall(cps->clp, args);
  226. else
  227. res = NFS4ERR_OP_NOT_IN_SESSION;
  228. dprintk("%s: exit with status = %d\n", __func__, res);
  229. return cpu_to_be32(res);
  230. }
  231. static void pnfs_recall_all_layouts(struct nfs_client *clp)
  232. {
  233. struct cb_layoutrecallargs args;
  234. /* Pretend we got a CB_LAYOUTRECALL(ALL) */
  235. memset(&args, 0, sizeof(args));
  236. args.cbl_recall_type = RETURN_ALL;
  237. /* FIXME we ignore errors, what should we do? */
  238. do_callback_layoutrecall(clp, &args);
  239. }
  240. __be32 nfs4_callback_devicenotify(struct cb_devicenotifyargs *args,
  241. void *dummy, struct cb_process_state *cps)
  242. {
  243. int i;
  244. __be32 res = 0;
  245. struct nfs_client *clp = cps->clp;
  246. struct nfs_server *server = NULL;
  247. dprintk("%s: -->\n", __func__);
  248. if (!clp) {
  249. res = cpu_to_be32(NFS4ERR_OP_NOT_IN_SESSION);
  250. goto out;
  251. }
  252. for (i = 0; i < args->ndevs; i++) {
  253. struct cb_devicenotifyitem *dev = &args->devs[i];
  254. if (!server ||
  255. server->pnfs_curr_ld->id != dev->cbd_layout_type) {
  256. rcu_read_lock();
  257. list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
  258. if (server->pnfs_curr_ld &&
  259. server->pnfs_curr_ld->id == dev->cbd_layout_type) {
  260. rcu_read_unlock();
  261. goto found;
  262. }
  263. rcu_read_unlock();
  264. dprintk("%s: layout type %u not found\n",
  265. __func__, dev->cbd_layout_type);
  266. continue;
  267. }
  268. found:
  269. if (dev->cbd_notify_type == NOTIFY_DEVICEID4_CHANGE)
  270. dprintk("%s: NOTIFY_DEVICEID4_CHANGE not supported, "
  271. "deleting instead\n", __func__);
  272. nfs4_delete_deviceid(server->pnfs_curr_ld, clp, &dev->cbd_dev_id);
  273. }
  274. out:
  275. kfree(args->devs);
  276. dprintk("%s: exit with status = %u\n",
  277. __func__, be32_to_cpu(res));
  278. return res;
  279. }
  280. int nfs41_validate_delegation_stateid(struct nfs_delegation *delegation, const nfs4_stateid *stateid)
  281. {
  282. if (delegation == NULL)
  283. return 0;
  284. if (stateid->stateid.seqid != 0 &&
  285. stateid->stateid.seqid != delegation->stateid.stateid.seqid)
  286. return 0;
  287. if (memcmp(delegation->stateid.stateid.other,
  288. stateid->stateid.other,
  289. NFS4_STATEID_OTHER_SIZE))
  290. return 0;
  291. return 1;
  292. }
  293. /*
  294. * Validate the sequenceID sent by the server.
  295. * Return success if the sequenceID is one more than what we last saw on
  296. * this slot, accounting for wraparound. Increments the slot's sequence.
  297. *
  298. * We don't yet implement a duplicate request cache, instead we set the
  299. * back channel ca_maxresponsesize_cached to zero. This is OK for now
  300. * since we only currently implement idempotent callbacks anyway.
  301. *
  302. * We have a single slot backchannel at this time, so we don't bother
  303. * checking the used_slots bit array on the table. The lower layer guarantees
  304. * a single outstanding callback request at a time.
  305. */
  306. static __be32
  307. validate_seqid(struct nfs4_slot_table *tbl, struct cb_sequenceargs * args)
  308. {
  309. struct nfs4_slot *slot;
  310. dprintk("%s enter. slotid %d seqid %d\n",
  311. __func__, args->csa_slotid, args->csa_sequenceid);
  312. if (args->csa_slotid >= NFS41_BC_MAX_CALLBACKS)
  313. return htonl(NFS4ERR_BADSLOT);
  314. slot = tbl->slots + args->csa_slotid;
  315. dprintk("%s slot table seqid: %d\n", __func__, slot->seq_nr);
  316. /* Normal */
  317. if (likely(args->csa_sequenceid == slot->seq_nr + 1)) {
  318. slot->seq_nr++;
  319. goto out_ok;
  320. }
  321. /* Replay */
  322. if (args->csa_sequenceid == slot->seq_nr) {
  323. dprintk("%s seqid %d is a replay\n",
  324. __func__, args->csa_sequenceid);
  325. /* Signal process_op to set this error on next op */
  326. if (args->csa_cachethis == 0)
  327. return htonl(NFS4ERR_RETRY_UNCACHED_REP);
  328. /* The ca_maxresponsesize_cached is 0 with no DRC */
  329. else if (args->csa_cachethis == 1)
  330. return htonl(NFS4ERR_REP_TOO_BIG_TO_CACHE);
  331. }
  332. /* Wraparound */
  333. if (args->csa_sequenceid == 1 && (slot->seq_nr + 1) == 0) {
  334. slot->seq_nr = 1;
  335. goto out_ok;
  336. }
  337. /* Misordered request */
  338. return htonl(NFS4ERR_SEQ_MISORDERED);
  339. out_ok:
  340. tbl->highest_used_slotid = args->csa_slotid;
  341. return htonl(NFS4_OK);
  342. }
  343. /*
  344. * For each referring call triple, check the session's slot table for
  345. * a match. If the slot is in use and the sequence numbers match, the
  346. * client is still waiting for a response to the original request.
  347. */
  348. static bool referring_call_exists(struct nfs_client *clp,
  349. uint32_t nrclists,
  350. struct referring_call_list *rclists)
  351. {
  352. bool status = 0;
  353. int i, j;
  354. struct nfs4_session *session;
  355. struct nfs4_slot_table *tbl;
  356. struct referring_call_list *rclist;
  357. struct referring_call *ref;
  358. /*
  359. * XXX When client trunking is implemented, this becomes
  360. * a session lookup from within the loop
  361. */
  362. session = clp->cl_session;
  363. tbl = &session->fc_slot_table;
  364. for (i = 0; i < nrclists; i++) {
  365. rclist = &rclists[i];
  366. if (memcmp(session->sess_id.data,
  367. rclist->rcl_sessionid.data,
  368. NFS4_MAX_SESSIONID_LEN) != 0)
  369. continue;
  370. for (j = 0; j < rclist->rcl_nrefcalls; j++) {
  371. ref = &rclist->rcl_refcalls[j];
  372. dprintk("%s: sessionid %x:%x:%x:%x sequenceid %u "
  373. "slotid %u\n", __func__,
  374. ((u32 *)&rclist->rcl_sessionid.data)[0],
  375. ((u32 *)&rclist->rcl_sessionid.data)[1],
  376. ((u32 *)&rclist->rcl_sessionid.data)[2],
  377. ((u32 *)&rclist->rcl_sessionid.data)[3],
  378. ref->rc_sequenceid, ref->rc_slotid);
  379. spin_lock(&tbl->slot_tbl_lock);
  380. status = (test_bit(ref->rc_slotid, tbl->used_slots) &&
  381. tbl->slots[ref->rc_slotid].seq_nr ==
  382. ref->rc_sequenceid);
  383. spin_unlock(&tbl->slot_tbl_lock);
  384. if (status)
  385. goto out;
  386. }
  387. }
  388. out:
  389. return status;
  390. }
  391. __be32 nfs4_callback_sequence(struct cb_sequenceargs *args,
  392. struct cb_sequenceres *res,
  393. struct cb_process_state *cps)
  394. {
  395. struct nfs4_slot_table *tbl;
  396. struct nfs_client *clp;
  397. int i;
  398. __be32 status = htonl(NFS4ERR_BADSESSION);
  399. clp = nfs4_find_client_sessionid(cps->net, args->csa_addr, &args->csa_sessionid);
  400. if (clp == NULL)
  401. goto out;
  402. tbl = &clp->cl_session->bc_slot_table;
  403. spin_lock(&tbl->slot_tbl_lock);
  404. /* state manager is resetting the session */
  405. if (test_bit(NFS4_SESSION_DRAINING, &clp->cl_session->session_state)) {
  406. spin_unlock(&tbl->slot_tbl_lock);
  407. status = htonl(NFS4ERR_DELAY);
  408. /* Return NFS4ERR_BADSESSION if we're draining the session
  409. * in order to reset it.
  410. */
  411. if (test_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state))
  412. status = htonl(NFS4ERR_BADSESSION);
  413. goto out;
  414. }
  415. status = validate_seqid(&clp->cl_session->bc_slot_table, args);
  416. spin_unlock(&tbl->slot_tbl_lock);
  417. if (status)
  418. goto out;
  419. cps->slotid = args->csa_slotid;
  420. /*
  421. * Check for pending referring calls. If a match is found, a
  422. * related callback was received before the response to the original
  423. * call.
  424. */
  425. if (referring_call_exists(clp, args->csa_nrclists, args->csa_rclists)) {
  426. status = htonl(NFS4ERR_DELAY);
  427. goto out;
  428. }
  429. memcpy(&res->csr_sessionid, &args->csa_sessionid,
  430. sizeof(res->csr_sessionid));
  431. res->csr_sequenceid = args->csa_sequenceid;
  432. res->csr_slotid = args->csa_slotid;
  433. res->csr_highestslotid = NFS41_BC_MAX_CALLBACKS - 1;
  434. res->csr_target_highestslotid = NFS41_BC_MAX_CALLBACKS - 1;
  435. out:
  436. cps->clp = clp; /* put in nfs4_callback_compound */
  437. for (i = 0; i < args->csa_nrclists; i++)
  438. kfree(args->csa_rclists[i].rcl_refcalls);
  439. kfree(args->csa_rclists);
  440. if (status == htonl(NFS4ERR_RETRY_UNCACHED_REP)) {
  441. cps->drc_status = status;
  442. status = 0;
  443. } else
  444. res->csr_status = status;
  445. dprintk("%s: exit with status = %d res->csr_status %d\n", __func__,
  446. ntohl(status), ntohl(res->csr_status));
  447. return status;
  448. }
  449. static bool
  450. validate_bitmap_values(unsigned long mask)
  451. {
  452. return (mask & ~RCA4_TYPE_MASK_ALL) == 0;
  453. }
  454. __be32 nfs4_callback_recallany(struct cb_recallanyargs *args, void *dummy,
  455. struct cb_process_state *cps)
  456. {
  457. __be32 status;
  458. fmode_t flags = 0;
  459. status = cpu_to_be32(NFS4ERR_OP_NOT_IN_SESSION);
  460. if (!cps->clp) /* set in cb_sequence */
  461. goto out;
  462. dprintk_rcu("NFS: RECALL_ANY callback request from %s\n",
  463. rpc_peeraddr2str(cps->clp->cl_rpcclient, RPC_DISPLAY_ADDR));
  464. status = cpu_to_be32(NFS4ERR_INVAL);
  465. if (!validate_bitmap_values(args->craa_type_mask))
  466. goto out;
  467. status = cpu_to_be32(NFS4_OK);
  468. if (test_bit(RCA4_TYPE_MASK_RDATA_DLG, (const unsigned long *)
  469. &args->craa_type_mask))
  470. flags = FMODE_READ;
  471. if (test_bit(RCA4_TYPE_MASK_WDATA_DLG, (const unsigned long *)
  472. &args->craa_type_mask))
  473. flags |= FMODE_WRITE;
  474. if (test_bit(RCA4_TYPE_MASK_FILE_LAYOUT, (const unsigned long *)
  475. &args->craa_type_mask))
  476. pnfs_recall_all_layouts(cps->clp);
  477. if (flags)
  478. nfs_expire_all_delegation_types(cps->clp, flags);
  479. out:
  480. dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
  481. return status;
  482. }
  483. /* Reduce the fore channel's max_slots to the target value */
  484. __be32 nfs4_callback_recallslot(struct cb_recallslotargs *args, void *dummy,
  485. struct cb_process_state *cps)
  486. {
  487. struct nfs4_slot_table *fc_tbl;
  488. __be32 status;
  489. status = htonl(NFS4ERR_OP_NOT_IN_SESSION);
  490. if (!cps->clp) /* set in cb_sequence */
  491. goto out;
  492. dprintk_rcu("NFS: CB_RECALL_SLOT request from %s target max slots %d\n",
  493. rpc_peeraddr2str(cps->clp->cl_rpcclient, RPC_DISPLAY_ADDR),
  494. args->crsa_target_max_slots);
  495. fc_tbl = &cps->clp->cl_session->fc_slot_table;
  496. status = htonl(NFS4ERR_BAD_HIGH_SLOT);
  497. if (args->crsa_target_max_slots > fc_tbl->max_slots ||
  498. args->crsa_target_max_slots < 1)
  499. goto out;
  500. status = htonl(NFS4_OK);
  501. if (args->crsa_target_max_slots == fc_tbl->max_slots)
  502. goto out;
  503. fc_tbl->target_max_slots = args->crsa_target_max_slots;
  504. nfs41_handle_recall_slot(cps->clp);
  505. out:
  506. dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
  507. return status;
  508. }
  509. #endif /* CONFIG_NFS_V4_1 */