Whamcloud - gitweb
branch: HEAD
[fs/lustre-release.git] / lustre / ptlrpc / gss / gss_cli_upcall.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2006 Cluster File Systems, Inc.
5  *   Author: Eric Mei <ericm@clusterfs.com>
6  *
7  *   This file is part of the Lustre file system, http://www.lustre.org
8  *   Lustre is a trademark of Cluster File Systems, Inc.
9  *
10  *   You may have signed or agreed to another license before downloading
11  *   this software.  If so, you are bound by the terms and conditions
12  *   of that agreement, and the following does not apply to you.  See the
13  *   LICENSE file included with this distribution for more information.
14  *
15  *   If you did not agree to a different license, then this copy of Lustre
16  *   is open source software; you can redistribute it and/or modify it
17  *   under the terms of version 2 of the GNU General Public License as
18  *   published by the Free Software Foundation.
19  *
20  *   In either case, Lustre is distributed in the hope that it will be
21  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
22  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  *   license text for more details.
24  *
25  */
26
27 #ifndef EXPORT_SYMTAB
28 # define EXPORT_SYMTAB
29 #endif
30 #define DEBUG_SUBSYSTEM S_SEC
31 #ifdef __KERNEL__
32 #include <linux/init.h>
33 #include <linux/module.h>
34 #include <linux/slab.h>
35 #include <linux/dcache.h>
36 #include <linux/fs.h>
37 #include <linux/mutex.h>
38 #include <linux/random.h>
39 #else
40 #include <liblustre.h>
41 #endif
42
43 #include <obd.h>
44 #include <obd_class.h>
45 #include <obd_support.h>
46 #include <lustre/lustre_idl.h>
47 #include <lustre_net.h>
48 #include <lustre_import.h>
49 #include <lustre_sec.h>
50
51 #include "gss_err.h"
52 #include "gss_internal.h"
53 #include "gss_api.h"
54
55 /**********************************************
56  * gss context init/fini helper               *
57  **********************************************/
58
59 static
60 int ctx_init_pack_request(struct obd_import *imp,
61                           struct ptlrpc_request *req,
62                           int lustre_srv,
63                           uid_t uid, gid_t gid,
64                           long token_size,
65                           char __user *token)
66 {
67         struct lustre_msg       *msg = req->rq_reqbuf;
68         struct gss_sec          *gsec;
69         struct gss_header       *ghdr;
70         struct ptlrpc_user_desc *pud;
71         __u32                   *p, size, offset = 2;
72         rawobj_t                 obj;
73
74         LASSERT(msg->lm_bufcount <= 4);
75
76         /* gss hdr */
77         ghdr = lustre_msg_buf(msg, 0, sizeof(*ghdr));
78         ghdr->gh_version = PTLRPC_GSS_VERSION;
79         ghdr->gh_flags = 0;
80         ghdr->gh_proc = PTLRPC_GSS_PROC_INIT;
81         ghdr->gh_seq = 0;
82         ghdr->gh_svc = SPTLRPC_SVC_NULL;
83         ghdr->gh_handle.len = 0;
84
85         /* fix the user desc */
86         if (SEC_FLAVOR_HAS_USER(req->rq_sec_flavor)) {
87                 pud = lustre_msg_buf(msg, offset, sizeof(*pud));
88                 LASSERT(pud);
89                 pud->pud_uid = pud->pud_fsuid = uid;
90                 pud->pud_gid = pud->pud_fsgid = gid;
91                 pud->pud_cap = 0;
92                 pud->pud_ngroups = 0;
93                 offset++;
94         }
95
96         /* security payload */
97         p = lustre_msg_buf(msg, offset, 0);
98         size = msg->lm_buflens[offset];
99
100         /* 1. lustre svc type */
101         LASSERT(size > 4);
102         *p++ = cpu_to_le32(lustre_srv);
103         size -= 4;
104
105         /* 2. target uuid */
106         obj.len = strlen(imp->imp_obd->u.cli.cl_target_uuid.uuid) + 1;
107         obj.data = imp->imp_obd->u.cli.cl_target_uuid.uuid;
108         if (rawobj_serialize(&obj, &p, &size))
109                 LBUG();
110
111         /* 3. reverse context handle. actually only needed by root user,
112          *    but we send it anyway. */
113         gsec = container_of(imp->imp_sec, struct gss_sec, gs_base);
114         obj.len = sizeof(gsec->gs_rvs_hdl);
115         obj.data = (__u8 *) &gsec->gs_rvs_hdl;
116         if (rawobj_serialize(&obj, &p, &size))
117                 LBUG();
118
119         /* 4. now the token */
120         LASSERT(size >= (sizeof(__u32) + token_size));
121         *p++ = cpu_to_le32(((__u32) token_size));
122         if (copy_from_user(p, token, token_size)) {
123                 CERROR("can't copy token\n");
124                 return -EFAULT;
125         }
126         size -= sizeof(__u32) + size_round4(token_size);
127
128         req->rq_reqdata_len = lustre_shrink_msg(req->rq_reqbuf, offset,
129                                                 msg->lm_buflens[offset] - size, 0);
130         return 0;
131 }
132
133 static
134 int ctx_init_parse_reply(struct lustre_msg *msg,
135                          char __user *outbuf, long outlen)
136 {
137         struct gss_rep_header   *ghdr;
138         __u32                    obj_len, round_len;
139         __u32                    status, effective = 0;
140
141         if (msg->lm_bufcount != 3) {
142                 CERROR("unexpected bufcount %u\n", msg->lm_bufcount);
143                 return -EPROTO;
144         }
145
146         ghdr = (struct gss_rep_header *) gss_swab_header(msg, 0);
147         if (ghdr == NULL) {
148                 CERROR("unable to extract gss reply header\n");
149                 return -EPROTO;
150         }
151
152         if (ghdr->gh_version != PTLRPC_GSS_VERSION) {
153                 CERROR("invalid gss version %u\n", ghdr->gh_version);
154                 return -EPROTO;
155         }
156
157         if (outlen < (4 + 2) * 4 + size_round4(ghdr->gh_handle.len) +
158                      size_round4(msg->lm_buflens[2])) {
159                 CERROR("output buffer size %ld too small\n", outlen);
160                 return -EFAULT;
161         }
162
163         status = 0;
164         effective = 0;
165
166         if (copy_to_user(outbuf, &status, 4))
167                 return -EFAULT;
168         outbuf += 4;
169         if (copy_to_user(outbuf, &ghdr->gh_major, 4))
170                 return -EFAULT;
171         outbuf += 4;
172         if (copy_to_user(outbuf, &ghdr->gh_minor, 4))
173                 return -EFAULT;
174         outbuf += 4;
175         if (copy_to_user(outbuf, &ghdr->gh_seqwin, 4))
176                 return -EFAULT;
177         outbuf += 4;
178         effective += 4 * 4;
179
180         /* handle */
181         obj_len = ghdr->gh_handle.len;
182         round_len = (obj_len + 3) & ~ 3;
183         if (copy_to_user(outbuf, &obj_len, 4))
184                 return -EFAULT;
185         outbuf += 4;
186         if (copy_to_user(outbuf, (char *) ghdr->gh_handle.data, round_len))
187                 return -EFAULT;
188         outbuf += round_len;
189         effective += 4 + round_len;
190
191         /* out token */
192         obj_len = msg->lm_buflens[2];
193         round_len = (obj_len + 3) & ~ 3;
194         if (copy_to_user(outbuf, &obj_len, 4))
195                 return -EFAULT;
196         outbuf += 4;
197         if (copy_to_user(outbuf, lustre_msg_buf(msg, 2, 0), round_len))
198                 return -EFAULT;
199         outbuf += round_len;
200         effective += 4 + round_len;
201
202         return effective;
203 }
204
205 /* XXX move to where lgssd could see */
206 struct lgssd_ioctl_param {
207         int             version;        /* in   */
208         char           *uuid;           /* in   */
209         int             lustre_svc;     /* in   */
210         uid_t           uid;            /* in   */
211         gid_t           gid;            /* in   */
212         long            send_token_size;/* in   */
213         char           *send_token;     /* in   */
214         long            reply_buf_size; /* in   */
215         char           *reply_buf;      /* in   */
216         long            status;         /* out  */
217         long            reply_length;   /* out  */
218 };
219
220 int gss_do_ctx_init_rpc(__user char *buffer, unsigned long count)
221 {
222         struct obd_import        *imp;
223         struct ptlrpc_request    *req;
224         struct lgssd_ioctl_param  param;
225         struct obd_device        *obd;
226         char                      obdname[64];
227         long                      lsize;
228         int                       lmsg_size = sizeof(struct ptlrpc_body);
229         int                       rc;
230
231         if (count != sizeof(param)) {
232                 CERROR("ioctl size %lu, expect %lu, please check lgssd version\n",
233                         count, (unsigned long) sizeof(param));
234                 RETURN(-EINVAL);
235         }
236         if (copy_from_user(&param, buffer, sizeof(param))) {
237                 CERROR("failed copy data from lgssd\n");
238                 RETURN(-EFAULT);
239         }
240
241         if (param.version != GSSD_INTERFACE_VERSION) {
242                 CERROR("gssd interface version %d (expect %d)\n",
243                         param.version, GSSD_INTERFACE_VERSION);
244                 RETURN(-EINVAL);
245         }
246
247         /* take name */
248         if (strncpy_from_user(obdname, param.uuid, sizeof(obdname)) <= 0) {
249                 CERROR("Invalid obdname pointer\n");
250                 RETURN(-EFAULT);
251         }
252
253         obd = class_name2obd(obdname);
254         if (!obd) {
255                 CERROR("no such obd %s\n", obdname);
256                 RETURN(-EINVAL);
257         }
258
259         imp = class_import_get(obd->u.cli.cl_import);
260         LASSERT(imp->imp_sec);
261
262         /* force this import to use v2 msg */
263         imp->imp_msg_magic = LUSTRE_MSG_MAGIC_V2;
264
265         req = ptlrpc_prep_req(imp, LUSTRE_OBD_VERSION, SEC_CTX_INIT,
266                               1, &lmsg_size, NULL);
267         if (!req) {
268                 param.status = -ENOMEM;
269                 goto out_copy;
270         }
271
272         /* get token */
273         rc = ctx_init_pack_request(imp, req,
274                                    param.lustre_svc,
275                                    param.uid, param.gid,
276                                    param.send_token_size,
277                                    param.send_token);
278         if (rc) {
279                 param.status = rc;
280                 goto out_copy;
281         }
282
283         req->rq_replen = lustre_msg_size_v2(1, &lmsg_size);
284
285         rc = ptlrpc_queue_wait(req);
286         if (rc) {
287                 /* If any _real_ denial be made, we expect server return
288                  * -EACCES reply or return success but indicate gss error
289                  * inside reply messsage. All other errors are treated as
290                  * timeout, caller might try the negotiation repeatedly,
291                  * leave recovery decisions to general ptlrpc layer.
292                  *
293                  * FIXME maybe some other error code shouldn't be treated
294                  * as timeout. */
295                 param.status = rc;
296                 if (rc != -EACCES)
297                         param.status = -ETIMEDOUT;
298                 goto out_copy;
299         }
300
301         lsize = ctx_init_parse_reply(req->rq_repbuf,
302                                      param.reply_buf, param.reply_buf_size);
303         if (lsize < 0) {
304                 param.status = (int) lsize;
305                 goto out_copy;
306         }
307
308         param.status = 0;
309         param.reply_length = lsize;
310
311 out_copy:
312         if (copy_to_user(buffer, &param, sizeof(param)))
313                 rc = -EFAULT;
314         else
315                 rc = 0;
316
317         class_import_put(imp);
318         ptlrpc_req_finished(req);
319         RETURN(rc);
320 }
321
322 int gss_do_ctx_fini_rpc(struct gss_cli_ctx *gctx)
323 {
324         struct ptlrpc_cli_ctx   *ctx = &gctx->gc_base;
325         struct obd_import       *imp = ctx->cc_sec->ps_import;
326         struct ptlrpc_request   *req;
327         struct ptlrpc_user_desc *pud;
328         int                      buflens = sizeof(struct ptlrpc_body);
329         int                      rc;
330         ENTRY;
331
332         LASSERT(atomic_read(&ctx->cc_refcount) > 0);
333
334         if (cli_ctx_is_error(ctx) || !cli_ctx_is_uptodate(ctx)) {
335                 CDEBUG(D_SEC, "ctx %p(%u->%s) not uptodate, "
336                        "don't send destroy rpc\n", ctx,
337                        ctx->cc_vcred.vc_uid, sec2target_str(ctx->cc_sec));
338                 RETURN(0);
339         }
340
341         might_sleep();
342
343         CDEBUG(D_SEC, "%s ctx %p(%u->%s)\n",
344                sec_is_reverse(ctx->cc_sec) ?
345                "server finishing reverse" : "client finishing forward",
346                ctx, ctx->cc_vcred.vc_uid, sec2target_str(ctx->cc_sec));
347
348         gctx->gc_proc = PTLRPC_GSS_PROC_DESTROY;
349
350         req = ptlrpc_prep_req_pool(imp, LUSTRE_OBD_VERSION, SEC_CTX_FINI,
351                                    1, &buflens, NULL, NULL, ctx);
352         if (!req) {
353                 CWARN("ctx %p(%u): fail to prepare rpc, destroy locally\n",
354                       ctx, ctx->cc_vcred.vc_uid);
355                 GOTO(out, rc = -ENOMEM);
356         }
357
358         /* fix the user desc */
359         if (SEC_FLAVOR_HAS_USER(req->rq_sec_flavor)) {
360                 /* we rely the fact that this request is in AUTH mode,
361                  * and user_desc at offset 2. */
362                 pud = lustre_msg_buf(req->rq_reqbuf, 2, sizeof(*pud));
363                 LASSERT(pud);
364                 pud->pud_uid = pud->pud_fsuid = ctx->cc_vcred.vc_uid;
365                 pud->pud_gid = pud->pud_fsgid = ctx->cc_vcred.vc_gid;
366                 pud->pud_cap = 0;
367                 pud->pud_ngroups = 0;
368         }
369
370         req->rq_phase = RQ_PHASE_RPC;
371         rc = ptl_send_rpc(req, 1);
372         if (rc) {
373                 CWARN("ctx %p(%u->%s): rpc error %d, destroy locally\n",
374                       ctx, ctx->cc_vcred.vc_uid, sec2target_str(ctx->cc_sec),
375                       rc);
376         }
377
378         ptlrpc_req_finished(req);
379 out:
380         RETURN(rc);
381 }
382
383 int __init gss_init_cli_upcall(void)
384 {
385         return 0;
386 }
387
388 void __exit gss_exit_cli_upcall(void)
389 {
390 }