signal.c 8.41 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
    NULL                      /* cancel_async */
96 97 98 99 100 101 102 103
};

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;

104 105
static int watchdog;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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