svclock.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978
  1. /*
  2. * linux/fs/lockd/svclock.c
  3. *
  4. * Handling of server-side locks, mostly of the blocked variety.
  5. * This is the ugliest part of lockd because we tread on very thin ice.
  6. * GRANT and CANCEL calls may get stuck, meet in mid-flight, etc.
  7. * IMNSHO introducing the grant callback into the NLM protocol was one
  8. * of the worst ideas Sun ever had. Except maybe for the idea of doing
  9. * NFS file locking at all.
  10. *
  11. * I'm trying hard to avoid race conditions by protecting most accesses
  12. * to a file's list of blocked locks through a semaphore. The global
  13. * list of blocked locks is not protected in this fashion however.
  14. * Therefore, some functions (such as the RPC callback for the async grant
  15. * call) move blocked locks towards the head of the list *while some other
  16. * process might be traversing it*. This should not be a problem in
  17. * practice, because this will only cause functions traversing the list
  18. * to visit some blocks twice.
  19. *
  20. * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
  21. */
  22. #include <linux/types.h>
  23. #include <linux/slab.h>
  24. #include <linux/errno.h>
  25. #include <linux/kernel.h>
  26. #include <linux/sched.h>
  27. #include <linux/sunrpc/clnt.h>
  28. #include <linux/sunrpc/svc.h>
  29. #include <linux/lockd/nlm.h>
  30. #include <linux/lockd/lockd.h>
  31. #include <linux/kthread.h>
  32. #define NLMDBG_FACILITY NLMDBG_SVCLOCK
  33. #ifdef CONFIG_LOCKD_V4
  34. #define nlm_deadlock nlm4_deadlock
  35. #else
  36. #define nlm_deadlock nlm_lck_denied
  37. #endif
  38. static void nlmsvc_release_block(struct nlm_block *block);
  39. static void nlmsvc_insert_block(struct nlm_block *block, unsigned long);
  40. static void nlmsvc_remove_block(struct nlm_block *block);
  41. static int nlmsvc_setgrantargs(struct nlm_rqst *call, struct nlm_lock *lock);
  42. static void nlmsvc_freegrantargs(struct nlm_rqst *call);
  43. static const struct rpc_call_ops nlmsvc_grant_ops;
  44. /*
  45. * The list of blocked locks to retry
  46. */
  47. static LIST_HEAD(nlm_blocked);
  48. static DEFINE_SPINLOCK(nlm_blocked_lock);
  49. #ifdef LOCKD_DEBUG
  50. static const char *nlmdbg_cookie2a(const struct nlm_cookie *cookie)
  51. {
  52. /*
  53. * We can get away with a static buffer because we're only
  54. * called with BKL held.
  55. */
  56. static char buf[2*NLM_MAXCOOKIELEN+1];
  57. unsigned int i, len = sizeof(buf);
  58. char *p = buf;
  59. len--; /* allow for trailing \0 */
  60. if (len < 3)
  61. return "???";
  62. for (i = 0 ; i < cookie->len ; i++) {
  63. if (len < 2) {
  64. strcpy(p-3, "...");
  65. break;
  66. }
  67. sprintf(p, "%02x", cookie->data[i]);
  68. p += 2;
  69. len -= 2;
  70. }
  71. *p = '\0';
  72. return buf;
  73. }
  74. #endif
  75. /*
  76. * Insert a blocked lock into the global list
  77. */
  78. static void
  79. nlmsvc_insert_block_locked(struct nlm_block *block, unsigned long when)
  80. {
  81. struct nlm_block *b;
  82. struct list_head *pos;
  83. dprintk("lockd: nlmsvc_insert_block(%p, %ld)\n", block, when);
  84. if (list_empty(&block->b_list)) {
  85. kref_get(&block->b_count);
  86. } else {
  87. list_del_init(&block->b_list);
  88. }
  89. pos = &nlm_blocked;
  90. if (when != NLM_NEVER) {
  91. if ((when += jiffies) == NLM_NEVER)
  92. when ++;
  93. list_for_each(pos, &nlm_blocked) {
  94. b = list_entry(pos, struct nlm_block, b_list);
  95. if (time_after(b->b_when,when) || b->b_when == NLM_NEVER)
  96. break;
  97. }
  98. /* On normal exit from the loop, pos == &nlm_blocked,
  99. * so we will be adding to the end of the list - good
  100. */
  101. }
  102. list_add_tail(&block->b_list, pos);
  103. block->b_when = when;
  104. }
  105. static void nlmsvc_insert_block(struct nlm_block *block, unsigned long when)
  106. {
  107. spin_lock(&nlm_blocked_lock);
  108. nlmsvc_insert_block_locked(block, when);
  109. spin_unlock(&nlm_blocked_lock);
  110. }
  111. /*
  112. * Remove a block from the global list
  113. */
  114. static inline void
  115. nlmsvc_remove_block(struct nlm_block *block)
  116. {
  117. if (!list_empty(&block->b_list)) {
  118. spin_lock(&nlm_blocked_lock);
  119. list_del_init(&block->b_list);
  120. spin_unlock(&nlm_blocked_lock);
  121. nlmsvc_release_block(block);
  122. }
  123. }
  124. /*
  125. * Find a block for a given lock
  126. */
  127. static struct nlm_block *
  128. nlmsvc_lookup_block(struct nlm_file *file, struct nlm_lock *lock)
  129. {
  130. struct nlm_block *block;
  131. struct file_lock *fl;
  132. dprintk("lockd: nlmsvc_lookup_block f=%p pd=%d %Ld-%Ld ty=%d\n",
  133. file, lock->fl.fl_pid,
  134. (long long)lock->fl.fl_start,
  135. (long long)lock->fl.fl_end, lock->fl.fl_type);
  136. list_for_each_entry(block, &nlm_blocked, b_list) {
  137. fl = &block->b_call->a_args.lock.fl;
  138. dprintk("lockd: check f=%p pd=%d %Ld-%Ld ty=%d cookie=%s\n",
  139. block->b_file, fl->fl_pid,
  140. (long long)fl->fl_start,
  141. (long long)fl->fl_end, fl->fl_type,
  142. nlmdbg_cookie2a(&block->b_call->a_args.cookie));
  143. if (block->b_file == file && nlm_compare_locks(fl, &lock->fl)) {
  144. kref_get(&block->b_count);
  145. return block;
  146. }
  147. }
  148. return NULL;
  149. }
  150. static inline int nlm_cookie_match(struct nlm_cookie *a, struct nlm_cookie *b)
  151. {
  152. if (a->len != b->len)
  153. return 0;
  154. if (memcmp(a->data, b->data, a->len))
  155. return 0;
  156. return 1;
  157. }
  158. /*
  159. * Find a block with a given NLM cookie.
  160. */
  161. static inline struct nlm_block *
  162. nlmsvc_find_block(struct nlm_cookie *cookie)
  163. {
  164. struct nlm_block *block;
  165. list_for_each_entry(block, &nlm_blocked, b_list) {
  166. if (nlm_cookie_match(&block->b_call->a_args.cookie,cookie))
  167. goto found;
  168. }
  169. return NULL;
  170. found:
  171. dprintk("nlmsvc_find_block(%s): block=%p\n", nlmdbg_cookie2a(cookie), block);
  172. kref_get(&block->b_count);
  173. return block;
  174. }
  175. /*
  176. * Create a block and initialize it.
  177. *
  178. * Note: we explicitly set the cookie of the grant reply to that of
  179. * the blocked lock request. The spec explicitly mentions that the client
  180. * should _not_ rely on the callback containing the same cookie as the
  181. * request, but (as I found out later) that's because some implementations
  182. * do just this. Never mind the standards comittees, they support our
  183. * logging industries.
  184. *
  185. * 10 years later: I hope we can safely ignore these old and broken
  186. * clients by now. Let's fix this so we can uniquely identify an incoming
  187. * GRANTED_RES message by cookie, without having to rely on the client's IP
  188. * address. --okir
  189. */
  190. static struct nlm_block *
  191. nlmsvc_create_block(struct svc_rqst *rqstp, struct nlm_host *host,
  192. struct nlm_file *file, struct nlm_lock *lock,
  193. struct nlm_cookie *cookie)
  194. {
  195. struct nlm_block *block;
  196. struct nlm_rqst *call = NULL;
  197. nlm_get_host(host);
  198. call = nlm_alloc_call(host);
  199. if (call == NULL)
  200. return NULL;
  201. /* Allocate memory for block, and initialize arguments */
  202. block = kzalloc(sizeof(*block), GFP_KERNEL);
  203. if (block == NULL)
  204. goto failed;
  205. kref_init(&block->b_count);
  206. INIT_LIST_HEAD(&block->b_list);
  207. INIT_LIST_HEAD(&block->b_flist);
  208. if (!nlmsvc_setgrantargs(call, lock))
  209. goto failed_free;
  210. /* Set notifier function for VFS, and init args */
  211. call->a_args.lock.fl.fl_flags |= FL_SLEEP;
  212. call->a_args.lock.fl.fl_lmops = &nlmsvc_lock_operations;
  213. nlmclnt_next_cookie(&call->a_args.cookie);
  214. dprintk("lockd: created block %p...\n", block);
  215. /* Create and initialize the block */
  216. block->b_daemon = rqstp->rq_server;
  217. block->b_host = host;
  218. block->b_file = file;
  219. block->b_fl = NULL;
  220. file->f_count++;
  221. /* Add to file's list of blocks */
  222. list_add(&block->b_flist, &file->f_blocks);
  223. /* Set up RPC arguments for callback */
  224. block->b_call = call;
  225. call->a_flags = RPC_TASK_ASYNC;
  226. call->a_block = block;
  227. return block;
  228. failed_free:
  229. kfree(block);
  230. failed:
  231. nlmsvc_release_call(call);
  232. return NULL;
  233. }
  234. /*
  235. * Delete a block.
  236. * It is the caller's responsibility to check whether the file
  237. * can be closed hereafter.
  238. */
  239. static int nlmsvc_unlink_block(struct nlm_block *block)
  240. {
  241. int status;
  242. dprintk("lockd: unlinking block %p...\n", block);
  243. /* Remove block from list */
  244. status = posix_unblock_lock(block->b_file->f_file, &block->b_call->a_args.lock.fl);
  245. nlmsvc_remove_block(block);
  246. return status;
  247. }
  248. static void nlmsvc_free_block(struct kref *kref)
  249. {
  250. struct nlm_block *block = container_of(kref, struct nlm_block, b_count);
  251. struct nlm_file *file = block->b_file;
  252. dprintk("lockd: freeing block %p...\n", block);
  253. /* Remove block from file's list of blocks */
  254. mutex_lock(&file->f_mutex);
  255. list_del_init(&block->b_flist);
  256. mutex_unlock(&file->f_mutex);
  257. nlmsvc_freegrantargs(block->b_call);
  258. nlmsvc_release_call(block->b_call);
  259. nlm_release_file(block->b_file);
  260. kfree(block->b_fl);
  261. kfree(block);
  262. }
  263. static void nlmsvc_release_block(struct nlm_block *block)
  264. {
  265. if (block != NULL)
  266. kref_put(&block->b_count, nlmsvc_free_block);
  267. }
  268. /*
  269. * Loop over all blocks and delete blocks held by
  270. * a matching host.
  271. */
  272. void nlmsvc_traverse_blocks(struct nlm_host *host,
  273. struct nlm_file *file,
  274. nlm_host_match_fn_t match)
  275. {
  276. struct nlm_block *block, *next;
  277. restart:
  278. mutex_lock(&file->f_mutex);
  279. list_for_each_entry_safe(block, next, &file->f_blocks, b_flist) {
  280. if (!match(block->b_host, host))
  281. continue;
  282. /* Do not destroy blocks that are not on
  283. * the global retry list - why? */
  284. if (list_empty(&block->b_list))
  285. continue;
  286. kref_get(&block->b_count);
  287. mutex_unlock(&file->f_mutex);
  288. nlmsvc_unlink_block(block);
  289. nlmsvc_release_block(block);
  290. goto restart;
  291. }
  292. mutex_unlock(&file->f_mutex);
  293. }
  294. /*
  295. * Initialize arguments for GRANTED call. The nlm_rqst structure
  296. * has been cleared already.
  297. */
  298. static int nlmsvc_setgrantargs(struct nlm_rqst *call, struct nlm_lock *lock)
  299. {
  300. locks_copy_lock(&call->a_args.lock.fl, &lock->fl);
  301. memcpy(&call->a_args.lock.fh, &lock->fh, sizeof(call->a_args.lock.fh));
  302. call->a_args.lock.caller = utsname()->nodename;
  303. call->a_args.lock.oh.len = lock->oh.len;
  304. /* set default data area */
  305. call->a_args.lock.oh.data = call->a_owner;
  306. call->a_args.lock.svid = lock->fl.fl_pid;
  307. if (lock->oh.len > NLMCLNT_OHSIZE) {
  308. void *data = kmalloc(lock->oh.len, GFP_KERNEL);
  309. if (!data)
  310. return 0;
  311. call->a_args.lock.oh.data = (u8 *) data;
  312. }
  313. memcpy(call->a_args.lock.oh.data, lock->oh.data, lock->oh.len);
  314. return 1;
  315. }
  316. static void nlmsvc_freegrantargs(struct nlm_rqst *call)
  317. {
  318. if (call->a_args.lock.oh.data != call->a_owner)
  319. kfree(call->a_args.lock.oh.data);
  320. locks_release_private(&call->a_args.lock.fl);
  321. }
  322. /*
  323. * Deferred lock request handling for non-blocking lock
  324. */
  325. static __be32
  326. nlmsvc_defer_lock_rqst(struct svc_rqst *rqstp, struct nlm_block *block)
  327. {
  328. __be32 status = nlm_lck_denied_nolocks;
  329. block->b_flags |= B_QUEUED;
  330. nlmsvc_insert_block(block, NLM_TIMEOUT);
  331. block->b_cache_req = &rqstp->rq_chandle;
  332. if (rqstp->rq_chandle.defer) {
  333. block->b_deferred_req =
  334. rqstp->rq_chandle.defer(block->b_cache_req);
  335. if (block->b_deferred_req != NULL)
  336. status = nlm_drop_reply;
  337. }
  338. dprintk("lockd: nlmsvc_defer_lock_rqst block %p flags %d status %d\n",
  339. block, block->b_flags, ntohl(status));
  340. return status;
  341. }
  342. /*
  343. * Attempt to establish a lock, and if it can't be granted, block it
  344. * if required.
  345. */
  346. __be32
  347. nlmsvc_lock(struct svc_rqst *rqstp, struct nlm_file *file,
  348. struct nlm_host *host, struct nlm_lock *lock, int wait,
  349. struct nlm_cookie *cookie, int reclaim)
  350. {
  351. struct nlm_block *block = NULL;
  352. int error;
  353. __be32 ret;
  354. dprintk("lockd: nlmsvc_lock(%s/%ld, ty=%d, pi=%d, %Ld-%Ld, bl=%d)\n",
  355. file->f_file->f_path.dentry->d_inode->i_sb->s_id,
  356. file->f_file->f_path.dentry->d_inode->i_ino,
  357. lock->fl.fl_type, lock->fl.fl_pid,
  358. (long long)lock->fl.fl_start,
  359. (long long)lock->fl.fl_end,
  360. wait);
  361. /* Lock file against concurrent access */
  362. mutex_lock(&file->f_mutex);
  363. /* Get existing block (in case client is busy-waiting)
  364. * or create new block
  365. */
  366. block = nlmsvc_lookup_block(file, lock);
  367. if (block == NULL) {
  368. block = nlmsvc_create_block(rqstp, host, file, lock, cookie);
  369. ret = nlm_lck_denied_nolocks;
  370. if (block == NULL)
  371. goto out;
  372. lock = &block->b_call->a_args.lock;
  373. } else
  374. lock->fl.fl_flags &= ~FL_SLEEP;
  375. if (block->b_flags & B_QUEUED) {
  376. dprintk("lockd: nlmsvc_lock deferred block %p flags %d\n",
  377. block, block->b_flags);
  378. if (block->b_granted) {
  379. nlmsvc_unlink_block(block);
  380. ret = nlm_granted;
  381. goto out;
  382. }
  383. if (block->b_flags & B_TIMED_OUT) {
  384. nlmsvc_unlink_block(block);
  385. ret = nlm_lck_denied;
  386. goto out;
  387. }
  388. ret = nlm_drop_reply;
  389. goto out;
  390. }
  391. if (locks_in_grace() && !reclaim) {
  392. ret = nlm_lck_denied_grace_period;
  393. goto out;
  394. }
  395. if (reclaim && !locks_in_grace()) {
  396. ret = nlm_lck_denied_grace_period;
  397. goto out;
  398. }
  399. if (!wait)
  400. lock->fl.fl_flags &= ~FL_SLEEP;
  401. error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL);
  402. lock->fl.fl_flags &= ~FL_SLEEP;
  403. dprintk("lockd: vfs_lock_file returned %d\n", error);
  404. switch (error) {
  405. case 0:
  406. ret = nlm_granted;
  407. goto out;
  408. case -EAGAIN:
  409. /*
  410. * If this is a blocking request for an
  411. * already pending lock request then we need
  412. * to put it back on lockd's block list
  413. */
  414. if (wait)
  415. break;
  416. ret = nlm_lck_denied;
  417. goto out;
  418. case FILE_LOCK_DEFERRED:
  419. if (wait)
  420. break;
  421. /* Filesystem lock operation is in progress
  422. Add it to the queue waiting for callback */
  423. ret = nlmsvc_defer_lock_rqst(rqstp, block);
  424. goto out;
  425. case -EDEADLK:
  426. ret = nlm_deadlock;
  427. goto out;
  428. default: /* includes ENOLCK */
  429. ret = nlm_lck_denied_nolocks;
  430. goto out;
  431. }
  432. ret = nlm_lck_blocked;
  433. /* Append to list of blocked */
  434. nlmsvc_insert_block(block, NLM_NEVER);
  435. out:
  436. mutex_unlock(&file->f_mutex);
  437. nlmsvc_release_block(block);
  438. dprintk("lockd: nlmsvc_lock returned %u\n", ret);
  439. return ret;
  440. }
  441. /*
  442. * Test for presence of a conflicting lock.
  443. */
  444. __be32
  445. nlmsvc_testlock(struct svc_rqst *rqstp, struct nlm_file *file,
  446. struct nlm_host *host, struct nlm_lock *lock,
  447. struct nlm_lock *conflock, struct nlm_cookie *cookie)
  448. {
  449. struct nlm_block *block = NULL;
  450. int error;
  451. __be32 ret;
  452. dprintk("lockd: nlmsvc_testlock(%s/%ld, ty=%d, %Ld-%Ld)\n",
  453. file->f_file->f_path.dentry->d_inode->i_sb->s_id,
  454. file->f_file->f_path.dentry->d_inode->i_ino,
  455. lock->fl.fl_type,
  456. (long long)lock->fl.fl_start,
  457. (long long)lock->fl.fl_end);
  458. /* Get existing block (in case client is busy-waiting) */
  459. block = nlmsvc_lookup_block(file, lock);
  460. if (block == NULL) {
  461. struct file_lock *conf = kzalloc(sizeof(*conf), GFP_KERNEL);
  462. if (conf == NULL)
  463. return nlm_granted;
  464. block = nlmsvc_create_block(rqstp, host, file, lock, cookie);
  465. if (block == NULL) {
  466. kfree(conf);
  467. return nlm_granted;
  468. }
  469. block->b_fl = conf;
  470. }
  471. if (block->b_flags & B_QUEUED) {
  472. dprintk("lockd: nlmsvc_testlock deferred block %p flags %d fl %p\n",
  473. block, block->b_flags, block->b_fl);
  474. if (block->b_flags & B_TIMED_OUT) {
  475. nlmsvc_unlink_block(block);
  476. ret = nlm_lck_denied;
  477. goto out;
  478. }
  479. if (block->b_flags & B_GOT_CALLBACK) {
  480. nlmsvc_unlink_block(block);
  481. if (block->b_fl != NULL
  482. && block->b_fl->fl_type != F_UNLCK) {
  483. lock->fl = *block->b_fl;
  484. goto conf_lock;
  485. } else {
  486. ret = nlm_granted;
  487. goto out;
  488. }
  489. }
  490. ret = nlm_drop_reply;
  491. goto out;
  492. }
  493. if (locks_in_grace()) {
  494. ret = nlm_lck_denied_grace_period;
  495. goto out;
  496. }
  497. error = vfs_test_lock(file->f_file, &lock->fl);
  498. if (error == FILE_LOCK_DEFERRED) {
  499. ret = nlmsvc_defer_lock_rqst(rqstp, block);
  500. goto out;
  501. }
  502. if (error) {
  503. ret = nlm_lck_denied_nolocks;
  504. goto out;
  505. }
  506. if (lock->fl.fl_type == F_UNLCK) {
  507. ret = nlm_granted;
  508. goto out;
  509. }
  510. conf_lock:
  511. dprintk("lockd: conflicting lock(ty=%d, %Ld-%Ld)\n",
  512. lock->fl.fl_type, (long long)lock->fl.fl_start,
  513. (long long)lock->fl.fl_end);
  514. conflock->caller = "somehost"; /* FIXME */
  515. conflock->len = strlen(conflock->caller);
  516. conflock->oh.len = 0; /* don't return OH info */
  517. conflock->svid = lock->fl.fl_pid;
  518. conflock->fl.fl_type = lock->fl.fl_type;
  519. conflock->fl.fl_start = lock->fl.fl_start;
  520. conflock->fl.fl_end = lock->fl.fl_end;
  521. ret = nlm_lck_denied;
  522. out:
  523. if (block)
  524. nlmsvc_release_block(block);
  525. return ret;
  526. }
  527. /*
  528. * Remove a lock.
  529. * This implies a CANCEL call: We send a GRANT_MSG, the client replies
  530. * with a GRANT_RES call which gets lost, and calls UNLOCK immediately
  531. * afterwards. In this case the block will still be there, and hence
  532. * must be removed.
  533. */
  534. __be32
  535. nlmsvc_unlock(struct nlm_file *file, struct nlm_lock *lock)
  536. {
  537. int error;
  538. dprintk("lockd: nlmsvc_unlock(%s/%ld, pi=%d, %Ld-%Ld)\n",
  539. file->f_file->f_path.dentry->d_inode->i_sb->s_id,
  540. file->f_file->f_path.dentry->d_inode->i_ino,
  541. lock->fl.fl_pid,
  542. (long long)lock->fl.fl_start,
  543. (long long)lock->fl.fl_end);
  544. /* First, cancel any lock that might be there */
  545. nlmsvc_cancel_blocked(file, lock);
  546. lock->fl.fl_type = F_UNLCK;
  547. error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL);
  548. return (error < 0)? nlm_lck_denied_nolocks : nlm_granted;
  549. }
  550. /*
  551. * Cancel a previously blocked request.
  552. *
  553. * A cancel request always overrides any grant that may currently
  554. * be in progress.
  555. * The calling procedure must check whether the file can be closed.
  556. */
  557. __be32
  558. nlmsvc_cancel_blocked(struct nlm_file *file, struct nlm_lock *lock)
  559. {
  560. struct nlm_block *block;
  561. int status = 0;
  562. dprintk("lockd: nlmsvc_cancel(%s/%ld, pi=%d, %Ld-%Ld)\n",
  563. file->f_file->f_path.dentry->d_inode->i_sb->s_id,
  564. file->f_file->f_path.dentry->d_inode->i_ino,
  565. lock->fl.fl_pid,
  566. (long long)lock->fl.fl_start,
  567. (long long)lock->fl.fl_end);
  568. if (locks_in_grace())
  569. return nlm_lck_denied_grace_period;
  570. mutex_lock(&file->f_mutex);
  571. block = nlmsvc_lookup_block(file, lock);
  572. mutex_unlock(&file->f_mutex);
  573. if (block != NULL) {
  574. vfs_cancel_lock(block->b_file->f_file,
  575. &block->b_call->a_args.lock.fl);
  576. status = nlmsvc_unlink_block(block);
  577. nlmsvc_release_block(block);
  578. }
  579. return status ? nlm_lck_denied : nlm_granted;
  580. }
  581. /*
  582. * This is a callback from the filesystem for VFS file lock requests.
  583. * It will be used if lm_grant is defined and the filesystem can not
  584. * respond to the request immediately.
  585. * For GETLK request it will copy the reply to the nlm_block.
  586. * For SETLK or SETLKW request it will get the local posix lock.
  587. * In all cases it will move the block to the head of nlm_blocked q where
  588. * nlmsvc_retry_blocked() can send back a reply for SETLKW or revisit the
  589. * deferred rpc for GETLK and SETLK.
  590. */
  591. static void
  592. nlmsvc_update_deferred_block(struct nlm_block *block, struct file_lock *conf,
  593. int result)
  594. {
  595. block->b_flags |= B_GOT_CALLBACK;
  596. if (result == 0)
  597. block->b_granted = 1;
  598. else
  599. block->b_flags |= B_TIMED_OUT;
  600. if (conf) {
  601. if (block->b_fl)
  602. __locks_copy_lock(block->b_fl, conf);
  603. }
  604. }
  605. static int nlmsvc_grant_deferred(struct file_lock *fl, struct file_lock *conf,
  606. int result)
  607. {
  608. struct nlm_block *block;
  609. int rc = -ENOENT;
  610. spin_lock(&nlm_blocked_lock);
  611. list_for_each_entry(block, &nlm_blocked, b_list) {
  612. if (nlm_compare_locks(&block->b_call->a_args.lock.fl, fl)) {
  613. dprintk("lockd: nlmsvc_notify_blocked block %p flags %d\n",
  614. block, block->b_flags);
  615. if (block->b_flags & B_QUEUED) {
  616. if (block->b_flags & B_TIMED_OUT) {
  617. rc = -ENOLCK;
  618. break;
  619. }
  620. nlmsvc_update_deferred_block(block, conf, result);
  621. } else if (result == 0)
  622. block->b_granted = 1;
  623. nlmsvc_insert_block_locked(block, 0);
  624. svc_wake_up(block->b_daemon);
  625. rc = 0;
  626. break;
  627. }
  628. }
  629. spin_unlock(&nlm_blocked_lock);
  630. if (rc == -ENOENT)
  631. printk(KERN_WARNING "lockd: grant for unknown block\n");
  632. return rc;
  633. }
  634. /*
  635. * Unblock a blocked lock request. This is a callback invoked from the
  636. * VFS layer when a lock on which we blocked is removed.
  637. *
  638. * This function doesn't grant the blocked lock instantly, but rather moves
  639. * the block to the head of nlm_blocked where it can be picked up by lockd.
  640. */
  641. static void
  642. nlmsvc_notify_blocked(struct file_lock *fl)
  643. {
  644. struct nlm_block *block;
  645. dprintk("lockd: VFS unblock notification for block %p\n", fl);
  646. spin_lock(&nlm_blocked_lock);
  647. list_for_each_entry(block, &nlm_blocked, b_list) {
  648. if (nlm_compare_locks(&block->b_call->a_args.lock.fl, fl)) {
  649. nlmsvc_insert_block_locked(block, 0);
  650. spin_unlock(&nlm_blocked_lock);
  651. svc_wake_up(block->b_daemon);
  652. return;
  653. }
  654. }
  655. spin_unlock(&nlm_blocked_lock);
  656. printk(KERN_WARNING "lockd: notification for unknown block!\n");
  657. }
  658. static int nlmsvc_same_owner(struct file_lock *fl1, struct file_lock *fl2)
  659. {
  660. return fl1->fl_owner == fl2->fl_owner && fl1->fl_pid == fl2->fl_pid;
  661. }
  662. const struct lock_manager_operations nlmsvc_lock_operations = {
  663. .lm_compare_owner = nlmsvc_same_owner,
  664. .lm_notify = nlmsvc_notify_blocked,
  665. .lm_grant = nlmsvc_grant_deferred,
  666. };
  667. /*
  668. * Try to claim a lock that was previously blocked.
  669. *
  670. * Note that we use both the RPC_GRANTED_MSG call _and_ an async
  671. * RPC thread when notifying the client. This seems like overkill...
  672. * Here's why:
  673. * - we don't want to use a synchronous RPC thread, otherwise
  674. * we might find ourselves hanging on a dead portmapper.
  675. * - Some lockd implementations (e.g. HP) don't react to
  676. * RPC_GRANTED calls; they seem to insist on RPC_GRANTED_MSG calls.
  677. */
  678. static void
  679. nlmsvc_grant_blocked(struct nlm_block *block)
  680. {
  681. struct nlm_file *file = block->b_file;
  682. struct nlm_lock *lock = &block->b_call->a_args.lock;
  683. int error;
  684. loff_t fl_start, fl_end;
  685. dprintk("lockd: grant blocked lock %p\n", block);
  686. kref_get(&block->b_count);
  687. /* Unlink block request from list */
  688. nlmsvc_unlink_block(block);
  689. /* If b_granted is true this means we've been here before.
  690. * Just retry the grant callback, possibly refreshing the RPC
  691. * binding */
  692. if (block->b_granted) {
  693. nlm_rebind_host(block->b_host);
  694. goto callback;
  695. }
  696. /* Try the lock operation again */
  697. /* vfs_lock_file() can mangle fl_start and fl_end, but we need
  698. * them unchanged for the GRANT_MSG
  699. */
  700. lock->fl.fl_flags |= FL_SLEEP;
  701. fl_start = lock->fl.fl_start;
  702. fl_end = lock->fl.fl_end;
  703. error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL);
  704. lock->fl.fl_flags &= ~FL_SLEEP;
  705. lock->fl.fl_start = fl_start;
  706. lock->fl.fl_end = fl_end;
  707. switch (error) {
  708. case 0:
  709. break;
  710. case FILE_LOCK_DEFERRED:
  711. dprintk("lockd: lock still blocked error %d\n", error);
  712. nlmsvc_insert_block(block, NLM_NEVER);
  713. nlmsvc_release_block(block);
  714. return;
  715. default:
  716. printk(KERN_WARNING "lockd: unexpected error %d in %s!\n",
  717. -error, __func__);
  718. nlmsvc_insert_block(block, 10 * HZ);
  719. nlmsvc_release_block(block);
  720. return;
  721. }
  722. callback:
  723. /* Lock was granted by VFS. */
  724. dprintk("lockd: GRANTing blocked lock.\n");
  725. block->b_granted = 1;
  726. /* keep block on the list, but don't reattempt until the RPC
  727. * completes or the submission fails
  728. */
  729. nlmsvc_insert_block(block, NLM_NEVER);
  730. /* Call the client -- use a soft RPC task since nlmsvc_retry_blocked
  731. * will queue up a new one if this one times out
  732. */
  733. error = nlm_async_call(block->b_call, NLMPROC_GRANTED_MSG,
  734. &nlmsvc_grant_ops);
  735. /* RPC submission failed, wait a bit and retry */
  736. if (error < 0)
  737. nlmsvc_insert_block(block, 10 * HZ);
  738. }
  739. /*
  740. * This is the callback from the RPC layer when the NLM_GRANTED_MSG
  741. * RPC call has succeeded or timed out.
  742. * Like all RPC callbacks, it is invoked by the rpciod process, so it
  743. * better not sleep. Therefore, we put the blocked lock on the nlm_blocked
  744. * chain once more in order to have it removed by lockd itself (which can
  745. * then sleep on the file semaphore without disrupting e.g. the nfs client).
  746. */
  747. static void nlmsvc_grant_callback(struct rpc_task *task, void *data)
  748. {
  749. struct nlm_rqst *call = data;
  750. struct nlm_block *block = call->a_block;
  751. unsigned long timeout;
  752. dprintk("lockd: GRANT_MSG RPC callback\n");
  753. spin_lock(&nlm_blocked_lock);
  754. /* if the block is not on a list at this point then it has
  755. * been invalidated. Don't try to requeue it.
  756. *
  757. * FIXME: it's possible that the block is removed from the list
  758. * after this check but before the nlmsvc_insert_block. In that
  759. * case it will be added back. Perhaps we need better locking
  760. * for nlm_blocked?
  761. */
  762. if (list_empty(&block->b_list))
  763. goto out;
  764. /* Technically, we should down the file semaphore here. Since we
  765. * move the block towards the head of the queue only, no harm
  766. * can be done, though. */
  767. if (task->tk_status < 0) {
  768. /* RPC error: Re-insert for retransmission */
  769. timeout = 10 * HZ;
  770. } else {
  771. /* Call was successful, now wait for client callback */
  772. timeout = 60 * HZ;
  773. }
  774. nlmsvc_insert_block_locked(block, timeout);
  775. svc_wake_up(block->b_daemon);
  776. out:
  777. spin_unlock(&nlm_blocked_lock);
  778. }
  779. /*
  780. * FIXME: nlmsvc_release_block() grabs a mutex. This is not allowed for an
  781. * .rpc_release rpc_call_op
  782. */
  783. static void nlmsvc_grant_release(void *data)
  784. {
  785. struct nlm_rqst *call = data;
  786. nlmsvc_release_block(call->a_block);
  787. }
  788. static const struct rpc_call_ops nlmsvc_grant_ops = {
  789. .rpc_call_done = nlmsvc_grant_callback,
  790. .rpc_release = nlmsvc_grant_release,
  791. };
  792. /*
  793. * We received a GRANT_RES callback. Try to find the corresponding
  794. * block.
  795. */
  796. void
  797. nlmsvc_grant_reply(struct nlm_cookie *cookie, __be32 status)
  798. {
  799. struct nlm_block *block;
  800. dprintk("grant_reply: looking for cookie %x, s=%d \n",
  801. *(unsigned int *)(cookie->data), status);
  802. if (!(block = nlmsvc_find_block(cookie)))
  803. return;
  804. if (block) {
  805. if (status == nlm_lck_denied_grace_period) {
  806. /* Try again in a couple of seconds */
  807. nlmsvc_insert_block(block, 10 * HZ);
  808. } else {
  809. /* Lock is now held by client, or has been rejected.
  810. * In both cases, the block should be removed. */
  811. nlmsvc_unlink_block(block);
  812. }
  813. }
  814. nlmsvc_release_block(block);
  815. }
  816. /* Helper function to handle retry of a deferred block.
  817. * If it is a blocking lock, call grant_blocked.
  818. * For a non-blocking lock or test lock, revisit the request.
  819. */
  820. static void
  821. retry_deferred_block(struct nlm_block *block)
  822. {
  823. if (!(block->b_flags & B_GOT_CALLBACK))
  824. block->b_flags |= B_TIMED_OUT;
  825. nlmsvc_insert_block(block, NLM_TIMEOUT);
  826. dprintk("revisit block %p flags %d\n", block, block->b_flags);
  827. if (block->b_deferred_req) {
  828. block->b_deferred_req->revisit(block->b_deferred_req, 0);
  829. block->b_deferred_req = NULL;
  830. }
  831. }
  832. /*
  833. * Retry all blocked locks that have been notified. This is where lockd
  834. * picks up locks that can be granted, or grant notifications that must
  835. * be retransmitted.
  836. */
  837. unsigned long
  838. nlmsvc_retry_blocked(void)
  839. {
  840. unsigned long timeout = MAX_SCHEDULE_TIMEOUT;
  841. struct nlm_block *block;
  842. spin_lock(&nlm_blocked_lock);
  843. while (!list_empty(&nlm_blocked) && !kthread_should_stop()) {
  844. block = list_entry(nlm_blocked.next, struct nlm_block, b_list);
  845. if (block->b_when == NLM_NEVER)
  846. break;
  847. if (time_after(block->b_when, jiffies)) {
  848. timeout = block->b_when - jiffies;
  849. break;
  850. }
  851. spin_unlock(&nlm_blocked_lock);
  852. dprintk("nlmsvc_retry_blocked(%p, when=%ld)\n",
  853. block, block->b_when);
  854. if (block->b_flags & B_QUEUED) {
  855. dprintk("nlmsvc_retry_blocked delete block (%p, granted=%d, flags=%d)\n",
  856. block, block->b_granted, block->b_flags);
  857. retry_deferred_block(block);
  858. } else
  859. nlmsvc_grant_blocked(block);
  860. spin_lock(&nlm_blocked_lock);
  861. }
  862. spin_unlock(&nlm_blocked_lock);
  863. return timeout;
  864. }