blob: dafd6b870ba3946835b8aa00977e1aeeaa116b6a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/net/sunrpc/auth_unix.c
4 *
5 * UNIX-style authentication; no AUTH_SHORT support
6 *
7 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
8 */
9
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/types.h>
12#include <linux/sched.h>
13#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/sunrpc/clnt.h>
15#include <linux/sunrpc/auth.h>
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080016#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018struct unx_cred {
19 struct rpc_cred uc_base;
Eric W. Biederman7eaf0402013-02-01 16:31:17 -080020 kgid_t uc_gid;
Kinglong Mee57864612017-02-07 21:48:11 +080021 kgid_t uc_gids[UNX_NGROUPS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070022};
23#define uc_uid uc_base.cr_uid
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Jeff Laytonf895b252014-11-17 16:58:04 -050025#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026# define RPCDBG_FACILITY RPCDBG_AUTH
27#endif
28
29static struct rpc_auth unix_auth;
Trond Myklebustf1c0a862007-06-23 20:17:58 -040030static const struct rpc_credops unix_credops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32static struct rpc_auth *
Trond Myklebustc2190662013-08-26 19:23:04 -040033unx_create(struct rpc_auth_create_args *args, struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
Chuck Lever46121cf2007-01-31 12:14:08 -050035 dprintk("RPC: creating UNIX authenticator for client %p\n",
36 clnt);
Trond Myklebustf5c21872007-06-25 17:11:20 -040037 atomic_inc(&unix_auth.au_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 return &unix_auth;
39}
40
41static void
42unx_destroy(struct rpc_auth *auth)
43{
Chuck Lever46121cf2007-01-31 12:14:08 -050044 dprintk("RPC: destroying UNIX authenticator %p\n", auth);
Trond Myklebust3ab9bb72007-06-09 15:41:42 -040045 rpcauth_clear_credcache(auth->au_credcache);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
47
Frank Sorenson1e035d02016-09-29 10:44:39 -050048static int
49unx_hash_cred(struct auth_cred *acred, unsigned int hashbits)
50{
51 return hash_64(from_kgid(&init_user_ns, acred->gid) |
52 ((u64)from_kuid(&init_user_ns, acred->uid) <<
53 (sizeof(gid_t) * 8)), hashbits);
54}
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*
57 * Lookup AUTH_UNIX creds for current process
58 */
59static struct rpc_cred *
60unx_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
61{
Jeff Layton3c6e0bc2016-04-21 20:51:54 -040062 return rpcauth_lookup_credcache(auth, acred, flags, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
65static struct rpc_cred *
Jeff Layton3c6e0bc2016-04-21 20:51:54 -040066unx_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 struct unx_cred *cred;
Trond Myklebustaf093832008-03-12 12:12:16 -040069 unsigned int groups = 0;
70 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Chuck Lever46121cf2007-01-31 12:14:08 -050072 dprintk("RPC: allocating UNIX cred for uid %d gid %d\n",
Eric W. Biedermancdba3212013-02-01 17:10:52 -080073 from_kuid(&init_user_ns, acred->uid),
74 from_kgid(&init_user_ns, acred->gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Jeff Layton3c6e0bc2016-04-21 20:51:54 -040076 if (!(cred = kmalloc(sizeof(*cred), gfp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return ERR_PTR(-ENOMEM);
78
Trond Myklebust5fe47552007-06-23 19:55:31 -040079 rpcauth_init_cred(&cred->uc_base, acred, auth, &unix_credops);
Trond Myklebustfc432dd2007-06-25 10:15:15 -040080 cred->uc_base.cr_flags = 1UL << RPCAUTH_CRED_UPTODATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Trond Myklebustaf093832008-03-12 12:12:16 -040082 if (acred->group_info != NULL)
83 groups = acred->group_info->ngroups;
Kinglong Mee57864612017-02-07 21:48:11 +080084 if (groups > UNX_NGROUPS)
85 groups = UNX_NGROUPS;
Trond Myklebustaf093832008-03-12 12:12:16 -040086
87 cred->uc_gid = acred->gid;
Eric W. Biederman9132adb2013-02-01 16:46:42 -080088 for (i = 0; i < groups; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070089 cred->uc_gids[i] = acred->group_info->gid[i];
Kinglong Mee57864612017-02-07 21:48:11 +080090 if (i < UNX_NGROUPS)
Eric W. Biedermanbf37f792013-02-01 15:55:38 -080091 cred->uc_gids[i] = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Trond Myklebust696e38d2007-06-25 09:48:25 -040093 return &cred->uc_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96static void
Trond Myklebust31be5bf2007-06-24 15:55:26 -040097unx_free_cred(struct unx_cred *unx_cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Trond Myklebust31be5bf2007-06-24 15:55:26 -040099 dprintk("RPC: unx_free_cred %p\n", unx_cred);
100 kfree(unx_cred);
101}
Trond Myklebust696e38d2007-06-25 09:48:25 -0400102
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400103static void
104unx_free_cred_callback(struct rcu_head *head)
105{
106 struct unx_cred *unx_cred = container_of(head, struct unx_cred, uc_base.cr_rcu);
107 unx_free_cred(unx_cred);
108}
109
110static void
111unx_destroy_cred(struct rpc_cred *cred)
112{
113 call_rcu(&cred->cr_rcu, unx_free_cred_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116/*
117 * Match credentials against current process creds.
118 * The root_override argument takes care of cases where the caller may
119 * request root creds (e.g. for NFS swapping).
120 */
121static int
Trond Myklebust8a317762006-02-01 12:18:36 -0500122unx_match(struct auth_cred *acred, struct rpc_cred *rcred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Trond Myklebust696e38d2007-06-25 09:48:25 -0400124 struct unx_cred *cred = container_of(rcred, struct unx_cred, uc_base);
Trond Myklebustaf093832008-03-12 12:12:16 -0400125 unsigned int groups = 0;
126 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Eric W. Biederman0b4d51b2013-02-01 16:39:32 -0800129 if (!uid_eq(cred->uc_uid, acred->uid) || !gid_eq(cred->uc_gid, acred->gid))
Trond Myklebustaf093832008-03-12 12:12:16 -0400130 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Trond Myklebustaf093832008-03-12 12:12:16 -0400132 if (acred->group_info != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 groups = acred->group_info->ngroups;
Kinglong Mee57864612017-02-07 21:48:11 +0800134 if (groups > UNX_NGROUPS)
135 groups = UNX_NGROUPS;
Eric W. Biederman9132adb2013-02-01 16:46:42 -0800136 for (i = 0; i < groups ; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -0700137 if (!gid_eq(cred->uc_gids[i], acred->group_info->gid[i]))
Trond Myklebustaf093832008-03-12 12:12:16 -0400138 return 0;
Kinglong Mee57864612017-02-07 21:48:11 +0800139 if (groups < UNX_NGROUPS && gid_valid(cred->uc_gids[groups]))
NeilBrowndc6f55e2011-10-25 10:25:49 +1100140 return 0;
Trond Myklebustaf093832008-03-12 12:12:16 -0400141 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
144/*
145 * Marshal credentials.
146 * Maybe we should keep a cached credential for performance reasons.
147 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700148static __be32 *
149unx_marshal(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 struct rpc_clnt *clnt = task->tk_client;
Trond Myklebusta17c2152010-07-31 14:29:08 -0400152 struct unx_cred *cred = container_of(task->tk_rqstp->rq_cred, struct unx_cred, uc_base);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700153 __be32 *base, *hold;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 int i;
155
156 *p++ = htonl(RPC_AUTH_UNIX);
157 base = p++;
158 *p++ = htonl(jiffies/HZ);
159
160 /*
161 * Copy the UTS nodename captured when the client was created.
162 */
163 p = xdr_encode_array(p, clnt->cl_nodename, clnt->cl_nodelen);
164
Eric W. Biedermana570abb2013-02-02 02:45:08 -0800165 *p++ = htonl((u32) from_kuid(&init_user_ns, cred->uc_uid));
166 *p++ = htonl((u32) from_kgid(&init_user_ns, cred->uc_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 hold = p++;
Kinglong Mee57864612017-02-07 21:48:11 +0800168 for (i = 0; i < UNX_NGROUPS && gid_valid(cred->uc_gids[i]); i++)
Eric W. Biedermana570abb2013-02-02 02:45:08 -0800169 *p++ = htonl((u32) from_kgid(&init_user_ns, cred->uc_gids[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 *hold = htonl(p - hold - 1); /* gid array length */
171 *base = htonl((p - base - 1) << 2); /* cred length */
172
173 *p++ = htonl(RPC_AUTH_NULL);
174 *p++ = htonl(0);
175
176 return p;
177}
178
179/*
180 * Refresh credentials. This is a no-op for AUTH_UNIX
181 */
182static int
183unx_refresh(struct rpc_task *task)
184{
Trond Myklebusta17c2152010-07-31 14:29:08 -0400185 set_bit(RPCAUTH_CRED_UPTODATE, &task->tk_rqstp->rq_cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return 0;
187}
188
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700189static __be32 *
190unx_validate(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 rpc_authflavor_t flavor;
193 u32 size;
194
195 flavor = ntohl(*p++);
196 if (flavor != RPC_AUTH_NULL &&
197 flavor != RPC_AUTH_UNIX &&
198 flavor != RPC_AUTH_SHORT) {
199 printk("RPC: bad verf flavor: %u\n", flavor);
Andy Adamson35fa5f72013-08-14 11:59:17 -0400200 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202
203 size = ntohl(*p++);
204 if (size > RPC_MAX_AUTH_SIZE) {
205 printk("RPC: giant verf size: %u\n", size);
Andy Adamson35fa5f72013-08-14 11:59:17 -0400206 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
Trond Myklebusta17c2152010-07-31 14:29:08 -0400208 task->tk_rqstp->rq_cred->cr_auth->au_rslack = (size >> 2) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 p += (size >> 2);
210
211 return p;
212}
213
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400214int __init rpc_init_authunix(void)
Trond Myklebust9499b432007-06-24 15:57:57 -0400215{
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400216 return rpcauth_init_credcache(&unix_auth);
217}
218
219void rpc_destroy_authunix(void)
220{
221 rpcauth_destroy_credcache(&unix_auth);
Trond Myklebust9499b432007-06-24 15:57:57 -0400222}
223
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400224const struct rpc_authops authunix_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 .owner = THIS_MODULE,
226 .au_flavor = RPC_AUTH_UNIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .au_name = "UNIX",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 .create = unx_create,
229 .destroy = unx_destroy,
Frank Sorenson1e035d02016-09-29 10:44:39 -0500230 .hash_cred = unx_hash_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 .lookup_cred = unx_lookup_cred,
232 .crcreate = unx_create_cred,
233};
234
235static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236struct rpc_auth unix_auth = {
Chuck Lever45006322016-03-01 13:06:02 -0500237 .au_cslack = UNX_CALLSLACK,
238 .au_rslack = NUL_REPLYSLACK,
Scott Mayhewce52914e2016-06-07 15:14:48 -0400239 .au_flags = RPCAUTH_AUTH_NO_CRKEY_TIMEOUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 .au_ops = &authunix_ops,
Trond Myklebust81039f12006-06-09 09:34:34 -0400241 .au_flavor = RPC_AUTH_UNIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 .au_count = ATOMIC_INIT(0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243};
244
245static
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400246const struct rpc_credops unix_credops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 .cr_name = "AUTH_UNIX",
248 .crdestroy = unx_destroy_cred,
Trond Myklebust5c691042008-03-12 16:21:07 -0400249 .crbind = rpcauth_generic_bind_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 .crmatch = unx_match,
251 .crmarshal = unx_marshal,
252 .crrefresh = unx_refresh,
253 .crvalidate = unx_validate,
254};