Whamcloud - gitweb
LU-2675 build: assume __linux__ and __KERNEL__
[fs/lustre-release.git] / lustre / ptlrpc / gss / gss_mech_switch.c
1 /*
2  * Modifications for Lustre
3  *
4  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
5  *
6  * Copyright (c) 2012, Intel Corporation.
7  *
8  * Author: Eric Mei <ericm@clusterfs.com>
9  */
10
11 /*
12  *  linux/net/sunrpc/gss_mech_switch.c
13  *
14  *  Copyright (c) 2001 The Regents of the University of Michigan.
15  *  All rights reserved.
16  *
17  *  J. Bruce Fields   <bfields@umich.edu>
18  *
19  *  Redistribution and use in source and binary forms, with or without
20  *  modification, are permitted provided that the following conditions
21  *  are met:
22  *
23  *  1. Redistributions of source code must retain the above copyright
24  *     notice, this list of conditions and the following disclaimer.
25  *  2. Redistributions in binary form must reproduce the above copyright
26  *     notice, this list of conditions and the following disclaimer in the
27  *     documentation and/or other materials provided with the distribution.
28  *  3. Neither the name of the University nor the names of its
29  *     contributors may be used to endorse or promote products derived
30  *     from this software without specific prior written permission.
31  *
32  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
33  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
34  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
35  *  DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
36  *  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
37  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
38  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
39  *  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
40  *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
41  *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
42  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43  *
44  */
45
46 #define DEBUG_SUBSYSTEM S_SEC
47 #include <linux/init.h>
48 #include <linux/module.h>
49 #include <linux/slab.h>
50 #include <linux/mutex.h>
51
52 #include <obd.h>
53 #include <obd_class.h>
54 #include <obd_support.h>
55 #include <lustre/lustre_idl.h>
56 #include <lustre_net.h>
57 #include <lustre_import.h>
58 #include <lustre_sec.h>
59
60 #include "gss_err.h"
61 #include "gss_internal.h"
62 #include "gss_api.h"
63
64 static struct list_head registered_mechs = LIST_HEAD_INIT(registered_mechs);
65 static DEFINE_SPINLOCK(registered_mechs_lock);
66
67 int lgss_mech_register(struct gss_api_mech *gm)
68 {
69         spin_lock(&registered_mechs_lock);
70         list_add(&gm->gm_list, &registered_mechs);
71         spin_unlock(&registered_mechs_lock);
72         CWARN("Register %s mechanism\n", gm->gm_name);
73         return 0;
74 }
75
76 void lgss_mech_unregister(struct gss_api_mech *gm)
77 {
78         spin_lock(&registered_mechs_lock);
79         list_del(&gm->gm_list);
80         spin_unlock(&registered_mechs_lock);
81         CWARN("Unregister %s mechanism\n", gm->gm_name);
82 }
83
84
85 struct gss_api_mech *lgss_mech_get(struct gss_api_mech *gm)
86 {
87         __module_get(gm->gm_owner);
88         return gm;
89 }
90
91 struct gss_api_mech *lgss_name_to_mech(char *name)
92 {
93         struct gss_api_mech *pos, *gm = NULL;
94
95         spin_lock(&registered_mechs_lock);
96         list_for_each_entry(pos, &registered_mechs, gm_list) {
97                 if (0 == strcmp(name, pos->gm_name)) {
98                         if (!try_module_get(pos->gm_owner))
99                                 continue;
100                         gm = pos;
101                         break;
102                 }
103         }
104         spin_unlock(&registered_mechs_lock);
105         return gm;
106
107 }
108
109 static inline
110 int mech_supports_subflavor(struct gss_api_mech *gm, __u32 subflavor)
111 {
112         int i;
113
114         for (i = 0; i < gm->gm_sf_num; i++) {
115                 if (gm->gm_sfs[i].sf_subflavor == subflavor)
116                         return 1;
117         }
118         return 0;
119 }
120
121 struct gss_api_mech *lgss_subflavor_to_mech(__u32 subflavor)
122 {
123         struct gss_api_mech *pos, *gm = NULL;
124
125         spin_lock(&registered_mechs_lock);
126         list_for_each_entry(pos, &registered_mechs, gm_list) {
127                 if (!try_module_get(pos->gm_owner))
128                         continue;
129                 if (!mech_supports_subflavor(pos, subflavor)) {
130                         module_put(pos->gm_owner);
131                         continue;
132                 }
133                 gm = pos;
134                 break;
135         }
136         spin_unlock(&registered_mechs_lock);
137         return gm;
138 }
139
140 void lgss_mech_put(struct gss_api_mech *gm)
141 {
142         module_put(gm->gm_owner);
143 }
144
145 /* The mech could probably be determined from the token instead, but it's just
146  * as easy for now to pass it in. */
147 __u32 lgss_import_sec_context(rawobj_t *input_token,
148                               struct gss_api_mech *mech,
149                               struct gss_ctx **ctx_id)
150 {
151         OBD_ALLOC_PTR(*ctx_id);
152         if (*ctx_id == NULL)
153                 return GSS_S_FAILURE;
154
155         (*ctx_id)->mech_type = lgss_mech_get(mech);
156
157         LASSERT(mech);
158         LASSERT(mech->gm_ops);
159         LASSERT(mech->gm_ops->gss_import_sec_context);
160         return mech->gm_ops->gss_import_sec_context(input_token, *ctx_id);
161 }
162
163 __u32 lgss_copy_reverse_context(struct gss_ctx *ctx_id,
164                                 struct gss_ctx **ctx_id_new)
165 {
166         struct gss_api_mech *mech = ctx_id->mech_type;
167         __u32                major;
168
169         LASSERT(mech);
170
171         OBD_ALLOC_PTR(*ctx_id_new);
172         if (*ctx_id_new == NULL)
173                 return GSS_S_FAILURE;
174
175         (*ctx_id_new)->mech_type = lgss_mech_get(mech);
176
177         LASSERT(mech);
178         LASSERT(mech->gm_ops);
179         LASSERT(mech->gm_ops->gss_copy_reverse_context);
180
181         major = mech->gm_ops->gss_copy_reverse_context(ctx_id, *ctx_id_new);
182         if (major != GSS_S_COMPLETE) {
183                 lgss_mech_put(mech);
184                 OBD_FREE_PTR(*ctx_id_new);
185                 *ctx_id_new = NULL;
186         }
187         return major;
188 }
189
190 /*
191  * this interface is much simplified, currently we only need endtime.
192  */
193 __u32 lgss_inquire_context(struct gss_ctx *context_handle,
194                            unsigned long  *endtime)
195 {
196         LASSERT(context_handle);
197         LASSERT(context_handle->mech_type);
198         LASSERT(context_handle->mech_type->gm_ops);
199         LASSERT(context_handle->mech_type->gm_ops->gss_inquire_context);
200
201         return context_handle->mech_type->gm_ops
202                 ->gss_inquire_context(context_handle,
203                                       endtime);
204 }
205
206 /* gss_get_mic: compute a mic over message and return mic_token. */
207 __u32 lgss_get_mic(struct gss_ctx *context_handle,
208                    int msgcnt,
209                    rawobj_t *msg,
210                    int iovcnt,
211                    lnet_kiov_t *iovs,
212                    rawobj_t *mic_token)
213 {
214         LASSERT(context_handle);
215         LASSERT(context_handle->mech_type);
216         LASSERT(context_handle->mech_type->gm_ops);
217         LASSERT(context_handle->mech_type->gm_ops->gss_get_mic);
218
219         return context_handle->mech_type->gm_ops
220                 ->gss_get_mic(context_handle,
221                               msgcnt,
222                               msg,
223                               iovcnt,
224                               iovs,
225                               mic_token);
226 }
227
228 /* gss_verify_mic: check whether the provided mic_token verifies message. */
229 __u32 lgss_verify_mic(struct gss_ctx *context_handle,
230                       int msgcnt,
231                       rawobj_t *msg,
232                       int iovcnt,
233                       lnet_kiov_t *iovs,
234                       rawobj_t *mic_token)
235 {
236         LASSERT(context_handle);
237         LASSERT(context_handle->mech_type);
238         LASSERT(context_handle->mech_type->gm_ops);
239         LASSERT(context_handle->mech_type->gm_ops->gss_verify_mic);
240
241         return context_handle->mech_type->gm_ops
242                 ->gss_verify_mic(context_handle,
243                                  msgcnt,
244                                  msg,
245                                  iovcnt,
246                                  iovs,
247                                  mic_token);
248 }
249
250 __u32 lgss_wrap(struct gss_ctx *context_handle,
251                 rawobj_t *gsshdr,
252                 rawobj_t *msg,
253                 int msg_buflen,
254                 rawobj_t *out_token)
255 {
256         LASSERT(context_handle);
257         LASSERT(context_handle->mech_type);
258         LASSERT(context_handle->mech_type->gm_ops);
259         LASSERT(context_handle->mech_type->gm_ops->gss_wrap);
260
261         return context_handle->mech_type->gm_ops
262                 ->gss_wrap(context_handle, gsshdr, msg, msg_buflen, out_token);
263 }
264
265 __u32 lgss_unwrap(struct gss_ctx *context_handle,
266                   rawobj_t *gsshdr,
267                   rawobj_t *token,
268                   rawobj_t *out_msg)
269 {
270         LASSERT(context_handle);
271         LASSERT(context_handle->mech_type);
272         LASSERT(context_handle->mech_type->gm_ops);
273         LASSERT(context_handle->mech_type->gm_ops->gss_unwrap);
274
275         return context_handle->mech_type->gm_ops
276                 ->gss_unwrap(context_handle, gsshdr, token, out_msg);
277 }
278
279
280 __u32 lgss_prep_bulk(struct gss_ctx *context_handle,
281                      struct ptlrpc_bulk_desc *desc)
282 {
283         LASSERT(context_handle);
284         LASSERT(context_handle->mech_type);
285         LASSERT(context_handle->mech_type->gm_ops);
286         LASSERT(context_handle->mech_type->gm_ops->gss_prep_bulk);
287
288         return context_handle->mech_type->gm_ops
289                 ->gss_prep_bulk(context_handle, desc);
290 }
291
292 __u32 lgss_wrap_bulk(struct gss_ctx *context_handle,
293                      struct ptlrpc_bulk_desc *desc,
294                      rawobj_t *token,
295                      int adj_nob)
296 {
297         LASSERT(context_handle);
298         LASSERT(context_handle->mech_type);
299         LASSERT(context_handle->mech_type->gm_ops);
300         LASSERT(context_handle->mech_type->gm_ops->gss_wrap_bulk);
301
302         return context_handle->mech_type->gm_ops
303                 ->gss_wrap_bulk(context_handle, desc, token, adj_nob);
304 }
305
306 __u32 lgss_unwrap_bulk(struct gss_ctx *context_handle,
307                        struct ptlrpc_bulk_desc *desc,
308                        rawobj_t *token,
309                        int adj_nob)
310 {
311         LASSERT(context_handle);
312         LASSERT(context_handle->mech_type);
313         LASSERT(context_handle->mech_type->gm_ops);
314         LASSERT(context_handle->mech_type->gm_ops->gss_unwrap_bulk);
315
316         return context_handle->mech_type->gm_ops
317                 ->gss_unwrap_bulk(context_handle, desc, token, adj_nob);
318 }
319
320 /* gss_delete_sec_context: free all resources associated with context_handle.
321  * Note this differs from the RFC 2744-specified prototype in that we don't
322  * bother returning an output token, since it would never be used anyway. */
323
324 __u32 lgss_delete_sec_context(struct gss_ctx **context_handle)
325 {
326         struct gss_api_mech *mech;
327
328         CDEBUG(D_SEC, "deleting %p\n", *context_handle);
329
330         if (!*context_handle)
331                 return(GSS_S_NO_CONTEXT);
332
333         mech = (*context_handle)->mech_type;
334         if ((*context_handle)->internal_ctx_id != 0) {
335                 LASSERT(mech);
336                 LASSERT(mech->gm_ops);
337                 LASSERT(mech->gm_ops->gss_delete_sec_context);
338                 mech->gm_ops->gss_delete_sec_context(
339                                         (*context_handle)->internal_ctx_id);
340         }
341         if (mech)
342                 lgss_mech_put(mech);
343
344         OBD_FREE_PTR(*context_handle);
345         *context_handle=NULL;
346         return GSS_S_COMPLETE;
347 }
348
349 int lgss_display(struct gss_ctx *ctx,
350                  char           *buf,
351                  int             bufsize)
352 {
353         LASSERT(ctx);
354         LASSERT(ctx->mech_type);
355         LASSERT(ctx->mech_type->gm_ops);
356         LASSERT(ctx->mech_type->gm_ops->gss_display);
357
358         return ctx->mech_type->gm_ops->gss_display(ctx, buf, bufsize);
359 }