dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / fs.d / nfs / lib / nfs_sec.c
blob6efe7f408fe454f3e18f81e5efada2f0cac6dc65
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
21 /* LINTLIBRARY */
24 * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
28 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
29 * Use is subject to license terms.
33 * nfs security related library routines.
35 * Some of the routines in this file are adopted from
36 * lib/libnsl/netselect/netselect.c and are modified to be
37 * used for accessing /etc/nfssec.conf.
40 /* SVr4.0 1.18 */
42 #include <stdio.h>
43 #include <string.h>
44 #include <ctype.h>
45 #include <stdlib.h>
46 #include <syslog.h>
47 #include <synch.h>
48 #include <rpc/rpc.h>
49 #include <nfs/nfs_sec.h>
50 #include <rpc/rpcsec_gss.h>
51 #ifdef WNFS_SEC_NEGO
52 #include "webnfs.h"
53 #endif
55 #define GETBYNAME 1
56 #define GETBYNUM 2
59 * mapping for /etc/nfssec.conf
61 struct sc_data {
62 char *string;
63 int value;
66 static struct sc_data sc_service[] = {
67 "default", rpc_gss_svc_default,
68 "-", rpc_gss_svc_none,
69 "none", rpc_gss_svc_none,
70 "integrity", rpc_gss_svc_integrity,
71 "privacy", rpc_gss_svc_privacy,
72 NULL, SC_FAILURE
75 static mutex_t matching_lock = DEFAULTMUTEX;
76 static char *gettoken(char *, int);
77 extern int atoi(const char *str);
79 extern bool_t rpc_gss_get_principal_name(rpc_gss_principal_t *, char *,
80 char *, char *, char *);
82 extern bool_t rpc_gss_mech_to_oid(char *, rpc_gss_OID *);
83 extern bool_t rpc_gss_qop_to_num(char *, char *, uint_t *);
86 * blank() returns true if the line is a blank line, 0 otherwise
88 static int
89 blank(cp)
90 char *cp;
92 while (*cp && isspace(*cp)) {
93 cp++;
95 return (*cp == '\0');
99 * comment() returns true if the line is a comment, 0 otherwise.
101 static int
102 comment(cp)
103 char *cp;
105 while (*cp && isspace(*cp)) {
106 cp++;
108 return (*cp == '#');
113 * getvalue() searches for the given string in the given array,
114 * and returns the integer value associated with the string.
116 static unsigned long
117 getvalue(cp, sc_data)
118 char *cp;
119 struct sc_data sc_data[];
121 int i; /* used to index through the given struct sc_data array */
123 for (i = 0; sc_data[i].string; i++) {
124 if (strcmp(sc_data[i].string, cp) == 0) {
125 break;
128 return (sc_data[i].value);
132 * shift1left() moves all characters in the string over 1 to
133 * the left.
135 static void
136 shift1left(p)
137 char *p;
139 for (; *p; p++)
140 *p = *(p + 1);
145 * gettoken() behaves much like strtok(), except that
146 * it knows about escaped space characters (i.e., space characters
147 * preceeded by a '\' are taken literally).
149 * XXX We should make this MT-hot by making it more like strtok_r().
151 static char *
152 gettoken(cp, skip)
153 char *cp;
154 int skip;
156 static char *savep; /* the place where we left off */
157 register char *p; /* the beginning of the new token */
158 register char *retp; /* the token to be returned */
161 /* Determine if first or subsequent call */
162 p = (cp == NULL)? savep: cp;
164 /* Return if no tokens remain. */
165 if (p == 0) {
166 return (NULL);
169 while (isspace(*p))
170 p++;
172 if (*p == '\0') {
173 return (NULL);
177 * Save the location of the token and then skip past it
180 retp = p;
181 while (*p) {
182 if (isspace(*p)) {
183 if (skip == TRUE) {
184 shift1left(p);
185 continue;
186 } else
187 break;
191 * Only process the escape of the space separator;
192 * since the token may contain other separators,
193 * let the other routines handle the escape of
194 * specific characters in the token.
197 if (*p == '\\' && *(p + 1) != '\n' && isspace(*(p + 1))) {
198 shift1left(p);
200 p++;
202 if (*p == '\0') {
203 savep = 0; /* indicate this is last token */
204 } else {
205 *p = '\0';
206 savep = ++p;
208 return (retp);
212 * matchname() parses a line of the /etc/nfssec.conf file
213 * and match the sc_name with the given name.
214 * If there is a match, it fills the information into the given
215 * pointer of the seconfig_t structure.
217 * Returns TRUE if a match is found.
219 static bool_t
220 matchname(char *line, char *name, seconfig_t *secp)
222 char *tok1, *tok2; /* holds a token from the line */
223 char *secname, *gss_mech, *gss_qop; /* pointer to a secmode name */
225 if ((secname = gettoken(line, FALSE)) == NULL) {
226 /* bad line */
227 return (FALSE);
230 if (strcmp(secname, name) != 0) {
231 return (FALSE);
234 tok1 = tok2 = NULL;
235 if (((tok1 = gettoken(NULL, FALSE)) == NULL) ||
236 ((gss_mech = gettoken(NULL, FALSE)) == NULL) ||
237 ((gss_qop = gettoken(NULL, FALSE)) == NULL) ||
238 ((tok2 = gettoken(NULL, FALSE)) == NULL) ||
239 ((secp->sc_service = getvalue(tok2, sc_service))
240 == SC_FAILURE)) {
241 return (FALSE);
243 secp->sc_nfsnum = atoi(tok1);
244 (void) strcpy(secp->sc_name, secname);
245 (void) strcpy(secp->sc_gss_mech, gss_mech);
246 secp->sc_gss_mech_type = NULL;
247 if (secp->sc_gss_mech[0] != '-') {
248 if (!rpc_gss_mech_to_oid(gss_mech, &secp->sc_gss_mech_type) ||
249 !rpc_gss_qop_to_num(gss_qop, gss_mech, &secp->sc_qop)) {
250 return (FALSE);
254 return (TRUE);
258 * matchnum() parses a line of the /etc/nfssec.conf file
259 * and match the sc_nfsnum with the given number.
260 * If it is a match, it fills the information in the given pointer
261 * of the seconfig_t structure.
263 * Returns TRUE if a match is found.
265 static bool_t
266 matchnum(char *line, int num, seconfig_t *secp)
268 char *tok1, *tok2; /* holds a token from the line */
269 char *secname, *gss_mech, *gss_qop; /* pointer to a secmode name */
271 if ((secname = gettoken(line, FALSE)) == NULL) {
272 /* bad line */
273 return (FALSE);
276 tok1 = tok2 = NULL;
277 if ((tok1 = gettoken(NULL, FALSE)) == NULL) {
278 /* bad line */
279 return (FALSE);
282 if ((secp->sc_nfsnum = atoi(tok1)) != num) {
283 return (FALSE);
286 if (((gss_mech = gettoken(NULL, FALSE)) == NULL) ||
287 ((gss_qop = gettoken(NULL, FALSE)) == NULL) ||
288 ((tok2 = gettoken(NULL, FALSE)) == NULL) ||
289 ((secp->sc_service = getvalue(tok2, sc_service))
290 == SC_FAILURE)) {
291 return (FALSE);
294 (void) strcpy(secp->sc_name, secname);
295 (void) strcpy(secp->sc_gss_mech, gss_mech);
296 if (secp->sc_gss_mech[0] != '-') {
297 if (!rpc_gss_mech_to_oid(gss_mech, &secp->sc_gss_mech_type) ||
298 !rpc_gss_qop_to_num(gss_qop, gss_mech, &secp->sc_qop)) {
299 return (FALSE);
303 return (TRUE);
307 * Fill in the RPC Protocol security flavor number
308 * into the sc_rpcnum of seconfig_t structure.
310 * Mainly to map NFS secmod number to RPCSEC_GSS if
311 * a mechanism name is specified.
313 static void
314 get_rpcnum(seconfig_t *secp)
316 if (secp->sc_gss_mech[0] != '-') {
317 secp->sc_rpcnum = RPCSEC_GSS;
318 } else {
319 secp->sc_rpcnum = secp->sc_nfsnum;
324 * Parse a given hostname (nodename[.domain@realm]) to
325 * instant name (nodename[.domain]) and realm.
327 * Assuming user has allocated the space for inst and realm.
329 static int
330 parsehostname(char *hostname, char *inst, char *realm)
332 char *h, *r;
334 if (!hostname)
335 return (0);
337 h = (char *)strdup(hostname);
338 if (!h) {
339 syslog(LOG_ERR, "parsehostname: no memory\n");
340 return (0);
343 r = (char *)strchr(h, '@');
344 if (!r) {
345 (void) strcpy(inst, h);
346 (void) strcpy(realm, "");
347 } else {
348 *r++ = '\0';
349 (void) strcpy(inst, h);
350 (void) strcpy(realm, r);
352 free(h);
353 return (1);
357 * Get the name corresponding to a qop num.
359 char *
360 nfs_get_qop_name(seconfig_t *entryp)
362 char *tok; /* holds a token from the line */
363 char *secname, *gss_qop = NULL; /* pointer to a secmode name */
364 char line[BUFSIZ]; /* holds each line of NFSSEC_CONF */
365 FILE *fp; /* file stream for NFSSEC_CONF */
367 (void) mutex_lock(&matching_lock);
368 if ((fp = fopen(NFSSEC_CONF, "r")) == NULL) {
369 (void) mutex_unlock(&matching_lock);
370 return (NULL);
373 while (fgets(line, BUFSIZ, fp)) {
374 if (!(blank(line) || comment(line))) {
375 if ((secname = gettoken(line, FALSE)) == NULL) {
376 /* bad line */
377 continue;
379 if (strcmp(secname, entryp->sc_name) == 0) {
380 tok = NULL;
381 if ((tok = gettoken(NULL, FALSE)) == NULL) {
382 /* bad line */
383 goto err;
386 if (atoi(tok) != entryp->sc_nfsnum)
387 goto err;
389 if ((gettoken(NULL, FALSE) == NULL) ||
390 ((gss_qop = gettoken(NULL, FALSE))
391 == NULL)) {
392 goto err;
394 break;
398 err:
399 (void) fclose(fp);
400 (void) mutex_unlock(&matching_lock);
401 return (gss_qop);
405 * This routine creates an auth handle assocaited with the
406 * negotiated security flavor contained in nfs_sec. The auth
407 * handle will be used in the next LOOKUP request to fetch
408 * the filehandle.
410 AUTH *
411 nfs_create_ah(CLIENT *cl, char *hostname, seconfig_t *nfs_sec)
413 char netname[MAXNETNAMELEN+1];
414 char svc_name[MAXNETNAMELEN+1];
415 char *gss_qop;
416 static int window = 60;
418 if (nfs_sec == NULL)
419 goto err;
421 switch (nfs_sec->sc_rpcnum) {
422 case AUTH_UNIX:
423 case AUTH_NONE:
424 return (NULL);
426 case AUTH_DES:
427 if (!host2netname(netname, hostname, NULL))
428 goto err;
430 return (authdes_seccreate(netname, window, hostname,
431 NULL));
433 case RPCSEC_GSS:
434 if (cl == NULL)
435 goto err;
437 if (nfs_sec->sc_gss_mech_type == NULL) {
438 syslog(LOG_ERR,
439 "nfs_create_ah: need mechanism information\n");
440 goto err;
444 * RPCSEC_GSS service names are of the form svc@host.dom
446 (void) sprintf(svc_name, "nfs@%s", hostname);
448 gss_qop = nfs_get_qop_name(nfs_sec);
449 if (gss_qop == NULL)
450 goto err;
452 return (rpc_gss_seccreate(cl, svc_name,
453 nfs_sec->sc_gss_mech, nfs_sec->sc_service, gss_qop,
454 NULL, NULL));
456 default:
457 syslog(LOG_ERR, "nfs_create_ah: unknown flavor\n");
458 return (NULL);
460 err:
461 syslog(LOG_ERR, "nfs_create_ah: failed to make auth handle\n");
462 return (NULL);
465 #ifdef WNFS_SEC_NEGO
467 * This routine negotiates sec flavors with server and returns:
468 * SNEGO_SUCCESS: successful; sec flavors are
469 * returned in snego,
470 * SNEGO_DEF_VALID: default sec flavor valid; no need
471 * to negotiate flavors,
472 * SNEGO_ARRAY_TOO_SMALL: array too small,
473 * SNEGO_FAILURE: failure
476 * The following depicts how sec flavors are placed in an
477 * overloaded V2 fhandle:
479 * Note that the first four octets contain the length octet,
480 * the status octet, and two padded octets to make them XDR
481 * four-octet aligned.
483 * 1 2 3 4 32
484 * +---+---+---+---+---+---+---+---+ +---+---+---+---+ +---+
485 * | l | s | | | sec_1 |...| sec_n |...| |
486 * +---+---+---+---+---+---+---+---+ +---+---+---+---+ +---+
488 * where
490 * the status octet s indicates whether there are more security
491 * flavors(1 means yes, 0 means no) that require the client to
492 * perform another 0x81 LOOKUP to get them,
494 * the length octet l is the length describing the number of
495 * valid octets that follow. (l = 4 * n, where n is the number
497 * The following depicts how sec flavors are placed in an
498 * overloaded V3 fhandle:
500 * 1 4
501 * +--+--+--+--+
502 * | len |
503 * +--+--+--+--+
504 * up to 64
505 * +--+--+--+--+--+--+--+--+--+--+--+--+ +--+--+--+--+
506 * |s | | | | sec_1 | sec_2 | ... | sec_n |
507 * +--+--+--+--+--+--+--+--+--+--+--+--+ +--+--+--+--+
509 * len = 4 * (n+1), where n is the number of security flavors
510 * sent in the current overloaded filehandle.
512 * the status octet s indicates whether there are more security
513 * mechanisms(1 means yes, 0 means no) that require the client
514 * to perform another 0x81 LOOKUP to get them.
516 * Three octets are padded after the status octet.
518 enum snego_stat
519 nfs_sec_nego(rpcprog_t vers, CLIENT *clnt, char *fspath, struct snego_t *snego)
521 enum clnt_stat rpc_stat;
522 static int MAX_V2_CNT = (WNL_FHSIZE/sizeof (int)) - 1;
523 static int MAX_V3_CNT = (WNL3_FHSIZE/sizeof (int)) - 1;
524 static struct timeval TIMEOUT = { 25, 0 };
525 int status;
527 if (clnt == NULL || fspath == NULL || snego == NULL)
528 return (SNEGO_FAILURE);
530 if (vers == WNL_V2) {
531 wnl_diropargs arg;
532 wnl_diropres clnt_res;
534 memset((char *)&arg.dir, 0, sizeof (wnl_fh));
535 arg.name = fspath;
536 memset((char *)&clnt_res, 0, sizeof (clnt_res));
537 rpc_stat = clnt_call(clnt, WNLPROC_LOOKUP,
538 (xdrproc_t)xdr_wnl_diropargs, (caddr_t)&arg,
539 (xdrproc_t)xdr_wnl_diropres, (caddr_t)&clnt_res,
540 TIMEOUT);
541 if (rpc_stat == RPC_SUCCESS && clnt_res.status == WNL_OK)
542 return (SNEGO_DEF_VALID);
543 if (rpc_stat != RPC_AUTHERROR)
544 return (SNEGO_FAILURE);
547 struct rpc_err e;
548 wnl_diropres res;
549 char *p;
550 int tot = 0;
552 CLNT_GETERR(clnt, &e);
553 if (e.re_why != AUTH_TOOWEAK)
554 return (SNEGO_FAILURE);
556 if ((p = malloc(strlen(fspath)+3)) == NULL) {
557 syslog(LOG_ERR, "no memory\n");
558 return (SNEGO_FAILURE);
561 * Do an x81 LOOKUP
563 p[0] = (char)WNL_SEC_NEGO;
564 strcpy(&p[2], fspath);
565 do {
566 p[1] = (char)(1+snego->cnt); /* sec index */
567 arg.name = p;
568 memset((char *)&res, 0, sizeof (wnl_diropres));
569 if (wnlproc_lookup_2(&arg, &res, clnt) !=
570 RPC_SUCCESS || res.status != WNL_OK) {
571 free(p);
572 return (SNEGO_FAILURE);
576 * retrieve flavors from filehandle:
577 * 1st byte: length
578 * 2nd byte: status
579 * 3rd & 4th: pad
580 * 5th and after: sec flavors.
583 char *c = (char *)&res.wnl_diropres_u.
584 wnl_diropres.file;
585 int ii;
586 int cnt = ((int)*c)/sizeof (uint_t);
587 /* LINTED pointer alignment */
588 int *ip = (int *)(c+sizeof (int));
590 tot += cnt;
591 if (tot >= MAX_FLAVORS) {
592 free(p);
593 return (SNEGO_ARRAY_TOO_SMALL);
595 status = (int)*(c+1);
596 if (cnt > MAX_V2_CNT || cnt < 0) {
597 free(p);
598 return (SNEGO_FAILURE);
600 for (ii = 0; ii < cnt; ii++)
601 snego->array[snego->cnt+ii] =
602 ntohl(*(ip+ii));
603 snego->cnt += cnt;
605 } while (status);
606 free(p);
607 return (SNEGO_SUCCESS);
609 } else if (vers == WNL_V3) {
610 WNL_LOOKUP3args arg;
611 WNL_LOOKUP3res clnt_res;
613 memset((char *)&arg.what.dir, 0, sizeof (wnl_fh3));
614 arg.what.name = fspath;
615 arg.what.dir.data.data_len = 0;
616 arg.what.dir.data.data_val = 0;
617 memset((char *)&clnt_res, 0, sizeof (clnt_res));
618 rpc_stat = clnt_call(clnt, WNLPROC3_LOOKUP,
619 (xdrproc_t)xdr_WNL_LOOKUP3args, (caddr_t)&arg,
620 (xdrproc_t)xdr_WNL_LOOKUP3res, (caddr_t)&clnt_res,
621 TIMEOUT);
622 if (rpc_stat == RPC_SUCCESS && clnt_res.status == WNL3_OK)
623 return (SNEGO_DEF_VALID);
624 if (rpc_stat != RPC_AUTHERROR)
625 return (SNEGO_FAILURE);
628 struct rpc_err e;
629 WNL_LOOKUP3res res;
630 char *p;
631 int tot = 0;
633 CLNT_GETERR(clnt, &e);
634 if (e.re_why != AUTH_TOOWEAK)
635 return (SNEGO_FAILURE);
637 if ((p = malloc(strlen(fspath)+3)) == NULL) {
638 syslog(LOG_ERR, "no memory\n");
639 return (SNEGO_FAILURE);
642 * Do an x81 LOOKUP
644 p[0] = (char)WNL_SEC_NEGO;
645 strcpy(&p[2], fspath);
646 do {
647 p[1] = (char)(1+snego->cnt); /* sec index */
648 arg.what.name = p;
649 memset((char *)&res, 0,
650 sizeof (WNL_LOOKUP3res));
651 if (wnlproc3_lookup_3(&arg, &res, clnt) !=
652 RPC_SUCCESS || res.status != WNL3_OK) {
653 free(p);
654 return (SNEGO_FAILURE);
658 * retrieve flavors from filehandle:
660 * 1st byte: status
661 * 2nd thru 4th: pad
662 * 5th and after: sec flavors.
665 char *c = res.WNL_LOOKUP3res_u.
666 res_ok.object.data.data_val;
667 int ii;
668 int len = res.WNL_LOOKUP3res_u.res_ok.
669 object.data.data_len;
670 int cnt;
671 /* LINTED pointer alignment */
672 int *ip = (int *)(c+sizeof (int));
674 cnt = len/sizeof (uint_t) - 1;
675 tot += cnt;
676 if (tot >= MAX_FLAVORS) {
677 free(p);
678 return (SNEGO_ARRAY_TOO_SMALL);
680 status = (int)(*c);
681 if (cnt > MAX_V3_CNT || cnt < 0) {
682 free(p);
683 return (SNEGO_FAILURE);
685 for (ii = 0; ii < cnt; ii++)
686 snego->array[snego->cnt+ii] =
687 ntohl(*(ip+ii));
688 snego->cnt += cnt;
690 } while (status);
691 free(p);
692 return (SNEGO_SUCCESS);
695 return (SNEGO_FAILURE);
697 #endif
700 * Get seconfig from /etc/nfssec.conf by name or by number or
701 * by descriptior.
703 /* ARGSUSED */
704 static int
705 get_seconfig(int whichway, char *name, int num,
706 rpc_gss_service_t service, seconfig_t *entryp)
708 char line[BUFSIZ]; /* holds each line of NFSSEC_CONF */
709 FILE *fp; /* file stream for NFSSEC_CONF */
711 if ((whichway == GETBYNAME) && (name == NULL))
712 return (SC_NOTFOUND);
714 (void) mutex_lock(&matching_lock);
715 if ((fp = fopen(NFSSEC_CONF, "r")) == NULL) {
716 (void) mutex_unlock(&matching_lock);
717 return (SC_OPENFAIL);
720 while (fgets(line, BUFSIZ, fp)) {
721 if (!(blank(line) || comment(line))) {
722 switch (whichway) {
723 case GETBYNAME:
724 if (matchname(line, name, entryp)) {
725 goto found;
727 break;
729 case GETBYNUM:
730 if (matchnum(line, num, entryp)) {
731 goto found;
733 break;
735 default:
736 break;
740 (void) fclose(fp);
741 (void) mutex_unlock(&matching_lock);
742 return (SC_NOTFOUND);
744 found:
745 (void) fclose(fp);
746 (void) mutex_unlock(&matching_lock);
747 (void) get_rpcnum(entryp);
748 return (SC_NOERROR);
753 * NFS project private API.
754 * Get a seconfig entry from /etc/nfssec.conf by nfs specific sec name,
755 * e.g. des, krb5p, etc.
758 nfs_getseconfig_byname(char *secmode_name, seconfig_t *entryp)
760 if (!entryp)
761 return (SC_NOMEM);
763 return (get_seconfig(GETBYNAME, secmode_name, 0, rpc_gss_svc_none,
764 entryp));
768 * NFS project private API.
770 * Get a seconfig entry from /etc/nfssec.conf by nfs specific sec number,
771 * e.g. AUTH_DES, AUTH_KRB5_P, etc.
774 nfs_getseconfig_bynumber(int nfs_secnum, seconfig_t *entryp)
776 if (!entryp)
777 return (SC_NOMEM);
779 return (get_seconfig(GETBYNUM, NULL, nfs_secnum, rpc_gss_svc_none,
780 entryp));
784 * NFS project private API.
786 * Get a seconfig_t entry used as the default for NFS operations.
787 * The default flavor entry is defined in /etc/nfssec.conf.
789 * Assume user has allocate spaces for secp.
792 nfs_getseconfig_default(seconfig_t *secp)
794 if (secp == NULL)
795 return (SC_NOMEM);
797 return (nfs_getseconfig_byname("default", secp));
802 * NFS project private API.
804 * Free an sec_data structure.
805 * Free the parts that nfs_clnt_secdata allocates.
807 void
808 nfs_free_secdata(sec_data_t *secdata)
810 dh_k4_clntdata_t *dkdata;
811 gss_clntdata_t *gdata;
813 if (!secdata)
814 return;
816 switch (secdata->rpcflavor) {
817 case AUTH_UNIX:
818 case AUTH_NONE:
819 break;
821 case AUTH_DES:
822 /* LINTED pointer alignment */
823 dkdata = (dh_k4_clntdata_t *)secdata->data;
824 if (dkdata) {
825 free(dkdata->netname);
826 free(dkdata->syncaddr.buf);
827 free(dkdata);
829 break;
831 case RPCSEC_GSS:
832 /* LINTED pointer alignment */
833 gdata = (gss_clntdata_t *)secdata->data;
834 if (gdata) {
835 free(gdata->mechanism.elements);
836 free(gdata);
838 break;
840 default:
841 break;
844 free(secdata);
848 * Make an client side sec_data structure and fill in appropriate value
849 * based on its rpc security flavor.
851 * It is caller's responsibility to allocate space for seconfig_t,
852 * and this routine will allocate space for the sec_data structure
853 * and related data field.
855 * Return the sec_data_t on success.
856 * If fail, return NULL pointer.
858 sec_data_t *
859 nfs_clnt_secdata(seconfig_t *secp, char *hostname, struct knetconfig *knconf,
860 struct netbuf *syncaddr, int flags)
862 char netname[MAXNETNAMELEN+1];
863 sec_data_t *secdata;
864 dh_k4_clntdata_t *dkdata;
865 gss_clntdata_t *gdata;
867 secdata = malloc(sizeof (sec_data_t));
868 if (!secdata) {
869 syslog(LOG_ERR, "nfs_clnt_secdata: no memory\n");
870 return (NULL);
872 (void) memset(secdata, 0, sizeof (sec_data_t));
874 secdata->secmod = secp->sc_nfsnum;
875 secdata->rpcflavor = secp->sc_rpcnum;
876 secdata->uid = secp->sc_uid;
877 secdata->flags = flags;
880 * Now, fill in the information for client side secdata :
882 * For AUTH_UNIX, AUTH_DES
883 * hostname can be in the form of
884 * nodename or
885 * nodename.domain
887 * For RPCSEC_GSS security flavor
888 * hostname can be in the form of
889 * nodename or
890 * nodename.domain or
891 * nodename@realm (realm can be the same as the domain) or
892 * nodename.domain@realm
894 switch (secp->sc_rpcnum) {
895 case AUTH_UNIX:
896 case AUTH_NONE:
897 secdata->data = NULL;
898 break;
900 case AUTH_DES:
902 * If hostname is in the format of host.nisdomain
903 * the netname will be constructed with
904 * this nisdomain name rather than the default
905 * domain of the machine.
907 if (!host2netname(netname, hostname, NULL)) {
908 syslog(LOG_ERR, "host2netname: %s: unknown\n",
909 hostname);
910 goto err_out;
912 dkdata = malloc(sizeof (dh_k4_clntdata_t));
913 if (!dkdata) {
914 syslog(LOG_ERR,
915 "nfs_clnt_secdata: no memory\n");
916 goto err_out;
918 (void) memset((char *)dkdata, 0,
919 sizeof (dh_k4_clntdata_t));
920 if ((dkdata->netname = strdup(netname)) == NULL) {
921 syslog(LOG_ERR,
922 "nfs_clnt_secdata: no memory\n");
923 goto err_out;
925 dkdata->netnamelen = strlen(netname);
926 dkdata->knconf = knconf;
927 dkdata->syncaddr = *syncaddr;
928 dkdata->syncaddr.buf = malloc(syncaddr->len);
929 if (dkdata->syncaddr.buf == NULL) {
930 syslog(LOG_ERR,
931 "nfs_clnt_secdata: no memory\n");
932 goto err_out;
934 (void) memcpy(dkdata->syncaddr.buf, syncaddr->buf,
935 syncaddr->len);
936 secdata->data = (caddr_t)dkdata;
937 break;
939 case RPCSEC_GSS:
940 if (secp->sc_gss_mech_type == NULL) {
941 syslog(LOG_ERR,
942 "nfs_clnt_secdata: need mechanism information\n");
943 goto err_out;
946 gdata = malloc(sizeof (gss_clntdata_t));
947 if (!gdata) {
948 syslog(LOG_ERR,
949 "nfs_clnt_secdata: no memory\n");
950 goto err_out;
953 (void) strcpy(gdata->uname, "nfs");
954 if (!parsehostname(hostname, gdata->inst,
955 gdata->realm)) {
956 syslog(LOG_ERR,
957 "nfs_clnt_secdata: bad host name\n");
958 goto err_out;
961 gdata->mechanism.length =
962 secp->sc_gss_mech_type->length;
963 if (!(gdata->mechanism.elements =
964 malloc(secp->sc_gss_mech_type->length))) {
965 syslog(LOG_ERR,
966 "nfs_clnt_secdata: no memory\n");
967 goto err_out;
969 (void) memcpy(gdata->mechanism.elements,
970 secp->sc_gss_mech_type->elements,
971 secp->sc_gss_mech_type->length);
973 gdata->qop = secp->sc_qop;
974 gdata->service = secp->sc_service;
975 secdata->data = (caddr_t)gdata;
976 break;
978 default:
979 syslog(LOG_ERR, "nfs_clnt_secdata: unknown flavor\n");
980 goto err_out;
983 return (secdata);
985 err_out:
986 free(secdata);
987 return (NULL);
991 * nfs_get_root_principal() maps a host name to its principal name
992 * based on the given security information.
994 * input : seconfig - security configuration information
995 * host - the host name which could be in the following forms:
996 * node
997 * node.namedomain
998 * node@secdomain (e.g. kerberos realm is a secdomain)
999 * node.namedomain@secdomain
1000 * output : rootname_p - address of the principal name for the host
1002 * Currently, this routine is only used by share program.
1005 bool_t
1006 nfs_get_root_principal(seconfig_t *seconfig, char *host, caddr_t *rootname_p)
1008 char netname[MAXNETNAMELEN+1], node[MAX_NAME_LEN];
1009 char secdomain[MAX_NAME_LEN];
1010 rpc_gss_principal_t gssname;
1012 switch (seconfig->sc_rpcnum) {
1013 case AUTH_DES:
1014 if (!host2netname(netname, host, NULL)) {
1015 syslog(LOG_ERR,
1016 "nfs_get_root_principal: unknown host: %s\n", host);
1017 return (FALSE);
1019 *rootname_p = strdup(netname);
1020 if (!*rootname_p) {
1021 syslog(LOG_ERR,
1022 "nfs_get_root_principal: no memory\n");
1023 return (FALSE);
1025 break;
1027 case RPCSEC_GSS:
1028 if (!parsehostname(host, node, secdomain)) {
1029 syslog(LOG_ERR,
1030 "nfs_get_root_principal: bad host name\n");
1031 return (FALSE);
1033 if (!rpc_gss_get_principal_name(&gssname,
1034 seconfig->sc_gss_mech, "root", node, secdomain)) {
1035 syslog(LOG_ERR,
1036 "nfs_get_root_principal: can not get principal name : %s\n", host);
1037 return (FALSE);
1040 *rootname_p = (caddr_t)gssname;
1041 break;
1043 default:
1044 return (FALSE);
1046 return (TRUE);
1051 * SYSLOG SC_* errors.
1054 nfs_syslog_scerr(int scerror, char msg[])
1056 switch (scerror) {
1057 case SC_NOMEM :
1058 sprintf(msg, "%s : no memory", NFSSEC_CONF);
1059 return (0);
1060 case SC_OPENFAIL :
1061 sprintf(msg, "can not open %s", NFSSEC_CONF);
1062 return (0);
1063 case SC_NOTFOUND :
1064 sprintf(msg, "has no entry in %s", NFSSEC_CONF);
1065 return (0);
1066 case SC_BADENTRIES :
1067 sprintf(msg, "bad entry in %s", NFSSEC_CONF);
1068 return (0);
1069 default:
1070 msg[0] = '\0';
1071 return (-1);