blob: 899791573a403ba8434c12a05b4594f23ac6c33b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/linux/sunrpc/auth.h
3 *
4 * Declarations for the RPC client authentication machinery.
5 *
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
8
9#ifndef _LINUX_SUNRPC_AUTH_H
10#define _LINUX_SUNRPC_AUTH_H
11
12#ifdef __KERNEL__
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/sunrpc/sched.h>
15#include <linux/sunrpc/msg_prot.h>
16#include <linux/sunrpc/xdr.h>
17
Arun Sharma600634972011-07-26 16:09:06 -070018#include <linux/atomic.h>
Trond Myklebust31be5bf2007-06-24 15:55:26 -040019#include <linux/rcupdate.h>
Eric W. Biederman7eaf0402013-02-01 16:31:17 -080020#include <linux/uidgid.h>
Jeff Layton24a9a962015-08-03 07:44:53 -040021#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Jeff Layton24a9a962015-08-03 07:44:53 -040023/*
Chuck Lever45006322016-03-01 13:06:02 -050024 * Maximum size of AUTH_NONE authentication information, in XDR words.
25 */
26#define NUL_CALLSLACK (4)
27#define NUL_REPLYSLACK (2)
28
29/*
Jeff Layton24a9a962015-08-03 07:44:53 -040030 * Size of the nodename buffer. RFC1831 specifies a hard limit of 255 bytes,
31 * but Linux hostnames are actually limited to __NEW_UTS_LEN bytes.
32 */
33#define UNX_MAXNODENAME __NEW_UTS_LEN
Chuck Lever45006322016-03-01 13:06:02 -050034#define UNX_CALLSLACK (21 + XDR_QUADLEN(UNX_MAXNODENAME))
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Chuck Lever9568c5e2013-03-16 15:54:43 -040036struct rpcsec_gss_info;
37
Andy Adamson4de6caa2013-08-14 11:59:15 -040038/* auth_cred ac_flags bits */
39enum {
40 RPC_CRED_NO_CRKEY_TIMEOUT = 0, /* underlying cred has no key timeout */
41 RPC_CRED_KEY_EXPIRE_SOON = 1, /* underlying cred key will expire soon */
42 RPC_CRED_NOTIFY_TIMEOUT = 2, /* nofity generic cred when underlying
43 key will expire soon */
44};
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/* Work around the lack of a VFS credential */
47struct auth_cred {
Eric W. Biederman7eaf0402013-02-01 16:31:17 -080048 kuid_t uid;
49 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 struct group_info *group_info;
Trond Myklebust68c97152012-01-03 13:22:46 -050051 const char *principal;
Andy Adamson4de6caa2013-08-14 11:59:15 -040052 unsigned long ac_flags;
Trond Myklebust7c67db32008-04-07 20:50:11 -040053 unsigned char machine_cred : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
56/*
57 * Client user credentials
58 */
Trond Myklebust4a8c1342007-06-07 10:14:14 -040059struct rpc_auth;
60struct rpc_credops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061struct rpc_cred {
62 struct hlist_node cr_hash; /* hash chain */
Trond Myklebuste092bdc2007-06-23 19:45:36 -040063 struct list_head cr_lru; /* lru garbage collection */
Trond Myklebust31be5bf2007-06-24 15:55:26 -040064 struct rcu_head cr_rcu;
Trond Myklebust4a8c1342007-06-07 10:14:14 -040065 struct rpc_auth * cr_auth;
Trond Myklebustf1c0a862007-06-23 20:17:58 -040066 const struct rpc_credops *cr_ops;
Jeff Laytonf895b252014-11-17 16:58:04 -050067#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 unsigned long cr_magic; /* 0x0f4aa4f0 */
69#endif
Trond Myklebustfc432dd2007-06-25 10:15:15 -040070 unsigned long cr_expire; /* when to gc */
71 unsigned long cr_flags; /* various flags */
72 atomic_t cr_count; /* ref count */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Eric W. Biederman7eaf0402013-02-01 16:31:17 -080074 kuid_t cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 /* per-flavor data */
77};
Trond Myklebustfc432dd2007-06-25 10:15:15 -040078#define RPCAUTH_CRED_NEW 0
79#define RPCAUTH_CRED_UPTODATE 1
Trond Myklebust31be5bf2007-06-24 15:55:26 -040080#define RPCAUTH_CRED_HASHED 2
Trond Myklebust126e2162010-05-13 12:55:38 -040081#define RPCAUTH_CRED_NEGATIVE 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#define RPCAUTH_CRED_MAGIC 0x0f4aa4f0
84
85/*
86 * Client authentication handle
87 */
Trond Myklebust241269b2010-07-31 14:29:08 -040088struct rpc_cred_cache;
Trond Myklebust4a8c1342007-06-07 10:14:14 -040089struct rpc_authops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090struct rpc_auth {
91 unsigned int au_cslack; /* call cred size estimate */
J. Bruce Fields24b26052005-10-13 16:54:53 -040092 /* guess at number of u32's auth adds before
93 * reply data; normally the verifier size: */
94 unsigned int au_rslack;
95 /* for gss, used to calculate au_rslack: */
96 unsigned int au_verfsize;
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 unsigned int au_flags; /* various flags */
Trond Myklebustf1c0a862007-06-23 20:17:58 -040099 const struct rpc_authops *au_ops; /* operations */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 rpc_authflavor_t au_flavor; /* pseudoflavor (note may
101 * differ from the flavor in
102 * au_ops->au_flavor in gss
103 * case) */
104 atomic_t au_count; /* Reference counter */
105
106 struct rpc_cred_cache * au_credcache;
107 /* per-flavor data */
108};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Trond Myklebustc2190662013-08-26 19:23:04 -0400110struct rpc_auth_create_args {
111 rpc_authflavor_t pseudoflavor;
112 const char *target_name;
113};
114
Trond Myklebust8a317762006-02-01 12:18:36 -0500115/* Flags for rpcauth_lookupcred() */
116#define RPCAUTH_LOOKUP_NEW 0x01 /* Accept an uninitialised cred */
NeilBrownbd956082014-07-14 11:28:20 +1000117#define RPCAUTH_LOOKUP_RCU 0x02 /* lock-less lookup */
Trond Myklebust8a317762006-02-01 12:18:36 -0500118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/*
120 * Client authentication ops
121 */
122struct rpc_authops {
123 struct module *owner;
124 rpc_authflavor_t au_flavor; /* flavor (RPC_AUTH_*) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 char * au_name;
Trond Myklebustc2190662013-08-26 19:23:04 -0400126 struct rpc_auth * (*create)(struct rpc_auth_create_args *, struct rpc_clnt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 void (*destroy)(struct rpc_auth *);
128
129 struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int);
Jeff Layton3c6e0bc2016-04-21 20:51:54 -0400130 struct rpc_cred * (*crcreate)(struct rpc_auth*, struct auth_cred *, int, gfp_t);
Chuck Lever6a1a1e32012-07-11 16:31:08 -0400131 int (*list_pseudoflavors)(rpc_authflavor_t *, int);
Chuck Lever9568c5e2013-03-16 15:54:43 -0400132 rpc_authflavor_t (*info2flavor)(struct rpcsec_gss_info *);
Chuck Levera77c8062013-03-16 15:55:10 -0400133 int (*flavor2info)(rpc_authflavor_t,
134 struct rpcsec_gss_info *);
Andy Adamson4de6caa2013-08-14 11:59:15 -0400135 int (*key_timeout)(struct rpc_auth *,
136 struct rpc_cred *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137};
138
139struct rpc_credops {
140 const char * cr_name; /* Name of the auth flavour */
Trond Myklebustfba3bad2006-02-01 12:19:27 -0500141 int (*cr_init)(struct rpc_auth *, struct rpc_cred *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 void (*crdestroy)(struct rpc_cred *);
143
144 int (*crmatch)(struct auth_cred *, struct rpc_cred *, int);
Trond Myklebust8572b8e2010-07-31 14:29:08 -0400145 struct rpc_cred * (*crbind)(struct rpc_task *, struct rpc_cred *, int);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700146 __be32 * (*crmarshal)(struct rpc_task *, __be32 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 int (*crrefresh)(struct rpc_task *);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700148 __be32 * (*crvalidate)(struct rpc_task *, __be32 *);
Chuck Lever9f06c712010-12-14 14:59:18 +0000149 int (*crwrap_req)(struct rpc_task *, kxdreproc_t,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700150 void *, __be32 *, void *);
Chuck Leverbf269552010-12-14 14:59:29 +0000151 int (*crunwrap_resp)(struct rpc_task *, kxdrdproc_t,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700152 void *, __be32 *, void *);
Andy Adamson4de6caa2013-08-14 11:59:15 -0400153 int (*crkey_timeout)(struct rpc_cred *);
154 bool (*crkey_to_expire)(struct rpc_cred *);
Jeff Laytona0337d12014-06-21 20:52:16 -0400155 char * (*crstringify_acceptor)(struct rpc_cred *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
157
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400158extern const struct rpc_authops authunix_ops;
159extern const struct rpc_authops authnull_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400161int __init rpc_init_authunix(void);
162int __init rpc_init_generic_auth(void);
163int __init rpcauth_init_module(void);
Stephen Rothwellc135e842010-09-29 14:16:57 +1000164void rpcauth_remove_module(void);
165void rpc_destroy_generic_auth(void);
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400166void rpc_destroy_authunix(void);
Trond Myklebust9499b432007-06-24 15:57:57 -0400167
Trond Myklebust9a559ef2008-03-12 12:24:49 -0400168struct rpc_cred * rpc_lookup_cred(void);
NeilBrownbd956082014-07-14 11:28:20 +1000169struct rpc_cred * rpc_lookup_cred_nonblock(void);
Weston Andros Adamsonc065d222016-04-21 20:51:55 -0400170struct rpc_cred * rpc_lookup_generic_cred(struct auth_cred *, int, gfp_t);
Trond Myklebust68c97152012-01-03 13:22:46 -0500171struct rpc_cred * rpc_lookup_machine_cred(const char *service_name);
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400172int rpcauth_register(const struct rpc_authops *);
173int rpcauth_unregister(const struct rpc_authops *);
Trond Myklebustc2190662013-08-26 19:23:04 -0400174struct rpc_auth * rpcauth_create(struct rpc_auth_create_args *,
175 struct rpc_clnt *);
Trond Myklebustde7a8ce2007-06-23 10:46:47 -0400176void rpcauth_release(struct rpc_auth *);
Chuck Lever9568c5e2013-03-16 15:54:43 -0400177rpc_authflavor_t rpcauth_get_pseudoflavor(rpc_authflavor_t,
178 struct rpcsec_gss_info *);
Chuck Levera77c8062013-03-16 15:55:10 -0400179int rpcauth_get_gssinfo(rpc_authflavor_t,
180 struct rpcsec_gss_info *);
Chuck Lever6a1a1e32012-07-11 16:31:08 -0400181int rpcauth_list_flavors(rpc_authflavor_t *, int);
Jeff Layton3c6e0bc2016-04-21 20:51:54 -0400182struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int, gfp_t);
Trond Myklebust5fe47552007-06-23 19:55:31 -0400183void rpcauth_init_cred(struct rpc_cred *, const struct auth_cred *, struct rpc_auth *, const struct rpc_credops *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184struct rpc_cred * rpcauth_lookupcred(struct rpc_auth *, int);
Trond Myklebust8572b8e2010-07-31 14:29:08 -0400185struct rpc_cred * rpcauth_generic_bind_cred(struct rpc_task *, struct rpc_cred *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186void put_rpccred(struct rpc_cred *);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700187__be32 * rpcauth_marshcred(struct rpc_task *, __be32 *);
188__be32 * rpcauth_checkverf(struct rpc_task *, __be32 *);
Chuck Lever9f06c712010-12-14 14:59:18 +0000189int rpcauth_wrap_req(struct rpc_task *task, kxdreproc_t encode, void *rqstp, __be32 *data, void *obj);
Chuck Leverbf269552010-12-14 14:59:29 +0000190int rpcauth_unwrap_resp(struct rpc_task *task, kxdrdproc_t decode, void *rqstp, __be32 *data, void *obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191int rpcauth_refreshcred(struct rpc_task *);
192void rpcauth_invalcred(struct rpc_task *);
193int rpcauth_uptodatecred(struct rpc_task *);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400194int rpcauth_init_credcache(struct rpc_auth *);
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400195void rpcauth_destroy_credcache(struct rpc_auth *);
196void rpcauth_clear_credcache(struct rpc_cred_cache *);
Andy Adamson4de6caa2013-08-14 11:59:15 -0400197int rpcauth_key_timeout_notify(struct rpc_auth *,
198 struct rpc_cred *);
199bool rpcauth_cred_key_to_expire(struct rpc_cred *);
Jeff Laytona0337d12014-06-21 20:52:16 -0400200char * rpcauth_stringify_acceptor(struct rpc_cred *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202static inline
203struct rpc_cred * get_rpccred(struct rpc_cred *cred)
204{
Trond Myklebust9a8f6b52016-05-16 17:42:42 -0400205 if (cred != NULL)
206 atomic_inc(&cred->cr_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return cred;
208}
209
Jeff Layton62dbef22016-04-21 20:51:56 -0400210/**
211 * get_rpccred_rcu - get a reference to a cred using rcu-protected pointer
212 * @cred: cred of which to take a reference
213 *
214 * In some cases, we may have a pointer to a credential to which we
215 * want to take a reference, but don't already have one. Because these
216 * objects are freed using RCU, we can access the cr_count while its
217 * on its way to destruction and only take a reference if it's not already
218 * zero.
219 */
220static inline struct rpc_cred *
221get_rpccred_rcu(struct rpc_cred *cred)
222{
223 if (atomic_inc_not_zero(&cred->cr_count))
224 return cred;
225 return NULL;
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228#endif /* __KERNEL__ */
229#endif /* _LINUX_SUNRPC_AUTH_H */