svc4proc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:14k
源码类别:

嵌入式Linux

开发平台:

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. if ((stat = nlm4svc_proc_test(rqstp, argp, &res)) == 0)
  212. stat = nlm4svc_callback(rqstp, NLMPROC_TEST_RES, &res);
  213. return stat;
  214. }
  215. static int
  216. nlm4svc_proc_lock_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
  217.      void      *resp)
  218. {
  219. struct nlm_res res;
  220. u32 stat;
  221. dprintk("lockd: LOCK_MSG      calledn");
  222. if ((stat = nlm4svc_proc_lock(rqstp, argp, &res)) == 0)
  223. stat = nlm4svc_callback(rqstp, NLMPROC_LOCK_RES, &res);
  224. return stat;
  225. }
  226. static int
  227. nlm4svc_proc_cancel_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
  228.        void        *resp)
  229. {
  230. struct nlm_res res;
  231. u32 stat;
  232. dprintk("lockd: CANCEL_MSG    calledn");
  233. if ((stat = nlm4svc_proc_cancel(rqstp, argp, &res)) == 0)
  234. stat = nlm4svc_callback(rqstp, NLMPROC_CANCEL_RES, &res);
  235. return stat;
  236. }
  237. static int
  238. nlm4svc_proc_unlock_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
  239.                                                void            *resp)
  240. {
  241. struct nlm_res res;
  242. u32 stat;
  243. dprintk("lockd: UNLOCK_MSG    calledn");
  244. if ((stat = nlm4svc_proc_unlock(rqstp, argp, &res)) == 0)
  245. stat = nlm4svc_callback(rqstp, NLMPROC_UNLOCK_RES, &res);
  246. return stat;
  247. }
  248. static int
  249. nlm4svc_proc_granted_msg(struct svc_rqst *rqstp, struct nlm_args *argp,
  250.                                                 void            *resp)
  251. {
  252. struct nlm_res res;
  253. u32 stat;
  254. dprintk("lockd: GRANTED_MSG   calledn");
  255. if ((stat = nlm4svc_proc_granted(rqstp, argp, &res)) == 0)
  256. stat = nlm4svc_callback(rqstp, NLMPROC_GRANTED_RES, &res);
  257. return stat;
  258. }
  259. /*
  260.  * SHARE: create a DOS share or alter existing share.
  261.  */
  262. static int
  263. nlm4svc_proc_share(struct svc_rqst *rqstp, struct nlm_args *argp,
  264.           struct nlm_res  *resp)
  265. {
  266. struct nlm_host *host;
  267. struct nlm_file *file;
  268. dprintk("lockd: SHARE         calledn");
  269. resp->cookie = argp->cookie;
  270. /* Don't accept new lock requests during grace period */
  271. if (nlmsvc_grace_period && !argp->reclaim) {
  272. resp->status = nlm_lck_denied_grace_period;
  273. return rpc_success;
  274. }
  275. /* Obtain client and file */
  276. if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
  277. return rpc_success;
  278. /* Now try to create the share */
  279. resp->status = nlmsvc_share_file(host, file, argp);
  280. dprintk("lockd: SHARE         status %dn", ntohl(resp->status));
  281. nlm_release_host(host);
  282. nlm_release_file(file);
  283. return rpc_success;
  284. }
  285. /*
  286.  * UNSHARE: Release a DOS share.
  287.  */
  288. static int
  289. nlm4svc_proc_unshare(struct svc_rqst *rqstp, struct nlm_args *argp,
  290.             struct nlm_res  *resp)
  291. {
  292. struct nlm_host *host;
  293. struct nlm_file *file;
  294. dprintk("lockd: UNSHARE       calledn");
  295. resp->cookie = argp->cookie;
  296. /* Don't accept requests during grace period */
  297. if (nlmsvc_grace_period) {
  298. resp->status = nlm_lck_denied_grace_period;
  299. return rpc_success;
  300. }
  301. /* Obtain client and file */
  302. if ((resp->status = nlm4svc_retrieve_args(rqstp, argp, &host, &file)))
  303. return rpc_success;
  304. /* Now try to lock the file */
  305. resp->status = nlmsvc_unshare_file(host, file, argp);
  306. dprintk("lockd: UNSHARE       status %dn", ntohl(resp->status));
  307. nlm_release_host(host);
  308. nlm_release_file(file);
  309. return rpc_success;
  310. }
  311. /*
  312.  * NM_LOCK: Create an unmonitored lock
  313.  */
  314. static int
  315. nlm4svc_proc_nm_lock(struct svc_rqst *rqstp, struct nlm_args *argp,
  316.             struct nlm_res  *resp)
  317. {
  318. dprintk("lockd: NM_LOCK       calledn");
  319. argp->monitor = 0; /* just clean the monitor flag */
  320. return nlm4svc_proc_lock(rqstp, argp, resp);
  321. }
  322. /*
  323.  * FREE_ALL: Release all locks and shares held by client
  324.  */
  325. static int
  326. nlm4svc_proc_free_all(struct svc_rqst *rqstp, struct nlm_args *argp,
  327.      void            *resp)
  328. {
  329. struct nlm_host *host;
  330. /* Obtain client */
  331. if (nlm4svc_retrieve_args(rqstp, argp, &host, NULL))
  332. return rpc_success;
  333. nlmsvc_free_host_resources(host);
  334. nlm_release_host(host);
  335. return rpc_success;
  336. }
  337. /*
  338.  * SM_NOTIFY: private callback from statd (not part of official NLM proto)
  339.  */
  340. static int
  341. nlm4svc_proc_sm_notify(struct svc_rqst *rqstp, struct nlm_reboot *argp,
  342.       void         *resp)
  343. {
  344. struct sockaddr_in saddr = rqstp->rq_addr;
  345. int vers = rqstp->rq_vers;
  346. int prot = rqstp->rq_prot;
  347. struct nlm_host *host;
  348. dprintk("lockd: SM_NOTIFY     calledn");
  349. if (saddr.sin_addr.s_addr != htonl(INADDR_LOOPBACK)
  350.  || ntohs(saddr.sin_port) >= 1024) {
  351. printk(KERN_WARNING
  352. "lockd: rejected NSM callback from %08x:%dn",
  353. ntohl(rqstp->rq_addr.sin_addr.s_addr),
  354. ntohs(rqstp->rq_addr.sin_port));
  355. return rpc_system_err;
  356. }
  357. /* Obtain the host pointer for this NFS server and try to
  358.  * reclaim all locks we hold on this server.
  359.  */
  360. saddr.sin_addr.s_addr = argp->addr;
  361. if ((host = nlmclnt_lookup_host(&saddr, prot, vers)) != NULL) {
  362. nlmclnt_recovery(host, argp->state);
  363. nlm_release_host(host);
  364. }
  365. /* If we run on an NFS server, delete all locks held by the client */
  366. if (nlmsvc_ops != NULL) {
  367. struct svc_client *clnt;
  368. saddr.sin_addr.s_addr = argp->addr;
  369. if ((clnt = nlmsvc_ops->exp_getclient(&saddr)) != NULL 
  370.  && (host = nlm_lookup_host(clnt, &saddr, 0, 0)) != NULL) {
  371. nlmsvc_free_host_resources(host);
  372. }
  373. nlm_release_host(host);
  374. }
  375. return rpc_success;
  376. }
  377. /*
  378.  * This is the generic lockd callback for async RPC calls
  379.  */
  380. static u32
  381. nlm4svc_callback(struct svc_rqst *rqstp, u32 proc, struct nlm_res *resp)
  382. {
  383. struct nlm_host *host;
  384. struct nlm_rqst *call;
  385. if (!(call = nlmclnt_alloc_call()))
  386. return rpc_system_err;
  387. host = nlmclnt_lookup_host(&rqstp->rq_addr,
  388. rqstp->rq_prot, rqstp->rq_vers);
  389. if (!host) {
  390. kfree(call);
  391. return rpc_system_err;
  392. }
  393. call->a_flags = RPC_TASK_ASYNC;
  394. call->a_host  = host;
  395. memcpy(&call->a_args, resp, sizeof(*resp));
  396. if (nlmsvc_async_call(call, proc, nlm4svc_callback_exit) < 0)
  397. goto error;
  398. return rpc_success;
  399.  error:
  400. kfree(call);
  401. nlm_release_host(host);
  402. return rpc_system_err;
  403. }
  404. static void
  405. nlm4svc_callback_exit(struct rpc_task *task)
  406. {
  407. struct nlm_rqst *call = (struct nlm_rqst *) task->tk_calldata;
  408. if (task->tk_status < 0) {
  409. dprintk("lockd: %4d callback failed (errno = %d)n",
  410. task->tk_pid, -task->tk_status);
  411. }
  412. nlm_release_host(call->a_host);
  413. kfree(call);
  414. }
  415. /*
  416.  * NLM Server procedures.
  417.  */
  418. #define nlm4svc_encode_norep nlm4svc_encode_void
  419. #define nlm4svc_decode_norep nlm4svc_decode_void
  420. #define nlm4svc_decode_testres nlm4svc_decode_void
  421. #define nlm4svc_decode_lockres nlm4svc_decode_void
  422. #define nlm4svc_decode_unlockres nlm4svc_decode_void
  423. #define nlm4svc_decode_cancelres nlm4svc_decode_void
  424. #define nlm4svc_decode_grantedres nlm4svc_decode_void
  425. #define nlm4svc_proc_none nlm4svc_proc_null
  426. #define nlm4svc_proc_test_res nlm4svc_proc_null
  427. #define nlm4svc_proc_lock_res nlm4svc_proc_null
  428. #define nlm4svc_proc_cancel_res nlm4svc_proc_null
  429. #define nlm4svc_proc_unlock_res nlm4svc_proc_null
  430. #define nlm4svc_proc_granted_res nlm4svc_proc_null
  431. struct nlm_void { int dummy; };
  432. #define PROC(name, xargt, xrest, argt, rest)
  433.  { (svc_procfunc) nlm4svc_proc_##name,
  434.    (kxdrproc_t) nlm4svc_decode_##xargt,
  435.    (kxdrproc_t) nlm4svc_encode_##xrest,
  436.    NULL,
  437.    sizeof(struct nlm_##argt),
  438.    sizeof(struct nlm_##rest),
  439.    0,
  440.    0
  441.  }
  442. struct svc_procedure nlmsvc_procedures4[] = {
  443.   PROC(null, void, void, void, void),
  444.   PROC(test, testargs, testres, args, res),
  445.   PROC(lock, lockargs, res, args, res),
  446.   PROC(cancel, cancargs, res, args, res),
  447.   PROC(unlock, unlockargs, res, args, res),
  448.   PROC(granted, testargs, res, args, res),
  449.   PROC(test_msg, testargs, norep, args, void),
  450.   PROC(lock_msg, lockargs, norep, args, void),
  451.   PROC(cancel_msg, cancargs, norep, args, void),
  452.   PROC(unlock_msg, unlockargs, norep, args, void),
  453.   PROC(granted_msg, testargs, norep, args, void),
  454.   PROC(test_res, testres, norep, res, void),
  455.   PROC(lock_res, lockres, norep, res, void),
  456.   PROC(cancel_res, cancelres, norep, res, void),
  457.   PROC(unlock_res, unlockres, norep, res, void),
  458.   PROC(granted_res, grantedres, norep, res, void),
  459.   /* statd callback */
  460.   PROC(sm_notify, reboot, void, reboot, void),
  461.   PROC(none, void, void, void, void),
  462.   PROC(none, void, void, void, void),
  463.   PROC(none, void, void, void, void),
  464.   PROC(share, shareargs, shareres, args, res),
  465.   PROC(unshare, shareargs, shareres, args, res),
  466.   PROC(nm_lock, lockargs, res, args, res),
  467.   PROC(free_all, notify, void, args, void),
  468. };