blob: 1ecf13e148b8be110f0175950e21e1f77833bbe9 [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/*
24 * Size of the nodename buffer. RFC1831 specifies a hard limit of 255 bytes,
25 * but Linux hostnames are actually limited to __NEW_UTS_LEN bytes.
26 */
27#define UNX_MAXNODENAME __NEW_UTS_LEN
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Chuck Lever9568c5e2013-03-16 15:54:43 -040029struct rpcsec_gss_info;
30
Andy Adamson4de6caa2013-08-14 11:59:15 -040031/* auth_cred ac_flags bits */
32enum {
33 RPC_CRED_NO_CRKEY_TIMEOUT = 0, /* underlying cred has no key timeout */
34 RPC_CRED_KEY_EXPIRE_SOON = 1, /* underlying cred key will expire soon */
35 RPC_CRED_NOTIFY_TIMEOUT = 2, /* nofity generic cred when underlying
36 key will expire soon */
37};
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* Work around the lack of a VFS credential */
40struct auth_cred {
Eric W. Biederman7eaf0402013-02-01 16:31:17 -080041 kuid_t uid;
42 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 struct group_info *group_info;
Trond Myklebust68c97152012-01-03 13:22:46 -050044 const char *principal;
Andy Adamson4de6caa2013-08-14 11:59:15 -040045 unsigned long ac_flags;
Trond Myklebust7c67db32008-04-07 20:50:11 -040046 unsigned char machine_cred : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
48
49/*
50 * Client user credentials
51 */
Trond Myklebust4a8c1342007-06-07 10:14:14 -040052struct rpc_auth;
53struct rpc_credops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054struct rpc_cred {
55 struct hlist_node cr_hash; /* hash chain */
Trond Myklebuste092bdc2007-06-23 19:45:36 -040056 struct list_head cr_lru; /* lru garbage collection */
Trond Myklebust31be5bf2007-06-24 15:55:26 -040057 struct rcu_head cr_rcu;
Trond Myklebust4a8c1342007-06-07 10:14:14 -040058 struct rpc_auth * cr_auth;
Trond Myklebustf1c0a862007-06-23 20:17:58 -040059 const struct rpc_credops *cr_ops;
Jeff Laytonf895b252014-11-17 16:58:04 -050060#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 unsigned long cr_magic; /* 0x0f4aa4f0 */
62#endif
Trond Myklebustfc432dd2007-06-25 10:15:15 -040063 unsigned long cr_expire; /* when to gc */
64 unsigned long cr_flags; /* various flags */
65 atomic_t cr_count; /* ref count */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Eric W. Biederman7eaf0402013-02-01 16:31:17 -080067 kuid_t cr_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 /* per-flavor data */
70};
Trond Myklebustfc432dd2007-06-25 10:15:15 -040071#define RPCAUTH_CRED_NEW 0
72#define RPCAUTH_CRED_UPTODATE 1
Trond Myklebust31be5bf2007-06-24 15:55:26 -040073#define RPCAUTH_CRED_HASHED 2
Trond Myklebust126e2162010-05-13 12:55:38 -040074#define RPCAUTH_CRED_NEGATIVE 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76#define RPCAUTH_CRED_MAGIC 0x0f4aa4f0
77
78/*
79 * Client authentication handle
80 */
Trond Myklebust241269b2010-07-31 14:29:08 -040081struct rpc_cred_cache;
Trond Myklebust4a8c1342007-06-07 10:14:14 -040082struct rpc_authops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083struct rpc_auth {
84 unsigned int au_cslack; /* call cred size estimate */
J. Bruce Fields24b26052005-10-13 16:54:53 -040085 /* guess at number of u32's auth adds before
86 * reply data; normally the verifier size: */
87 unsigned int au_rslack;
88 /* for gss, used to calculate au_rslack: */
89 unsigned int au_verfsize;
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 unsigned int au_flags; /* various flags */
Trond Myklebustf1c0a862007-06-23 20:17:58 -040092 const struct rpc_authops *au_ops; /* operations */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 rpc_authflavor_t au_flavor; /* pseudoflavor (note may
94 * differ from the flavor in
95 * au_ops->au_flavor in gss
96 * case) */
97 atomic_t au_count; /* Reference counter */
98
99 struct rpc_cred_cache * au_credcache;
100 /* per-flavor data */
101};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Trond Myklebustc2190662013-08-26 19:23:04 -0400103struct rpc_auth_create_args {
104 rpc_authflavor_t pseudoflavor;
105 const char *target_name;
106};
107
Trond Myklebust8a317762006-02-01 12:18:36 -0500108/* Flags for rpcauth_lookupcred() */
109#define RPCAUTH_LOOKUP_NEW 0x01 /* Accept an uninitialised cred */
NeilBrownbd956082014-07-14 11:28:20 +1000110#define RPCAUTH_LOOKUP_RCU 0x02 /* lock-less lookup */
Trond Myklebust8a317762006-02-01 12:18:36 -0500111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
113 * Client authentication ops
114 */
115struct rpc_authops {
116 struct module *owner;
117 rpc_authflavor_t au_flavor; /* flavor (RPC_AUTH_*) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 char * au_name;
Trond Myklebustc2190662013-08-26 19:23:04 -0400119 struct rpc_auth * (*create)(struct rpc_auth_create_args *, struct rpc_clnt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 void (*destroy)(struct rpc_auth *);
121
122 struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int);
123 struct rpc_cred * (*crcreate)(struct rpc_auth*, struct auth_cred *, int);
Chuck Lever6a1a1e32012-07-11 16:31:08 -0400124 int (*list_pseudoflavors)(rpc_authflavor_t *, int);
Chuck Lever9568c5e2013-03-16 15:54:43 -0400125 rpc_authflavor_t (*info2flavor)(struct rpcsec_gss_info *);
Chuck Levera77c8062013-03-16 15:55:10 -0400126 int (*flavor2info)(rpc_authflavor_t,
127 struct rpcsec_gss_info *);
Andy Adamson4de6caa2013-08-14 11:59:15 -0400128 int (*key_timeout)(struct rpc_auth *,
129 struct rpc_cred *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
132struct rpc_credops {
133 const char * cr_name; /* Name of the auth flavour */
Trond Myklebustfba3bad2006-02-01 12:19:27 -0500134 int (*cr_init)(struct rpc_auth *, struct rpc_cred *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 void (*crdestroy)(struct rpc_cred *);
136
137 int (*crmatch)(struct auth_cred *, struct rpc_cred *, int);
Trond Myklebust8572b8e2010-07-31 14:29:08 -0400138 struct rpc_cred * (*crbind)(struct rpc_task *, struct rpc_cred *, int);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700139 __be32 * (*crmarshal)(struct rpc_task *, __be32 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int (*crrefresh)(struct rpc_task *);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700141 __be32 * (*crvalidate)(struct rpc_task *, __be32 *);
Chuck Lever9f06c712010-12-14 14:59:18 +0000142 int (*crwrap_req)(struct rpc_task *, kxdreproc_t,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700143 void *, __be32 *, void *);
Chuck Leverbf269552010-12-14 14:59:29 +0000144 int (*crunwrap_resp)(struct rpc_task *, kxdrdproc_t,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700145 void *, __be32 *, void *);
Andy Adamson4de6caa2013-08-14 11:59:15 -0400146 int (*crkey_timeout)(struct rpc_cred *);
147 bool (*crkey_to_expire)(struct rpc_cred *);
Jeff Laytona0337d12014-06-21 20:52:16 -0400148 char * (*crstringify_acceptor)(struct rpc_cred *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149};
150
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400151extern const struct rpc_authops authunix_ops;
152extern const struct rpc_authops authnull_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400154int __init rpc_init_authunix(void);
155int __init rpc_init_generic_auth(void);
156int __init rpcauth_init_module(void);
Stephen Rothwellc135e842010-09-29 14:16:57 +1000157void rpcauth_remove_module(void);
158void rpc_destroy_generic_auth(void);
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400159void rpc_destroy_authunix(void);
Trond Myklebust9499b432007-06-24 15:57:57 -0400160
Trond Myklebust9a559ef2008-03-12 12:24:49 -0400161struct rpc_cred * rpc_lookup_cred(void);
NeilBrownbd956082014-07-14 11:28:20 +1000162struct rpc_cred * rpc_lookup_cred_nonblock(void);
Trond Myklebust68c97152012-01-03 13:22:46 -0500163struct rpc_cred * rpc_lookup_machine_cred(const char *service_name);
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400164int rpcauth_register(const struct rpc_authops *);
165int rpcauth_unregister(const struct rpc_authops *);
Trond Myklebustc2190662013-08-26 19:23:04 -0400166struct rpc_auth * rpcauth_create(struct rpc_auth_create_args *,
167 struct rpc_clnt *);
Trond Myklebustde7a8ce2007-06-23 10:46:47 -0400168void rpcauth_release(struct rpc_auth *);
Chuck Lever9568c5e2013-03-16 15:54:43 -0400169rpc_authflavor_t rpcauth_get_pseudoflavor(rpc_authflavor_t,
170 struct rpcsec_gss_info *);
Chuck Levera77c8062013-03-16 15:55:10 -0400171int rpcauth_get_gssinfo(rpc_authflavor_t,
172 struct rpcsec_gss_info *);
Chuck Lever6a1a1e32012-07-11 16:31:08 -0400173int rpcauth_list_flavors(rpc_authflavor_t *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int);
Trond Myklebust5fe47552007-06-23 19:55:31 -0400175void rpcauth_init_cred(struct rpc_cred *, const struct auth_cred *, struct rpc_auth *, const struct rpc_credops *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176struct rpc_cred * rpcauth_lookupcred(struct rpc_auth *, int);
Trond Myklebust8572b8e2010-07-31 14:29:08 -0400177struct rpc_cred * rpcauth_generic_bind_cred(struct rpc_task *, struct rpc_cred *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178void put_rpccred(struct rpc_cred *);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700179__be32 * rpcauth_marshcred(struct rpc_task *, __be32 *);
180__be32 * rpcauth_checkverf(struct rpc_task *, __be32 *);
Chuck Lever9f06c712010-12-14 14:59:18 +0000181int rpcauth_wrap_req(struct rpc_task *task, kxdreproc_t encode, void *rqstp, __be32 *data, void *obj);
Chuck Leverbf269552010-12-14 14:59:29 +0000182int rpcauth_unwrap_resp(struct rpc_task *task, kxdrdproc_t decode, void *rqstp, __be32 *data, void *obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183int rpcauth_refreshcred(struct rpc_task *);
184void rpcauth_invalcred(struct rpc_task *);
185int rpcauth_uptodatecred(struct rpc_task *);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400186int rpcauth_init_credcache(struct rpc_auth *);
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400187void rpcauth_destroy_credcache(struct rpc_auth *);
188void rpcauth_clear_credcache(struct rpc_cred_cache *);
Andy Adamson4de6caa2013-08-14 11:59:15 -0400189int rpcauth_key_timeout_notify(struct rpc_auth *,
190 struct rpc_cred *);
191bool rpcauth_cred_key_to_expire(struct rpc_cred *);
Jeff Laytona0337d12014-06-21 20:52:16 -0400192char * rpcauth_stringify_acceptor(struct rpc_cred *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194static inline
195struct rpc_cred * get_rpccred(struct rpc_cred *cred)
196{
197 atomic_inc(&cred->cr_count);
198 return cred;
199}
200
201#endif /* __KERNEL__ */
202#endif /* _LINUX_SUNRPC_AUTH_H */