Whamcloud - gitweb
LU-10308 misc: update Intel copyright messages for 2017
[fs/lustre-release.git] / lustre / utils / gss / svcgssd.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  * Copyright (c) 2002 J. Bruce Fields <bfields@UMICH.EDU>.
11  *
12  * Copyright (c) 2016, Intel Corporation.
13  *
14  * All rights reserved, all wrongs reversed.
15  *
16  * Redistribution and use in source and binary forms, with or without
17  * modification, are permitted provided that the following conditions
18  * are met:
19  *
20  * 1. Redistributions of source code must retain the above copyright
21  *    notice, this list of conditions and the following disclaimer.
22  * 2. Redistributions in binary form must reproduce the above copyright
23  *    notice, this list of conditions and the following disclaimer in the
24  *    documentation and/or other materials provided with the distribution.
25  * 3. Neither the name of the University nor the names of its
26  *    contributors may be used to endorse or promote products derived
27  *    from this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
30  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
31  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
32  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
34  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
35  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
36  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
37  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
38  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
39  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41
42 #include "config.h"
43
44 #include <sys/param.h>
45 #include <sys/types.h>
46 #include <sys/stat.h>
47 #include <sys/socket.h>
48 #include <fcntl.h>
49 #include <errno.h>
50
51 #include <unistd.h>
52 #include <err.h>
53 #include <stdio.h>
54 #include <stdlib.h>
55 #include <string.h>
56 #include <signal.h>
57 #include <dirent.h>
58 #include "svcgssd.h"
59 #include "gss_util.h"
60 #include "err_util.h"
61 #include "lsupport.h"
62 #include <linux/lustre/lustre_ver.h>
63
64 int null_enabled;
65 int krb_enabled;
66 int sk_enabled;
67
68 void
69 closeall(int min)
70 {
71         DIR *dir = opendir("/proc/self/fd");
72         if (dir != NULL) {
73                 int dfd = dirfd(dir);
74                 struct dirent *d;
75
76                 while ((d = readdir(dir)) != NULL) {
77                         char *endp;
78                         long n = strtol(d->d_name, &endp, 10);
79                         if (*endp != '\0' && n >= min && n != dfd)
80                                 (void) close(n);
81                 }
82                 closedir(dir);
83         } else {
84                 int fd = sysconf(_SC_OPEN_MAX);
85                 while (--fd >= min)
86                         (void) close(fd);
87         }
88 }
89
90 /*
91  * mydaemon creates a pipe between the partent and child
92  * process. The parent process will wait until the
93  * child dies or writes a '1' on the pipe signaling
94  * that it started successfully.
95  */
96 int pipefds[2] = { -1, -1};
97
98 static void
99 mydaemon(int nochdir, int noclose)
100 {
101         int pid, status, tempfd;
102
103         if (pipe(pipefds) < 0) {
104                 printerr(1, "mydaemon: pipe() failed: errno %d (%s)\n",
105                         errno, strerror(errno));
106                 exit(1);
107         }
108         if ((pid = fork ()) < 0) {
109                 printerr(1, "mydaemon: fork() failed: errno %d (%s)\n",
110                         errno, strerror(errno));
111                 exit(1);
112         }
113
114         if (pid != 0) {
115                 /*
116                  * Parent. Wait for status from child.
117                  */
118                 close(pipefds[1]);
119                 if (read(pipefds[0], &status, 1) != 1)
120                         exit(1);
121                 exit (0);
122         }
123         /* Child.       */
124         close(pipefds[0]);
125         setsid ();
126         if (nochdir == 0) {
127                 if (chdir ("/") == -1) {
128                         printerr(1, "mydaemon: chdir() failed: errno %d (%s)\n",
129                                 errno, strerror(errno));
130                         exit(1);
131                 }
132         }
133
134         while (pipefds[1] <= 2) {
135                 pipefds[1] = dup(pipefds[1]);
136                 if (pipefds[1] < 0) {
137                         printerr(1, "mydaemon: dup() failed: errno %d (%s)\n",
138                                 errno, strerror(errno));
139                         exit(1);
140                 }
141         }
142
143         if (noclose == 0) {
144                 tempfd = open("/dev/null", O_RDWR);
145                 dup2(tempfd, 0);
146                 dup2(tempfd, 1);
147                 dup2(tempfd, 2);
148                 closeall(3);
149         }
150
151         return;
152 }
153
154 static void
155 release_parent()
156 {
157         int status;
158         ssize_t sret __attribute__ ((unused));
159
160         if (pipefds[1] > 0) {
161                 sret = write(pipefds[1], &status, 1);
162                 close(pipefds[1]);
163                 pipefds[1] = -1;
164         }
165 }
166
167 void
168 sig_die(int signal)
169 {
170         /* destroy krb5 machine creds */
171         cleanup_mapping();
172         printerr(1, "exiting on signal %d\n", signal);
173         exit(1);
174 }
175
176 void
177 sig_hup(int signal)
178 {
179         /* don't exit on SIGHUP */
180         printerr(1, "Received SIGHUP... Ignoring.\n");
181         return;
182 }
183
184 static void
185 usage(FILE *fp, char *progname)
186 {
187         fprintf(fp, "usage: %s [ -fnvmogk ]\n",
188                 progname);
189         fprintf(stderr, "-f      - Run in foreground\n");
190         fprintf(stderr, "-n      - Don't establish kerberos credentials\n");
191         fprintf(stderr, "-v      - Verbosity\n");
192         fprintf(stderr, "-m      - Service MDS\n");
193         fprintf(stderr, "-o      - Service OSS\n");
194         fprintf(stderr, "-g      - Service MGS\n");
195         fprintf(stderr, "-k      - Enable kerberos support\n");
196 #ifdef HAVE_OPENSSL_SSK
197         fprintf(stderr, "-s      - Enable shared secret key support\n");
198 #endif
199         fprintf(stderr, "-z      - Enable gssnull support\n");
200
201         exit(fp == stderr);
202 }
203
204 int
205 main(int argc, char *argv[])
206 {
207         int get_creds = 1;
208         int fg = 0;
209         int verbosity = 0;
210         int opt;
211         int must_srv_mds = 0, must_srv_oss = 0, must_srv_mgs = 0;
212         char *progname;
213
214         while ((opt = getopt(argc, argv, "fnvmogksz")) != -1) {
215                 switch (opt) {
216                 case 'f':
217                         fg = 1;
218                         break;
219                 case 'n':
220                         get_creds = 0;
221                         break;
222                 case 'v':
223                         verbosity++;
224                         break;
225                 case 'm':
226                         get_creds = 1;
227                         must_srv_mds = 1;
228                         break;
229                 case 'o':
230                         get_creds = 1;
231                         must_srv_oss = 1;
232                         break;
233                 case 'g':
234                         get_creds = 1;
235                         must_srv_mgs = 1;
236                         break;
237                 case 'k':
238                         krb_enabled = 1;
239                         break;
240                 case 'h':
241                         usage(stdout, argv[0]);
242                         break;
243                 case 's':
244 #ifdef HAVE_OPENSSL_SSK
245                         sk_enabled = 1;
246 #else
247                         fprintf(stderr, "error: request for SSK but service "
248                                 "support not enabled\n");
249                         usage(stderr, argv[0]);
250 #endif
251                         break;
252                 case 'z':
253                         null_enabled = 1;
254                         break;
255                 default:
256                         usage(stderr, argv[0]);
257                         break;
258                 }
259         }
260
261         if ((progname = strrchr(argv[0], '/')))
262                 progname++;
263         else
264                 progname = argv[0];
265
266         if (!sk_enabled && !krb_enabled && !null_enabled) {
267 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
268                 fprintf(stderr, "warning: no -k, -s, or -z option given, "
269                         "assume -k for backward compatibility\n");
270                 krb_enabled = 1;
271 #else
272                 fprintf(stderr, "error: need one of -k, -s, or -z options\n");
273                 usage(stderr, argv[0]);
274
275 #endif
276         }
277         initerr(progname, verbosity, fg);
278
279         /* For kerberos use gss mechanisms but ignore for sk and null */
280         if (krb_enabled) {
281                 if (gssd_check_mechs()) {
282                         printerr(0, "ERROR: problem with gssapi library\n");
283                         exit(1);
284                 }
285                 if (gssd_get_local_realm()) {
286                         printerr(0, "ERROR: Can't get Local Kerberos realm\n");
287                         exit(1);
288                 }
289
290                 if (get_creds &&
291                     gssd_prepare_creds(must_srv_mgs, must_srv_mds,
292                                        must_srv_oss)) {
293                         printerr(0, "unable to obtain root (machine) "
294                                  "credentials\n");
295                         printerr(0, "do you have a keytab entry for "
296                                  "<lustre_xxs>/<your.host>@<YOUR.REALM> in "
297                                  "/etc/krb5.keytab?\n");
298                         exit(1);
299                 }
300         }
301
302         if (!fg)
303                 mydaemon(0, 0);
304
305         /*
306          * XXX: There is risk of memory leak for missing call
307          *      cleanup_mapping() for SIGKILL and SIGSTOP.
308          */
309         signal(SIGINT, sig_die);
310         signal(SIGTERM, sig_die);
311         signal(SIGHUP, sig_hup);
312
313         if (!fg)
314                 release_parent();
315
316         gssd_init_unique(GSSD_SVC);
317
318         svcgssd_run();
319         cleanup_mapping();
320         printerr(0, "gssd_run returned!\n");
321         abort();
322 }