signal.c 8.36 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 78
    no_link_name,             /* link_name */
    NULL,                     /* unlink_name */
79
    no_open_file,             /* open_file */
80
    no_close_handle,          /* close_handle */
81 82 83 84 85 86 87 88 89
    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 */
90 91
    NULL,                     /* flush */
    NULL,                     /* get_fd_type */
92
    NULL,                     /* ioctl */
93
    NULL,                     /* queue_async */
94
    NULL                      /* reselect_async */
95 96 97 98 99 100 101 102
};

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;

103 104
static int watchdog;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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