svc.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  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/sunrpc/types.h>
  12. #include <linux/sunrpc/xdr.h>
  13. #include <linux/sunrpc/auth.h>
  14. #include <linux/sunrpc/svcauth.h>
  15. #include <linux/wait.h>
  16. #include <linux/mm.h>
  17. /*
  18. * This is the RPC server thread function prototype
  19. */
  20. typedef void (*svc_thread_fn)(struct svc_rqst *);
  21. /*
  22. *
  23. * RPC service thread pool.
  24. *
  25. * Pool of threads and temporary sockets. Generally there is only
  26. * a single one of these per RPC service, but on NUMA machines those
  27. * services that can benefit from it (i.e. nfs but not lockd) will
  28. * have one pool per NUMA node. This optimisation reduces cross-
  29. * node traffic on multi-node NUMA NFS servers.
  30. */
  31. struct svc_pool {
  32. unsigned int sp_id; /* pool id; also node id on NUMA */
  33. spinlock_t sp_lock; /* protects all fields */
  34. struct list_head sp_threads; /* idle server threads */
  35. struct list_head sp_sockets; /* pending sockets */
  36. unsigned int sp_nrthreads; /* # of threads in pool */
  37. struct list_head sp_all_threads; /* all server threads */
  38. } ____cacheline_aligned_in_smp;
  39. /*
  40. * RPC service.
  41. *
  42. * An RPC service is a ``daemon,'' possibly multithreaded, which
  43. * receives and processes incoming RPC messages.
  44. * It has one or more transport sockets associated with it, and maintains
  45. * a list of idle threads waiting for input.
  46. *
  47. * We currently do not support more than one RPC program per daemon.
  48. */
  49. struct svc_serv {
  50. struct svc_program * sv_program; /* RPC program */
  51. struct svc_stat * sv_stats; /* RPC statistics */
  52. spinlock_t sv_lock;
  53. unsigned int sv_nrthreads; /* # of server threads */
  54. unsigned int sv_bufsz; /* datagram buffer size */
  55. unsigned int sv_xdrsize; /* XDR buffer size */
  56. struct list_head sv_permsocks; /* all permanent sockets */
  57. struct list_head sv_tempsocks; /* all temporary sockets */
  58. int sv_tmpcnt; /* count of temporary sockets */
  59. struct timer_list sv_temptimer; /* timer for aging temporary sockets */
  60. char * sv_name; /* service name */
  61. unsigned int sv_nrpools; /* number of thread pools */
  62. struct svc_pool * sv_pools; /* array of thread pools */
  63. void (*sv_shutdown)(struct svc_serv *serv);
  64. /* Callback to use when last thread
  65. * exits.
  66. */
  67. struct module * sv_module; /* optional module to count when
  68. * adding threads */
  69. svc_thread_fn sv_function; /* main function for threads */
  70. int sv_kill_signal; /* signal to kill threads */
  71. };
  72. /*
  73. * We use sv_nrthreads as a reference count. svc_destroy() drops
  74. * this refcount, so we need to bump it up around operations that
  75. * change the number of threads. Horrible, but there it is.
  76. * Should be called with the BKL held.
  77. */
  78. static inline void svc_get(struct svc_serv *serv)
  79. {
  80. serv->sv_nrthreads++;
  81. }
  82. /*
  83. * Maximum payload size supported by a kernel RPC server.
  84. * This is use to determine the max number of pages nfsd is
  85. * willing to return in a single READ operation.
  86. *
  87. * These happen to all be powers of 2, which is not strictly
  88. * necessary but helps enforce the real limitation, which is
  89. * that they should be multiples of PAGE_CACHE_SIZE.
  90. *
  91. * For UDP transports, a block plus NFS,RPC, and UDP headers
  92. * has to fit into the IP datagram limit of 64K. The largest
  93. * feasible number for all known page sizes is probably 48K,
  94. * but we choose 32K here. This is the same as the historical
  95. * Linux limit; someone who cares more about NFS/UDP performance
  96. * can test a larger number.
  97. *
  98. * For TCP transports we have more freedom. A size of 1MB is
  99. * chosen to match the client limit. Other OSes are known to
  100. * have larger limits, but those numbers are probably beyond
  101. * the point of diminishing returns.
  102. */
  103. #define RPCSVC_MAXPAYLOAD (1*1024*1024u)
  104. #define RPCSVC_MAXPAYLOAD_TCP RPCSVC_MAXPAYLOAD
  105. #define RPCSVC_MAXPAYLOAD_UDP (32*1024u)
  106. extern u32 svc_max_payload(const struct svc_rqst *rqstp);
  107. /*
  108. * RPC Requsts and replies are stored in one or more pages.
  109. * We maintain an array of pages for each server thread.
  110. * Requests are copied into these pages as they arrive. Remaining
  111. * pages are available to write the reply into.
  112. *
  113. * Pages are sent using ->sendpage so each server thread needs to
  114. * allocate more to replace those used in sending. To help keep track
  115. * of these pages we have a receive list where all pages initialy live,
  116. * and a send list where pages are moved to when there are to be part
  117. * of a reply.
  118. *
  119. * We use xdr_buf for holding responses as it fits well with NFS
  120. * read responses (that have a header, and some data pages, and possibly
  121. * a tail) and means we can share some client side routines.
  122. *
  123. * The xdr_buf.head kvec always points to the first page in the rq_*pages
  124. * list. The xdr_buf.pages pointer points to the second page on that
  125. * list. xdr_buf.tail points to the end of the first page.
  126. * This assumes that the non-page part of an rpc reply will fit
  127. * in a page - NFSd ensures this. lockd also has no trouble.
  128. *
  129. * Each request/reply pair can have at most one "payload", plus two pages,
  130. * one for the request, and one for the reply.
  131. */
  132. #define RPCSVC_MAXPAGES ((RPCSVC_MAXPAYLOAD+PAGE_SIZE-1)/PAGE_SIZE + 2)
  133. static inline u32 svc_getnl(struct kvec *iov)
  134. {
  135. __be32 val, *vp;
  136. vp = iov->iov_base;
  137. val = *vp++;
  138. iov->iov_base = (void*)vp;
  139. iov->iov_len -= sizeof(__be32);
  140. return ntohl(val);
  141. }
  142. static inline void svc_putnl(struct kvec *iov, u32 val)
  143. {
  144. __be32 *vp = iov->iov_base + iov->iov_len;
  145. *vp = htonl(val);
  146. iov->iov_len += sizeof(__be32);
  147. }
  148. static inline __be32 svc_getu32(struct kvec *iov)
  149. {
  150. __be32 val, *vp;
  151. vp = iov->iov_base;
  152. val = *vp++;
  153. iov->iov_base = (void*)vp;
  154. iov->iov_len -= sizeof(__be32);
  155. return val;
  156. }
  157. static inline void svc_ungetu32(struct kvec *iov)
  158. {
  159. __be32 *vp = (__be32 *)iov->iov_base;
  160. iov->iov_base = (void *)(vp - 1);
  161. iov->iov_len += sizeof(*vp);
  162. }
  163. static inline void svc_putu32(struct kvec *iov, __be32 val)
  164. {
  165. __be32 *vp = iov->iov_base + iov->iov_len;
  166. *vp = val;
  167. iov->iov_len += sizeof(__be32);
  168. }
  169. /*
  170. * The context of a single thread, including the request currently being
  171. * processed.
  172. */
  173. struct svc_rqst {
  174. struct list_head rq_list; /* idle list */
  175. struct list_head rq_all; /* all threads list */
  176. struct svc_sock * rq_sock; /* socket */
  177. struct sockaddr_in rq_addr; /* peer address */
  178. int rq_addrlen;
  179. struct svc_serv * rq_server; /* RPC service definition */
  180. struct svc_pool * rq_pool; /* thread pool */
  181. struct svc_procedure * rq_procinfo; /* procedure info */
  182. struct auth_ops * rq_authop; /* authentication flavour */
  183. struct svc_cred rq_cred; /* auth info */
  184. struct sk_buff * rq_skbuff; /* fast recv inet buffer */
  185. struct svc_deferred_req*rq_deferred; /* deferred request we are replaying */
  186. struct xdr_buf rq_arg;
  187. struct xdr_buf rq_res;
  188. struct page * rq_pages[RPCSVC_MAXPAGES];
  189. struct page * *rq_respages; /* points into rq_pages */
  190. int rq_resused; /* number of pages used for result */
  191. struct kvec rq_vec[RPCSVC_MAXPAGES]; /* generally useful.. */
  192. __be32 rq_xid; /* transmission id */
  193. u32 rq_prog; /* program number */
  194. u32 rq_vers; /* program version */
  195. u32 rq_proc; /* procedure number */
  196. u32 rq_prot; /* IP protocol */
  197. unsigned short
  198. rq_secure : 1; /* secure port */
  199. __be32 rq_daddr; /* dest addr of request - reply from here */
  200. void * rq_argp; /* decoded arguments */
  201. void * rq_resp; /* xdr'd results */
  202. void * rq_auth_data; /* flavor-specific data */
  203. int rq_reserved; /* space on socket outq
  204. * reserved for this request
  205. */
  206. struct cache_req rq_chandle; /* handle passed to caches for
  207. * request delaying
  208. */
  209. /* Catering to nfsd */
  210. struct auth_domain * rq_client; /* RPC peer info */
  211. struct svc_cacherep * rq_cacherep; /* cache info */
  212. struct knfsd_fh * rq_reffh; /* Referrence filehandle, used to
  213. * determine what device number
  214. * to report (real or virtual)
  215. */
  216. int rq_sendfile_ok; /* turned off in gss privacy
  217. * to prevent encrypting page
  218. * cache pages */
  219. wait_queue_head_t rq_wait; /* synchronization */
  220. struct task_struct *rq_task; /* service thread */
  221. };
  222. /*
  223. * Check buffer bounds after decoding arguments
  224. */
  225. static inline int
  226. xdr_argsize_check(struct svc_rqst *rqstp, __be32 *p)
  227. {
  228. char *cp = (char *)p;
  229. struct kvec *vec = &rqstp->rq_arg.head[0];
  230. return cp >= (char*)vec->iov_base
  231. && cp <= (char*)vec->iov_base + vec->iov_len;
  232. }
  233. static inline int
  234. xdr_ressize_check(struct svc_rqst *rqstp, __be32 *p)
  235. {
  236. struct kvec *vec = &rqstp->rq_res.head[0];
  237. char *cp = (char*)p;
  238. vec->iov_len = cp - (char*)vec->iov_base;
  239. return vec->iov_len <= PAGE_SIZE;
  240. }
  241. static inline void svc_free_res_pages(struct svc_rqst *rqstp)
  242. {
  243. while (rqstp->rq_resused) {
  244. struct page **pp = (rqstp->rq_respages +
  245. --rqstp->rq_resused);
  246. if (*pp) {
  247. put_page(*pp);
  248. *pp = NULL;
  249. }
  250. }
  251. }
  252. struct svc_deferred_req {
  253. u32 prot; /* protocol (UDP or TCP) */
  254. struct sockaddr_in addr;
  255. struct svc_sock *svsk; /* where reply must go */
  256. __be32 daddr; /* where reply must come from */
  257. struct cache_deferred_req handle;
  258. int argslen;
  259. __be32 args[0];
  260. };
  261. /*
  262. * List of RPC programs on the same transport endpoint
  263. */
  264. struct svc_program {
  265. struct svc_program * pg_next; /* other programs (same xprt) */
  266. u32 pg_prog; /* program number */
  267. unsigned int pg_lovers; /* lowest version */
  268. unsigned int pg_hivers; /* lowest version */
  269. unsigned int pg_nvers; /* number of versions */
  270. struct svc_version ** pg_vers; /* version array */
  271. char * pg_name; /* service name */
  272. char * pg_class; /* class name: services sharing authentication */
  273. struct svc_stat * pg_stats; /* rpc statistics */
  274. int (*pg_authenticate)(struct svc_rqst *);
  275. };
  276. /*
  277. * RPC program version
  278. */
  279. struct svc_version {
  280. u32 vs_vers; /* version number */
  281. u32 vs_nproc; /* number of procedures */
  282. struct svc_procedure * vs_proc; /* per-procedure info */
  283. u32 vs_xdrsize; /* xdrsize needed for this version */
  284. /* Override dispatch function (e.g. when caching replies).
  285. * A return value of 0 means drop the request.
  286. * vs_dispatch == NULL means use default dispatcher.
  287. */
  288. int (*vs_dispatch)(struct svc_rqst *, __be32 *);
  289. };
  290. /*
  291. * RPC procedure info
  292. */
  293. typedef int (*svc_procfunc)(struct svc_rqst *, void *argp, void *resp);
  294. struct svc_procedure {
  295. svc_procfunc pc_func; /* process the request */
  296. kxdrproc_t pc_decode; /* XDR decode args */
  297. kxdrproc_t pc_encode; /* XDR encode result */
  298. kxdrproc_t pc_release; /* XDR free result */
  299. unsigned int pc_argsize; /* argument struct size */
  300. unsigned int pc_ressize; /* result struct size */
  301. unsigned int pc_count; /* call count */
  302. unsigned int pc_cachetype; /* cache info (NFS) */
  303. unsigned int pc_xdrressize; /* maximum size of XDR reply */
  304. };
  305. /*
  306. * Function prototypes.
  307. */
  308. struct svc_serv * svc_create(struct svc_program *, unsigned int,
  309. void (*shutdown)(struct svc_serv*));
  310. int svc_create_thread(svc_thread_fn, struct svc_serv *);
  311. void svc_exit_thread(struct svc_rqst *);
  312. struct svc_serv * svc_create_pooled(struct svc_program *, unsigned int,
  313. void (*shutdown)(struct svc_serv*),
  314. svc_thread_fn, int sig, struct module *);
  315. int svc_set_num_threads(struct svc_serv *, struct svc_pool *, int);
  316. void svc_destroy(struct svc_serv *);
  317. int svc_process(struct svc_rqst *);
  318. int svc_register(struct svc_serv *, int, unsigned short);
  319. void svc_wake_up(struct svc_serv *);
  320. void svc_reserve(struct svc_rqst *rqstp, int space);
  321. struct svc_pool * svc_pool_for_cpu(struct svc_serv *serv, int cpu);
  322. #endif /* SUNRPC_SVC_H */