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

嵌入式Linux

开发平台:

Unix_Linux

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