blob: 82337e1ec9cdc76cdcd30fe9fda0684814c95258 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/types.h>
11#include <linux/sched.h>
12#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/sunrpc/clnt.h>
14#include <linux/sunrpc/auth.h>
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080015#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017struct unx_cred {
18 struct rpc_cred uc_base;
Eric W. Biederman7eaf0402013-02-01 16:31:17 -080019 kgid_t uc_gid;
Kinglong Mee57864612017-02-07 21:48:11 +080020 kgid_t uc_gids[UNX_NGROUPS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070021};
22#define uc_uid uc_base.cr_uid
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Jeff Laytonf895b252014-11-17 16:58:04 -050024#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025# define RPCDBG_FACILITY RPCDBG_AUTH
26#endif
27
28static struct rpc_auth unix_auth;
Trond Myklebustf1c0a862007-06-23 20:17:58 -040029static const struct rpc_credops unix_credops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31static struct rpc_auth *
Trond Myklebustc2190662013-08-26 19:23:04 -040032unx_create(struct rpc_auth_create_args *args, struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
Chuck Lever46121cf2007-01-31 12:14:08 -050034 dprintk("RPC: creating UNIX authenticator for client %p\n",
35 clnt);
Trond Myklebustf5c21872007-06-25 17:11:20 -040036 atomic_inc(&unix_auth.au_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 return &unix_auth;
38}
39
40static void
41unx_destroy(struct rpc_auth *auth)
42{
Chuck Lever46121cf2007-01-31 12:14:08 -050043 dprintk("RPC: destroying UNIX authenticator %p\n", auth);
Trond Myklebust3ab9bb72007-06-09 15:41:42 -040044 rpcauth_clear_credcache(auth->au_credcache);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
Frank Sorenson1e035d02016-09-29 10:44:39 -050047static int
48unx_hash_cred(struct auth_cred *acred, unsigned int hashbits)
49{
50 return hash_64(from_kgid(&init_user_ns, acred->gid) |
51 ((u64)from_kuid(&init_user_ns, acred->uid) <<
52 (sizeof(gid_t) * 8)), hashbits);
53}
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/*
56 * Lookup AUTH_UNIX creds for current process
57 */
58static struct rpc_cred *
59unx_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
60{
Jeff Layton3c6e0bc2016-04-21 20:51:54 -040061 return rpcauth_lookup_credcache(auth, acred, flags, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
64static struct rpc_cred *
Jeff Layton3c6e0bc2016-04-21 20:51:54 -040065unx_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 struct unx_cred *cred;
Trond Myklebustaf093832008-03-12 12:12:16 -040068 unsigned int groups = 0;
69 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Chuck Lever46121cf2007-01-31 12:14:08 -050071 dprintk("RPC: allocating UNIX cred for uid %d gid %d\n",
Eric W. Biedermancdba3212013-02-01 17:10:52 -080072 from_kuid(&init_user_ns, acred->uid),
73 from_kgid(&init_user_ns, acred->gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Jeff Layton3c6e0bc2016-04-21 20:51:54 -040075 if (!(cred = kmalloc(sizeof(*cred), gfp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return ERR_PTR(-ENOMEM);
77
Trond Myklebust5fe47552007-06-23 19:55:31 -040078 rpcauth_init_cred(&cred->uc_base, acred, auth, &unix_credops);
Trond Myklebustfc432dd2007-06-25 10:15:15 -040079 cred->uc_base.cr_flags = 1UL << RPCAUTH_CRED_UPTODATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Trond Myklebustaf093832008-03-12 12:12:16 -040081 if (acred->group_info != NULL)
82 groups = acred->group_info->ngroups;
Kinglong Mee57864612017-02-07 21:48:11 +080083 if (groups > UNX_NGROUPS)
84 groups = UNX_NGROUPS;
Trond Myklebustaf093832008-03-12 12:12:16 -040085
86 cred->uc_gid = acred->gid;
Eric W. Biederman9132adb2013-02-01 16:46:42 -080087 for (i = 0; i < groups; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070088 cred->uc_gids[i] = acred->group_info->gid[i];
Kinglong Mee57864612017-02-07 21:48:11 +080089 if (i < UNX_NGROUPS)
Eric W. Biedermanbf37f792013-02-01 15:55:38 -080090 cred->uc_gids[i] = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Trond Myklebust696e38d2007-06-25 09:48:25 -040092 return &cred->uc_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95static void
Trond Myklebust31be5bf2007-06-24 15:55:26 -040096unx_free_cred(struct unx_cred *unx_cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Trond Myklebust31be5bf2007-06-24 15:55:26 -040098 dprintk("RPC: unx_free_cred %p\n", unx_cred);
99 kfree(unx_cred);
100}
Trond Myklebust696e38d2007-06-25 09:48:25 -0400101
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400102static void
103unx_free_cred_callback(struct rcu_head *head)
104{
105 struct unx_cred *unx_cred = container_of(head, struct unx_cred, uc_base.cr_rcu);
106 unx_free_cred(unx_cred);
107}
108
109static void
110unx_destroy_cred(struct rpc_cred *cred)
111{
112 call_rcu(&cred->cr_rcu, unx_free_cred_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115/*
116 * Match credentials against current process creds.
117 * The root_override argument takes care of cases where the caller may
118 * request root creds (e.g. for NFS swapping).
119 */
120static int
Trond Myklebust8a317762006-02-01 12:18:36 -0500121unx_match(struct auth_cred *acred, struct rpc_cred *rcred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Trond Myklebust696e38d2007-06-25 09:48:25 -0400123 struct unx_cred *cred = container_of(rcred, struct unx_cred, uc_base);
Trond Myklebustaf093832008-03-12 12:12:16 -0400124 unsigned int groups = 0;
125 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Eric W. Biederman0b4d51b2013-02-01 16:39:32 -0800128 if (!uid_eq(cred->uc_uid, acred->uid) || !gid_eq(cred->uc_gid, acred->gid))
Trond Myklebustaf093832008-03-12 12:12:16 -0400129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Trond Myklebustaf093832008-03-12 12:12:16 -0400131 if (acred->group_info != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 groups = acred->group_info->ngroups;
Kinglong Mee57864612017-02-07 21:48:11 +0800133 if (groups > UNX_NGROUPS)
134 groups = UNX_NGROUPS;
Eric W. Biederman9132adb2013-02-01 16:46:42 -0800135 for (i = 0; i < groups ; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -0700136 if (!gid_eq(cred->uc_gids[i], acred->group_info->gid[i]))
Trond Myklebustaf093832008-03-12 12:12:16 -0400137 return 0;
Kinglong Mee57864612017-02-07 21:48:11 +0800138 if (groups < UNX_NGROUPS && gid_valid(cred->uc_gids[groups]))
NeilBrowndc6f55e2011-10-25 10:25:49 +1100139 return 0;
Trond Myklebustaf093832008-03-12 12:12:16 -0400140 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143/*
144 * Marshal credentials.
145 * Maybe we should keep a cached credential for performance reasons.
146 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700147static __be32 *
148unx_marshal(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 struct rpc_clnt *clnt = task->tk_client;
Trond Myklebusta17c2152010-07-31 14:29:08 -0400151 struct unx_cred *cred = container_of(task->tk_rqstp->rq_cred, struct unx_cred, uc_base);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700152 __be32 *base, *hold;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 int i;
154
155 *p++ = htonl(RPC_AUTH_UNIX);
156 base = p++;
157 *p++ = htonl(jiffies/HZ);
158
159 /*
160 * Copy the UTS nodename captured when the client was created.
161 */
162 p = xdr_encode_array(p, clnt->cl_nodename, clnt->cl_nodelen);
163
Eric W. Biedermana570abb2013-02-02 02:45:08 -0800164 *p++ = htonl((u32) from_kuid(&init_user_ns, cred->uc_uid));
165 *p++ = htonl((u32) from_kgid(&init_user_ns, cred->uc_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 hold = p++;
Kinglong Mee57864612017-02-07 21:48:11 +0800167 for (i = 0; i < UNX_NGROUPS && gid_valid(cred->uc_gids[i]); i++)
Eric W. Biedermana570abb2013-02-02 02:45:08 -0800168 *p++ = htonl((u32) from_kgid(&init_user_ns, cred->uc_gids[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 *hold = htonl(p - hold - 1); /* gid array length */
170 *base = htonl((p - base - 1) << 2); /* cred length */
171
172 *p++ = htonl(RPC_AUTH_NULL);
173 *p++ = htonl(0);
174
175 return p;
176}
177
178/*
179 * Refresh credentials. This is a no-op for AUTH_UNIX
180 */
181static int
182unx_refresh(struct rpc_task *task)
183{
Trond Myklebusta17c2152010-07-31 14:29:08 -0400184 set_bit(RPCAUTH_CRED_UPTODATE, &task->tk_rqstp->rq_cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return 0;
186}
187
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700188static __be32 *
189unx_validate(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 rpc_authflavor_t flavor;
192 u32 size;
193
194 flavor = ntohl(*p++);
195 if (flavor != RPC_AUTH_NULL &&
196 flavor != RPC_AUTH_UNIX &&
197 flavor != RPC_AUTH_SHORT) {
198 printk("RPC: bad verf flavor: %u\n", flavor);
Andy Adamson35fa5f72013-08-14 11:59:17 -0400199 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 size = ntohl(*p++);
203 if (size > RPC_MAX_AUTH_SIZE) {
204 printk("RPC: giant verf size: %u\n", size);
Andy Adamson35fa5f72013-08-14 11:59:17 -0400205 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
Trond Myklebusta17c2152010-07-31 14:29:08 -0400207 task->tk_rqstp->rq_cred->cr_auth->au_rslack = (size >> 2) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 p += (size >> 2);
209
210 return p;
211}
212
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400213int __init rpc_init_authunix(void)
Trond Myklebust9499b432007-06-24 15:57:57 -0400214{
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400215 return rpcauth_init_credcache(&unix_auth);
216}
217
218void rpc_destroy_authunix(void)
219{
220 rpcauth_destroy_credcache(&unix_auth);
Trond Myklebust9499b432007-06-24 15:57:57 -0400221}
222
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400223const struct rpc_authops authunix_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 .owner = THIS_MODULE,
225 .au_flavor = RPC_AUTH_UNIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 .au_name = "UNIX",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .create = unx_create,
228 .destroy = unx_destroy,
Frank Sorenson1e035d02016-09-29 10:44:39 -0500229 .hash_cred = unx_hash_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 .lookup_cred = unx_lookup_cred,
231 .crcreate = unx_create_cred,
232};
233
234static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235struct rpc_auth unix_auth = {
Chuck Lever45006322016-03-01 13:06:02 -0500236 .au_cslack = UNX_CALLSLACK,
237 .au_rslack = NUL_REPLYSLACK,
Scott Mayhewce52914e2016-06-07 15:14:48 -0400238 .au_flags = RPCAUTH_AUTH_NO_CRKEY_TIMEOUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 .au_ops = &authunix_ops,
Trond Myklebust81039f12006-06-09 09:34:34 -0400240 .au_flavor = RPC_AUTH_UNIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 .au_count = ATOMIC_INIT(0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242};
243
244static
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400245const struct rpc_credops unix_credops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 .cr_name = "AUTH_UNIX",
247 .crdestroy = unx_destroy_cred,
Trond Myklebust5c691042008-03-12 16:21:07 -0400248 .crbind = rpcauth_generic_bind_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 .crmatch = unx_match,
250 .crmarshal = unx_marshal,
251 .crrefresh = unx_refresh,
252 .crvalidate = unx_validate,
253};