Whamcloud - gitweb
LU-15896 gss: support OpenSSLv3
[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/poll.h>
34 #include <sys/types.h>
35 #include <sys/stat.h>
36 #include <netinet/in.h>
37
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <memory.h>
42 #include <fcntl.h>
43 #include <errno.h>
44 #include <unistd.h>
45 /* For nanosleep() */
46 #include <time.h>
47
48 #include "svcgssd.h"
49 #include "err_util.h"
50 #include "sk_utils.h"
51
52 #define GSS_RPC_FILE "/proc/net/rpc/auth.sptlrpc.init/channel"
53 /* max allowed time for prime testing: 400 ms */
54 #define MAX_ALLOWED_TIME_FOR_PRIME 400000
55 int sk_dh_checks;
56
57 /*
58  * nfs4 in-kernel cache implementation make upcall failed directly
59  * if there's no listener detected. so here we should keep the init
60  * channel file open as possible as we can.
61  *
62  * unfortunately the proc doesn't support dir change notification.
63  * and when an entry get unlinked, we only got POLLIN event once,
64  * it's the only oppotunity we can close the file and startover.
65  */
66 void
67 svcgssd_run()
68 {
69         static const char gss_rpc_channel_path[] =
70                 "/proc/net/rpc/auth.sptlrpc.init/channel";
71         int                     ret;
72         FILE                    *f = NULL;
73         struct pollfd           pollfd;
74         struct timespec         halfsec = { .tv_sec = 0, .tv_nsec = 500000000 };
75
76         if (sk_enabled) {
77 #if !defined(HAVE_OPENSSL_EVP_PKEY) && OPENSSL_VERSION_NUMBER >= 0x1010103fL
78                 sk_dh_checks =
79                         sk_speedtest_dh_valid(MAX_ALLOWED_TIME_FOR_PRIME);
80                 if (sk_dh_checks)
81                         printerr(1, "will use %d rounds for prime testing\n",
82                                  sk_dh_checks);
83 #else
84                 sk_dh_checks = 0;
85 #endif
86         }
87
88         while (1) {
89                 int save_err;
90
91                 while (f == NULL) {
92                         f = fopen(gss_rpc_channel_path, "r+");
93                         if (f == NULL) {
94                                 printerr(4, "failed to open %s: %s\n",
95                                          gss_rpc_channel_path, strerror(errno));
96                                 nanosleep(&halfsec, NULL);
97                         } else {
98                                 printerr(1, "successfully open %s\n",
99                                          gss_rpc_channel_path);
100                                 break;
101                         }
102                 }
103                 pollfd.fd = fileno(f);
104                 pollfd.events = POLLIN;
105
106                 pollfd.revents = 0;
107                 ret = poll(&pollfd, 1, 1000);
108                 save_err = errno;
109
110                 if (ret < 0) {
111                         printerr(0, "error return from poll: %s\n",
112                                  strerror(save_err));
113                         fclose(f);
114                         f = NULL;
115                 } else if (ret == 0) {
116                         printerr(4, "poll timeout\n");
117                 } else {
118                         if (ret != 1) {
119                                 printerr(0, "bug: unexpected poll return %d\n",
120                                                 ret);
121                                 exit(1);
122                         }
123                         if (pollfd.revents & POLLIN) {
124                                 if (handle_channel_request(f) < 0) {
125                                         fclose(f);
126                                         f = NULL;
127                                 }
128                         }
129                 }
130         }
131 }