blob: 306fc0f545967a1643a4b80c6d787637a9950329 [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
17#define NFS_NGROUPS 16
18
19struct unx_cred {
20 struct rpc_cred uc_base;
Eric W. Biederman7eaf0402013-02-01 16:31:17 -080021 kgid_t uc_gid;
22 kgid_t uc_gids[NFS_NGROUPS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070023};
24#define uc_uid uc_base.cr_uid
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Jeff Laytonf895b252014-11-17 16:58:04 -050026#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027# define RPCDBG_FACILITY RPCDBG_AUTH
28#endif
29
30static struct rpc_auth unix_auth;
Trond Myklebustf1c0a862007-06-23 20:17:58 -040031static const struct rpc_credops unix_credops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33static struct rpc_auth *
Trond Myklebustc2190662013-08-26 19:23:04 -040034unx_create(struct rpc_auth_create_args *args, struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Chuck Lever46121cf2007-01-31 12:14:08 -050036 dprintk("RPC: creating UNIX authenticator for client %p\n",
37 clnt);
Trond Myklebustf5c21872007-06-25 17:11:20 -040038 atomic_inc(&unix_auth.au_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 return &unix_auth;
40}
41
42static void
43unx_destroy(struct rpc_auth *auth)
44{
Chuck Lever46121cf2007-01-31 12:14:08 -050045 dprintk("RPC: destroying UNIX authenticator %p\n", auth);
Trond Myklebust3ab9bb72007-06-09 15:41:42 -040046 rpcauth_clear_credcache(auth->au_credcache);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047}
48
Frank Sorenson1e035d02016-09-29 10:44:39 -050049static int
50unx_hash_cred(struct auth_cred *acred, unsigned int hashbits)
51{
52 return hash_64(from_kgid(&init_user_ns, acred->gid) |
53 ((u64)from_kuid(&init_user_ns, acred->uid) <<
54 (sizeof(gid_t) * 8)), hashbits);
55}
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*
58 * Lookup AUTH_UNIX creds for current process
59 */
60static struct rpc_cred *
61unx_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
62{
Jeff Layton3c6e0bc2016-04-21 20:51:54 -040063 return rpcauth_lookup_credcache(auth, acred, flags, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
66static struct rpc_cred *
Jeff Layton3c6e0bc2016-04-21 20:51:54 -040067unx_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 struct unx_cred *cred;
Trond Myklebustaf093832008-03-12 12:12:16 -040070 unsigned int groups = 0;
71 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Chuck Lever46121cf2007-01-31 12:14:08 -050073 dprintk("RPC: allocating UNIX cred for uid %d gid %d\n",
Eric W. Biedermancdba3212013-02-01 17:10:52 -080074 from_kuid(&init_user_ns, acred->uid),
75 from_kgid(&init_user_ns, acred->gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Jeff Layton3c6e0bc2016-04-21 20:51:54 -040077 if (!(cred = kmalloc(sizeof(*cred), gfp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return ERR_PTR(-ENOMEM);
79
Trond Myklebust5fe47552007-06-23 19:55:31 -040080 rpcauth_init_cred(&cred->uc_base, acred, auth, &unix_credops);
Trond Myklebustfc432dd2007-06-25 10:15:15 -040081 cred->uc_base.cr_flags = 1UL << RPCAUTH_CRED_UPTODATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Trond Myklebustaf093832008-03-12 12:12:16 -040083 if (acred->group_info != NULL)
84 groups = acred->group_info->ngroups;
85 if (groups > NFS_NGROUPS)
86 groups = NFS_NGROUPS;
87
88 cred->uc_gid = acred->gid;
Eric W. Biederman9132adb2013-02-01 16:46:42 -080089 for (i = 0; i < groups; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070090 cred->uc_gids[i] = acred->group_info->gid[i];
Trond Myklebustaf093832008-03-12 12:12:16 -040091 if (i < NFS_NGROUPS)
Eric W. Biedermanbf37f792013-02-01 15:55:38 -080092 cred->uc_gids[i] = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Trond Myklebust696e38d2007-06-25 09:48:25 -040094 return &cred->uc_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
97static void
Trond Myklebust31be5bf2007-06-24 15:55:26 -040098unx_free_cred(struct unx_cred *unx_cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400100 dprintk("RPC: unx_free_cred %p\n", unx_cred);
101 kfree(unx_cred);
102}
Trond Myklebust696e38d2007-06-25 09:48:25 -0400103
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400104static void
105unx_free_cred_callback(struct rcu_head *head)
106{
107 struct unx_cred *unx_cred = container_of(head, struct unx_cred, uc_base.cr_rcu);
108 unx_free_cred(unx_cred);
109}
110
111static void
112unx_destroy_cred(struct rpc_cred *cred)
113{
114 call_rcu(&cred->cr_rcu, unx_free_cred_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117/*
118 * Match credentials against current process creds.
119 * The root_override argument takes care of cases where the caller may
120 * request root creds (e.g. for NFS swapping).
121 */
122static int
Trond Myklebust8a317762006-02-01 12:18:36 -0500123unx_match(struct auth_cred *acred, struct rpc_cred *rcred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Trond Myklebust696e38d2007-06-25 09:48:25 -0400125 struct unx_cred *cred = container_of(rcred, struct unx_cred, uc_base);
Trond Myklebustaf093832008-03-12 12:12:16 -0400126 unsigned int groups = 0;
127 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Eric W. Biederman0b4d51b2013-02-01 16:39:32 -0800130 if (!uid_eq(cred->uc_uid, acred->uid) || !gid_eq(cred->uc_gid, acred->gid))
Trond Myklebustaf093832008-03-12 12:12:16 -0400131 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Trond Myklebustaf093832008-03-12 12:12:16 -0400133 if (acred->group_info != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 groups = acred->group_info->ngroups;
Trond Myklebustaf093832008-03-12 12:12:16 -0400135 if (groups > NFS_NGROUPS)
136 groups = NFS_NGROUPS;
Eric W. Biederman9132adb2013-02-01 16:46:42 -0800137 for (i = 0; i < groups ; i++)
Alexey Dobriyan81243ea2016-10-07 17:03:12 -0700138 if (!gid_eq(cred->uc_gids[i], acred->group_info->gid[i]))
Trond Myklebustaf093832008-03-12 12:12:16 -0400139 return 0;
Eric W. Biedermane572fc72013-02-01 17:18:04 -0800140 if (groups < NFS_NGROUPS && gid_valid(cred->uc_gids[groups]))
NeilBrowndc6f55e2011-10-25 10:25:49 +1100141 return 0;
Trond Myklebustaf093832008-03-12 12:12:16 -0400142 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
145/*
146 * Marshal credentials.
147 * Maybe we should keep a cached credential for performance reasons.
148 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700149static __be32 *
150unx_marshal(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct rpc_clnt *clnt = task->tk_client;
Trond Myklebusta17c2152010-07-31 14:29:08 -0400153 struct unx_cred *cred = container_of(task->tk_rqstp->rq_cred, struct unx_cred, uc_base);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700154 __be32 *base, *hold;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 int i;
156
157 *p++ = htonl(RPC_AUTH_UNIX);
158 base = p++;
159 *p++ = htonl(jiffies/HZ);
160
161 /*
162 * Copy the UTS nodename captured when the client was created.
163 */
164 p = xdr_encode_array(p, clnt->cl_nodename, clnt->cl_nodelen);
165
Eric W. Biedermana570abb2013-02-02 02:45:08 -0800166 *p++ = htonl((u32) from_kuid(&init_user_ns, cred->uc_uid));
167 *p++ = htonl((u32) from_kgid(&init_user_ns, cred->uc_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 hold = p++;
Eric W. Biedermane572fc72013-02-01 17:18:04 -0800169 for (i = 0; i < 16 && gid_valid(cred->uc_gids[i]); i++)
Eric W. Biedermana570abb2013-02-02 02:45:08 -0800170 *p++ = htonl((u32) from_kgid(&init_user_ns, cred->uc_gids[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *hold = htonl(p - hold - 1); /* gid array length */
172 *base = htonl((p - base - 1) << 2); /* cred length */
173
174 *p++ = htonl(RPC_AUTH_NULL);
175 *p++ = htonl(0);
176
177 return p;
178}
179
180/*
181 * Refresh credentials. This is a no-op for AUTH_UNIX
182 */
183static int
184unx_refresh(struct rpc_task *task)
185{
Trond Myklebusta17c2152010-07-31 14:29:08 -0400186 set_bit(RPCAUTH_CRED_UPTODATE, &task->tk_rqstp->rq_cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return 0;
188}
189
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700190static __be32 *
191unx_validate(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 rpc_authflavor_t flavor;
194 u32 size;
195
196 flavor = ntohl(*p++);
197 if (flavor != RPC_AUTH_NULL &&
198 flavor != RPC_AUTH_UNIX &&
199 flavor != RPC_AUTH_SHORT) {
200 printk("RPC: bad verf flavor: %u\n", flavor);
Andy Adamson35fa5f72013-08-14 11:59:17 -0400201 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
204 size = ntohl(*p++);
205 if (size > RPC_MAX_AUTH_SIZE) {
206 printk("RPC: giant verf size: %u\n", size);
Andy Adamson35fa5f72013-08-14 11:59:17 -0400207 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
Trond Myklebusta17c2152010-07-31 14:29:08 -0400209 task->tk_rqstp->rq_cred->cr_auth->au_rslack = (size >> 2) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 p += (size >> 2);
211
212 return p;
213}
214
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400215int __init rpc_init_authunix(void)
Trond Myklebust9499b432007-06-24 15:57:57 -0400216{
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400217 return rpcauth_init_credcache(&unix_auth);
218}
219
220void rpc_destroy_authunix(void)
221{
222 rpcauth_destroy_credcache(&unix_auth);
Trond Myklebust9499b432007-06-24 15:57:57 -0400223}
224
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400225const struct rpc_authops authunix_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 .owner = THIS_MODULE,
227 .au_flavor = RPC_AUTH_UNIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 .au_name = "UNIX",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 .create = unx_create,
230 .destroy = unx_destroy,
Frank Sorenson1e035d02016-09-29 10:44:39 -0500231 .hash_cred = unx_hash_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 .lookup_cred = unx_lookup_cred,
233 .crcreate = unx_create_cred,
234};
235
236static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237struct rpc_auth unix_auth = {
Chuck Lever45006322016-03-01 13:06:02 -0500238 .au_cslack = UNX_CALLSLACK,
239 .au_rslack = NUL_REPLYSLACK,
Scott Mayhewce52914e2016-06-07 15:14:48 -0400240 .au_flags = RPCAUTH_AUTH_NO_CRKEY_TIMEOUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 .au_ops = &authunix_ops,
Trond Myklebust81039f12006-06-09 09:34:34 -0400242 .au_flavor = RPC_AUTH_UNIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 .au_count = ATOMIC_INIT(0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244};
245
246static
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400247const struct rpc_credops unix_credops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .cr_name = "AUTH_UNIX",
249 .crdestroy = unx_destroy_cred,
Trond Myklebust5c691042008-03-12 16:21:07 -0400250 .crbind = rpcauth_generic_bind_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 .crmatch = unx_match,
252 .crmarshal = unx_marshal,
253 .crrefresh = unx_refresh,
254 .crvalidate = unx_validate,
255};