SUNRPC: Remove the deprecated function lookup_hash() from rpc_pipefs code
[deliverable/linux.git] / include / linux / sunrpc / auth.h
CommitLineData
1da177e4
LT
1/*
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
14#include <linux/config.h>
15#include <linux/sunrpc/sched.h>
16#include <linux/sunrpc/msg_prot.h>
17#include <linux/sunrpc/xdr.h>
18
19#include <asm/atomic.h>
20
21/* size of the nodename buffer */
22#define UNX_MAXNODENAME 32
23
24/* Maximum size (in bytes) of an rpc credential or verifier */
25#define RPC_MAX_AUTH_SIZE (400)
26
27/* Work around the lack of a VFS credential */
28struct auth_cred {
29 uid_t uid;
30 gid_t gid;
31 struct group_info *group_info;
32};
33
34/*
35 * Client user credentials
36 */
37struct rpc_cred {
38 struct hlist_node cr_hash; /* hash chain */
39 struct rpc_credops * cr_ops;
40 unsigned long cr_expire; /* when to gc */
41 atomic_t cr_count; /* ref count */
42 unsigned short cr_flags; /* various flags */
43#ifdef RPC_DEBUG
44 unsigned long cr_magic; /* 0x0f4aa4f0 */
45#endif
46
47 uid_t cr_uid;
48
49 /* per-flavor data */
50};
51#define RPCAUTH_CRED_LOCKED 0x0001
52#define RPCAUTH_CRED_UPTODATE 0x0002
8a317760 53#define RPCAUTH_CRED_NEW 0x0004
1da177e4
LT
54
55#define RPCAUTH_CRED_MAGIC 0x0f4aa4f0
56
57/*
58 * Client authentication handle
59 */
60#define RPC_CREDCACHE_NR 8
61#define RPC_CREDCACHE_MASK (RPC_CREDCACHE_NR - 1)
62struct rpc_cred_cache {
63 struct hlist_head hashtable[RPC_CREDCACHE_NR];
64 unsigned long nextgc; /* next garbage collection */
65 unsigned long expire; /* cache expiry interval */
66};
67
68struct rpc_auth {
69 unsigned int au_cslack; /* call cred size estimate */
24b2605b
BF
70 /* guess at number of u32's auth adds before
71 * reply data; normally the verifier size: */
72 unsigned int au_rslack;
73 /* for gss, used to calculate au_rslack: */
74 unsigned int au_verfsize;
75
1da177e4
LT
76 unsigned int au_flags; /* various flags */
77 struct rpc_authops * au_ops; /* operations */
78 rpc_authflavor_t au_flavor; /* pseudoflavor (note may
79 * differ from the flavor in
80 * au_ops->au_flavor in gss
81 * case) */
82 atomic_t au_count; /* Reference counter */
83
84 struct rpc_cred_cache * au_credcache;
85 /* per-flavor data */
86};
87#define RPC_AUTH_PROC_CREDS 0x0010 /* process creds (including
88 * uid/gid, fs[ug]id, gids)
89 */
90
8a317760
TM
91/* Flags for rpcauth_lookupcred() */
92#define RPCAUTH_LOOKUP_NEW 0x01 /* Accept an uninitialised cred */
93#define RPCAUTH_LOOKUP_ROOTCREDS 0x02 /* This really ought to go! */
94
1da177e4
LT
95/*
96 * Client authentication ops
97 */
98struct rpc_authops {
99 struct module *owner;
100 rpc_authflavor_t au_flavor; /* flavor (RPC_AUTH_*) */
101#ifdef RPC_DEBUG
102 char * au_name;
103#endif
104 struct rpc_auth * (*create)(struct rpc_clnt *, rpc_authflavor_t);
105 void (*destroy)(struct rpc_auth *);
106
107 struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int);
108 struct rpc_cred * (*crcreate)(struct rpc_auth*, struct auth_cred *, int);
109};
110
111struct rpc_credops {
112 const char * cr_name; /* Name of the auth flavour */
113 void (*crdestroy)(struct rpc_cred *);
114
115 int (*crmatch)(struct auth_cred *, struct rpc_cred *, int);
116 u32 * (*crmarshal)(struct rpc_task *, u32 *);
117 int (*crrefresh)(struct rpc_task *);
118 u32 * (*crvalidate)(struct rpc_task *, u32 *);
119 int (*crwrap_req)(struct rpc_task *, kxdrproc_t,
120 void *, u32 *, void *);
121 int (*crunwrap_resp)(struct rpc_task *, kxdrproc_t,
122 void *, u32 *, void *);
123};
124
125extern struct rpc_authops authunix_ops;
126extern struct rpc_authops authnull_ops;
127#ifdef CONFIG_SUNRPC_SECURE
128extern struct rpc_authops authdes_ops;
129#endif
130
131int rpcauth_register(struct rpc_authops *);
132int rpcauth_unregister(struct rpc_authops *);
133struct rpc_auth * rpcauth_create(rpc_authflavor_t, struct rpc_clnt *);
134void rpcauth_destroy(struct rpc_auth *);
135struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int);
136struct rpc_cred * rpcauth_lookupcred(struct rpc_auth *, int);
137struct rpc_cred * rpcauth_bindcred(struct rpc_task *);
138void rpcauth_holdcred(struct rpc_task *);
139void put_rpccred(struct rpc_cred *);
140void rpcauth_unbindcred(struct rpc_task *);
141u32 * rpcauth_marshcred(struct rpc_task *, u32 *);
142u32 * rpcauth_checkverf(struct rpc_task *, u32 *);
143int rpcauth_wrap_req(struct rpc_task *task, kxdrproc_t encode, void *rqstp, u32 *data, void *obj);
144int rpcauth_unwrap_resp(struct rpc_task *task, kxdrproc_t decode, void *rqstp, u32 *data, void *obj);
145int rpcauth_refreshcred(struct rpc_task *);
146void rpcauth_invalcred(struct rpc_task *);
147int rpcauth_uptodatecred(struct rpc_task *);
148int rpcauth_init_credcache(struct rpc_auth *, unsigned long);
149void rpcauth_free_credcache(struct rpc_auth *);
150
151static inline
152struct rpc_cred * get_rpccred(struct rpc_cred *cred)
153{
154 atomic_inc(&cred->cr_count);
155 return cred;
156}
157
158#endif /* __KERNEL__ */
159#endif /* _LINUX_SUNRPC_AUTH_H */
This page took 0.124107 seconds and 5 git commands to generate.