Whamcloud - gitweb
b=13201
[fs/lustre-release.git] / lustre / utils / gss / gssd_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 #ifndef _GNU_SOURCE
32 #define _GNU_SOURCE
33 #endif
34 #include <sys/param.h>
35 #include <sys/socket.h>
36 #include <sys/poll.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 <errno.h>
44 #include <fcntl.h>
45 #include <signal.h>
46 #include <unistd.h>
47 /* For time() */
48 #include <time.h>
49 /* For waitpid() */
50 #include <wait.h>
51
52 #include "gssd.h"
53 #include "err_util.h"
54
55 extern struct pollfd *pollarray;
56 extern int pollsize;
57
58 #define POLL_MILLISECS  500
59
60 static volatile int dir_changed = 1;
61
62 static void dir_notify_handler(int sig, siginfo_t *si, void *data)
63 {
64         dir_changed = 1;
65 }
66
67 static void
68 scan_poll_results(int ret)
69 {
70         int                     i;
71         struct clnt_info        *clp;
72
73         for (clp = clnt_list.tqh_first; clp != NULL; clp = clp->list.tqe_next)
74         {
75                 i = clp->krb5_poll_index;
76                 if (i >= 0 && pollarray[i].revents) {
77                         if (pollarray[i].revents & POLLHUP)
78                                 dir_changed = 1;
79                         if (pollarray[i].revents & POLLIN)
80                                 handle_krb5_upcall(clp);
81                         pollarray[clp->krb5_poll_index].revents = 0;
82                         ret--;
83                         if (!ret)
84                                 break;
85                 }
86                 i = clp->spkm3_poll_index;
87                 if (i >= 0 && pollarray[i].revents) {
88                         if (pollarray[i].revents & POLLHUP)
89                                 dir_changed = 1;
90                         if (pollarray[i].revents & POLLIN)
91                                 handle_spkm3_upcall(clp);
92                         pollarray[clp->spkm3_poll_index].revents = 0;
93                         ret--;
94                         if (!ret)
95                                 break;
96                 }
97         }
98 };
99
100 void
101 lgssd_run()
102 {
103         int                     ret;
104         struct sigaction        dn_act;
105         int                     fd;
106         time_t                  child_check = 0;
107         pid_t                   child_pid;
108
109         /* Taken from linux/Documentation/dnotify.txt: */
110         dn_act.sa_sigaction = dir_notify_handler;
111         sigemptyset(&dn_act.sa_mask);
112         dn_act.sa_flags = SA_SIGINFO;
113         sigaction(DNOTIFY_SIGNAL, &dn_act, NULL);
114
115         if ((fd = open(pipefs_dir, O_RDONLY)) == -1) {
116                 printerr(0, "ERROR: failed to open %s: %s\n",
117                          pipefs_dir, strerror(errno));
118                 return;
119         }
120         fcntl(fd, F_SETSIG, DNOTIFY_SIGNAL);
121         fcntl(fd, F_NOTIFY, DN_CREATE|DN_DELETE|DN_MODIFY|DN_MULTISHOT);
122
123         init_client_list();
124
125         while (1) {
126                 while (dir_changed) {
127                         dir_changed = 0;
128                         printerr(2, "pipefs root dir changed\n");
129                         if (update_client_list()) {
130                                 printerr(0, "ERROR: couldn't update "
131                                          "client list\n");
132                                 goto out;
133                         }
134                 }
135
136                 /* every 5s cleanup possible zombies of child processes */
137                 if (time(NULL) - child_check >= 5) {
138                         printerr(3, "check zombie children...\n");
139
140                         while (1) {
141                                 child_pid = waitpid(-1, NULL, WNOHANG);
142                                 if (child_pid <= 0)
143                                         break;
144
145                                 printerr(2, "terminate zombie child: %d\n",
146                                          child_pid);
147                         }
148
149                         child_check = time(NULL);
150                 }
151
152                 /* race condition here: dir_changed could be set before we
153                  * enter the poll, and we'd never notice if it weren't for the
154                  * timeout. */
155                 ret = poll(pollarray, pollsize, POLL_MILLISECS);
156                 if (ret < 0) {
157                         if (errno != EINTR)
158                                 printerr(0,
159                                          "WARNING: error return from poll\n");
160                 } else if (ret == 0) {
161                         /* timeout */
162                 } else { /* ret > 0 */
163                         scan_poll_results(ret);
164                 }
165         }
166 out:
167         close(fd);
168         return;
169 }