auth_unix.c 5.7 KB

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