]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/gssd/gssd.c
svcgssd: use the actual context expiration for cache
[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 pipefs_dir[PATH_MAX] = GSSD_PIPEFS_DIR;
57 char pipefs_nfsdir[PATH_MAX] = GSSD_PIPEFS_DIR;
58 char keytabfile[PATH_MAX] = GSSD_DEFAULT_KEYTAB_FILE;
59 char ccachedir[PATH_MAX] = GSSD_DEFAULT_CRED_DIR;
60 char *ccachesearch[GSSD_MAX_CCACHE_SEARCH + 1];
61 int  use_memcache = 0;
62 int  root_uses_machine_creds = 1;
63 unsigned int  context_timeout = 0;
64 char *preferred_realm = NULL;
65
66 void
67 sig_die(int signal)
68 {
69         /* destroy krb5 machine creds */
70         if (root_uses_machine_creds)
71                 gssd_destroy_krb5_machine_creds();
72         printerr(1, "exiting on signal %d\n", signal);
73         exit(1);
74 }
75
76 void
77 sig_hup(int signal)
78 {
79         /* don't exit on SIGHUP */
80         printerr(1, "Received SIGHUP... Ignoring.\n");
81         return;
82 }
83
84 static void
85 usage(char *progname)
86 {
87         fprintf(stderr, "usage: %s [-f] [-M] [-n] [-v] [-r] [-p pipefsdir] [-k keytab] [-d ccachedir] [-t timeout] [-R preferred realm]\n",
88                 progname);
89         exit(1);
90 }
91
92 int
93 main(int argc, char *argv[])
94 {
95         int fg = 0;
96         int verbosity = 0;
97         int rpc_verbosity = 0;
98         int opt;
99         int i;
100         extern char *optarg;
101         char *progname;
102
103         memset(ccachesearch, 0, sizeof(ccachesearch));
104         while ((opt = getopt(argc, argv, "fvrmnMp:k:d:t:R:")) != -1) {
105                 switch (opt) {
106                         case 'f':
107                                 fg = 1;
108                                 break;
109                         case 'm':
110                                 /* Accept but ignore this. Now the default. */
111                                 break;
112                         case 'M':
113                                 use_memcache = 1;
114                                 break;
115                         case 'n':
116                                 root_uses_machine_creds = 0;
117                                 break;
118                         case 'v':
119                                 verbosity++;
120                                 break;
121                         case 'r':
122                                 rpc_verbosity++;
123                                 break;
124                         case 'p':
125                                 strncpy(pipefs_dir, optarg, sizeof(pipefs_dir));
126                                 if (pipefs_dir[sizeof(pipefs_dir)-1] != '\0')
127                                         errx(1, "pipefs path name too long");
128                                 break;
129                         case 'k':
130                                 strncpy(keytabfile, optarg, sizeof(keytabfile));
131                                 if (keytabfile[sizeof(keytabfile)-1] != '\0')
132                                         errx(1, "keytab path name too long");
133                                 break;
134                         case 'd':
135                                 strncpy(ccachedir, optarg, sizeof(ccachedir));
136                                 if (ccachedir[sizeof(ccachedir)-1] != '\0')
137                                         errx(1, "ccachedir path name too long");
138                                 break;
139                         case 't':
140                                 context_timeout = atoi(optarg);
141                                 break;
142                         case 'R':
143                                 preferred_realm = strdup(optarg);
144                                 break;
145                         default:
146                                 usage(argv[0]);
147                                 break;
148                 }
149         }
150
151         i = 0;
152         ccachesearch[i++] = strtok(ccachedir, ":");
153         do {
154                 ccachesearch[i++] = strtok(NULL, ":");
155         } while (ccachesearch[i-1] != NULL && i < GSSD_MAX_CCACHE_SEARCH);
156
157         if (preferred_realm == NULL)
158                 gssd_k5_get_default_realm(&preferred_realm);
159
160         snprintf(pipefs_nfsdir, sizeof(pipefs_nfsdir), "%s/%s",
161                  pipefs_dir, GSSD_SERVICE_NAME);
162         if (pipefs_nfsdir[sizeof(pipefs_nfsdir)-1] != '\0')
163                 errx(1, "pipefs_nfsdir path name too long");
164
165         if ((progname = strrchr(argv[0], '/')))
166                 progname++;
167         else
168                 progname = argv[0];
169
170         initerr(progname, verbosity, fg);
171 #ifdef HAVE_AUTHGSS_SET_DEBUG_LEVEL
172         authgss_set_debug_level(rpc_verbosity);
173 #else
174         if (rpc_verbosity > 0)
175                 printerr(0, "Warning: rpcsec_gss library does not "
176                             "support setting debug level\n");
177 #endif
178
179         if (gssd_check_mechs() != 0)
180                 errx(1, "Problem with gssapi library");
181
182         if (!fg && daemon(0, 0) < 0)
183                 errx(1, "fork");
184
185         signal(SIGINT, sig_die);
186         signal(SIGTERM, sig_die);
187         signal(SIGHUP, sig_hup);
188
189         gssd_run();
190         printerr(0, "gssd_run returned!\n");
191         abort();
192 }