Whamcloud - gitweb
branch: HEAD
[fs/lustre-release.git] / lustre / utils / gss / svcgssd_proc.c
1 /*
2   svc_in_gssd_proc.c
3
4   Copyright (c) 2000 The Regents of the University of Michigan.
5   All rights reserved.
6
7   Copyright (c) 2002 Bruce Fields <bfields@UMICH.EDU>
8
9   Redistribution and use in source and binary forms, with or without
10   modification, are permitted provided that the following conditions
11   are met:
12
13   1. Redistributions of source code must retain the above copyright
14      notice, this list of conditions and the following disclaimer.
15   2. Redistributions in binary form must reproduce the above copyright
16      notice, this list of conditions and the following disclaimer in the
17      documentation and/or other materials provided with the distribution.
18   3. Neither the name of the University nor the names of its
19      contributors may be used to endorse or promote products derived
20      from this software without specific prior written permission.
21
22   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
23   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25   DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
29   BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
34 */
35
36 #include <sys/param.h>
37 #include <sys/stat.h>
38
39 #include <pwd.h>
40 #include <stdio.h>
41 #include <unistd.h>
42 #include <ctype.h>
43 #include <string.h>
44 #include <fcntl.h>
45 #include <errno.h>
46 #include <netdb.h>
47
48 #include "svcgssd.h"
49 #include "gss_util.h"
50 #include "err_util.h"
51 #include "context.h"
52 #include "cacheio.h"
53 #include "lsupport.h"
54
55 extern char * mech2file(gss_OID mech);
56 #define SVCGSSD_CONTEXT_CHANNEL "/proc/net/rpc/auth.sptlrpc.context/channel"
57 #define SVCGSSD_INIT_CHANNEL    "/proc/net/rpc/auth.sptlrpc.init/channel"
58
59 #define TOKEN_BUF_SIZE          8192
60
61 struct svc_cred {
62         uint32_t cr_remote;
63         uint32_t cr_usr_root;
64         uint32_t cr_usr_mds;
65         uid_t    cr_uid;
66         uid_t    cr_mapped_uid;
67         uid_t    cr_gid;
68 };
69
70 static int
71 do_svc_downcall(gss_buffer_desc *out_handle, struct svc_cred *cred,
72                 gss_OID mech, gss_buffer_desc *context_token)
73 {
74         FILE *f;
75         char *fname = NULL;
76         int err;
77
78         printerr(2, "doing downcall\n");
79         if ((fname = mech2file(mech)) == NULL)
80                 goto out_err;
81         f = fopen(SVCGSSD_CONTEXT_CHANNEL, "w");
82         if (f == NULL) {
83                 printerr(0, "WARNING: unable to open downcall channel "
84                              "%s: %s\n",
85                              SVCGSSD_CONTEXT_CHANNEL, strerror(errno));
86                 goto out_err;
87         }
88         qword_printhex(f, out_handle->value, out_handle->length);
89         /* XXX are types OK for the rest of this? */
90         qword_printint(f, 0x7fffffff); /*XXX need a better timeout */
91         qword_printint(f, cred->cr_remote);
92         qword_printint(f, cred->cr_usr_root);
93         qword_printint(f, cred->cr_usr_mds);
94         qword_printint(f, cred->cr_mapped_uid);
95         qword_printint(f, cred->cr_uid);
96         qword_printint(f, cred->cr_gid);
97         qword_print(f, fname);
98         qword_printhex(f, context_token->value, context_token->length);
99         err = qword_eol(f);
100         fclose(f);
101         return err;
102 out_err:
103         printerr(0, "WARNING: downcall failed\n");
104         return -1;
105 }
106
107 struct gss_verifier {
108         u_int32_t       flav;
109         gss_buffer_desc body;
110 };
111
112 #define RPCSEC_GSS_SEQ_WIN      5
113
114 static int
115 send_response(FILE *f, gss_buffer_desc *in_handle, gss_buffer_desc *in_token,
116               u_int32_t maj_stat, u_int32_t min_stat,
117               gss_buffer_desc *out_handle, gss_buffer_desc *out_token)
118 {
119         char buf[2 * TOKEN_BUF_SIZE];
120         char *bp = buf;
121         int blen = sizeof(buf);
122         /* XXXARG: */
123         int g;
124
125         printerr(2, "sending null reply\n");
126
127         qword_addhex(&bp, &blen, in_handle->value, in_handle->length);
128         qword_addhex(&bp, &blen, in_token->value, in_token->length);
129         qword_addint(&bp, &blen, 0x7fffffff); /*XXX need a better timeout */
130         qword_adduint(&bp, &blen, maj_stat);
131         qword_adduint(&bp, &blen, min_stat);
132         qword_addhex(&bp, &blen, out_handle->value, out_handle->length);
133         qword_addhex(&bp, &blen, out_token->value, out_token->length);
134         qword_addeol(&bp, &blen);
135         if (blen <= 0) {
136                 printerr(0, "WARNING: send_respsonse: message too long\n");
137                 return -1;
138         }
139         g = open(SVCGSSD_INIT_CHANNEL, O_WRONLY);
140         if (g == -1) {
141                 printerr(0, "WARNING: open %s failed: %s\n",
142                                 SVCGSSD_INIT_CHANNEL, strerror(errno));
143                 return -1;
144         }
145         *bp = '\0';
146         printerr(3, "writing message: %s", buf);
147         if (write(g, buf, bp - buf) == -1) {
148                 printerr(0, "WARNING: failed to write message\n");
149                 close(g);
150                 return -1;
151         }
152         close(g);
153         return 0;
154 }
155
156 #define rpc_auth_ok                     0
157 #define rpc_autherr_badcred             1
158 #define rpc_autherr_rejectedcred        2
159 #define rpc_autherr_badverf             3
160 #define rpc_autherr_rejectedverf        4
161 #define rpc_autherr_tooweak             5
162 #define rpcsec_gsserr_credproblem       13
163 #define rpcsec_gsserr_ctxproblem        14
164
165 #if 0
166 static void
167 add_supplementary_groups(char *secname, char *name, struct svc_cred *cred)
168 {
169         int ret;
170         static gid_t *groups = NULL;
171
172         cred->cr_ngroups = NGROUPS;
173         ret = nfs4_gss_princ_to_grouplist(secname, name,
174                         cred->cr_groups, &cred->cr_ngroups);
175         if (ret < 0) {
176                 groups = realloc(groups, cred->cr_ngroups*sizeof(gid_t));
177                 ret = nfs4_gss_princ_to_grouplist(secname, name,
178                                 groups, &cred->cr_ngroups);
179                 if (ret < 0)
180                         cred->cr_ngroups = 0;
181                 else {
182                         if (cred->cr_ngroups > NGROUPS)
183                                 cred->cr_ngroups = NGROUPS;
184                         memcpy(cred->cr_groups, groups,
185                                         cred->cr_ngroups*sizeof(gid_t));
186                 }
187         }
188 }
189 #endif
190
191 #if 0
192 static int
193 get_ids(gss_name_t client_name, gss_OID mech, struct svc_cred *cred)
194 {
195         u_int32_t       maj_stat, min_stat;
196         gss_buffer_desc name;
197         char            *sname;
198         int             res = -1;
199         uid_t           uid, gid;
200         gss_OID         name_type = GSS_C_NO_OID;
201         char            *secname;
202
203         maj_stat = gss_display_name(&min_stat, client_name, &name, &name_type);
204         if (maj_stat != GSS_S_COMPLETE) {
205                 pgsserr("get_ids: gss_display_name",
206                         maj_stat, min_stat, mech);
207                 goto out;
208         }
209         if (name.length >= 0xffff || /* be certain name.length+1 doesn't overflow */
210             !(sname = calloc(name.length + 1, 1))) {
211                 printerr(0, "WARNING: get_ids: error allocating %d bytes "
212                         "for sname\n", name.length + 1);
213                 gss_release_buffer(&min_stat, &name);
214                 goto out;
215         }
216         memcpy(sname, name.value, name.length);
217         printerr(1, "sname = %s\n", sname);
218         gss_release_buffer(&min_stat, &name);
219
220         res = -EINVAL;
221         if ((secname = mech2file(mech)) == NULL) {
222                 printerr(0, "WARNING: get_ids: error mapping mech to "
223                         "file for name '%s'\n", sname);
224                 goto out_free;
225         }
226         nfs4_init_name_mapping(NULL); /* XXX: should only do this once */
227         res = nfs4_gss_princ_to_ids(secname, sname, &uid, &gid);
228         if (res < 0) {
229                 /*
230                  * -ENOENT means there was no mapping, any other error
231                  * value means there was an error trying to do the
232                  * mapping.
233                  * If there was no mapping, we send down the value -1
234                  * to indicate that the anonuid/anongid for the export
235                  * should be used.
236                  */
237                 if (res == -ENOENT) {
238                         cred->cr_uid = -1;
239                         cred->cr_gid = -1;
240                         cred->cr_ngroups = 0;
241                         res = 0;
242                         goto out_free;
243                 }
244                 printerr(0, "WARNING: get_ids: failed to map name '%s' "
245                         "to uid/gid: %s\n", sname, strerror(-res));
246                 goto out_free;
247         }
248         cred->cr_uid = uid;
249         cred->cr_gid = gid;
250         add_supplementary_groups(secname, sname, cred);
251         res = 0;
252 out_free:
253         free(sname);
254 out:
255         return res;
256 }
257 #endif
258
259 #if 0
260 void
261 print_hexl(int pri, unsigned char *cp, int length)
262 {
263         int i, j, jm;
264         unsigned char c;
265
266         printerr(pri, "length %d\n",length);
267         printerr(pri, "\n");
268
269         for (i = 0; i < length; i += 0x10) {
270                 printerr(pri, "  %04x: ", (u_int)i);
271                 jm = length - i;
272                 jm = jm > 16 ? 16 : jm;
273
274                 for (j = 0; j < jm; j++) {
275                         if ((j % 2) == 1)
276                                 printerr(pri,"%02x ", (u_int)cp[i+j]);
277                         else
278                                 printerr(pri,"%02x", (u_int)cp[i+j]);
279                 }
280                 for (; j < 16; j++) {
281                         if ((j % 2) == 1)
282                                 printerr(pri,"   ");
283                         else
284                                 printerr(pri,"  ");
285                 }
286                 printerr(pri," ");
287
288                 for (j = 0; j < jm; j++) {
289                         c = cp[i+j];
290                         c = isprint(c) ? c : '.';
291                         printerr(pri,"%c", c);
292                 }
293                 printerr(pri,"\n");
294         }
295 }
296 #endif
297
298 static int
299 get_ids(gss_name_t client_name, gss_OID mech, struct svc_cred *cred,
300         lnet_nid_t nid, uint32_t lustre_svc)
301 {
302         u_int32_t       maj_stat, min_stat;
303         gss_buffer_desc name;
304         char            *sname, *realm, *slash;
305         int             res = -1;
306         gss_OID         name_type = GSS_C_NO_OID;
307         struct passwd   *pw;
308
309         cred->cr_remote = cred->cr_usr_root = cred->cr_usr_mds = 0;
310         cred->cr_uid = cred->cr_mapped_uid = cred->cr_gid = -1;
311
312         maj_stat = gss_display_name(&min_stat, client_name, &name, &name_type);
313         if (maj_stat != GSS_S_COMPLETE) {
314                 pgsserr("get_ids: gss_display_name",
315                         maj_stat, min_stat, mech);
316                 return -1;
317         }
318         if (name.length >= 0xffff || /* be certain name.length+1 doesn't overflow */
319             !(sname = calloc(name.length + 1, 1))) {
320                 printerr(0, "WARNING: get_ids: error allocating %d bytes "
321                         "for sname\n", name.length + 1);
322                 gss_release_buffer(&min_stat, &name);
323                 return -1;
324         }
325         memcpy(sname, name.value, name.length);
326         printerr(1, "%s: authenticated %s from %016llx\n",
327                  lustre_svc_name[lustre_svc], sname, nid);
328         gss_release_buffer(&min_stat, &name);
329
330         if (lustre_svc == LUSTRE_GSS_SVC_MDS)
331                 lookup_mapping(sname, nid, &cred->cr_mapped_uid);
332         else
333                 cred->cr_mapped_uid = -1;
334
335         realm = strchr(sname, '@');
336         if (!realm) {
337                 printerr(0, "WARNNING: principal %s contains no realm name\n",
338                          sname);
339                 cred->cr_remote = (mds_local_realm != NULL);
340         } else {
341                 *realm++ = '\0';
342                 if (!mds_local_realm)
343                         cred->cr_remote = 1;
344                 else
345                         cred->cr_remote =
346                                 (strcasecmp(mds_local_realm, realm) != 0);
347         }
348
349         if (cred->cr_remote) {
350                 if (cred->cr_mapped_uid != -1)
351                         res = 0;
352                 else if (lustre_svc == LUSTRE_GSS_SVC_OSS &&
353                          strcmp(sname, "lustre_root") == 0)
354                         res = 0;
355                 else
356                         printerr(0, "principal %s is remote without mapping\n",
357                                  sname);
358                 goto out_free;
359         }
360
361         slash = strchr(sname, '/');
362         if (slash)
363                 *slash = '\0';
364
365         if (!(pw = getpwnam(sname))) {
366                 /* If client use machine credential, we map it to root, which
367                  * will subject to further mapping by root-squash in kernel.
368                  *
369                  * MDS service keytab is treated as special user, also mapped
370                  * to root. OSS service keytab can't be used as a user.
371                  */
372                 if (!strcmp(sname, LUSTRE_ROOT_NAME)) {
373                         printerr(2, "lustre_root principal, resolve to uid 0\n");
374                         cred->cr_uid = 0;
375                         cred->cr_usr_root = 1;
376                 } else if (!strcmp(sname, GSSD_SERVICE_MDS)) {
377                         printerr(2, "mds service principal, resolve to uid 0\n");
378                         cred->cr_uid = 0;
379                         cred->cr_usr_mds = 1;
380                 } else {
381                         cred->cr_uid = -1;
382                         if (cred->cr_mapped_uid == -1) {
383                                 printerr(0, "invalid user %s\n", sname);
384                                 goto out_free;
385                         }
386                         printerr(2, "user %s mapped to %u\n",
387                                  sname, cred->cr_mapped_uid);
388                 }
389         } else {
390                 cred->cr_uid = pw->pw_uid;
391                 printerr(2, "%s resolve to uid %u\n", sname, cred->cr_uid);
392         }
393
394         res = 0;
395 out_free:
396         free(sname);
397         return res;
398 }
399
400 typedef struct gss_union_ctx_id_t {
401         gss_OID         mech_type;
402         gss_ctx_id_t    internal_ctx_id;
403 } gss_union_ctx_id_desc, *gss_union_ctx_id_t;
404
405 /*
406  * return -1 only if we detect error during reading from upcall channel,
407  * all other cases return 0.
408  */
409 int
410 handle_nullreq(FILE *f) {
411         uint64_t                handle_seq;
412         char                    in_tok_buf[TOKEN_BUF_SIZE];
413         char                    in_handle_buf[15];
414         char                    out_handle_buf[15];
415         gss_buffer_desc         in_tok = {.value = in_tok_buf},
416                                 out_tok = {.value = NULL},
417                                 in_handle = {.value = in_handle_buf},
418                                 out_handle = {.value = out_handle_buf},
419                                 ctx_token = {.value = NULL},
420                                 ignore_out_tok = {.value = NULL},
421         /* XXX isn't there a define for this?: */
422                                 null_token = {.value = NULL};
423         uint32_t                lustre_svc;
424         lnet_nid_t              nid;
425         u_int32_t               ret_flags;
426         gss_ctx_id_t            ctx = GSS_C_NO_CONTEXT;
427         gss_name_t              client_name;
428         gss_OID                 mech = GSS_C_NO_OID;
429         gss_cred_id_t           svc_cred;
430         u_int32_t               maj_stat = GSS_S_FAILURE, min_stat = 0;
431         u_int32_t               ignore_min_stat;
432         struct svc_cred         cred;
433         static char             *lbuf = NULL;
434         static int              lbuflen = 0;
435         static char             *cp;
436
437         printerr(2, "handling null request\n");
438
439         if (readline(fileno(f), &lbuf, &lbuflen) != 1) {
440                 printerr(0, "WARNING: handle_nullreq: "
441                             "failed reading request\n");
442                 return -1;
443         }
444
445         cp = lbuf;
446
447         qword_get(&cp, (char *) &lustre_svc, sizeof(lustre_svc));
448         qword_get(&cp, (char *) &nid, sizeof(nid));
449         qword_get(&cp, (char *) &handle_seq, sizeof(handle_seq));
450         printerr(2, "handling req: svc %u, nid %016llx, idx %llx\n",
451                  lustre_svc, nid, handle_seq);
452
453         in_handle.length = (size_t) qword_get(&cp, in_handle.value,
454                                               sizeof(in_handle_buf));
455         printerr(3, "in_handle: \n");
456         print_hexl(3, in_handle.value, in_handle.length);
457
458         in_tok.length = (size_t) qword_get(&cp, in_tok.value,
459                                            sizeof(in_tok_buf));
460         printerr(3, "in_tok: \n");
461         print_hexl(3, in_tok.value, in_tok.length);
462
463         if (in_tok.length < 0) {
464                 printerr(0, "WARNING: handle_nullreq: "
465                             "failed parsing request\n");
466                 goto out_err;
467         }
468
469         if (in_handle.length != 0) { /* CONTINUE_INIT case */
470                 if (in_handle.length != sizeof(ctx)) {
471                         printerr(0, "WARNING: handle_nullreq: "
472                                     "input handle has unexpected length %d\n",
473                                     in_handle.length);
474                         goto out_err;
475                 }
476                 /* in_handle is the context id stored in the out_handle
477                  * for the GSS_S_CONTINUE_NEEDED case below.  */
478                 memcpy(&ctx, in_handle.value, in_handle.length);
479         }
480
481         svc_cred = gssd_select_svc_cred(lustre_svc);
482         if (!svc_cred) {
483                 printerr(0, "no service credential for svc %u\n", lustre_svc);
484                 goto out_err;
485         }
486
487         maj_stat = gss_accept_sec_context(&min_stat, &ctx, svc_cred,
488                         &in_tok, GSS_C_NO_CHANNEL_BINDINGS, &client_name,
489                         &mech, &out_tok, &ret_flags, NULL, NULL);
490
491         if (maj_stat == GSS_S_CONTINUE_NEEDED) {
492                 printerr(1, "gss_accept_sec_context GSS_S_CONTINUE_NEEDED\n");
493
494                 /* Save the context handle for future calls */
495                 out_handle.length = sizeof(ctx);
496                 memcpy(out_handle.value, &ctx, sizeof(ctx));
497                 goto continue_needed;
498         }
499         else if (maj_stat != GSS_S_COMPLETE) {
500                 printerr(0, "WARNING: gss_accept_sec_context failed\n");
501                 pgsserr("handle_nullreq: gss_accept_sec_context",
502                         maj_stat, min_stat, mech);
503                 goto out_err;
504         }
505
506         if (get_ids(client_name, mech, &cred, nid, lustre_svc)) {
507                 /* get_ids() prints error msg */
508                 maj_stat = GSS_S_BAD_NAME; /* XXX ? */
509                 gss_release_name(&ignore_min_stat, &client_name);
510                 goto out_err;
511         }
512         gss_release_name(&ignore_min_stat, &client_name);
513
514         /* Context complete. Pass handle_seq in out_handle to use
515          * for context lookup in the kernel. */
516         out_handle.length = sizeof(handle_seq);
517         memcpy(out_handle.value, &handle_seq, sizeof(handle_seq));
518
519         /* kernel needs ctx to calculate verifier on null response, so
520          * must give it context before doing null call: */
521         if (serialize_context_for_kernel(ctx, &ctx_token, mech)) {
522                 printerr(0, "WARNING: handle_nullreq: "
523                             "serialize_context_for_kernel failed\n");
524                 maj_stat = GSS_S_FAILURE;
525                 goto out_err;
526         }
527         /* We no longer need the gss context */
528         gss_delete_sec_context(&ignore_min_stat, &ctx, &ignore_out_tok);
529
530         do_svc_downcall(&out_handle, &cred, mech, &ctx_token);
531 continue_needed:
532         send_response(f, &in_handle, &in_tok, maj_stat, min_stat,
533                         &out_handle, &out_tok);
534 out:
535         if (ctx_token.value != NULL)
536                 free(ctx_token.value);
537         if (out_tok.value != NULL)
538                 gss_release_buffer(&ignore_min_stat, &out_tok);
539         return 0;
540
541 out_err:
542         if (ctx != GSS_C_NO_CONTEXT)
543                 gss_delete_sec_context(&ignore_min_stat, &ctx, &ignore_out_tok);
544         send_response(f, &in_handle, &in_tok, maj_stat, min_stat,
545                         &null_token, &null_token);
546         goto out;
547 }