]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/gssd/gssd.c
Merge branch 'upstream'
[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 int  use_memcache = 0;
60
61 void
62 sig_die(int signal)
63 {
64         /* destroy krb5 machine creds */
65         gssd_destroy_krb5_machine_creds();
66         printerr(1, "exiting on signal %d\n", signal);
67         exit(1);
68 }
69
70 void
71 sig_hup(int signal)
72 {
73         /* don't exit on SIGHUP */
74         printerr(1, "Received SIGHUP... Ignoring.\n");
75         return;
76 }
77
78 static void
79 usage(char *progname)
80 {
81         fprintf(stderr, "usage: %s [-f] [-v] [-r] [-p pipefsdir] [-k keytab] [-d ccachedir]\n",
82                 progname);
83         exit(1);
84 }
85
86 int
87 main(int argc, char *argv[])
88 {
89         int fg = 0;
90         int verbosity = 0;
91         int rpc_verbosity = 0;
92         int opt;
93         extern char *optarg;
94         char *progname;
95
96         while ((opt = getopt(argc, argv, "fvrmMp:k:d:")) != -1) {
97                 switch (opt) {
98                         case 'f':
99                                 fg = 1;
100                                 break;
101                         case 'm':
102                                 /* Accept but ignore this. Now the default. */
103                                 break;
104                         case 'M':
105                                 use_memcache = 1;
106                                 break;
107                         case 'v':
108                                 verbosity++;
109                                 break;
110                         case 'r':
111                                 rpc_verbosity++;
112                                 break;
113                         case 'p':
114                                 strncpy(pipefsdir, optarg, sizeof(pipefsdir));
115                                 if (pipefsdir[sizeof(pipefsdir)-1] != '\0')
116                                         errx(1, "pipefs path name too long");
117                                 break;
118                         case 'k':
119                                 strncpy(keytabfile, optarg, sizeof(keytabfile));
120                                 if (keytabfile[sizeof(keytabfile)-1] != '\0')
121                                         errx(1, "keytab path name too long");
122                                 break;
123                         case 'd':
124                                 strncpy(ccachedir, optarg, sizeof(ccachedir));
125                                 if (ccachedir[sizeof(ccachedir-1)] != '\0')
126                                         errx(1, "ccachedir path name too long");
127                                 break;
128                         default:
129                                 usage(argv[0]);
130                                 break;
131                 }
132         }
133         strncat(pipefsdir + strlen(pipefsdir), "/" GSSD_SERVICE_NAME,
134                 sizeof(pipefsdir)-strlen(pipefsdir));
135         if (pipefsdir[sizeof(pipefsdir)-1] != '\0')
136                 errx(1, "pipefs path name too long");
137
138         if ((progname = strrchr(argv[0], '/')))
139                 progname++;
140         else
141                 progname = argv[0];
142
143         initerr(progname, verbosity, fg);
144 #ifdef HAVE_AUTHGSS_SET_DEBUG_LEVEL
145         authgss_set_debug_level(rpc_verbosity);
146 #else
147         if (rpc_verbosity > 0)
148                 printerr(0, "Warning: rpcsec_gss library does not "
149                             "support setting debug level\n");
150 #endif
151
152         if (gssd_check_mechs() != 0)
153                 errx(1, "Problem with gssapi library");
154
155         if (!fg && daemon(0, 0) < 0)
156                 errx(1, "fork");
157
158         signal(SIGINT, sig_die);
159         signal(SIGTERM, sig_die);
160         signal(SIGHUP, sig_hup);
161
162         /* Process keytab file and get machine credentials */
163         gssd_refresh_krb5_machine_creds();
164
165         gssd_run();
166         printerr(0, "gssd_run returned!\n");
167         abort();
168 }