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