blob: c048eb6deaaf52e153be6a63318d1a279963e1c7 [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>
NeilBrown2edd8d72018-12-03 11:30:31 +110014#include <linux/mempool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sunrpc/clnt.h>
16#include <linux/sunrpc/auth.h>
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080017#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Jeff Laytonf895b252014-11-17 16:58:04 -050020#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021# define RPCDBG_FACILITY RPCDBG_AUTH
22#endif
23
24static struct rpc_auth unix_auth;
Trond Myklebustf1c0a862007-06-23 20:17:58 -040025static const struct rpc_credops unix_credops;
NeilBrown2edd8d72018-12-03 11:30:31 +110026static mempool_t *unix_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28static struct rpc_auth *
Sargun Dhillon82b98ca2018-07-05 16:48:50 +000029unx_create(const struct rpc_auth_create_args *args, struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
Trond Myklebust331bc712018-10-14 10:40:29 -040031 refcount_inc(&unix_auth.au_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 return &unix_auth;
33}
34
35static void
36unx_destroy(struct rpc_auth *auth)
37{
Frank Sorenson1e035d02016-09-29 10:44:39 -050038}
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
41 * Lookup AUTH_UNIX creds for current process
42 */
43static struct rpc_cred *
44unx_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
45{
NeilBrown2edd8d72018-12-03 11:30:31 +110046 struct rpc_cred *ret = mempool_alloc(unix_pool, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
NeilBrown2edd8d72018-12-03 11:30:31 +110048 rpcauth_init_cred(ret, acred, auth, &unix_credops);
49 ret->cr_flags = 1UL << RPCAUTH_CRED_UPTODATE;
50 return ret;
Trond Myklebust31be5bf2007-06-24 15:55:26 -040051}
Trond Myklebust696e38d2007-06-25 09:48:25 -040052
Trond Myklebust31be5bf2007-06-24 15:55:26 -040053static void
54unx_free_cred_callback(struct rcu_head *head)
55{
NeilBrown2edd8d72018-12-03 11:30:31 +110056 struct rpc_cred *rpc_cred = container_of(head, struct rpc_cred, cr_rcu);
Chuck Lever80125d42019-02-11 11:24:32 -050057
NeilBrown2edd8d72018-12-03 11:30:31 +110058 put_cred(rpc_cred->cr_cred);
59 mempool_free(rpc_cred, unix_pool);
Trond Myklebust31be5bf2007-06-24 15:55:26 -040060}
61
62static void
63unx_destroy_cred(struct rpc_cred *cred)
64{
65 call_rcu(&cred->cr_rcu, unx_free_cred_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
68/*
NeilBrown2edd8d72018-12-03 11:30:31 +110069 * Match credentials against current the auth_cred.
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 */
71static int
NeilBrown2edd8d72018-12-03 11:30:31 +110072unx_match(struct auth_cred *acred, struct rpc_cred *cred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Trond Myklebustaf093832008-03-12 12:12:16 -040074 unsigned int groups = 0;
75 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
NeilBrown2edd8d72018-12-03 11:30:31 +110077 if (cred->cr_cred == acred->cred)
78 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
NeilBrown2edd8d72018-12-03 11:30:31 +110080 if (!uid_eq(cred->cr_cred->fsuid, acred->cred->fsuid) || !gid_eq(cred->cr_cred->fsgid, acred->cred->fsgid))
Trond Myklebustaf093832008-03-12 12:12:16 -040081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
NeilBrownfc0664f2018-12-03 11:30:30 +110083 if (acred->cred && acred->cred->group_info != NULL)
84 groups = acred->cred->group_info->ngroups;
Kinglong Mee57864612017-02-07 21:48:11 +080085 if (groups > UNX_NGROUPS)
86 groups = UNX_NGROUPS;
NeilBrown2edd8d72018-12-03 11:30:31 +110087 if (cred->cr_cred->group_info == NULL)
88 return groups == 0;
89 if (groups != cred->cr_cred->group_info->ngroups)
NeilBrowndc6f55e2011-10-25 10:25:49 +110090 return 0;
NeilBrown2edd8d72018-12-03 11:30:31 +110091
92 for (i = 0; i < groups ; i++)
93 if (!gid_eq(cred->cr_cred->group_info->gid[i], acred->cred->group_info->gid[i]))
94 return 0;
Trond Myklebustaf093832008-03-12 12:12:16 -040095 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98/*
99 * Marshal credentials.
100 * Maybe we should keep a cached credential for performance reasons.
101 */
Chuck Levere8680a22019-02-11 11:24:48 -0500102static int
103unx_marshal(struct rpc_task *task, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 struct rpc_clnt *clnt = task->tk_client;
NeilBrown2edd8d72018-12-03 11:30:31 +1100106 struct rpc_cred *cred = task->tk_rqstp->rq_cred;
Chuck Levere8680a22019-02-11 11:24:48 -0500107 __be32 *p, *cred_len, *gidarr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 int i;
NeilBrown2edd8d72018-12-03 11:30:31 +1100109 struct group_info *gi = cred->cr_cred->group_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Chuck Levere8680a22019-02-11 11:24:48 -0500111 /* Credential */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Chuck Levere8680a22019-02-11 11:24:48 -0500113 p = xdr_reserve_space(xdr, 3 * sizeof(*p));
114 if (!p)
115 goto marshal_failed;
116 *p++ = rpc_auth_unix;
117 cred_len = p++;
118 *p++ = xdr_zero; /* stamp */
119 if (xdr_stream_encode_opaque(xdr, clnt->cl_nodename,
120 clnt->cl_nodelen) < 0)
121 goto marshal_failed;
122 p = xdr_reserve_space(xdr, 3 * sizeof(*p));
123 if (!p)
124 goto marshal_failed;
125 *p++ = cpu_to_be32(from_kuid(&init_user_ns, cred->cr_cred->fsuid));
126 *p++ = cpu_to_be32(from_kgid(&init_user_ns, cred->cr_cred->fsgid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Chuck Levere8680a22019-02-11 11:24:48 -0500128 gidarr_len = p++;
NeilBrown2edd8d72018-12-03 11:30:31 +1100129 if (gi)
130 for (i = 0; i < UNX_NGROUPS && i < gi->ngroups; i++)
Chuck Levere8680a22019-02-11 11:24:48 -0500131 *p++ = cpu_to_be32(from_kgid(&init_user_ns,
132 gi->gid[i]));
133 *gidarr_len = cpu_to_be32(p - gidarr_len - 1);
134 *cred_len = cpu_to_be32((p - cred_len - 1) << 2);
135 p = xdr_reserve_space(xdr, (p - gidarr_len - 1) << 2);
136 if (!p)
137 goto marshal_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Chuck Levere8680a22019-02-11 11:24:48 -0500139 /* Verifier */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Chuck Levere8680a22019-02-11 11:24:48 -0500141 p = xdr_reserve_space(xdr, 2 * sizeof(*p));
142 if (!p)
143 goto marshal_failed;
144 *p++ = rpc_auth_null;
145 *p = xdr_zero;
146
147 return 0;
148
149marshal_failed:
150 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
153/*
154 * Refresh credentials. This is a no-op for AUTH_UNIX
155 */
156static int
157unx_refresh(struct rpc_task *task)
158{
Trond Myklebusta17c2152010-07-31 14:29:08 -0400159 set_bit(RPCAUTH_CRED_UPTODATE, &task->tk_rqstp->rq_cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return 0;
161}
162
Chuck Levera0584ee2019-02-11 11:24:58 -0500163static int
164unx_validate(struct rpc_task *task, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Chuck Levera00275b2019-02-11 11:25:31 -0500166 struct rpc_auth *auth = task->tk_rqstp->rq_cred->cr_auth;
Chuck Levera0584ee2019-02-11 11:24:58 -0500167 __be32 *p;
168 u32 size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Chuck Levera0584ee2019-02-11 11:24:58 -0500170 p = xdr_inline_decode(xdr, 2 * sizeof(*p));
171 if (!p)
172 return -EIO;
173 switch (*p++) {
174 case rpc_auth_null:
175 case rpc_auth_unix:
176 case rpc_auth_short:
177 break;
178 default:
179 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
Chuck Levera0584ee2019-02-11 11:24:58 -0500181 size = be32_to_cpup(p);
182 if (size > RPC_MAX_AUTH_SIZE)
183 return -EIO;
184 p = xdr_inline_decode(xdr, size);
185 if (!p)
186 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Chuck Levera00275b2019-02-11 11:25:31 -0500188 auth->au_verfsize = XDR_QUADLEN(size) + 2;
189 auth->au_rslack = XDR_QUADLEN(size) + 2;
Chuck Lever35e77d22019-02-11 11:25:36 -0500190 auth->au_ralign = XDR_QUADLEN(size) + 2;
Chuck Levera0584ee2019-02-11 11:24:58 -0500191 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400194int __init rpc_init_authunix(void)
Trond Myklebust9499b432007-06-24 15:57:57 -0400195{
NeilBrown2edd8d72018-12-03 11:30:31 +1100196 unix_pool = mempool_create_kmalloc_pool(16, sizeof(struct rpc_cred));
197 return unix_pool ? 0 : -ENOMEM;
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400198}
199
200void rpc_destroy_authunix(void)
201{
NeilBrown2edd8d72018-12-03 11:30:31 +1100202 mempool_destroy(unix_pool);
Trond Myklebust9499b432007-06-24 15:57:57 -0400203}
204
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400205const struct rpc_authops authunix_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 .owner = THIS_MODULE,
207 .au_flavor = RPC_AUTH_UNIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 .au_name = "UNIX",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 .create = unx_create,
210 .destroy = unx_destroy,
211 .lookup_cred = unx_lookup_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
214static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215struct rpc_auth unix_auth = {
Chuck Lever45006322016-03-01 13:06:02 -0500216 .au_cslack = UNX_CALLSLACK,
217 .au_rslack = NUL_REPLYSLACK,
Chuck Levera00275b2019-02-11 11:25:31 -0500218 .au_verfsize = NUL_REPLYSLACK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 .au_ops = &authunix_ops,
Trond Myklebust81039f12006-06-09 09:34:34 -0400220 .au_flavor = RPC_AUTH_UNIX,
Trond Myklebust331bc712018-10-14 10:40:29 -0400221 .au_count = REFCOUNT_INIT(1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222};
223
224static
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400225const struct rpc_credops unix_credops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 .cr_name = "AUTH_UNIX",
227 .crdestroy = unx_destroy_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 .crmatch = unx_match,
229 .crmarshal = unx_marshal,
Chuck Levere8680a22019-02-11 11:24:48 -0500230 .crwrap_req = rpcauth_wrap_req_encode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 .crrefresh = unx_refresh,
232 .crvalidate = unx_validate,
Chuck Levera0584ee2019-02-11 11:24:58 -0500233 .crunwrap_resp = rpcauth_unwrap_resp_decode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};