1
2
3
4
5
6
7
8
9
10#ifndef _LINUX_SUNRPC_SVCAUTH_H_
11#define _LINUX_SUNRPC_SVCAUTH_H_
12
13#ifdef __KERNEL__
14
15#include <linux/string.h>
16#include <linux/sunrpc/msg_prot.h>
17#include <linux/sunrpc/cache.h>
18#include <linux/sunrpc/gss_api.h>
19#include <linux/hash.h>
20#include <linux/stringhash.h>
21#include <linux/cred.h>
22
23struct svc_cred {
24 kuid_t cr_uid;
25 kgid_t cr_gid;
26 struct group_info *cr_group_info;
27 u32 cr_flavor;
28
29
30 char *cr_raw_principal;
31
32
33 char *cr_principal;
34 struct gss_api_mech *cr_gss_mech;
35};
36
37static inline void init_svc_cred(struct svc_cred *cred)
38{
39 cred->cr_group_info = NULL;
40 cred->cr_raw_principal = NULL;
41 cred->cr_principal = NULL;
42 cred->cr_gss_mech = NULL;
43}
44
45static inline void free_svc_cred(struct svc_cred *cred)
46{
47 if (cred->cr_group_info)
48 put_group_info(cred->cr_group_info);
49 kfree(cred->cr_raw_principal);
50 kfree(cred->cr_principal);
51 gss_mech_put(cred->cr_gss_mech);
52 init_svc_cred(cred);
53}
54
55struct svc_rqst;
56struct in6_addr;
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77struct auth_domain {
78 struct kref ref;
79 struct hlist_node hash;
80 char *name;
81 struct auth_ops *flavour;
82};
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124struct auth_ops {
125 char * name;
126 struct module *owner;
127 int flavour;
128 int (*accept)(struct svc_rqst *rq, __be32 *authp);
129 int (*release)(struct svc_rqst *rq);
130 void (*domain_release)(struct auth_domain *);
131 int (*set_client)(struct svc_rqst *rq);
132};
133
134#define SVC_GARBAGE 1
135#define SVC_SYSERR 2
136#define SVC_VALID 3
137#define SVC_NEGATIVE 4
138#define SVC_OK 5
139#define SVC_DROP 6
140#define SVC_CLOSE 7
141
142
143
144#define SVC_DENIED 8
145#define SVC_PENDING 9
146#define SVC_COMPLETE 10
147
148struct svc_xprt;
149
150extern int svc_authenticate(struct svc_rqst *rqstp, __be32 *authp);
151extern int svc_authorise(struct svc_rqst *rqstp);
152extern int svc_set_client(struct svc_rqst *rqstp);
153extern int svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops);
154extern void svc_auth_unregister(rpc_authflavor_t flavor);
155
156extern struct auth_domain *unix_domain_find(char *name);
157extern void auth_domain_put(struct auth_domain *item);
158extern int auth_unix_add_addr(struct net *net, struct in6_addr *addr, struct auth_domain *dom);
159extern struct auth_domain *auth_domain_lookup(char *name, struct auth_domain *new);
160extern struct auth_domain *auth_domain_find(char *name);
161extern struct auth_domain *auth_unix_lookup(struct net *net, struct in6_addr *addr);
162extern int auth_unix_forget_old(struct auth_domain *dom);
163extern void svcauth_unix_purge(struct net *net);
164extern void svcauth_unix_info_release(struct svc_xprt *xpt);
165extern int svcauth_unix_set_client(struct svc_rqst *rqstp);
166
167extern int unix_gid_cache_create(struct net *net);
168extern void unix_gid_cache_destroy(struct net *net);
169
170
171
172
173
174static inline unsigned long hash_str(char const *name, int bits)
175{
176 return hashlen_hash(hashlen_string(NULL, name)) >> (32 - bits);
177}
178
179static inline unsigned long hash_mem(char const *buf, int length, int bits)
180{
181 return full_name_hash(NULL, buf, length) >> (32 - bits);
182}
183
184#endif
185
186#endif
187