]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/gssd/gssd.c
Check that the gssapi library is usable early on.
[nfs-utils.git] / utils / gssd / gssd.c
1 /*
2   gssd.c
3
4   Copyright (c) 2000 The Regents of the University of Michigan.
5   All rights reserved.
6
7   Copyright (c) 2000 Dug Song <dugsong@UMICH.EDU>.
8   Copyright (c) 2002 Andy Adamson <andros@UMICH.EDU>.
9   Copyright (c) 2002 Marius Aamodt Eriksen <marius@UMICH.EDU>.
10   All rights reserved, all wrongs reversed.
11
12   Redistribution and use in source and binary forms, with or without
13   modification, are permitted provided that the following conditions
14   are met:
15
16   1. Redistributions of source code must retain the above copyright
17      notice, this list of conditions and the following disclaimer.
18   2. Redistributions in binary form must reproduce the above copyright
19      notice, this list of conditions and the following disclaimer in the
20      documentation and/or other materials provided with the distribution.
21   3. Neither the name of the University nor the names of its
22      contributors may be used to endorse or promote products derived
23      from this software without specific prior written permission.
24
25   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28   DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32   BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
37 */
38
39 #include "config.h"
40
41 #include <sys/param.h>
42 #include <sys/socket.h>
43 #include <rpc/rpc.h>
44
45 #include <unistd.h>
46 #include <err.h>
47 #include <stdio.h>
48 #include <stdlib.h>
49 #include <string.h>
50 #include <signal.h>
51 #include "gssd.h"
52 #include "err_util.h"
53 #include "gss_util.h"
54 #include "krb5_util.h"
55
56 char pipefsdir[PATH_MAX] = GSSD_PIPEFS_DIR;
57 char keytabfile[PATH_MAX] = GSSD_DEFAULT_KEYTAB_FILE;
58 char ccachedir[PATH_MAX] = GSSD_DEFAULT_CRED_DIR;
59
60 void
61 sig_die(int signal)
62 {
63         /* destroy krb5 machine creds */
64         gssd_destroy_krb5_machine_creds();
65         printerr(1, "exiting on signal %d\n", signal);
66         exit(1);
67 }
68
69 void
70 sig_hup(int signal)
71 {
72         /* don't exit on SIGHUP */
73         printerr(1, "Received SIGHUP... Ignoring.\n");
74         return;
75 }
76
77 static void
78 usage(char *progname)
79 {
80         fprintf(stderr, "usage: %s [-f] [-v] [-r] [-p pipefsdir] [-k keytab] [-d ccachedir]\n",
81                 progname);
82         exit(1);
83 }
84
85 int
86 main(int argc, char *argv[])
87 {
88         int fg = 0;
89         int verbosity = 0;
90         int rpc_verbosity = 0;
91         int opt;
92         extern char *optarg;
93         char *progname;
94
95         while ((opt = getopt(argc, argv, "fvrmp:k:d:")) != -1) {
96                 switch (opt) {
97                         case 'f':
98                                 fg = 1;
99                                 break;
100                         case 'm':
101                                 /* Accept but ignore this. Now the default. */
102                                 break;
103                         case 'v':
104                                 verbosity++;
105                                 break;
106                         case 'r':
107                                 rpc_verbosity++;
108                                 break;
109                         case 'p':
110                                 strncpy(pipefsdir, optarg, sizeof(pipefsdir));
111                                 if (pipefsdir[sizeof(pipefsdir)-1] != '\0')
112                                         errx(1, "pipefs path name too long");
113                                 break;
114                         case 'k':
115                                 strncpy(keytabfile, optarg, sizeof(keytabfile));
116                                 if (keytabfile[sizeof(keytabfile)-1] != '\0')
117                                         errx(1, "keytab path name too long");
118                                 break;
119                         case 'd':
120                                 strncpy(ccachedir, optarg, sizeof(ccachedir));
121                                 if (ccachedir[sizeof(ccachedir-1)] != '\0')
122                                         errx(1, "ccachedir path name too long");
123                                 break;
124                         default:
125                                 usage(argv[0]);
126                                 break;
127                 }
128         }
129         strncat(pipefsdir + strlen(pipefsdir), "/" GSSD_SERVICE_NAME,
130                 sizeof(pipefsdir)-strlen(pipefsdir));
131         if (pipefsdir[sizeof(pipefsdir)-1] != '\0')
132                 errx(1, "pipefs path name too long");
133
134         if ((progname = strrchr(argv[0], '/')))
135                 progname++;
136         else
137                 progname = argv[0];
138
139         initerr(progname, verbosity, fg);
140 #ifdef HAVE_AUTHGSS_SET_DEBUG_LEVEL
141         authgss_set_debug_level(rpc_verbosity);
142 #else
143         if (rpc_verbosity > 0)
144                 printerr(0, "Warning: rpcsec_gss library does not "
145                             "support setting debug level\n");
146 #endif
147
148         if (gssd_check_mechs() != 0)
149                 errx(1, "Problem with gssapi library");
150
151         if (!fg && daemon(0, 0) < 0)
152                 errx(1, "fork");
153
154         signal(SIGINT, sig_die);
155         signal(SIGTERM, sig_die);
156         signal(SIGHUP, sig_hup);
157
158         /* Process keytab file and get machine credentials */
159         gssd_refresh_krb5_machine_creds();
160
161         gssd_run();
162         printerr(0, "gssd_run returned!\n");
163         abort();
164 }