4 Copyright (c) 2000 The Regents of the University of Michigan.
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.
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions
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.
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.
41 #include <sys/param.h>
42 #include <sys/socket.h>
54 #include "krb5_util.h"
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;
61 int root_uses_machine_creds = 1;
66 /* destroy krb5 machine creds */
67 if (root_uses_machine_creds)
68 gssd_destroy_krb5_machine_creds();
69 printerr(1, "exiting on signal %d\n", signal);
76 /* don't exit on SIGHUP */
77 printerr(1, "Received SIGHUP... Ignoring.\n");
84 fprintf(stderr, "usage: %s [-f] [-n] [-v] [-r] [-p pipefsdir] [-k keytab] [-d ccachedir]\n",
90 main(int argc, char *argv[])
94 int rpc_verbosity = 0;
99 while ((opt = getopt(argc, argv, "fvrmnMp:k:d:")) != -1) {
105 /* Accept but ignore this. Now the default. */
111 root_uses_machine_creds = 0;
120 strncpy(pipefs_dir, optarg, sizeof(pipefs_dir));
121 if (pipefs_dir[sizeof(pipefs_dir)-1] != '\0')
122 errx(1, "pipefs path name too long");
125 strncpy(keytabfile, optarg, sizeof(keytabfile));
126 if (keytabfile[sizeof(keytabfile)-1] != '\0')
127 errx(1, "keytab path name too long");
130 strncpy(ccachedir, optarg, sizeof(ccachedir));
131 if (ccachedir[sizeof(ccachedir)-1] != '\0')
132 errx(1, "ccachedir path name too long");
139 snprintf(pipefs_nfsdir, sizeof(pipefs_nfsdir), "%s/%s",
140 pipefs_dir, GSSD_SERVICE_NAME);
141 if (pipefs_nfsdir[sizeof(pipefs_nfsdir)-1] != '\0')
142 errx(1, "pipefs_nfsdir path name too long");
144 if ((progname = strrchr(argv[0], '/')))
149 initerr(progname, verbosity, fg);
150 #ifdef HAVE_AUTHGSS_SET_DEBUG_LEVEL
151 authgss_set_debug_level(rpc_verbosity);
153 if (rpc_verbosity > 0)
154 printerr(0, "Warning: rpcsec_gss library does not "
155 "support setting debug level\n");
158 if (gssd_check_mechs() != 0)
159 errx(1, "Problem with gssapi library");
161 if (!fg && daemon(0, 0) < 0)
164 signal(SIGINT, sig_die);
165 signal(SIGTERM, sig_die);
166 signal(SIGHUP, sig_hup);
169 printerr(0, "gssd_run returned!\n");