svc.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. /*
  2. * linux/include/linux/sunrpc/svc.h
  3. *
  4. * RPC server declarations.
  5. *
  6. * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
  7. */
  8. #ifndef SUNRPC_SVC_H
  9. #define SUNRPC_SVC_H
  10. #include <linux/in.h>
  11. #include <linux/in6.h>
  12. #include <linux/sunrpc/types.h>
  13. #include <linux/sunrpc/xdr.h>
  14. #include <linux/sunrpc/auth.h>
  15. #include <linux/sunrpc/svcauth.h>
  16. #include <linux/wait.h>
  17. #include <linux/mm.h>
  18. /* statistics for svc_pool structures */
  19. struct svc_pool_stats {
  20. atomic_long_t packets;
  21. unsigned long sockets_queued;
  22. atomic_long_t threads_woken;
  23. atomic_long_t threads_timedout;
  24. };
  25. /*
  26. *
  27. * RPC service thread pool.
  28. *
  29. * Pool of threads and temporary sockets. Generally there is only
  30. * a single one of these per RPC service, but on NUMA machines those
  31. * services that can benefit from it (i.e. nfs but not lockd) will
  32. * have one pool per NUMA node. This optimisation reduces cross-
  33. * node traffic on multi-node NUMA NFS servers.
  34. */
  35. struct svc_pool {
  36. unsigned int sp_id; /* pool id; also node id on NUMA */
  37. spinlock_t sp_lock; /* protects all fields */
  38. struct list_head sp_sockets; /* pending sockets */
  39. unsigned int sp_nrthreads; /* # of threads in pool */
  40. struct list_head sp_all_threads; /* all server threads */
  41. struct svc_pool_stats sp_stats; /* statistics on pool operation */
  42. #define SP_TASK_PENDING (0) /* still work to do even if no
  43. * xprt is queued. */
  44. unsigned long sp_flags;
  45. } ____cacheline_aligned_in_smp;
  46. struct svc_serv;
  47. struct svc_serv_ops {
  48. /* Callback to use when last thread exits. */
  49. void (*svo_shutdown)(struct svc_serv *, struct net *);
  50. int (*svo_function)(void *);
  51. };
  52. /*
  53. * RPC service.
  54. *
  55. * An RPC service is a ``daemon,'' possibly multithreaded, which
  56. * receives and processes incoming RPC messages.
  57. * It has one or more transport sockets associated with it, and maintains
  58. * a list of idle threads waiting for input.
  59. *
  60. * We currently do not support more than one RPC program per daemon.
  61. */
  62. struct svc_serv {
  63. struct svc_program * sv_program; /* RPC program */
  64. struct svc_stat * sv_stats; /* RPC statistics */
  65. spinlock_t sv_lock;
  66. unsigned int sv_nrthreads; /* # of server threads */
  67. unsigned int sv_maxconn; /* max connections allowed or
  68. * '0' causing max to be based
  69. * on number of threads. */
  70. unsigned int sv_max_payload; /* datagram payload size */
  71. unsigned int sv_max_mesg; /* max_payload + 1 page for overheads */
  72. unsigned int sv_xdrsize; /* XDR buffer size */
  73. struct list_head sv_permsocks; /* all permanent sockets */
  74. struct list_head sv_tempsocks; /* all temporary sockets */
  75. int sv_tmpcnt; /* count of temporary sockets */
  76. struct timer_list sv_temptimer; /* timer for aging temporary sockets */
  77. char * sv_name; /* service name */
  78. unsigned int sv_nrpools; /* number of thread pools */
  79. struct svc_pool * sv_pools; /* array of thread pools */
  80. struct svc_serv_ops *sv_ops; /* server operations */
  81. struct module * sv_module; /* optional module to count when
  82. * adding threads */
  83. #if defined(CONFIG_SUNRPC_BACKCHANNEL)
  84. struct list_head sv_cb_list; /* queue for callback requests
  85. * that arrive over the same
  86. * connection */
  87. spinlock_t sv_cb_lock; /* protects the svc_cb_list */
  88. wait_queue_head_t sv_cb_waitq; /* sleep here if there are no
  89. * entries in the svc_cb_list */
  90. struct svc_xprt *sv_bc_xprt; /* callback on fore channel */
  91. #endif /* CONFIG_SUNRPC_BACKCHANNEL */
  92. };
  93. /*
  94. * We use sv_nrthreads as a reference count. svc_destroy() drops
  95. * this refcount, so we need to bump it up around operations that
  96. * change the number of threads. Horrible, but there it is.
  97. * Should be called with the "service mutex" held.
  98. */
  99. static inline void svc_get(struct svc_serv *serv)
  100. {
  101. serv->sv_nrthreads++;
  102. }
  103. /*
  104. * Maximum payload size supported by a kernel RPC server.
  105. * This is use to determine the max number of pages nfsd is
  106. * willing to return in a single READ operation.
  107. *
  108. * These happen to all be powers of 2, which is not strictly
  109. * necessary but helps enforce the real limitation, which is
  110. * that they should be multiples of PAGE_CACHE_SIZE.
  111. *
  112. * For UDP transports, a block plus NFS,RPC, and UDP headers
  113. * has to fit into the IP datagram limit of 64K. The largest
  114. * feasible number for all known page sizes is probably 48K,
  115. * but we choose 32K here. This is the same as the historical
  116. * Linux limit; someone who cares more about NFS/UDP performance
  117. * can test a larger number.
  118. *
  119. * For TCP transports we have more freedom. A size of 1MB is
  120. * chosen to match the client limit. Other OSes are known to
  121. * have larger limits, but those numbers are probably beyond
  122. * the point of diminishing returns.
  123. */
  124. #define RPCSVC_MAXPAYLOAD (1*1024*1024u)
  125. #define RPCSVC_MAXPAYLOAD_TCP RPCSVC_MAXPAYLOAD
  126. #define RPCSVC_MAXPAYLOAD_UDP (32*1024u)
  127. extern u32 svc_max_payload(const struct svc_rqst *rqstp);
  128. /*
  129. * RPC Requsts and replies are stored in one or more pages.
  130. * We maintain an array of pages for each server thread.
  131. * Requests are copied into these pages as they arrive. Remaining
  132. * pages are available to write the reply into.
  133. *
  134. * Pages are sent using ->sendpage so each server thread needs to
  135. * allocate more to replace those used in sending. To help keep track
  136. * of these pages we have a receive list where all pages initialy live,
  137. * and a send list where pages are moved to when there are to be part
  138. * of a reply.
  139. *
  140. * We use xdr_buf for holding responses as it fits well with NFS
  141. * read responses (that have a header, and some data pages, and possibly
  142. * a tail) and means we can share some client side routines.
  143. *
  144. * The xdr_buf.head kvec always points to the first page in the rq_*pages
  145. * list. The xdr_buf.pages pointer points to the second page on that
  146. * list. xdr_buf.tail points to the end of the first page.
  147. * This assumes that the non-page part of an rpc reply will fit
  148. * in a page - NFSd ensures this. lockd also has no trouble.
  149. *
  150. * Each request/reply pair can have at most one "payload", plus two pages,
  151. * one for the request, and one for the reply.
  152. * We using ->sendfile to return read data, we might need one extra page
  153. * if the request is not page-aligned. So add another '1'.
  154. */
  155. #define RPCSVC_MAXPAGES ((RPCSVC_MAXPAYLOAD+PAGE_SIZE-1)/PAGE_SIZE \
  156. + 2 + 1)
  157. static inline u32 svc_getnl(struct kvec *iov)
  158. {
  159. __be32 val, *vp;
  160. vp = iov->iov_base;
  161. val = *vp++;
  162. iov->iov_base = (void*)vp;
  163. iov->iov_len -= sizeof(__be32);
  164. return ntohl(val);
  165. }
  166. static inline void svc_putnl(struct kvec *iov, u32 val)
  167. {
  168. __be32 *vp = iov->iov_base + iov->iov_len;
  169. *vp = htonl(val);
  170. iov->iov_len += sizeof(__be32);
  171. }
  172. static inline __be32 svc_getu32(struct kvec *iov)
  173. {
  174. __be32 val, *vp;
  175. vp = iov->iov_base;
  176. val = *vp++;
  177. iov->iov_base = (void*)vp;
  178. iov->iov_len -= sizeof(__be32);
  179. return val;
  180. }
  181. static inline void svc_ungetu32(struct kvec *iov)
  182. {
  183. __be32 *vp = (__be32 *)iov->iov_base;
  184. iov->iov_base = (void *)(vp - 1);
  185. iov->iov_len += sizeof(*vp);
  186. }
  187. static inline void svc_putu32(struct kvec *iov, __be32 val)
  188. {
  189. __be32 *vp = iov->iov_base + iov->iov_len;
  190. *vp = val;
  191. iov->iov_len += sizeof(__be32);
  192. }
  193. /*
  194. * The context of a single thread, including the request currently being
  195. * processed.
  196. */
  197. struct svc_rqst {
  198. struct list_head rq_all; /* all threads list */
  199. struct rcu_head rq_rcu_head; /* for RCU deferred kfree */
  200. struct svc_xprt * rq_xprt; /* transport ptr */
  201. struct sockaddr_storage rq_addr; /* peer address */
  202. size_t rq_addrlen;
  203. struct sockaddr_storage rq_daddr; /* dest addr of request
  204. * - reply from here */
  205. size_t rq_daddrlen;
  206. struct svc_serv * rq_server; /* RPC service definition */
  207. struct svc_pool * rq_pool; /* thread pool */
  208. struct svc_procedure * rq_procinfo; /* procedure info */
  209. struct auth_ops * rq_authop; /* authentication flavour */
  210. struct svc_cred rq_cred; /* auth info */
  211. void * rq_xprt_ctxt; /* transport specific context ptr */
  212. struct svc_deferred_req*rq_deferred; /* deferred request we are replaying */
  213. size_t rq_xprt_hlen; /* xprt header len */
  214. struct xdr_buf rq_arg;
  215. struct xdr_buf rq_res;
  216. struct page * rq_pages[RPCSVC_MAXPAGES];
  217. struct page * *rq_respages; /* points into rq_pages */
  218. struct page * *rq_next_page; /* next reply page to use */
  219. struct page * *rq_page_end; /* one past the last page */
  220. struct kvec rq_vec[RPCSVC_MAXPAGES]; /* generally useful.. */
  221. __be32 rq_xid; /* transmission id */
  222. u32 rq_prog; /* program number */
  223. u32 rq_vers; /* program version */
  224. u32 rq_proc; /* procedure number */
  225. u32 rq_prot; /* IP protocol */
  226. int rq_cachetype; /* catering to nfsd */
  227. #define RQ_SECURE (0) /* secure port */
  228. #define RQ_LOCAL (1) /* local request */
  229. #define RQ_USEDEFERRAL (2) /* use deferral */
  230. #define RQ_DROPME (3) /* drop current reply */
  231. #define RQ_SPLICE_OK (4) /* turned off in gss privacy
  232. * to prevent encrypting page
  233. * cache pages */
  234. #define RQ_VICTIM (5) /* about to be shut down */
  235. #define RQ_BUSY (6) /* request is busy */
  236. unsigned long rq_flags; /* flags field */
  237. void * rq_argp; /* decoded arguments */
  238. void * rq_resp; /* xdr'd results */
  239. void * rq_auth_data; /* flavor-specific data */
  240. int rq_auth_slack; /* extra space xdr code
  241. * should leave in head
  242. * for krb5i, krb5p.
  243. */
  244. int rq_reserved; /* space on socket outq
  245. * reserved for this request
  246. */
  247. struct cache_req rq_chandle; /* handle passed to caches for
  248. * request delaying
  249. */
  250. /* Catering to nfsd */
  251. struct auth_domain * rq_client; /* RPC peer info */
  252. struct auth_domain * rq_gssclient; /* "gss/"-style peer info */
  253. struct svc_cacherep * rq_cacherep; /* cache info */
  254. struct task_struct *rq_task; /* service thread */
  255. spinlock_t rq_lock; /* per-request lock */
  256. };
  257. #define SVC_NET(svc_rqst) (svc_rqst->rq_xprt->xpt_net)
  258. /*
  259. * Rigorous type checking on sockaddr type conversions
  260. */
  261. static inline struct sockaddr_in *svc_addr_in(const struct svc_rqst *rqst)
  262. {
  263. return (struct sockaddr_in *) &rqst->rq_addr;
  264. }
  265. static inline struct sockaddr_in6 *svc_addr_in6(const struct svc_rqst *rqst)
  266. {
  267. return (struct sockaddr_in6 *) &rqst->rq_addr;
  268. }
  269. static inline struct sockaddr *svc_addr(const struct svc_rqst *rqst)
  270. {
  271. return (struct sockaddr *) &rqst->rq_addr;
  272. }
  273. static inline struct sockaddr_in *svc_daddr_in(const struct svc_rqst *rqst)
  274. {
  275. return (struct sockaddr_in *) &rqst->rq_daddr;
  276. }
  277. static inline struct sockaddr_in6 *svc_daddr_in6(const struct svc_rqst *rqst)
  278. {
  279. return (struct sockaddr_in6 *) &rqst->rq_daddr;
  280. }
  281. static inline struct sockaddr *svc_daddr(const struct svc_rqst *rqst)
  282. {
  283. return (struct sockaddr *) &rqst->rq_daddr;
  284. }
  285. /*
  286. * Check buffer bounds after decoding arguments
  287. */
  288. static inline int
  289. xdr_argsize_check(struct svc_rqst *rqstp, __be32 *p)
  290. {
  291. char *cp = (char *)p;
  292. struct kvec *vec = &rqstp->rq_arg.head[0];
  293. return cp >= (char*)vec->iov_base
  294. && cp <= (char*)vec->iov_base + vec->iov_len;
  295. }
  296. static inline int
  297. xdr_ressize_check(struct svc_rqst *rqstp, __be32 *p)
  298. {
  299. struct kvec *vec = &rqstp->rq_res.head[0];
  300. char *cp = (char*)p;
  301. vec->iov_len = cp - (char*)vec->iov_base;
  302. return vec->iov_len <= PAGE_SIZE;
  303. }
  304. static inline void svc_free_res_pages(struct svc_rqst *rqstp)
  305. {
  306. while (rqstp->rq_next_page != rqstp->rq_respages) {
  307. struct page **pp = --rqstp->rq_next_page;
  308. if (*pp) {
  309. put_page(*pp);
  310. *pp = NULL;
  311. }
  312. }
  313. }
  314. struct svc_deferred_req {
  315. u32 prot; /* protocol (UDP or TCP) */
  316. struct svc_xprt *xprt;
  317. struct sockaddr_storage addr; /* where reply must go */
  318. size_t addrlen;
  319. struct sockaddr_storage daddr; /* where reply must come from */
  320. size_t daddrlen;
  321. struct cache_deferred_req handle;
  322. size_t xprt_hlen;
  323. int argslen;
  324. __be32 args[0];
  325. };
  326. /*
  327. * List of RPC programs on the same transport endpoint
  328. */
  329. struct svc_program {
  330. struct svc_program * pg_next; /* other programs (same xprt) */
  331. u32 pg_prog; /* program number */
  332. unsigned int pg_lovers; /* lowest version */
  333. unsigned int pg_hivers; /* highest version */
  334. unsigned int pg_nvers; /* number of versions */
  335. struct svc_version ** pg_vers; /* version array */
  336. char * pg_name; /* service name */
  337. char * pg_class; /* class name: services sharing authentication */
  338. struct svc_stat * pg_stats; /* rpc statistics */
  339. int (*pg_authenticate)(struct svc_rqst *);
  340. };
  341. /*
  342. * RPC program version
  343. */
  344. struct svc_version {
  345. u32 vs_vers; /* version number */
  346. u32 vs_nproc; /* number of procedures */
  347. struct svc_procedure * vs_proc; /* per-procedure info */
  348. u32 vs_xdrsize; /* xdrsize needed for this version */
  349. unsigned int vs_hidden : 1, /* Don't register with portmapper.
  350. * Only used for nfsacl so far. */
  351. vs_rpcb_optnl:1;/* Don't care the result of register.
  352. * Only used for nfsv4. */
  353. /* Override dispatch function (e.g. when caching replies).
  354. * A return value of 0 means drop the request.
  355. * vs_dispatch == NULL means use default dispatcher.
  356. */
  357. int (*vs_dispatch)(struct svc_rqst *, __be32 *);
  358. };
  359. /*
  360. * RPC procedure info
  361. */
  362. typedef __be32 (*svc_procfunc)(struct svc_rqst *, void *argp, void *resp);
  363. struct svc_procedure {
  364. svc_procfunc pc_func; /* process the request */
  365. kxdrproc_t pc_decode; /* XDR decode args */
  366. kxdrproc_t pc_encode; /* XDR encode result */
  367. kxdrproc_t pc_release; /* XDR free result */
  368. unsigned int pc_argsize; /* argument struct size */
  369. unsigned int pc_ressize; /* result struct size */
  370. unsigned int pc_count; /* call count */
  371. unsigned int pc_cachetype; /* cache info (NFS) */
  372. unsigned int pc_xdrressize; /* maximum size of XDR reply */
  373. };
  374. /*
  375. * Function prototypes.
  376. */
  377. int svc_rpcb_setup(struct svc_serv *serv, struct net *net);
  378. void svc_rpcb_cleanup(struct svc_serv *serv, struct net *net);
  379. int svc_bind(struct svc_serv *serv, struct net *net);
  380. struct svc_serv *svc_create(struct svc_program *, unsigned int,
  381. struct svc_serv_ops *);
  382. struct svc_rqst *svc_prepare_thread(struct svc_serv *serv,
  383. struct svc_pool *pool, int node);
  384. void svc_exit_thread(struct svc_rqst *);
  385. struct svc_serv * svc_create_pooled(struct svc_program *, unsigned int,
  386. struct svc_serv_ops *, struct module *);
  387. int svc_set_num_threads(struct svc_serv *, struct svc_pool *, int);
  388. int svc_pool_stats_open(struct svc_serv *serv, struct file *file);
  389. void svc_destroy(struct svc_serv *);
  390. void svc_shutdown_net(struct svc_serv *, struct net *);
  391. int svc_process(struct svc_rqst *);
  392. int bc_svc_process(struct svc_serv *, struct rpc_rqst *,
  393. struct svc_rqst *);
  394. int svc_register(const struct svc_serv *, struct net *, const int,
  395. const unsigned short, const unsigned short);
  396. void svc_wake_up(struct svc_serv *);
  397. void svc_reserve(struct svc_rqst *rqstp, int space);
  398. struct svc_pool * svc_pool_for_cpu(struct svc_serv *serv, int cpu);
  399. char * svc_print_addr(struct svc_rqst *, char *, size_t);
  400. #define RPC_MAX_ADDRBUFLEN (63U)
  401. /*
  402. * When we want to reduce the size of the reserved space in the response
  403. * buffer, we need to take into account the size of any checksum data that
  404. * may be at the end of the packet. This is difficult to determine exactly
  405. * for all cases without actually generating the checksum, so we just use a
  406. * static value.
  407. */
  408. static inline void svc_reserve_auth(struct svc_rqst *rqstp, int space)
  409. {
  410. svc_reserve(rqstp, space + rqstp->rq_auth_slack);
  411. }
  412. #endif /* SUNRPC_SVC_H */