signal.c 8.31 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
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 */
66
    no_get_type,              /* get_type */
67 68 69 70
    no_add_queue,             /* add_queue */
    NULL,                     /* remove_queue */
    NULL,                     /* signaled */
    NULL,                     /* satisfied */
71
    no_signal,                /* signal */
72
    no_get_fd,                /* get_fd */
73
    no_map_access,            /* map_access */
74 75
    default_get_sd,           /* get_sd */
    default_set_sd,           /* set_sd */
76
    no_lookup_name,           /* lookup_name */
77
    no_open_file,             /* open_file */
78
    no_close_handle,          /* close_handle */
79 80 81 82 83 84 85 86 87
    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 */
88 89
    NULL,                     /* flush */
    NULL,                     /* get_fd_type */
90
    NULL,                     /* ioctl */
91
    NULL,                     /* queue_async */
92
    NULL,                     /* reselect_async */
93
    NULL                      /* cancel_async */
94 95 96 97 98 99 100 101
};

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;

102 103
static int watchdog;

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
/* 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;

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

/* handle a signal received for a given handler */
static void do_signal( struct handler *handler )
{
    if (!handler->pending)
    {
136
        char dummy = 0;
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 192
        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)
{
193
    shutdown_master_socket();
194 195 196
}

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

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

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

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

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

226 227 228
/* SIGSEGV handler */
static void do_sigsegv( int signum )
{
229
    fprintf( stderr, "wineserver crashed, please enable coredumps (ulimit -c unlimited) and restart.\n");
230 231 232
    abort();
}

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

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

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

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

259 260 261 262 263 264 265 266 267 268 269
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;
}

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

    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 );
285
    sigaddset( &blocked_sigset, SIGALRM );
286 287 288
    sigaddset( &blocked_sigset, SIGIO );
    sigaddset( &blocked_sigset, SIGQUIT );
    sigaddset( &blocked_sigset, SIGTERM );
289 290 291
#ifdef SIG_PTHREAD_CANCEL
    sigaddset( &blocked_sigset, SIG_PTHREAD_CANCEL );
#endif
292 293 294 295 296

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

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