signal.c 8.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Server signal handling
 *
 * Copyright (C) 2003 Alexandre Julliard
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 20 21 22 23 24
 */

#include "config.h"

#include <signal.h>
#include <stdio.h>
25
#include <sys/time.h>
26 27 28
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
29 30 31
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
32 33 34
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
35 36 37 38 39 40
#include <unistd.h>

#include "file.h"
#include "object.h"
#include "process.h"
#include "thread.h"
41
#include "request.h"
42

43 44 45 46 47
#if defined(linux) && defined(__SIGRTMIN)
/* the signal used by linuxthreads as exit signal for clone() threads */
# define SIG_PTHREAD_CANCEL (__SIGRTMIN+1)
#endif

48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
typedef void (*signal_callback)(void);

struct handler
{
    struct object    obj;         /* object header */
    struct fd       *fd;          /* file descriptor for the pipe side */
    int              pipe_write;  /* unix fd for the pipe write side */
    volatile int     pending;     /* is signal pending? */
    signal_callback  callback;    /* callback function */
};

static void handler_dump( struct object *obj, int verbose );
static void handler_destroy( struct object *obj );

static const struct object_ops handler_ops =
{
    sizeof(struct handler),   /* size */
    handler_dump,             /* dump */
    no_add_queue,             /* add_queue */
    NULL,                     /* remove_queue */
    NULL,                     /* signaled */
    NULL,                     /* satisfied */
70
    no_signal,                /* signal */
71
    no_get_fd,                /* get_fd */
72
    no_map_access,            /* map_access */
73
    no_lookup_name,           /* lookup_name */
74
    no_open_file,             /* open_file */
75
    no_close_handle,          /* close_handle */
76 77 78 79 80 81 82 83 84
    handler_destroy           /* destroy */
};

static void handler_poll_event( struct fd *fd, int event );

static const struct fd_ops handler_fd_ops =
{
    NULL,                     /* get_poll_events */
    handler_poll_event,       /* poll_event */
85 86
    NULL,                     /* flush */
    NULL,                     /* get_fd_type */
87
    NULL,                     /* ioctl */
88
    NULL,                     /* queue_async */
89
    NULL,                     /* reselect_async */
90
    NULL                      /* cancel_async */
91 92 93 94 95 96 97 98
};

static struct handler *handler_sighup;
static struct handler *handler_sigterm;
static struct handler *handler_sigint;
static struct handler *handler_sigchld;
static struct handler *handler_sigio;

99 100
static int watchdog;

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
/* create a signal handler */
static struct handler *create_handler( signal_callback callback )
{
    struct handler *handler;
    int fd[2];

    if (pipe( fd ) == -1) return NULL;
    if (!(handler = alloc_object( &handler_ops )))
    {
        close( fd[0] );
        close( fd[1] );
        return NULL;
    }
    handler->pipe_write = fd[1];
    handler->pending    = 0;
    handler->callback   = callback;

118
    if (!(handler->fd = create_anonymous_fd( &handler_fd_ops, fd[0], &handler->obj, 0 )))
119 120 121 122 123
    {
        release_object( handler );
        return NULL;
    }
    set_fd_events( handler->fd, POLLIN );
124
    make_object_static( &handler->obj );
125 126 127 128 129 130 131 132
    return handler;
}

/* handle a signal received for a given handler */
static void do_signal( struct handler *handler )
{
    if (!handler->pending)
    {
133
        char dummy = 0;
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
        handler->pending = 1;
        write( handler->pipe_write, &dummy, 1 );
    }
}

static void handler_dump( struct object *obj, int verbose )
{
    struct handler *handler = (struct handler *)obj;
    fprintf( stderr, "Signal handler fd=%p\n", handler->fd );
}

static void handler_destroy( struct object *obj )
{
    struct handler *handler = (struct handler *)obj;
    if (handler->fd) release_object( handler->fd );
    close( handler->pipe_write );
}

static void handler_poll_event( struct fd *fd, int event )
{
    struct handler *handler = get_fd_user( fd );

    if (event & (POLLERR | POLLHUP))
    {
        /* this is not supposed to happen */
        fprintf( stderr, "wineserver: Error on signal handler pipe\n" );
        release_object( handler );
    }
    else if (event & POLLIN)
    {
        char dummy;

        handler->pending = 0;
        read( get_unix_fd( handler->fd ), &dummy, 1 );
        handler->callback();
    }
}

/* SIGHUP callback */
static void sighup_callback(void)
{
#ifdef DEBUG_OBJECTS
    dump_objects();
#endif
}

/* SIGTERM callback */
static void sigterm_callback(void)
{
    flush_registry();
    exit(1);
}

/* SIGINT callback */
static void sigint_callback(void)
{
    kill_all_processes( NULL, 1 );
    flush_registry();
192
    shutdown_master_socket();
193 194 195
}

/* SIGHUP handler */
196
static void do_sighup( int signum )
197 198 199 200 201
{
    do_signal( handler_sighup );
}

/* SIGTERM handler */
202
static void do_sigterm( int signum )
203 204 205 206 207
{
    do_signal( handler_sigterm );
}

/* SIGINT handler */
208
static void do_sigint( int signum )
209 210 211 212
{
    do_signal( handler_sigint );
}

213 214 215 216 217 218
/* SIGALRM handler */
static void do_sigalrm( int signum )
{
    watchdog = 1;
}

219
/* SIGCHLD handler */
220
static void do_sigchld( int signum )
221 222 223 224
{
    do_signal( handler_sigchld );
}

225 226 227 228 229 230 231
/* SIGSEGV handler */
static void do_sigsegv( int signum )
{
    fprintf( stderr, "wineserver crashed, please report this.\n");
    abort();
}

232
/* SIGIO handler */
233
#ifdef HAVE_SIGINFO_T_SI_FD
234 235 236
static void do_sigio( int signum, siginfo_t *si, void *x )
{
    do_signal( handler_sigio );
237
    do_change_notify( si->si_fd );
238
}
239
#endif
240

241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
void start_watchdog(void)
{
    alarm( 3 );
    watchdog = 0;
}

void stop_watchdog(void)
{
    alarm( 0 );
    watchdog = 0;
}

int watchdog_triggered(void)
{
    return watchdog != 0;
}

258 259 260 261 262 263 264 265 266 267 268
static int core_dump_disabled( void )
{
    int r = 0;
#ifdef RLIMIT_CORE
    struct rlimit lim;

    r = !getrlimit(RLIMIT_CORE, &lim) && (lim.rlim_cur == 0);
#endif
    return r;
}

269 270 271
void init_signals(void)
{
    struct sigaction action;
272
    sigset_t blocked_sigset;
273 274 275 276 277 278 279 280 281 282 283

    if (!(handler_sighup  = create_handler( sighup_callback ))) goto error;
    if (!(handler_sigterm = create_handler( sigterm_callback ))) goto error;
    if (!(handler_sigint  = create_handler( sigint_callback ))) goto error;
    if (!(handler_sigchld = create_handler( sigchld_callback ))) goto error;
    if (!(handler_sigio   = create_handler( sigio_callback ))) goto error;

    sigemptyset( &blocked_sigset );
    sigaddset( &blocked_sigset, SIGCHLD );
    sigaddset( &blocked_sigset, SIGHUP );
    sigaddset( &blocked_sigset, SIGINT );
284
    sigaddset( &blocked_sigset, SIGALRM );
285 286 287
    sigaddset( &blocked_sigset, SIGIO );
    sigaddset( &blocked_sigset, SIGQUIT );
    sigaddset( &blocked_sigset, SIGTERM );
288 289 290
#ifdef SIG_PTHREAD_CANCEL
    sigaddset( &blocked_sigset, SIG_PTHREAD_CANCEL );
#endif
291 292 293 294 295

    action.sa_mask = blocked_sigset;
    action.sa_flags = 0;
    action.sa_handler = do_sigchld;
    sigaction( SIGCHLD, &action, NULL );
296 297 298
#ifdef SIG_PTHREAD_CANCEL
    sigaction( SIG_PTHREAD_CANCEL, &action, NULL );
#endif
299 300 301 302
    action.sa_handler = do_sighup;
    sigaction( SIGHUP, &action, NULL );
    action.sa_handler = do_sigint;
    sigaction( SIGINT, &action, NULL );
303 304
    action.sa_handler = do_sigalrm;
    sigaction( SIGALRM, &action, NULL );
305 306 307
    action.sa_handler = do_sigterm;
    sigaction( SIGQUIT, &action, NULL );
    sigaction( SIGTERM, &action, NULL );
308 309 310 311 312
    if (core_dump_disabled())
    {
        action.sa_handler = do_sigsegv;
        sigaction( SIGSEGV, &action, NULL );
    }
313 314
    action.sa_handler = SIG_IGN;
    sigaction( SIGXFSZ, &action, NULL );
315
#ifdef HAVE_SIGINFO_T_SI_FD
316 317 318
    action.sa_sigaction = do_sigio;
    action.sa_flags = SA_SIGINFO;
    sigaction( SIGIO, &action, NULL );
319
#endif
320 321 322 323 324 325
    return;

error:
    fprintf( stderr, "failed to initialize signal handlers\n" );
    exit(1);
}