blob: e7df1f782b2e1f5bac4e9aba3b8b172abfe70842 [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
NeilBrowne3735c82019-01-07 17:53:52 +110083 if (acred->cred->group_info != NULL)
NeilBrownfc0664f2018-12-03 11:30:30 +110084 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;
Trond Myklebust283ebe32019-04-24 17:46:44 -0400110 struct user_namespace *userns = clnt->cl_cred ?
111 clnt->cl_cred->user_ns : &init_user_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Chuck Levere8680a22019-02-11 11:24:48 -0500113 /* Credential */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Chuck Levere8680a22019-02-11 11:24:48 -0500115 p = xdr_reserve_space(xdr, 3 * sizeof(*p));
116 if (!p)
117 goto marshal_failed;
118 *p++ = rpc_auth_unix;
119 cred_len = p++;
120 *p++ = xdr_zero; /* stamp */
121 if (xdr_stream_encode_opaque(xdr, clnt->cl_nodename,
122 clnt->cl_nodelen) < 0)
123 goto marshal_failed;
124 p = xdr_reserve_space(xdr, 3 * sizeof(*p));
125 if (!p)
126 goto marshal_failed;
Trond Myklebust283ebe32019-04-24 17:46:44 -0400127 *p++ = cpu_to_be32(from_kuid_munged(userns, cred->cr_cred->fsuid));
128 *p++ = cpu_to_be32(from_kgid_munged(userns, cred->cr_cred->fsgid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Chuck Levere8680a22019-02-11 11:24:48 -0500130 gidarr_len = p++;
NeilBrown2edd8d72018-12-03 11:30:31 +1100131 if (gi)
132 for (i = 0; i < UNX_NGROUPS && i < gi->ngroups; i++)
Trond Myklebust283ebe32019-04-24 17:46:44 -0400133 *p++ = cpu_to_be32(from_kgid_munged(userns, gi->gid[i]));
Chuck Levere8680a22019-02-11 11:24:48 -0500134 *gidarr_len = cpu_to_be32(p - gidarr_len - 1);
135 *cred_len = cpu_to_be32((p - cred_len - 1) << 2);
136 p = xdr_reserve_space(xdr, (p - gidarr_len - 1) << 2);
137 if (!p)
138 goto marshal_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Chuck Levere8680a22019-02-11 11:24:48 -0500140 /* Verifier */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Chuck Levere8680a22019-02-11 11:24:48 -0500142 p = xdr_reserve_space(xdr, 2 * sizeof(*p));
143 if (!p)
144 goto marshal_failed;
145 *p++ = rpc_auth_null;
146 *p = xdr_zero;
147
148 return 0;
149
150marshal_failed:
151 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
154/*
155 * Refresh credentials. This is a no-op for AUTH_UNIX
156 */
157static int
158unx_refresh(struct rpc_task *task)
159{
Trond Myklebusta17c2152010-07-31 14:29:08 -0400160 set_bit(RPCAUTH_CRED_UPTODATE, &task->tk_rqstp->rq_cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return 0;
162}
163
Chuck Levera0584ee2019-02-11 11:24:58 -0500164static int
165unx_validate(struct rpc_task *task, struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Chuck Levera00275b2019-02-11 11:25:31 -0500167 struct rpc_auth *auth = task->tk_rqstp->rq_cred->cr_auth;
Chuck Levera0584ee2019-02-11 11:24:58 -0500168 __be32 *p;
169 u32 size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Chuck Levera0584ee2019-02-11 11:24:58 -0500171 p = xdr_inline_decode(xdr, 2 * sizeof(*p));
172 if (!p)
173 return -EIO;
174 switch (*p++) {
175 case rpc_auth_null:
176 case rpc_auth_unix:
177 case rpc_auth_short:
178 break;
179 default:
180 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
Chuck Levera0584ee2019-02-11 11:24:58 -0500182 size = be32_to_cpup(p);
183 if (size > RPC_MAX_AUTH_SIZE)
184 return -EIO;
185 p = xdr_inline_decode(xdr, size);
186 if (!p)
187 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Chuck Levera00275b2019-02-11 11:25:31 -0500189 auth->au_verfsize = XDR_QUADLEN(size) + 2;
190 auth->au_rslack = XDR_QUADLEN(size) + 2;
Chuck Lever35e77d22019-02-11 11:25:36 -0500191 auth->au_ralign = XDR_QUADLEN(size) + 2;
Chuck Levera0584ee2019-02-11 11:24:58 -0500192 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400195int __init rpc_init_authunix(void)
Trond Myklebust9499b432007-06-24 15:57:57 -0400196{
NeilBrown2edd8d72018-12-03 11:30:31 +1100197 unix_pool = mempool_create_kmalloc_pool(16, sizeof(struct rpc_cred));
198 return unix_pool ? 0 : -ENOMEM;
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400199}
200
201void rpc_destroy_authunix(void)
202{
NeilBrown2edd8d72018-12-03 11:30:31 +1100203 mempool_destroy(unix_pool);
Trond Myklebust9499b432007-06-24 15:57:57 -0400204}
205
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400206const struct rpc_authops authunix_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 .owner = THIS_MODULE,
208 .au_flavor = RPC_AUTH_UNIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 .au_name = "UNIX",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .create = unx_create,
211 .destroy = unx_destroy,
212 .lookup_cred = unx_lookup_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213};
214
215static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216struct rpc_auth unix_auth = {
Chuck Lever45006322016-03-01 13:06:02 -0500217 .au_cslack = UNX_CALLSLACK,
218 .au_rslack = NUL_REPLYSLACK,
Chuck Levera00275b2019-02-11 11:25:31 -0500219 .au_verfsize = NUL_REPLYSLACK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 .au_ops = &authunix_ops,
Trond Myklebust81039f12006-06-09 09:34:34 -0400221 .au_flavor = RPC_AUTH_UNIX,
Trond Myklebust331bc712018-10-14 10:40:29 -0400222 .au_count = REFCOUNT_INIT(1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223};
224
225static
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400226const struct rpc_credops unix_credops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .cr_name = "AUTH_UNIX",
228 .crdestroy = unx_destroy_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 .crmatch = unx_match,
230 .crmarshal = unx_marshal,
Chuck Levere8680a22019-02-11 11:24:48 -0500231 .crwrap_req = rpcauth_wrap_req_encode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 .crrefresh = unx_refresh,
233 .crvalidate = unx_validate,
Chuck Levera0584ee2019-02-11 11:24:58 -0500234 .crunwrap_resp = rpcauth_unwrap_resp_decode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235};