Whamcloud - gitweb
18f7985c3eb42cbfd3b1de5906a925821a6067f1
[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
51 #define GSS_RPC_FILE "/proc/net/rpc/auth.sptlrpc.init/channel"
52
53 /*
54  * nfs4 in-kernel cache implementation make upcall failed directly
55  * if there's no listener detected. so here we should keep the init
56  * channel file open as possible as we can.
57  *
58  * unfortunately the proc doesn't support dir change notification.
59  * and when an entry get unlinked, we only got POLLIN event once,
60  * it's the only oppotunity we can close the file and startover.
61  */
62 void
63 svcgssd_run()
64 {
65         static const char gss_rpc_channel_path[] =
66                 "/proc/net/rpc/auth.sptlrpc.init/channel";
67         int                     ret;
68         FILE                    *f = NULL;
69         struct pollfd           pollfd;
70         struct timespec         halfsec = { .tv_sec = 0, .tv_nsec = 500000000 };
71
72         while (1) {
73                 int save_err;
74
75                 while (f == NULL) {
76                         f = fopen(gss_rpc_channel_path, "rw");
77                         if (f == NULL) {
78                                 printerr(4, "failed to open %s: %s\n",
79                                          gss_rpc_channel_path, strerror(errno));
80                                 nanosleep(&halfsec, NULL);
81                         } else {
82                                 printerr(1, "successfully open %s\n",
83                                          gss_rpc_channel_path);
84                                 break;
85                         }
86                 }
87                 pollfd.fd = fileno(f);
88                 pollfd.events = POLLIN;
89
90                 pollfd.revents = 0;
91                 ret = poll(&pollfd, 1, 1000);
92                 save_err = errno;
93
94                 if (ret < 0) {
95                         printerr(0, "error return from poll: %s\n",
96                                  strerror(save_err));
97                         fclose(f);
98                         f = NULL;
99                 } else if (ret == 0) {
100                         printerr(4, "poll timeout\n");
101                 } else {
102                         if (ret != 1) {
103                                 printerr(0, "bug: unexpected poll return %d\n",
104                                                 ret);
105                                 exit(1);
106                         }
107                         if (pollfd.revents & POLLIN) {
108                                 if (handle_channel_request(f) < 0) {
109                                         fclose(f);
110                                         f = NULL;
111                                 }
112                         }
113                 }
114         }
115 }