Whamcloud - gitweb
30b91c85ef357616523e51d50087d022b97d767f
[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 OPENSSL_VERSION_NUMBER >= 0x1010103fL
78                 sk_dh_checks =
79                         sk_speedtest_dh_valid(MAX_ALLOWED_TIME_FOR_PRIME);
80 #else
81                 sk_dh_checks = 0;
82 #endif
83                 printerr(1, "will use %d rounds for prime testing\n",
84                          sk_dh_checks);
85         }
86
87         while (1) {
88                 int save_err;
89
90                 while (f == NULL) {
91                         f = fopen(gss_rpc_channel_path, "r+");
92                         if (f == NULL) {
93                                 printerr(4, "failed to open %s: %s\n",
94                                          gss_rpc_channel_path, strerror(errno));
95                                 nanosleep(&halfsec, NULL);
96                         } else {
97                                 printerr(1, "successfully open %s\n",
98                                          gss_rpc_channel_path);
99                                 break;
100                         }
101                 }
102                 pollfd.fd = fileno(f);
103                 pollfd.events = POLLIN;
104
105                 pollfd.revents = 0;
106                 ret = poll(&pollfd, 1, 1000);
107                 save_err = errno;
108
109                 if (ret < 0) {
110                         printerr(0, "error return from poll: %s\n",
111                                  strerror(save_err));
112                         fclose(f);
113                         f = NULL;
114                 } else if (ret == 0) {
115                         printerr(4, "poll timeout\n");
116                 } else {
117                         if (ret != 1) {
118                                 printerr(0, "bug: unexpected poll return %d\n",
119                                                 ret);
120                                 exit(1);
121                         }
122                         if (pollfd.revents & POLLIN) {
123                                 if (handle_channel_request(f) < 0) {
124                                         fclose(f);
125                                         f = NULL;
126                                 }
127                         }
128                 }
129         }
130 }