]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/gssd/gssd_main_loop.c
Add gss support from citi @ umich
[nfs-utils.git] / utils / gssd / 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
48 #include "gssd.h"
49 #include "err_util.h"
50
51 extern struct pollfd *pollarray;
52 extern int pollsize;
53
54 #define POLL_MILLISECS  500
55
56 static volatile int dir_changed = 1;
57
58 static void dir_notify_handler(int sig, siginfo_t *si, void *data)
59 {
60         dir_changed = 1;
61 }
62
63 static void
64 scan_poll_results(int ret)
65 {
66         int                     i;
67         struct clnt_info        *clp;
68
69         for (clp = clnt_list.tqh_first; clp != NULL; clp = clp->list.tqe_next)
70         {
71                 i = clp->krb5_poll_index;
72                 if (i >= 0 && pollarray[i].revents) {
73                         if (pollarray[i].revents & POLLHUP)
74                                 dir_changed = 1;
75                         if (pollarray[i].revents & POLLIN)
76                                 handle_krb5_upcall(clp);
77                         pollarray[clp->krb5_poll_index].revents = 0;
78                         ret--;
79                         if (!ret)
80                                 break;
81                 }
82                 i = clp->spkm3_poll_index;
83                 if (i >= 0 && pollarray[i].revents) {
84                         if (pollarray[i].revents & POLLHUP)
85                                 dir_changed = 1;
86                         if (pollarray[i].revents & POLLIN)
87                                 handle_spkm3_upcall(clp);
88                         pollarray[clp->spkm3_poll_index].revents = 0;
89                         ret--;
90                         if (!ret)
91                                 break;
92                 }
93         }
94 };
95
96 void
97 gssd_run()
98 {
99         int                     ret;
100         struct sigaction        dn_act;
101         int                     fd;
102
103         /* Taken from linux/Documentation/dnotify.txt: */
104         dn_act.sa_sigaction = dir_notify_handler;
105         sigemptyset(&dn_act.sa_mask);
106         dn_act.sa_flags = SA_SIGINFO;
107         sigaction(DNOTIFY_SIGNAL, &dn_act, NULL);
108
109         if ((fd = open(pipefsdir, O_RDONLY)) == -1) {
110                 printerr(0, "ERROR: failed to open %s: %s\n",
111                          pipefsdir, strerror(errno));
112                 exit(1);
113         }
114         fcntl(fd, F_SETSIG, DNOTIFY_SIGNAL);
115         fcntl(fd, F_NOTIFY, DN_CREATE|DN_DELETE|DN_MODIFY|DN_MULTISHOT);
116
117         init_client_list();
118
119         while (1) {
120                 while (dir_changed) {
121                         dir_changed = 0;
122                         if (update_client_list()) {
123                                 printerr(0, "ERROR: couldn't update "
124                                          "client list\n");
125                                 exit(1);
126                         }
127                 }
128                 /* race condition here: dir_changed could be set before we
129                  * enter the poll, and we'd never notice if it weren't for the
130                  * timeout. */
131                 ret = poll(pollarray, pollsize, POLL_MILLISECS);
132                 if (ret < 0) {
133                         if (errno != EINTR)
134                                 printerr(0,
135                                          "WARNING: error return from poll\n");
136                 } else if (ret == 0) {
137                         /* timeout */
138                 } else { /* ret > 0 */
139                         scan_poll_results(ret);
140                 }
141         }
142         close(fd);
143         return;
144 }