svc4proc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:15k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/lockd/svc4proc.c
  3.  *
  4.  * Lockd server procedures. We don't implement the NLM_*_RES 
  5.  * procedures because we don't use the async procedures.
  6.  *
  7.  * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
  8.  */
  9. #include <linux/types.h>
  10. #include <linux/sched.h>
  11. #include <linux/slab.h>
  12. #include <linux/in.h>
  13. #include <linux/sunrpc/svc.h>
  14. #include <linux/sunrpc/clnt.h>
  15. #include <linux/nfsd/nfsd.h>
  16. #include <linux/lockd/lockd.h>
  17. #include <linux/lockd/share.h>
  18. #include <linux/lockd/sm_inter.h>
  19. #define NLMDBG_FACILITY NLMDBG_CLIENT
  20. static u32 nlm4svc_callback(struct svc_rqst *, u32, struct nlm_res *);
  21. static void nlm4svc_callback_exit(struct rpc_task *);
  22. /*
  23.  * Obtain client and file from arguments
  24.  */
  25. static u32
  26. nlm4svc_retrieve_args(struct svc_rqst *rqstp, struct nlm_args *argp,
  27. struct nlm_host **hostp, struct nlm_file **filp)
  28. {
  29. struct nlm_host *host = NULL;
  30. struct nlm_file *file = NULL;
  31. struct nlm_lock *lock = &argp->lock;
  32. u32 error = 0;
  33. /* nfsd callbacks must have been installed for this procedure */
  34. if (!nlmsvc_ops)
  35. return nlm_lck_denied_nolocks;
  36. /* Obtain handle for client host */
  37. if (rqstp->rq_client == NULL) {
  38. printk(KERN_NOTICE
  39. "lockd: unauthenticated request from (%08x:%d)n",
  40. ntohl(rqstp->rq_addr.sin_addr.s_addr),
  41. ntohs(rqstp->rq_addr.sin_port));
  42. return nlm_lck_denied_nolocks;
  43. }
  44. /* Obtain host handle */
  45. if (!(host = nlmsvc_lookup_host(rqstp))
  46.  || (argp->monitor && !host->h_monitored && nsm_monitor(host) < 0))
  47. goto no_locks;
  48. *hostp = host;
  49. /* Obtain file pointer. Not used by FREE_ALL call. */
  50. if (filp != NULL) {
  51. if ((error = nlm_lookup_file(rqstp, &file, &lock->fh)) != 0)
  52. goto no_locks;
  53. *filp = file;
  54. /* Set up the missing parts of the file_lock structure */
  55. lock->fl.fl_file  = &file->f_file;
  56. lock->fl.fl_owner = (fl_owner_t) host;
  57. }
  58. return 0;
  59. no_locks:
  60. if (host)
  61. nlm_release_host(host);
  62.   if (error)
  63. return error;
  64. return nlm_lck_denied_nolocks;
  65. }
  66. /*
  67.  * NULL: Test for presence of service
  68.  */
  69. static int
  70. nlm4svc_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
  71. {
  72. dprintk("lockd: NULL          calledn");
  73. return rpc_success;
  74. }
  75. /*
  76.  * TEST: Check for conflicting lock
  77.  */
  78. static int
  79. nlm4svc_proc_test(struct svc_rqst *rqstp, struct nlm_args *argp,
  80.          struct nlm_res  *resp)
  81. {
  82. struct nlm_host *host;
  83. struct nlm_file *file;
  84. dprintk("lockd: TEST4        calledn");
  85. resp->cookie = argp->cookie;
  86. /* Don't accept test requests during grace period */
  87. if (nlmsvc_grace_period) {
  88. resp->status = nlm_lck_denied_grace_period;
  89. return rpc_success;
  90. }
  91. /* Obtain client and file */
  92. if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
  93. return rpc_success;
  94. /* Now check for conflicting locks */
  95. resp->status = nlmsvc_testlock(file, &argp->lock, &resp->lock);
  96. dprintk("lockd: TEST4          status %dn", ntohl(resp->status));
  97. nlm_release_host(host);
  98. nlm_release_file(file);
  99. return rpc_success;
  100. }
  101. static int
  102. nlm4svc_proc_lock(struct svc_rqst *rqstp, struct nlm_args *argp,
  103.          struct nlm_res  *resp)
  104. {
  105. struct nlm_host *host;
  106. struct nlm_file *file;
  107. dprintk("lockd: LOCK          calledn");
  108. resp->cookie = argp->cookie;
  109. /* Don't accept new lock requests during grace period */
  110. if (nlmsvc_grace_period && !argp->reclaim) {
  111. resp->status = nlm_lck_denied_grace_period;
  112. return rpc_success;
  113. }
  114. /* Obtain client and file */
  115. if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
  116. return rpc_success;
  117. #if 0
  118. /* If supplied state doesn't match current state, we assume it's
  119.  * an old request that time-warped somehow. Any error return would
  120.  * do in this case because it's irrelevant anyway.
  121.  *
  122.  * NB: We don't retrieve the remote host's state yet.
  123.  */
  124. if (host->h_nsmstate && host->h_nsmstate != argp->state) {
  125. resp->status = nlm_lck_denied_nolocks;
  126. } else
  127. #endif
  128. /* Now try to lock the file */
  129. resp->status = nlmsvc_lock(rqstp, file, &argp->lock,
  130. argp->block, &argp->cookie);
  131. dprintk("lockd: LOCK          status %dn", ntohl(resp->status));
  132. nlm_release_host(host);
  133. nlm_release_file(file);
  134. return rpc_success;
  135. }
  136. static int
  137. nlm4svc_proc_cancel(struct svc_rqst *rqstp, struct nlm_args *argp,
  138.            struct nlm_res  *resp)
  139. {
  140. struct nlm_host *host;
  141. struct nlm_file *file;
  142. dprintk("lockd: CANCEL        calledn");
  143. resp->cookie = argp->cookie;
  144. /* Don't accept requests during grace period */
  145. if (nlmsvc_grace_period) {
  146. resp->status = nlm_lck_denied_grace_period;
  147. return rpc_success;
  148. }
  149. /* Obtain client and file */
  150. if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
  151. return rpc_success;
  152. /* Try to cancel request. */
  153. resp->status = nlmsvc_cancel_blocked(file, &argp->lock);
  154. dprintk("lockd: CANCEL        status %dn", ntohl(resp->status));
  155. nlm_release_host(host);
  156. nlm_release_file(file);
  157. return rpc_success;
  158. }
  159. /*
  160.  * UNLOCK: release a lock
  161.  */
  162. static int
  163. nlm4svc_proc_unlock(struct svc_rqst *rqstp, struct nlm_args *argp,
  164.            struct nlm_res  *resp)
  165. {
  166. struct nlm_host *host;
  167. struct nlm_file *file;
  168. dprintk("lockd: UNLOCK        calledn");
  169. resp->cookie = argp->cookie;
  170. /* Don't accept new lock requests during grace period */
  171. if (nlmsvc_grace_period) {
  172. resp->status = nlm_lck_denied_grace_period;
  173. return rpc_success;
  174. }
  175. /* Obtain client and file */
  176. if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
  177. return rpc_success;
  178. /* Now try to remove the lock */
  179. resp->status = nlmsvc_unlock(file, &argp->lock);
  180. dprintk("lockd: UNLOCK        status %dn", ntohl(resp->status));
  181. nlm_release_host(host);
  182. nlm_release_file(file);
  183. return rpc_success;
  184. }
  185. /*
  186.  * GRANTED: A server calls us to tell that a process' lock request
  187.  * was granted
  188.  */
  189. static int
  190. nlm4svc_proc_granted(struct svc_rqst *rqstp, struct nlm_args *argp,
  191.             struct nlm_res  *resp)
  192. {
  193. resp->cookie = argp->cookie;
  194. dprintk("lockd: GRANTED       calledn");
  195. resp->status = nlmclnt_grant(&argp->lock);
  196. dprintk("lockd: GRANTED       status %dn", ntohl(resp->status));
  197. return rpc_success;
  198. }
  199. /*
  200.  * `Async' versions of the above service routines. They aren't really,
  201.  * because we send the callback before the reply proper. I hope this
  202.  * doesn't break any clients.
  203.  */
  204. static int
  205. nlm4svc_proc_test_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
  206.      void      *resp)
  207. {
  208. struct nlm_res res;
  209. u32 stat;
  210. dprintk("lockd: TEST_MSG      calledn");
  211. memset(&res, 0, sizeof(res));
  212. if ((stat = nlm4svc_proc_test(rqstp, argp, &res)) == 0)
  213. stat = nlm4svc_callback(rqstp, NLMPROC_TEST_RES, &res);
  214. return stat;
  215. }
  216. static int
  217. nlm4svc_proc_lock_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
  218.      void      *resp)
  219. {
  220. struct nlm_res res;
  221. u32 stat;
  222. dprintk("lockd: LOCK_MSG      calledn");
  223. if ((stat = nlm4svc_proc_lock(rqstp, argp, &res)) == 0)
  224. stat = nlm4svc_callback(rqstp, NLMPROC_LOCK_RES, &res);
  225. return stat;
  226. }
  227. static int
  228. nlm4svc_proc_cancel_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
  229.        void        *resp)
  230. {
  231. struct nlm_res res;
  232. u32 stat;
  233. dprintk("lockd: CANCEL_MSG    calledn");
  234. if ((stat = nlm4svc_proc_cancel(rqstp, argp, &res)) == 0)
  235. stat = nlm4svc_callback(rqstp, NLMPROC_CANCEL_RES, &res);
  236. return stat;
  237. }
  238. static int
  239. nlm4svc_proc_unlock_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
  240.                                                void            *resp)
  241. {
  242. struct nlm_res res;
  243. u32 stat;
  244. dprintk("lockd: UNLOCK_MSG    calledn");
  245. if ((stat = nlm4svc_proc_unlock(rqstp, argp, &res)) == 0)
  246. stat = nlm4svc_callback(rqstp, NLMPROC_UNLOCK_RES, &res);
  247. return stat;
  248. }
  249. static int
  250. nlm4svc_proc_granted_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
  251.                                                 void            *resp)
  252. {
  253. struct nlm_res res;
  254. u32 stat;
  255. dprintk("lockd: GRANTED_MSG   calledn");
  256. if ((stat = nlm4svc_proc_granted(rqstp, argp, &res)) == 0)
  257. stat = nlm4svc_callback(rqstp, NLMPROC_GRANTED_RES, &res);
  258. return stat;
  259. }
  260. /*
  261.  * SHARE: create a DOS share or alter existing share.
  262.  */
  263. static int
  264. nlm4svc_proc_share(struct svc_rqst *rqstp, struct nlm_args *argp,
  265.           struct nlm_res  *resp)
  266. {
  267. struct nlm_host *host;
  268. struct nlm_file *file;
  269. dprintk("lockd: SHARE         calledn");
  270. resp->cookie = argp->cookie;
  271. /* Don't accept new lock requests during grace period */
  272. if (nlmsvc_grace_period && !argp->reclaim) {
  273. resp->status = nlm_lck_denied_grace_period;
  274. return rpc_success;
  275. }
  276. /* Obtain client and file */
  277. if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
  278. return rpc_success;
  279. /* Now try to create the share */
  280. resp->status = nlmsvc_share_file(host, file, argp);
  281. dprintk("lockd: SHARE         status %dn", ntohl(resp->status));
  282. nlm_release_host(host);
  283. nlm_release_file(file);
  284. return rpc_success;
  285. }
  286. /*
  287.  * UNSHARE: Release a DOS share.
  288.  */
  289. static int
  290. nlm4svc_proc_unshare(struct svc_rqst *rqstp, struct nlm_args *argp,
  291.             struct nlm_res  *resp)
  292. {
  293. struct nlm_host *host;
  294. struct nlm_file *file;
  295. dprintk("lockd: UNSHARE       calledn");
  296. resp->cookie = argp->cookie;
  297. /* Don't accept requests during grace period */
  298. if (nlmsvc_grace_period) {
  299. resp->status = nlm_lck_denied_grace_period;
  300. return rpc_success;
  301. }
  302. /* Obtain client and file */
  303. if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
  304. return rpc_success;
  305. /* Now try to lock the file */
  306. resp->status = nlmsvc_unshare_file(host, file, argp);
  307. dprintk("lockd: UNSHARE       status %dn", ntohl(resp->status));
  308. nlm_release_host(host);
  309. nlm_release_file(file);
  310. return rpc_success;
  311. }
  312. /*
  313.  * NM_LOCK: Create an unmonitored lock
  314.  */
  315. static int
  316. nlm4svc_proc_nm_lock(struct svc_rqst *rqstp, struct nlm_args *argp,
  317.             struct nlm_res  *resp)
  318. {
  319. dprintk("lockd: NM_LOCK       calledn");
  320. argp->monitor = 0; /* just clean the monitor flag */
  321. return nlm4svc_proc_lock(rqstp, argp, resp);
  322. }
  323. /*
  324.  * FREE_ALL: Release all locks and shares held by client
  325.  */
  326. static int
  327. nlm4svc_proc_free_all(struct svc_rqst *rqstp, struct nlm_args *argp,
  328.      void            *resp)
  329. {
  330. struct nlm_host *host;
  331. /* Obtain client */
  332. if (nlm4svc_retrieve_args(rqstp, argp, &host, NULL))
  333. return rpc_success;
  334. nlmsvc_free_host_resources(host);
  335. nlm_release_host(host);
  336. return rpc_success;
  337. }
  338. /*
  339.  * SM_NOTIFY: private callback from statd (not part of official NLM proto)
  340.  */
  341. static int
  342. nlm4svc_proc_sm_notify(struct svc_rqst *rqstp, struct nlm_reboot *argp,
  343.       void         *resp)
  344. {
  345. struct sockaddr_in saddr = rqstp->rq_addr;
  346. int vers = rqstp->rq_vers;
  347. int prot = rqstp->rq_prot;
  348. struct nlm_host *host;
  349. dprintk("lockd: SM_NOTIFY     calledn");
  350. if (saddr.sin_addr.s_addr != htonl(INADDR_LOOPBACK)
  351.  || ntohs(saddr.sin_port) >= 1024) {
  352. printk(KERN_WARNING
  353. "lockd: rejected NSM callback from %08x:%dn",
  354. ntohl(rqstp->rq_addr.sin_addr.s_addr),
  355. ntohs(rqstp->rq_addr.sin_port));
  356. return rpc_system_err;
  357. }
  358. /* Obtain the host pointer for this NFS server and try to
  359.  * reclaim all locks we hold on this server.
  360.  */
  361. saddr.sin_addr.s_addr = argp->addr;
  362. if ((host = nlmclnt_lookup_host(&saddr, prot, vers)) != NULL) {
  363. nlmclnt_recovery(host, argp->state);
  364. nlm_release_host(host);
  365. }
  366. /* If we run on an NFS server, delete all locks held by the client */
  367. if (nlmsvc_ops != NULL) {
  368. struct svc_client *clnt;
  369. saddr.sin_addr.s_addr = argp->addr;
  370. nlmsvc_ops->exp_readlock();
  371. if ((clnt = nlmsvc_ops->exp_getclient(&saddr)) != NULL 
  372.  && (host = nlm_lookup_host(clnt, &saddr, 0, 0)) != NULL) {
  373. nlmsvc_free_host_resources(host);
  374. }
  375. nlm_release_host(host);
  376. nlmsvc_ops->exp_unlock();
  377. }
  378. return rpc_success;
  379. }
  380. /*
  381.  * This is the generic lockd callback for async RPC calls
  382.  */
  383. static u32
  384. nlm4svc_callback(struct svc_rqst *rqstp, u32 proc, struct nlm_res *resp)
  385. {
  386. struct nlm_host *host;
  387. struct nlm_rqst *call;
  388. if (!(call = nlmclnt_alloc_call()))
  389. return rpc_system_err;
  390. host = nlmclnt_lookup_host(&rqstp->rq_addr,
  391. rqstp->rq_prot, rqstp->rq_vers);
  392. if (!host) {
  393. kfree(call);
  394. return rpc_system_err;
  395. }
  396. call->a_flags = RPC_TASK_ASYNC;
  397. call->a_host  = host;
  398. memcpy(&call->a_args, resp, sizeof(*resp));
  399. if (nlmsvc_async_call(call, proc, nlm4svc_callback_exit) < 0)
  400. goto error;
  401. return rpc_success;
  402.  error:
  403. kfree(call);
  404. nlm_release_host(host);
  405. return rpc_system_err;
  406. }
  407. static void
  408. nlm4svc_callback_exit(struct rpc_task *task)
  409. {
  410. struct nlm_rqst *call = (struct nlm_rqst *) task->tk_calldata;
  411. if (task->tk_status < 0) {
  412. dprintk("lockd: %4d callback failed (errno = %d)n",
  413. task->tk_pid, -task->tk_status);
  414. }
  415. nlm_release_host(call->a_host);
  416. kfree(call);
  417. }
  418. /*
  419.  * NLM Server procedures.
  420.  */
  421. #define nlm4svc_encode_norep nlm4svc_encode_void
  422. #define nlm4svc_decode_norep nlm4svc_decode_void
  423. #define nlm4svc_decode_testres nlm4svc_decode_void
  424. #define nlm4svc_decode_lockres nlm4svc_decode_void
  425. #define nlm4svc_decode_unlockres nlm4svc_decode_void
  426. #define nlm4svc_decode_cancelres nlm4svc_decode_void
  427. #define nlm4svc_decode_grantedres nlm4svc_decode_void
  428. #define nlm4svc_proc_none nlm4svc_proc_null
  429. #define nlm4svc_proc_test_res nlm4svc_proc_null
  430. #define nlm4svc_proc_lock_res nlm4svc_proc_null
  431. #define nlm4svc_proc_cancel_res nlm4svc_proc_null
  432. #define nlm4svc_proc_unlock_res nlm4svc_proc_null
  433. #define nlm4svc_proc_granted_res nlm4svc_proc_null
  434. struct nlm_void { int dummy; };
  435. #define PROC(name, xargt, xrest, argt, rest, respsize)
  436.  { (svc_procfunc) nlm4svc_proc_##name,
  437.    (kxdrproc_t) nlm4svc_decode_##xargt,
  438.    (kxdrproc_t) nlm4svc_encode_##xrest,
  439.    NULL,
  440.    sizeof(struct nlm_##argt),
  441.    sizeof(struct nlm_##rest),
  442.    0,
  443.    0,
  444.    respsize,
  445.  }
  446. #define Ck (1+8) /* cookie */
  447. #define No (1+1024/4) /* netobj */
  448. #define St 1 /* status */
  449. #define Rg 4 /* range (offset + length) */
  450. struct svc_procedure nlmsvc_procedures4[] = {
  451.   PROC(null, void, void, void, void, 1),
  452.   PROC(test, testargs, testres, args, res, Ck+St+2+No+Rg),
  453.   PROC(lock, lockargs, res, args, res, Ck+St),
  454.   PROC(cancel, cancargs, res, args, res, Ck+St),
  455.   PROC(unlock, unlockargs, res, args, res, Ck+St),
  456.   PROC(granted, testargs, res, args, res, Ck+St),
  457.   PROC(test_msg, testargs, norep, args, void, 1),
  458.   PROC(lock_msg, lockargs, norep, args, void, 1),
  459.   PROC(cancel_msg, cancargs, norep, args, void, 1),
  460.   PROC(unlock_msg, unlockargs, norep, args, void, 1),
  461.   PROC(granted_msg, testargs, norep, args, void, 1),
  462.   PROC(test_res, testres, norep, res, void, 1),
  463.   PROC(lock_res, lockres, norep, res, void, 1),
  464.   PROC(cancel_res, cancelres, norep, res, void, 1),
  465.   PROC(unlock_res, unlockres, norep, res, void, 1),
  466.   PROC(granted_res, grantedres, norep, res, void, 1),
  467.   /* statd callback */
  468.   PROC(sm_notify, reboot, void, reboot, void, 1),
  469.   PROC(none, void, void, void, void, 0),
  470.   PROC(none, void, void, void, void, 0),
  471.   PROC(none, void, void, void, void, 0),
  472.   PROC(share, shareargs, shareres, args, res, Ck+St+1),
  473.   PROC(unshare, shareargs, shareres, args, res, Ck+St+1),
  474.   PROC(nm_lock, lockargs, res, args, res, Ck+St),
  475.   PROC(free_all, notify, void, args, void, 1),
  476. };