callback_proc.c 15 KB

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