Whamcloud - gitweb
LU-5710 all: second batch of corrected typos and grammar errors
[fs/lustre-release.git] / lustre / ptlrpc / gss / gss_cli_upcall.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ptlrpc/gss/gss_cli_upcall.c
37  *
38  * Author: Eric Mei <ericm@clusterfs.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_SEC
42 #include <linux/init.h>
43 #include <linux/module.h>
44 #include <linux/slab.h>
45 #include <linux/dcache.h>
46 #include <linux/fs.h>
47 #include <linux/mutex.h>
48
49 #include <obd.h>
50 #include <obd_class.h>
51 #include <obd_support.h>
52 #include <lustre/lustre_idl.h>
53 #include <lustre_net.h>
54 #include <lustre_import.h>
55 #include <lustre_sec.h>
56
57 #include "gss_err.h"
58 #include "gss_internal.h"
59 #include "gss_api.h"
60
61 /**********************************************
62  * gss context init/fini helper               *
63  **********************************************/
64
65 static
66 int ctx_init_pack_request(struct obd_import *imp,
67                           struct ptlrpc_request *req,
68                           int lustre_srv,
69                           uid_t uid, gid_t gid,
70                           long token_size,
71                           char __user *token)
72 {
73         struct lustre_msg       *msg = req->rq_reqbuf;
74         struct gss_sec          *gsec;
75         struct gss_header       *ghdr;
76         struct ptlrpc_user_desc *pud;
77         __u32                   *p, size, offset = 2;
78         rawobj_t                 obj;
79
80         LASSERT(msg->lm_bufcount <= 4);
81         LASSERT(req->rq_cli_ctx);
82         LASSERT(req->rq_cli_ctx->cc_sec);
83
84         /* gss hdr */
85         ghdr = lustre_msg_buf(msg, 0, sizeof(*ghdr));
86         ghdr->gh_version = PTLRPC_GSS_VERSION;
87         ghdr->gh_sp = (__u8) imp->imp_sec->ps_part;
88         ghdr->gh_flags = 0;
89         ghdr->gh_proc = PTLRPC_GSS_PROC_INIT;
90         ghdr->gh_seq = 0;
91         ghdr->gh_svc = SPTLRPC_SVC_NULL;
92         ghdr->gh_handle.len = 0;
93
94         /* fix the user desc */
95         if (req->rq_pack_udesc) {
96                 ghdr->gh_flags |= LUSTRE_GSS_PACK_USER;
97
98                 pud = lustre_msg_buf(msg, offset, sizeof(*pud));
99                 LASSERT(pud);
100                 pud->pud_uid = pud->pud_fsuid = uid;
101                 pud->pud_gid = pud->pud_fsgid = gid;
102                 pud->pud_cap = 0;
103                 pud->pud_ngroups = 0;
104                 offset++;
105         }
106
107         /* security payload */
108         p = lustre_msg_buf(msg, offset, 0);
109         size = msg->lm_buflens[offset];
110         LASSERT(p);
111
112         /* 1. lustre svc type */
113         LASSERT(size > 4);
114         *p++ = cpu_to_le32(lustre_srv);
115         size -= 4;
116
117         /* 2. target uuid */
118         obj.len = strlen(imp->imp_obd->u.cli.cl_target_uuid.uuid) + 1;
119         obj.data = imp->imp_obd->u.cli.cl_target_uuid.uuid;
120         if (rawobj_serialize(&obj, &p, &size))
121                 LBUG();
122
123         /* 3. reverse context handle. actually only needed by root user,
124          *    but we send it anyway. */
125         gsec = sec2gsec(req->rq_cli_ctx->cc_sec);
126         obj.len = sizeof(gsec->gs_rvs_hdl);
127         obj.data = (__u8 *) &gsec->gs_rvs_hdl;
128         if (rawobj_serialize(&obj, &p, &size))
129                 LBUG();
130
131         /* 4. now the token */
132         LASSERT(size >= (sizeof(__u32) + token_size));
133         *p++ = cpu_to_le32(((__u32) token_size));
134         if (copy_from_user(p, token, token_size)) {
135                 CERROR("can't copy token\n");
136                 return -EFAULT;
137         }
138         size -= sizeof(__u32) + cfs_size_round4(token_size);
139
140         req->rq_reqdata_len = lustre_shrink_msg(req->rq_reqbuf, offset,
141                                                 msg->lm_buflens[offset] - size, 0);
142         return 0;
143 }
144
145 static
146 int ctx_init_parse_reply(struct lustre_msg *msg, int swabbed,
147                          char __user *outbuf, long outlen)
148 {
149         struct gss_rep_header   *ghdr;
150         __u32                    obj_len, round_len;
151         __u32                    status, effective = 0;
152
153         if (msg->lm_bufcount != 3) {
154                 CERROR("unexpected bufcount %u\n", msg->lm_bufcount);
155                 return -EPROTO;
156         }
157
158         ghdr = (struct gss_rep_header *) gss_swab_header(msg, 0, swabbed);
159         if (ghdr == NULL) {
160                 CERROR("unable to extract gss reply header\n");
161                 return -EPROTO;
162         }
163
164         if (ghdr->gh_version != PTLRPC_GSS_VERSION) {
165                 CERROR("invalid gss version %u\n", ghdr->gh_version);
166                 return -EPROTO;
167         }
168
169         if (outlen < (4 + 2) * 4 + cfs_size_round4(ghdr->gh_handle.len) +
170                      cfs_size_round4(msg->lm_buflens[2])) {
171                 CERROR("output buffer size %ld too small\n", outlen);
172                 return -EFAULT;
173         }
174
175         status = 0;
176         effective = 0;
177
178         if (copy_to_user(outbuf, &status, 4))
179                 return -EFAULT;
180         outbuf += 4;
181         if (copy_to_user(outbuf, &ghdr->gh_major, 4))
182                 return -EFAULT;
183         outbuf += 4;
184         if (copy_to_user(outbuf, &ghdr->gh_minor, 4))
185                 return -EFAULT;
186         outbuf += 4;
187         if (copy_to_user(outbuf, &ghdr->gh_seqwin, 4))
188                 return -EFAULT;
189         outbuf += 4;
190         effective += 4 * 4;
191
192         /* handle */
193         obj_len = ghdr->gh_handle.len;
194         round_len = (obj_len + 3) & ~3;
195         if (copy_to_user(outbuf, &obj_len, 4))
196                 return -EFAULT;
197         outbuf += 4;
198         if (copy_to_user(outbuf, (char *) ghdr->gh_handle.data, round_len))
199                 return -EFAULT;
200         outbuf += round_len;
201         effective += 4 + round_len;
202
203         /* out token */
204         obj_len = msg->lm_buflens[2];
205         round_len = (obj_len + 3) & ~3;
206         if (copy_to_user(outbuf, &obj_len, 4))
207                 return -EFAULT;
208         outbuf += 4;
209         if (copy_to_user(outbuf, lustre_msg_buf(msg, 2, 0), round_len))
210                 return -EFAULT;
211         outbuf += round_len;
212         effective += 4 + round_len;
213
214         return effective;
215 }
216
217 /* XXX move to where lgssd could see */
218 struct lgssd_ioctl_param {
219         int             version;        /* in   */
220         int             secid;          /* in   */
221         char           *uuid;           /* in   */
222         int             lustre_svc;     /* in   */
223         uid_t           uid;            /* in   */
224         gid_t           gid;            /* in   */
225         long            send_token_size;/* in   */
226         char           *send_token;     /* in   */
227         long            reply_buf_size; /* in   */
228         char           *reply_buf;      /* in   */
229         long            status;         /* out  */
230         long            reply_length;   /* out  */
231 };
232
233 int gss_do_ctx_init_rpc(__user char *buffer, unsigned long count)
234 {
235         struct obd_import        *imp;
236         struct ptlrpc_request    *req;
237         struct lgssd_ioctl_param  param;
238         struct obd_device        *obd;
239         char                      obdname[64];
240         long                      lsize;
241         int                       rc;
242
243         if (count != sizeof(param)) {
244                 CERROR("ioctl size %lu, expect %lu, please check lgss_keyring "
245                        "version\n", count, (unsigned long) sizeof(param));
246                 RETURN(-EINVAL);
247         }
248         if (copy_from_user(&param, buffer, sizeof(param))) {
249                 CERROR("failed copy data from lgssd\n");
250                 RETURN(-EFAULT);
251         }
252
253         if (param.version != GSSD_INTERFACE_VERSION) {
254                 CERROR("gssd interface version %d (expect %d)\n",
255                         param.version, GSSD_INTERFACE_VERSION);
256                 RETURN(-EINVAL);
257         }
258
259         /* take name */
260         if (strncpy_from_user(obdname, param.uuid, sizeof(obdname)) <= 0) {
261                 CERROR("Invalid obdname pointer\n");
262                 RETURN(-EFAULT);
263         }
264
265         obd = class_name2obd(obdname);
266         if (!obd) {
267                 CERROR("no such obd %s\n", obdname);
268                 RETURN(-EINVAL);
269         }
270
271         if (unlikely(!obd->obd_set_up)) {
272                 CERROR("obd %s not setup\n", obdname);
273                 RETURN(-EINVAL);
274         }
275
276         spin_lock(&obd->obd_dev_lock);
277         if (obd->obd_stopping) {
278                 CERROR("obd %s has stopped\n", obdname);
279                 spin_unlock(&obd->obd_dev_lock);
280                 RETURN(-EINVAL);
281         }
282
283         if (strcmp(obd->obd_type->typ_name, LUSTRE_MDC_NAME) &&
284             strcmp(obd->obd_type->typ_name, LUSTRE_OSC_NAME) &&
285             strcmp(obd->obd_type->typ_name, LUSTRE_MGC_NAME)) {
286                 CERROR("obd %s is not a client device\n", obdname);
287                 spin_unlock(&obd->obd_dev_lock);
288                 RETURN(-EINVAL);
289         }
290         spin_unlock(&obd->obd_dev_lock);
291
292         down_read(&obd->u.cli.cl_sem);
293         if (obd->u.cli.cl_import == NULL) {
294                 CERROR("obd %s: import has gone\n", obd->obd_name);
295                 up_read(&obd->u.cli.cl_sem);
296                 RETURN(-EINVAL);
297         }
298         imp = class_import_get(obd->u.cli.cl_import);
299         up_read(&obd->u.cli.cl_sem);
300
301         if (imp->imp_deactive) {
302                 CERROR("import has been deactivated\n");
303                 class_import_put(imp);
304                 RETURN(-EINVAL);
305         }
306
307         req = ptlrpc_request_alloc_pack(imp, &RQF_SEC_CTX, LUSTRE_OBD_VERSION,
308                                         SEC_CTX_INIT);
309         if (req == NULL) {
310                 param.status = -ENOMEM;
311                 goto out_copy;
312         }
313
314         if (req->rq_cli_ctx->cc_sec->ps_id != param.secid) {
315                 CWARN("original secid %d, now has changed to %d, "
316                       "cancel this negotiation\n", param.secid,
317                       req->rq_cli_ctx->cc_sec->ps_id);
318                 param.status = -EINVAL;
319                 goto out_copy;
320         }
321
322         /* get token */
323         rc = ctx_init_pack_request(imp, req,
324                                    param.lustre_svc,
325                                    param.uid, param.gid,
326                                    param.send_token_size,
327                                    param.send_token);
328         if (rc) {
329                 param.status = rc;
330                 goto out_copy;
331         }
332
333         ptlrpc_request_set_replen(req);
334
335         rc = ptlrpc_queue_wait(req);
336         if (rc) {
337                 /* If any _real_ denial be made, we expect server return
338                  * -EACCES reply or return success but indicate gss error
339                  * inside reply messsage. All other errors are treated as
340                  * timeout, caller might try the negotiation repeatedly,
341                  * leave recovery decisions to general ptlrpc layer.
342                  *
343                  * FIXME maybe some other error code shouldn't be treated
344                  * as timeout. */
345                 param.status = rc;
346                 if (rc != -EACCES)
347                         param.status = -ETIMEDOUT;
348                 goto out_copy;
349         }
350
351         LASSERT(req->rq_repdata);
352         lsize = ctx_init_parse_reply(req->rq_repdata,
353                                      ptlrpc_rep_need_swab(req),
354                                      param.reply_buf, param.reply_buf_size);
355         if (lsize < 0) {
356                 param.status = (int) lsize;
357                 goto out_copy;
358         }
359
360         param.status = 0;
361         param.reply_length = lsize;
362
363 out_copy:
364         if (copy_to_user(buffer, &param, sizeof(param)))
365                 rc = -EFAULT;
366         else
367                 rc = 0;
368
369         class_import_put(imp);
370         ptlrpc_req_finished(req);
371         RETURN(rc);
372 }
373
374 int gss_do_ctx_fini_rpc(struct gss_cli_ctx *gctx)
375 {
376         struct ptlrpc_cli_ctx   *ctx = &gctx->gc_base;
377         struct obd_import       *imp = ctx->cc_sec->ps_import;
378         struct ptlrpc_request   *req;
379         struct ptlrpc_user_desc *pud;
380         int                      rc;
381         ENTRY;
382
383         LASSERT(atomic_read(&ctx->cc_refcount) > 0);
384
385         if (cli_ctx_is_error(ctx) || !cli_ctx_is_uptodate(ctx)) {
386                 CDEBUG(D_SEC, "ctx %p(%u->%s) not uptodate, "
387                        "don't send destroy rpc\n", ctx,
388                        ctx->cc_vcred.vc_uid, sec2target_str(ctx->cc_sec));
389                 RETURN(0);
390         }
391
392         might_sleep();
393
394         CWARN("%s ctx %p idx "LPX64" (%u->%s)\n",
395               sec_is_reverse(ctx->cc_sec) ?
396               "server finishing reverse" : "client finishing forward",
397               ctx, gss_handle_to_u64(&gctx->gc_handle),
398               ctx->cc_vcred.vc_uid, sec2target_str(ctx->cc_sec));
399
400         gctx->gc_proc = PTLRPC_GSS_PROC_DESTROY;
401
402         req = ptlrpc_request_alloc(imp, &RQF_SEC_CTX);
403         if (req == NULL) {
404                 CWARN("ctx %p(%u): fail to prepare rpc, destroy locally\n",
405                       ctx, ctx->cc_vcred.vc_uid);
406                 GOTO(out, rc = -ENOMEM);
407         }
408
409         rc = ptlrpc_request_bufs_pack(req, LUSTRE_OBD_VERSION, SEC_CTX_FINI,
410                                       NULL, ctx);
411         if (rc) {
412                 ptlrpc_request_free(req);
413                 GOTO(out_ref, rc);
414         }
415
416         /* fix the user desc */
417         if (req->rq_pack_udesc) {
418                 /* we rely the fact that this request is in AUTH mode,
419                  * and user_desc at offset 2. */
420                 pud = lustre_msg_buf(req->rq_reqbuf, 2, sizeof(*pud));
421                 LASSERT(pud);
422                 pud->pud_uid = pud->pud_fsuid = ctx->cc_vcred.vc_uid;
423                 pud->pud_gid = pud->pud_fsgid = ctx->cc_vcred.vc_gid;
424                 pud->pud_cap = 0;
425                 pud->pud_ngroups = 0;
426         }
427
428         req->rq_phase = RQ_PHASE_RPC;
429         rc = ptl_send_rpc(req, 1);
430         if (rc)
431                 CWARN("ctx %p(%u->%s): rpc error %d, destroy locally\n", ctx,
432                       ctx->cc_vcred.vc_uid, sec2target_str(ctx->cc_sec), rc);
433
434 out_ref:
435         ptlrpc_req_finished(req);
436 out:
437         RETURN(rc);
438 }
439
440 int __init gss_init_cli_upcall(void)
441 {
442         return 0;
443 }
444
445 void gss_exit_cli_upcall(void)
446 {
447 }