| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * linux/include/linux/sunrpc/auth.h | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Declarations for the RPC client authentication machinery. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _LINUX_SUNRPC_AUTH_H
 | 
					
						
							|  |  |  | #define _LINUX_SUNRPC_AUTH_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __KERNEL__
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/sunrpc/sched.h>
 | 
					
						
							|  |  |  | #include <linux/sunrpc/msg_prot.h>
 | 
					
						
							|  |  |  | #include <linux/sunrpc/xdr.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/atomic.h>
 | 
					
						
							| 
									
										
										
										
											2007-06-24 15:55:26 -04:00
										 |  |  | #include <linux/rcupdate.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* size of the nodename buffer */ | 
					
						
							|  |  |  | #define UNX_MAXNODENAME	32
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Work around the lack of a VFS credential */ | 
					
						
							|  |  |  | struct auth_cred { | 
					
						
							|  |  |  | 	uid_t	uid; | 
					
						
							|  |  |  | 	gid_t	gid; | 
					
						
							|  |  |  | 	struct group_info *group_info; | 
					
						
							| 
									
										
										
										
											2008-04-07 20:50:11 -04:00
										 |  |  | 	unsigned char machine_cred : 1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Client user credentials | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-06-07 10:14:14 -04:00
										 |  |  | struct rpc_auth; | 
					
						
							|  |  |  | struct rpc_credops; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct rpc_cred { | 
					
						
							|  |  |  | 	struct hlist_node	cr_hash;	/* hash chain */ | 
					
						
							| 
									
										
										
										
											2007-06-23 19:45:36 -04:00
										 |  |  | 	struct list_head	cr_lru;		/* lru garbage collection */ | 
					
						
							| 
									
										
										
										
											2007-06-24 15:55:26 -04:00
										 |  |  | 	struct rcu_head		cr_rcu; | 
					
						
							| 
									
										
										
										
											2007-06-07 10:14:14 -04:00
										 |  |  | 	struct rpc_auth *	cr_auth; | 
					
						
							| 
									
										
										
										
											2007-06-23 20:17:58 -04:00
										 |  |  | 	const struct rpc_credops *cr_ops; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #ifdef RPC_DEBUG
 | 
					
						
							|  |  |  | 	unsigned long		cr_magic;	/* 0x0f4aa4f0 */ | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-06-25 10:15:15 -04:00
										 |  |  | 	unsigned long		cr_expire;	/* when to gc */ | 
					
						
							|  |  |  | 	unsigned long		cr_flags;	/* various flags */ | 
					
						
							|  |  |  | 	atomic_t		cr_count;	/* ref count */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	uid_t			cr_uid; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* per-flavor data */ | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2007-06-25 10:15:15 -04:00
										 |  |  | #define RPCAUTH_CRED_NEW	0
 | 
					
						
							|  |  |  | #define RPCAUTH_CRED_UPTODATE	1
 | 
					
						
							| 
									
										
										
										
											2007-06-24 15:55:26 -04:00
										 |  |  | #define RPCAUTH_CRED_HASHED	2
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define RPCAUTH_CRED_MAGIC	0x0f4aa4f0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Client authentication handle | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-03-12 14:40:14 -04:00
										 |  |  | #define RPC_CREDCACHE_HASHBITS	4
 | 
					
						
							|  |  |  | #define RPC_CREDCACHE_NR	(1 << RPC_CREDCACHE_HASHBITS)
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct rpc_cred_cache { | 
					
						
							|  |  |  | 	struct hlist_head	hashtable[RPC_CREDCACHE_NR]; | 
					
						
							| 
									
										
										
										
											2007-06-24 15:57:57 -04:00
										 |  |  | 	spinlock_t		lock; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-07 10:14:14 -04:00
										 |  |  | struct rpc_authops; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct rpc_auth { | 
					
						
							|  |  |  | 	unsigned int		au_cslack;	/* call cred size estimate */ | 
					
						
							| 
									
										
										
										
											2005-10-13 16:54:53 -04:00
										 |  |  | 				/* guess at number of u32's auth adds before
 | 
					
						
							|  |  |  | 				 * reply data; normally the verifier size: */ | 
					
						
							|  |  |  | 	unsigned int		au_rslack; | 
					
						
							|  |  |  | 				/* for gss, used to calculate au_rslack: */ | 
					
						
							|  |  |  | 	unsigned int		au_verfsize; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned int		au_flags;	/* various flags */ | 
					
						
							| 
									
										
										
										
											2007-06-23 20:17:58 -04:00
										 |  |  | 	const struct rpc_authops *au_ops;		/* operations */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	rpc_authflavor_t	au_flavor;	/* pseudoflavor (note may
 | 
					
						
							|  |  |  | 						 * differ from the flavor in | 
					
						
							|  |  |  | 						 * au_ops->au_flavor in gss | 
					
						
							|  |  |  | 						 * case) */ | 
					
						
							|  |  |  | 	atomic_t		au_count;	/* Reference counter */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct rpc_cred_cache *	au_credcache; | 
					
						
							|  |  |  | 	/* per-flavor data */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-01 12:18:36 -05:00
										 |  |  | /* Flags for rpcauth_lookupcred() */ | 
					
						
							|  |  |  | #define RPCAUTH_LOOKUP_NEW		0x01	/* Accept an uninitialised cred */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Client authentication ops | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct rpc_authops { | 
					
						
							|  |  |  | 	struct module		*owner; | 
					
						
							|  |  |  | 	rpc_authflavor_t	au_flavor;	/* flavor (RPC_AUTH_*) */ | 
					
						
							|  |  |  | 	char *			au_name; | 
					
						
							|  |  |  | 	struct rpc_auth *	(*create)(struct rpc_clnt *, rpc_authflavor_t); | 
					
						
							|  |  |  | 	void			(*destroy)(struct rpc_auth *); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct rpc_cred *	(*lookup_cred)(struct rpc_auth *, struct auth_cred *, int); | 
					
						
							|  |  |  | 	struct rpc_cred *	(*crcreate)(struct rpc_auth*, struct auth_cred *, int); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct rpc_credops { | 
					
						
							|  |  |  | 	const char *		cr_name;	/* Name of the auth flavour */ | 
					
						
							| 
									
										
										
										
											2006-02-01 12:19:27 -05:00
										 |  |  | 	int			(*cr_init)(struct rpc_auth *, struct rpc_cred *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	void			(*crdestroy)(struct rpc_cred *); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int			(*crmatch)(struct auth_cred *, struct rpc_cred *, int); | 
					
						
							| 
									
										
										
										
											2009-09-15 13:32:13 -04:00
										 |  |  | 	void			(*crbind)(struct rpc_task *, struct rpc_cred *, int); | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | 	__be32 *		(*crmarshal)(struct rpc_task *, __be32 *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int			(*crrefresh)(struct rpc_task *); | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | 	__be32 *		(*crvalidate)(struct rpc_task *, __be32 *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int			(*crwrap_req)(struct rpc_task *, kxdrproc_t, | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | 						void *, __be32 *, void *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int			(*crunwrap_resp)(struct rpc_task *, kxdrproc_t, | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | 						void *, __be32 *, void *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-23 20:17:58 -04:00
										 |  |  | extern const struct rpc_authops	authunix_ops; | 
					
						
							|  |  |  | extern const struct rpc_authops	authnull_ops; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-24 15:57:57 -04:00
										 |  |  | void __init		rpc_init_authunix(void); | 
					
						
							| 
									
										
										
										
											2008-03-12 12:24:49 -04:00
										 |  |  | void __init		rpc_init_generic_auth(void); | 
					
						
							| 
									
										
										
										
											2007-06-25 17:11:20 -04:00
										 |  |  | void __init		rpcauth_init_module(void); | 
					
						
							|  |  |  | void __exit		rpcauth_remove_module(void); | 
					
						
							| 
									
										
										
										
											2008-03-12 12:24:49 -04:00
										 |  |  | void __exit		rpc_destroy_generic_auth(void); | 
					
						
							| 
									
										
										
										
											2007-06-24 15:57:57 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-12 12:24:49 -04:00
										 |  |  | struct rpc_cred *	rpc_lookup_cred(void); | 
					
						
							| 
									
										
										
										
											2008-04-07 20:50:11 -04:00
										 |  |  | struct rpc_cred *	rpc_lookup_machine_cred(void); | 
					
						
							| 
									
										
										
										
											2007-06-23 20:17:58 -04:00
										 |  |  | int			rpcauth_register(const struct rpc_authops *); | 
					
						
							|  |  |  | int			rpcauth_unregister(const struct rpc_authops *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct rpc_auth *	rpcauth_create(rpc_authflavor_t, struct rpc_clnt *); | 
					
						
							| 
									
										
										
										
											2007-06-23 10:46:47 -04:00
										 |  |  | void			rpcauth_release(struct rpc_auth *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct rpc_cred *	rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int); | 
					
						
							| 
									
										
										
										
											2007-06-23 19:55:31 -04:00
										 |  |  | void			rpcauth_init_cred(struct rpc_cred *, const struct auth_cred *, struct rpc_auth *, const struct rpc_credops *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct rpc_cred *	rpcauth_lookupcred(struct rpc_auth *, int); | 
					
						
							| 
									
										
										
										
											2008-03-12 16:20:55 -04:00
										 |  |  | void			rpcauth_bindcred(struct rpc_task *, struct rpc_cred *, int); | 
					
						
							| 
									
										
										
										
											2009-09-15 13:32:13 -04:00
										 |  |  | void			rpcauth_generic_bind_cred(struct rpc_task *, struct rpc_cred *, int); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | void			put_rpccred(struct rpc_cred *); | 
					
						
							|  |  |  | void			rpcauth_unbindcred(struct rpc_task *); | 
					
						
							| 
									
										
										
										
											2006-09-26 22:29:38 -07:00
										 |  |  | __be32 *		rpcauth_marshcred(struct rpc_task *, __be32 *); | 
					
						
							|  |  |  | __be32 *		rpcauth_checkverf(struct rpc_task *, __be32 *); | 
					
						
							|  |  |  | int			rpcauth_wrap_req(struct rpc_task *task, kxdrproc_t encode, void *rqstp, __be32 *data, void *obj); | 
					
						
							|  |  |  | int			rpcauth_unwrap_resp(struct rpc_task *task, kxdrproc_t decode, void *rqstp, __be32 *data, void *obj); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | int			rpcauth_refreshcred(struct rpc_task *); | 
					
						
							|  |  |  | void			rpcauth_invalcred(struct rpc_task *); | 
					
						
							|  |  |  | int			rpcauth_uptodatecred(struct rpc_task *); | 
					
						
							| 
									
										
										
										
											2007-06-25 17:11:20 -04:00
										 |  |  | int			rpcauth_init_credcache(struct rpc_auth *); | 
					
						
							| 
									
										
										
										
											2007-06-09 15:41:42 -04:00
										 |  |  | void			rpcauth_destroy_credcache(struct rpc_auth *); | 
					
						
							|  |  |  | void			rpcauth_clear_credcache(struct rpc_cred_cache *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | static inline | 
					
						
							|  |  |  | struct rpc_cred *	get_rpccred(struct rpc_cred *cred) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	atomic_inc(&cred->cr_count); | 
					
						
							|  |  |  | 	return cred; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* __KERNEL__ */
 | 
					
						
							|  |  |  | #endif /* _LINUX_SUNRPC_AUTH_H */
 |