Paranoia changes to ensure that anything touched by a signal handler
[tprouty/samba.git] / source / lib / select.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 3.0
4    Samba select/poll implementation
5    Copyright (C) Andrew Tridgell 1992-1998
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23
24 /* this is here because it allows us to avoid a nasty race in signal handling. 
25    We need to guarantee that when we get a signal we get out of a select immediately
26    but doing that involves a race condition. We can avoid the race by getting the 
27    signal handler to write to a pipe that is in the select/poll list 
28
29    this means all Samba signal handlers should call sys_select_signal()
30 */
31 static int initialised;
32 static int select_pipe[2];
33 static VOLATILE SIG_ATOMIC_T pipe_written, pipe_read;
34
35
36 /*******************************************************************
37 call this from all Samba signal handlers if you want to avoid a 
38 nasty signal race condition
39 ********************************************************************/
40 void sys_select_signal(void)
41 {
42         char c = 1;
43         if (!initialised) return;
44
45         if (pipe_written > pipe_read+256) return;
46
47         if (write(select_pipe[1], &c, 1) == 1) pipe_written++;
48 }
49
50 /*******************************************************************
51 like select() but avoids the signal race using a pipe
52 it also guuarantees that fds on return only ever contains bits set
53 for file descriptors that were readable
54 ********************************************************************/
55 int sys_select(int maxfd, fd_set *fds,struct timeval *tval)
56 {
57         int ret;
58
59         if (!initialised) {
60                 initialised = 1;
61                 pipe(select_pipe);
62         }
63
64         maxfd = MAX(select_pipe[0], maxfd);
65         FD_SET(select_pipe[0], fds);
66         errno = 0;
67         ret = select(maxfd,fds,NULL,NULL,tval);
68
69         if (ret <= 0) {
70                 FD_ZERO(fds);
71         }
72
73         if (FD_ISSET(select_pipe[0], fds)) {
74                 FD_CLR(select_pipe[0], fds);
75                 ret--;
76                 if (ret == 0) {
77                         ret = -1;
78                         errno = EINTR;
79                 }
80         }
81
82         while (pipe_written != pipe_read) {
83                 char c;
84                 if (read(select_pipe[0], &c, 1) == 1) pipe_read++;
85         }
86
87         return ret;
88 }
89
90 /*******************************************************************
91 similar to sys_select() but catch EINTR and continue
92 this is what sys_select() used to do in Samba
93 ********************************************************************/
94 int sys_select_intr(int maxfd, fd_set *fds,struct timeval *tval)
95 {
96         int ret;
97         fd_set fds2;
98
99         do {
100                 fds2 = *fds;
101                 ret = sys_select(maxfd, &fds2, tval);
102         } while (ret == -1 && errno == EINTR);
103
104         *fds = fds2;
105
106         return ret;
107 }