auth_unix.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. /*
  2. * linux/net/sunrpc/auth_unix.c
  3. *
  4. * UNIX-style authentication; no AUTH_SHORT support
  5. *
  6. * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
  7. */
  8. #include <linux/slab.h>
  9. #include <linux/types.h>
  10. #include <linux/sched.h>
  11. #include <linux/module.h>
  12. #include <linux/sunrpc/clnt.h>
  13. #include <linux/sunrpc/auth.h>
  14. #include <linux/user_namespace.h>
  15. #define NFS_NGROUPS 16
  16. struct unx_cred {
  17. struct rpc_cred uc_base;
  18. gid_t uc_gid;
  19. gid_t uc_gids[NFS_NGROUPS];
  20. };
  21. #define uc_uid uc_base.cr_uid
  22. #define UNX_WRITESLACK (21 + (UNX_MAXNODENAME >> 2))
  23. #ifdef RPC_DEBUG
  24. # define RPCDBG_FACILITY RPCDBG_AUTH
  25. #endif
  26. static struct rpc_auth unix_auth;
  27. static const struct rpc_credops unix_credops;
  28. static struct rpc_auth *
  29. unx_create(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
  30. {
  31. dprintk("RPC: creating UNIX authenticator for client %p\n",
  32. clnt);
  33. atomic_inc(&unix_auth.au_count);
  34. return &unix_auth;
  35. }
  36. static void
  37. unx_destroy(struct rpc_auth *auth)
  38. {
  39. dprintk("RPC: destroying UNIX authenticator %p\n", auth);
  40. rpcauth_clear_credcache(auth->au_credcache);
  41. }
  42. /*
  43. * Lookup AUTH_UNIX creds for current process
  44. */
  45. static struct rpc_cred *
  46. unx_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
  47. {
  48. return rpcauth_lookup_credcache(auth, acred, flags);
  49. }
  50. static struct rpc_cred *
  51. unx_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
  52. {
  53. struct unx_cred *cred;
  54. unsigned int groups = 0;
  55. unsigned int i;
  56. dprintk("RPC: allocating UNIX cred for uid %d gid %d\n",
  57. acred->uid, acred->gid);
  58. if (!(cred = kmalloc(sizeof(*cred), GFP_NOFS)))
  59. return ERR_PTR(-ENOMEM);
  60. rpcauth_init_cred(&cred->uc_base, acred, auth, &unix_credops);
  61. cred->uc_base.cr_flags = 1UL << RPCAUTH_CRED_UPTODATE;
  62. if (acred->group_info != NULL)
  63. groups = acred->group_info->ngroups;
  64. if (groups > NFS_NGROUPS)
  65. groups = NFS_NGROUPS;
  66. cred->uc_gid = acred->gid;
  67. for (i = 0; i < groups; i++) {
  68. gid_t gid;
  69. gid = from_kgid(&init_user_ns, GROUP_AT(acred->group_info, i));
  70. cred->uc_gids[i] = gid;
  71. }
  72. if (i < NFS_NGROUPS)
  73. cred->uc_gids[i] = NOGROUP;
  74. return &cred->uc_base;
  75. }
  76. static void
  77. unx_free_cred(struct unx_cred *unx_cred)
  78. {
  79. dprintk("RPC: unx_free_cred %p\n", unx_cred);
  80. kfree(unx_cred);
  81. }
  82. static void
  83. unx_free_cred_callback(struct rcu_head *head)
  84. {
  85. struct unx_cred *unx_cred = container_of(head, struct unx_cred, uc_base.cr_rcu);
  86. unx_free_cred(unx_cred);
  87. }
  88. static void
  89. unx_destroy_cred(struct rpc_cred *cred)
  90. {
  91. call_rcu(&cred->cr_rcu, unx_free_cred_callback);
  92. }
  93. /*
  94. * Match credentials against current process creds.
  95. * The root_override argument takes care of cases where the caller may
  96. * request root creds (e.g. for NFS swapping).
  97. */
  98. static int
  99. unx_match(struct auth_cred *acred, struct rpc_cred *rcred, int flags)
  100. {
  101. struct unx_cred *cred = container_of(rcred, struct unx_cred, uc_base);
  102. unsigned int groups = 0;
  103. unsigned int i;
  104. if (cred->uc_uid != acred->uid || cred->uc_gid != acred->gid)
  105. return 0;
  106. if (acred->group_info != NULL)
  107. groups = acred->group_info->ngroups;
  108. if (groups > NFS_NGROUPS)
  109. groups = NFS_NGROUPS;
  110. for (i = 0; i < groups ; i++) {
  111. gid_t gid;
  112. gid = from_kgid(&init_user_ns, GROUP_AT(acred->group_info, i));
  113. if (cred->uc_gids[i] != gid)
  114. return 0;
  115. }
  116. if (groups < NFS_NGROUPS &&
  117. cred->uc_gids[groups] != NOGROUP)
  118. return 0;
  119. return 1;
  120. }
  121. /*
  122. * Marshal credentials.
  123. * Maybe we should keep a cached credential for performance reasons.
  124. */
  125. static __be32 *
  126. unx_marshal(struct rpc_task *task, __be32 *p)
  127. {
  128. struct rpc_clnt *clnt = task->tk_client;
  129. struct unx_cred *cred = container_of(task->tk_rqstp->rq_cred, struct unx_cred, uc_base);
  130. __be32 *base, *hold;
  131. int i;
  132. *p++ = htonl(RPC_AUTH_UNIX);
  133. base = p++;
  134. *p++ = htonl(jiffies/HZ);
  135. /*
  136. * Copy the UTS nodename captured when the client was created.
  137. */
  138. p = xdr_encode_array(p, clnt->cl_nodename, clnt->cl_nodelen);
  139. *p++ = htonl((u32) cred->uc_uid);
  140. *p++ = htonl((u32) cred->uc_gid);
  141. hold = p++;
  142. for (i = 0; i < 16 && cred->uc_gids[i] != (gid_t) NOGROUP; i++)
  143. *p++ = htonl((u32) cred->uc_gids[i]);
  144. *hold = htonl(p - hold - 1); /* gid array length */
  145. *base = htonl((p - base - 1) << 2); /* cred length */
  146. *p++ = htonl(RPC_AUTH_NULL);
  147. *p++ = htonl(0);
  148. return p;
  149. }
  150. /*
  151. * Refresh credentials. This is a no-op for AUTH_UNIX
  152. */
  153. static int
  154. unx_refresh(struct rpc_task *task)
  155. {
  156. set_bit(RPCAUTH_CRED_UPTODATE, &task->tk_rqstp->rq_cred->cr_flags);
  157. return 0;
  158. }
  159. static __be32 *
  160. unx_validate(struct rpc_task *task, __be32 *p)
  161. {
  162. rpc_authflavor_t flavor;
  163. u32 size;
  164. flavor = ntohl(*p++);
  165. if (flavor != RPC_AUTH_NULL &&
  166. flavor != RPC_AUTH_UNIX &&
  167. flavor != RPC_AUTH_SHORT) {
  168. printk("RPC: bad verf flavor: %u\n", flavor);
  169. return NULL;
  170. }
  171. size = ntohl(*p++);
  172. if (size > RPC_MAX_AUTH_SIZE) {
  173. printk("RPC: giant verf size: %u\n", size);
  174. return NULL;
  175. }
  176. task->tk_rqstp->rq_cred->cr_auth->au_rslack = (size >> 2) + 2;
  177. p += (size >> 2);
  178. return p;
  179. }
  180. int __init rpc_init_authunix(void)
  181. {
  182. return rpcauth_init_credcache(&unix_auth);
  183. }
  184. void rpc_destroy_authunix(void)
  185. {
  186. rpcauth_destroy_credcache(&unix_auth);
  187. }
  188. const struct rpc_authops authunix_ops = {
  189. .owner = THIS_MODULE,
  190. .au_flavor = RPC_AUTH_UNIX,
  191. .au_name = "UNIX",
  192. .create = unx_create,
  193. .destroy = unx_destroy,
  194. .lookup_cred = unx_lookup_cred,
  195. .crcreate = unx_create_cred,
  196. };
  197. static
  198. struct rpc_auth unix_auth = {
  199. .au_cslack = UNX_WRITESLACK,
  200. .au_rslack = 2, /* assume AUTH_NULL verf */
  201. .au_ops = &authunix_ops,
  202. .au_flavor = RPC_AUTH_UNIX,
  203. .au_count = ATOMIC_INIT(0),
  204. };
  205. static
  206. const struct rpc_credops unix_credops = {
  207. .cr_name = "AUTH_UNIX",
  208. .crdestroy = unx_destroy_cred,
  209. .crbind = rpcauth_generic_bind_cred,
  210. .crmatch = unx_match,
  211. .crmarshal = unx_marshal,
  212. .crrefresh = unx_refresh,
  213. .crvalidate = unx_validate,
  214. };