Whamcloud - gitweb
LU-17662 osd-zfs: Support for ZFS 2.2.3
[fs/lustre-release.git] / lustre / utils / gss / svcgssd_main_loop.c
1 /*
2   Copyright (c) 2004 The Regents of the University of Michigan.
3   All rights reserved.
4
5   Redistribution and use in source and binary forms, with or without
6   modification, are permitted provided that the following conditions
7   are met:
8
9   1. Redistributions of source code must retain the above copyright
10      notice, this list of conditions and the following disclaimer.
11   2. Redistributions in binary form must reproduce the above copyright
12      notice, this list of conditions and the following disclaimer in the
13      documentation and/or other materials provided with the distribution.
14   3. Neither the name of the University nor the names of its
15      contributors may be used to endorse or promote products derived
16      from this software without specific prior written permission.
17
18   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
19   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21   DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
25   BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #include <sys/param.h>
32 #include <sys/socket.h>
33 #include <sys/un.h>
34 #include <sys/poll.h>
35 #include <sys/types.h>
36 #include <sys/stat.h>
37 #include <netinet/in.h>
38
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <memory.h>
43 #include <fcntl.h>
44 #include <errno.h>
45 #include <unistd.h>
46 /* For nanosleep() */
47 #include <time.h>
48 #include <sys/mman.h>
49
50 #include "cacheio.h"
51 #include "svcgssd.h"
52 #include "lsupport.h"
53 #include "err_util.h"
54 #include "sk_utils.h"
55
56 /* max allowed time for prime testing: 400 ms */
57 #define MAX_ALLOWED_TIME_FOR_PRIME 400000
58 int *sk_dh_checks;
59
60 void svcgssd_run(void)
61 {
62         int local_socket = -1, remote_socket;
63         struct sockaddr_un addr;
64         bool retried = false;
65 #if !defined(HAVE_OPENSSL_EVP_PKEY) && OPENSSL_VERSION_NUMBER >= 0x1010103fL
66         pid_t child = 1;
67 #endif
68         int ret = EXIT_SUCCESS;
69
70         if (sk_enabled) {
71                 sk_dh_checks = mmap(NULL, sizeof(int), PROT_READ | PROT_WRITE,
72                                     MAP_SHARED | MAP_ANONYMOUS, -1, 0);
73                 if (sk_dh_checks == MAP_FAILED) {
74                         printerr(LL_ERR,
75                                "cannot mmap memory for sk_dh_checks: %s\n",
76                                strerror(errno));
77                         ret = EXIT_FAILURE;
78                         goto out_close;
79                 }
80
81 #if !defined(HAVE_OPENSSL_EVP_PKEY) && OPENSSL_VERSION_NUMBER >= 0x1010103fL
82                 /* child will run asynchronously, parent will not wait for it */
83                 *sk_dh_checks =
84                         sk_speedtest_dh_valid(MAX_ALLOWED_TIME_FOR_PRIME,
85                                               &child);
86                 if (*sk_dh_checks)
87                         printerr(LL_WARN,
88                                  "will use %d rounds for prime testing\n",
89                                  *sk_dh_checks);
90                 else
91                         printerr(LL_WARN,
92                                  "will use default number of rounds for prime testing\n");
93                 if (child == 0)
94                         /* job done for child */
95                         exit(EXIT_SUCCESS);
96 #else
97                 *sk_dh_checks = 0;
98                 printerr(LL_WARN,
99                          "will use default number of rounds for prime testing\n");
100 #endif
101         } else {
102                 /* For krb, preload mapping table if any */
103                 load_mapping();
104         }
105
106 again:
107         local_socket = socket(AF_UNIX, SOCK_STREAM, 0);
108         if (local_socket == -1) {
109                 printerr(LL_ERR, "unable to create socket: %d\n", -errno);
110                 ret = EXIT_FAILURE;
111                 goto out_close;
112         }
113
114         memset(&addr, 0, sizeof(addr));
115         addr.sun_family = AF_UNIX;
116         strncpy(addr.sun_path, GSS_SOCKET_PATH, sizeof(addr.sun_path) - 1);
117
118         if (bind(local_socket, (struct sockaddr *)&addr, sizeof(addr)) == -1) {
119                 if (!retried) {
120                         retried = true;
121                         unlink(GSS_SOCKET_PATH);
122                         close(local_socket);
123                         goto again;
124                 }
125                 printerr(LL_ERR, "unable to bind socket: %d\n", -errno);
126                 ret = EXIT_FAILURE;
127                 goto out_close;
128         }
129
130         if (listen(local_socket, 10) == -1) {
131                 printerr(LL_ERR, "unable to listen on socket: %d\n", -errno);
132                 ret = EXIT_FAILURE;
133                 goto out;
134         }
135
136         while (1) {
137                 remote_socket = accept(local_socket, NULL, NULL);
138                 if (remote_socket == -1) {
139                         printerr(LL_TRACE, "accept on socket ret %d\n", -errno);
140                         continue;
141                 }
142
143                 ret = handle_channel_request(remote_socket);
144                 printerr(LL_DEBUG, "handle_channel_request ret %d\n", ret);
145                 close(remote_socket);
146         }
147
148 out:
149         unlink(GSS_SOCKET_PATH);
150 out_close:
151         if (local_socket >= 0)
152                 close(local_socket);
153         if (munmap(sk_dh_checks, sizeof(int)) == -1) {
154                 printerr(LL_ERR, "cannot munmap memory for sk_dh_checks: %s\n",
155                          strerror(errno));
156                 ret = EXIT_FAILURE;
157         }
158         exit(ret);
159 }