Fix the BrowseForFolder dialog so that when it does the callbacks it
[wine/wine-kai.git] / server / signal.c
blob9ce3640016d72d765e9f0fae9114601313a097f2
1 /*
2 * Server signal handling
4 * Copyright (C) 2003 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
23 #include <signal.h>
24 #include <stdio.h>
25 #ifdef HAVE_POLL_H
26 #include <poll.h>
27 #endif
28 #ifdef HAVE_SYS_POLL_H
29 #include <sys/poll.h>
30 #endif
31 #include <unistd.h>
33 #include "file.h"
34 #include "object.h"
35 #include "process.h"
36 #include "thread.h"
38 #if defined(linux) && defined(__SIGRTMIN)
39 /* the signal used by linuxthreads as exit signal for clone() threads */
40 # define SIG_PTHREAD_CANCEL (__SIGRTMIN+1)
41 #endif
43 typedef void (*signal_callback)(void);
45 struct handler
47 struct object obj; /* object header */
48 struct fd *fd; /* file descriptor for the pipe side */
49 int pipe_write; /* unix fd for the pipe write side */
50 volatile int pending; /* is signal pending? */
51 signal_callback callback; /* callback function */
54 static void handler_dump( struct object *obj, int verbose );
55 static void handler_destroy( struct object *obj );
57 static const struct object_ops handler_ops =
59 sizeof(struct handler), /* size */
60 handler_dump, /* dump */
61 no_add_queue, /* add_queue */
62 NULL, /* remove_queue */
63 NULL, /* signaled */
64 NULL, /* satisfied */
65 no_signal, /* signal */
66 no_get_fd, /* get_fd */
67 no_close_handle, /* close_handle */
68 handler_destroy /* destroy */
71 static void handler_poll_event( struct fd *fd, int event );
73 static const struct fd_ops handler_fd_ops =
75 NULL, /* get_poll_events */
76 handler_poll_event, /* poll_event */
77 no_flush, /* flush */
78 no_get_file_info, /* get_file_info */
79 no_queue_async, /* queue_async */
80 no_cancel_async /* cancel_async */
83 static struct handler *handler_sighup;
84 static struct handler *handler_sigterm;
85 static struct handler *handler_sigint;
86 static struct handler *handler_sigchld;
87 static struct handler *handler_sigio;
89 static sigset_t blocked_sigset;
91 /* create a signal handler */
92 static struct handler *create_handler( signal_callback callback )
94 struct handler *handler;
95 int fd[2];
97 if (pipe( fd ) == -1) return NULL;
98 if (!(handler = alloc_object( &handler_ops )))
100 close( fd[0] );
101 close( fd[1] );
102 return NULL;
104 handler->pipe_write = fd[1];
105 handler->pending = 0;
106 handler->callback = callback;
108 if (!(handler->fd = create_anonymous_fd( &handler_fd_ops, fd[0], &handler->obj )))
110 release_object( handler );
111 return NULL;
113 set_fd_events( handler->fd, POLLIN );
114 return handler;
117 /* handle a signal received for a given handler */
118 static void do_signal( struct handler *handler )
120 if (!handler->pending)
122 char dummy = 0;
123 handler->pending = 1;
124 write( handler->pipe_write, &dummy, 1 );
128 static void handler_dump( struct object *obj, int verbose )
130 struct handler *handler = (struct handler *)obj;
131 fprintf( stderr, "Signal handler fd=%p\n", handler->fd );
134 static void handler_destroy( struct object *obj )
136 struct handler *handler = (struct handler *)obj;
137 if (handler->fd) release_object( handler->fd );
138 close( handler->pipe_write );
141 static void handler_poll_event( struct fd *fd, int event )
143 struct handler *handler = get_fd_user( fd );
145 if (event & (POLLERR | POLLHUP))
147 /* this is not supposed to happen */
148 fprintf( stderr, "wineserver: Error on signal handler pipe\n" );
149 release_object( handler );
151 else if (event & POLLIN)
153 char dummy;
155 handler->pending = 0;
156 read( get_unix_fd( handler->fd ), &dummy, 1 );
157 handler->callback();
161 /* SIGHUP callback */
162 static void sighup_callback(void)
164 #ifdef DEBUG_OBJECTS
165 dump_objects();
166 #endif
169 /* SIGTERM callback */
170 static void sigterm_callback(void)
172 flush_registry();
173 exit(1);
176 /* SIGINT callback */
177 static void sigint_callback(void)
179 kill_all_processes( NULL, 1 );
180 flush_registry();
181 exit(1);
184 /* SIGHUP handler */
185 static void do_sighup( int signum )
187 do_signal( handler_sighup );
190 /* SIGTERM handler */
191 static void do_sigterm( int signum )
193 do_signal( handler_sigterm );
196 /* SIGINT handler */
197 static void do_sigint( int signum )
199 do_signal( handler_sigint );
202 /* SIGCHLD handler */
203 static void do_sigchld( int signum )
205 do_signal( handler_sigchld );
208 /* SIGIO handler */
209 #ifdef HAVE_SIGINFO_T_SI_FD
210 static void do_sigio( int signum, siginfo_t *si, void *x )
212 do_signal( handler_sigio );
213 do_change_notify( si->si_fd );
215 #endif
217 void init_signals(void)
219 struct sigaction action;
221 if (!(handler_sighup = create_handler( sighup_callback ))) goto error;
222 if (!(handler_sigterm = create_handler( sigterm_callback ))) goto error;
223 if (!(handler_sigint = create_handler( sigint_callback ))) goto error;
224 if (!(handler_sigchld = create_handler( sigchld_callback ))) goto error;
225 if (!(handler_sigio = create_handler( sigio_callback ))) goto error;
227 sigemptyset( &blocked_sigset );
228 sigaddset( &blocked_sigset, SIGCHLD );
229 sigaddset( &blocked_sigset, SIGHUP );
230 sigaddset( &blocked_sigset, SIGINT );
231 sigaddset( &blocked_sigset, SIGIO );
232 sigaddset( &blocked_sigset, SIGQUIT );
233 sigaddset( &blocked_sigset, SIGTERM );
234 #ifdef SIG_PTHREAD_CANCEL
235 sigaddset( &blocked_sigset, SIG_PTHREAD_CANCEL );
236 #endif
238 action.sa_mask = blocked_sigset;
239 action.sa_flags = 0;
240 action.sa_handler = do_sigchld;
241 sigaction( SIGCHLD, &action, NULL );
242 #ifdef SIG_PTHREAD_CANCEL
243 sigaction( SIG_PTHREAD_CANCEL, &action, NULL );
244 #endif
245 action.sa_handler = do_sighup;
246 sigaction( SIGHUP, &action, NULL );
247 action.sa_handler = do_sigint;
248 sigaction( SIGINT, &action, NULL );
249 action.sa_handler = do_sigterm;
250 sigaction( SIGQUIT, &action, NULL );
251 sigaction( SIGTERM, &action, NULL );
252 action.sa_handler = SIG_IGN;
253 sigaction( SIGXFSZ, &action, NULL );
254 #ifdef HAVE_SIGINFO_T_SI_FD
255 action.sa_sigaction = do_sigio;
256 action.sa_flags = SA_SIGINFO;
257 sigaction( SIGIO, &action, NULL );
258 #endif
259 return;
261 error:
262 fprintf( stderr, "failed to initialize signal handlers\n" );
263 exit(1);
266 void close_signals(void)
268 sigprocmask( SIG_BLOCK, &blocked_sigset, NULL );
269 release_object( handler_sighup );
270 release_object( handler_sigterm );
271 release_object( handler_sigint );
272 release_object( handler_sigchld );
273 release_object( handler_sigio );