request.c 30 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3 4
/*
 * Server-side request handling
 *
 * Copyright (C) 1998 Alexandre Julliard
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * 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
Alexandre Julliard's avatar
Alexandre Julliard committed
19 20
 */

21
#include "config.h"
22
#include "wine/port.h"
23

24
#include <assert.h>
25 26
#include <errno.h>
#include <fcntl.h>
Steven Edwards's avatar
Steven Edwards committed
27
#ifdef HAVE_PWD_H
28
#include <pwd.h>
Steven Edwards's avatar
Steven Edwards committed
29
#endif
30
#include <signal.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
31 32
#include <stdio.h>
#include <stdlib.h>
33 34
#include <stdarg.h>
#include <string.h>
35
#include <sys/stat.h>
36
#include <sys/time.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
37
#include <sys/types.h>
38 39 40
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
41 42 43
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif
Steven Edwards's avatar
Steven Edwards committed
44
#ifdef HAVE_SYS_UIO_H
Alexandre Julliard's avatar
Alexandre Julliard committed
45
#include <sys/uio.h>
Steven Edwards's avatar
Steven Edwards committed
46 47
#endif
#ifdef HAVE_SYS_UN_H
48
#include <sys/un.h>
Steven Edwards's avatar
Steven Edwards committed
49
#endif
Alexandre Julliard's avatar
Alexandre Julliard committed
50
#include <unistd.h>
51 52 53
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
54 55 56
#ifdef __APPLE__
# include <mach/mach_time.h>
#endif
Alexandre Julliard's avatar
Alexandre Julliard committed
57

58 59
#include "ntstatus.h"
#define WIN32_NO_STATUS
60
#include "windef.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
61
#include "winbase.h"
62
#include "wincon.h"
63
#include "winternl.h"
64

65
#include "file.h"
66
#include "process.h"
67 68
#include "thread.h"
#include "security.h"
69 70
#define WANT_REQUEST_HANDLERS
#include "request.h"
71 72 73 74 75 76

/* Some versions of glibc don't define this */
#ifndef SCM_RIGHTS
#define SCM_RIGHTS 1
#endif

77 78 79
/* path names for server master Unix socket */
static const char * const server_socket_name = "socket";   /* name of the socket file */
static const char * const server_lock_name = "lock";       /* name of the server lock file */
80 81 82

struct master_socket
{
83 84
    struct object        obj;        /* object header */
    struct fd           *fd;         /* file descriptor of the master socket */
85 86 87
};

static void master_socket_dump( struct object *obj, int verbose );
88
static void master_socket_destroy( struct object *obj );
89
static void master_socket_poll_event( struct fd *fd, int event );
90 91 92 93 94

static const struct object_ops master_socket_ops =
{
    sizeof(struct master_socket),  /* size */
    master_socket_dump,            /* dump */
95
    no_get_type,                   /* get_type */
96 97 98 99
    no_add_queue,                  /* add_queue */
    NULL,                          /* remove_queue */
    NULL,                          /* signaled */
    NULL,                          /* satisfied */
100
    no_signal,                     /* signal */
101
    no_get_fd,                     /* get_fd */
102
    no_map_access,                 /* map_access */
103 104
    default_get_sd,                /* get_sd */
    default_set_sd,                /* set_sd */
105
    no_lookup_name,                /* lookup_name */
106 107
    no_link_name,                  /* link_name */
    NULL,                          /* unlink_name */
108
    no_open_file,                  /* open_file */
109
    no_kernel_obj_list,            /* get_kernel_obj_list */
110
    no_close_handle,               /* close_handle */
111
    master_socket_destroy          /* destroy */
112 113 114 115
};

static const struct fd_ops master_socket_fd_ops =
{
116 117
    NULL,                          /* get_poll_events */
    master_socket_poll_event,      /* poll_event */
118 119
    NULL,                          /* flush */
    NULL,                          /* get_fd_type */
120
    NULL,                          /* ioctl */
121
    NULL,                          /* queue_async */
122
    NULL                           /* reselect_async */
123 124 125
};


Alexandre Julliard's avatar
Alexandre Julliard committed
126
struct thread *current = NULL;  /* thread handling the current request */
127
unsigned int global_error = 0;  /* global error code for when no thread is current */
128
timeout_t server_start_time = 0;  /* server startup time */
129
char *server_dir = NULL;   /* server directory */
130 131
int server_dir_fd = -1;    /* file descriptor for the server dir */
int config_dir_fd = -1;    /* file descriptor for the config dir */
Alexandre Julliard's avatar
Alexandre Julliard committed
132

133
static struct master_socket *master_socket;  /* the master socket object */
134
static struct timeout_user *master_timeout;
135

Alexandre Julliard's avatar
Alexandre Julliard committed
136
/* complain about a protocol error and terminate the client connection */
137
void fatal_protocol_error( struct thread *thread, const char *err, ... )
Alexandre Julliard's avatar
Alexandre Julliard committed
138
{
139
    va_list args;
Alexandre Julliard's avatar
Alexandre Julliard committed
140

141
    va_start( args, err );
142
    fprintf( stderr, "Protocol error:%04x: ", thread->id );
143 144
    vfprintf( stderr, err, args );
    va_end( args );
145 146
    thread->exit_code = 1;
    kill_thread( thread, 1 );
Alexandre Julliard's avatar
Alexandre Julliard committed
147 148
}

149
/* die on a fatal error */
150
void fatal_error( const char *err, ... )
151 152 153 154 155 156 157 158 159 160
{
    va_list args;

    va_start( args, err );
    fprintf( stderr, "wineserver: " );
    vfprintf( stderr, err, args );
    va_end( args );
    exit(1);
}

161
/* allocate the reply data */
162
void *set_reply_data_size( data_size_t size )
Alexandre Julliard's avatar
Alexandre Julliard committed
163
{
164 165 166 167 168
    assert( size <= get_reply_max_size() );
    if (size && !(current->reply_data = mem_alloc( size ))) size = 0;
    current->reply_size = size;
    return current->reply_data;
}
169

170 171
static const struct object_attributes empty_attributes;

172 173
/* return object attributes from the current request */
const struct object_attributes *get_req_object_attributes( const struct security_descriptor **sd,
174
                                                           struct unicode_str *name,
175
                                                           struct object **root )
176 177 178 179
{
    const struct object_attributes *attr = get_req_data();
    data_size_t size = get_req_data_size();

180 181
    if (root) *root = NULL;

182 183 184 185 186 187 188
    if (!size)
    {
        *sd = NULL;
        name->len = 0;
        return &empty_attributes;
    }

189 190 191 192 193 194 195 196 197 198 199
    if ((size < sizeof(*attr)) || (size - sizeof(*attr) < attr->sd_len) ||
        (size - sizeof(*attr) - attr->sd_len < attr->name_len))
    {
        set_error( STATUS_ACCESS_VIOLATION );
        return NULL;
    }
    if (attr->sd_len && !sd_is_valid( (const struct security_descriptor *)(attr + 1), attr->sd_len ))
    {
        set_error( STATUS_INVALID_SECURITY_DESCR );
        return NULL;
    }
200 201 202 203 204
    if ((attr->name_len & (sizeof(WCHAR) - 1)) || attr->name_len >= 65534)
    {
        set_error( STATUS_OBJECT_NAME_INVALID );
        return NULL;
    }
205 206
    if (root && attr->rootdir && attr->name_len)
    {
207
        if (!(*root = get_directory_obj( current->process, attr->rootdir ))) return NULL;
208
    }
209
    *sd = attr->sd_len ? (const struct security_descriptor *)(attr + 1) : NULL;
210
    name->len = attr->name_len;
211 212 213 214
    name->str = (const WCHAR *)(attr + 1) + attr->sd_len / sizeof(WCHAR);
    return attr;
}

215 216 217
/* return a pointer to the request data following an object attributes structure */
const void *get_req_data_after_objattr( const struct object_attributes *attr, data_size_t *len )
{
218
    data_size_t size = (sizeof(*attr) + (attr->sd_len & ~1) + (attr->name_len & ~1) + 3) & ~3;
219

220
    if (attr == &empty_attributes || size >= get_req_data_size())
221 222 223 224
    {
        *len = 0;
        return NULL;
    }
225 226
    *len = get_req_data_size() - size;
    return (const char *)get_req_data() + size;
227 228
}

229 230 231 232
/* write the remaining part of the reply */
void write_reply( struct thread *thread )
{
    int ret;
233

234
    if ((ret = write( get_unix_fd( thread->reply_fd ),
235 236 237 238 239 240 241 242
                      (char *)thread->reply_data + thread->reply_size - thread->reply_towrite,
                      thread->reply_towrite )) >= 0)
    {
        if (!(thread->reply_towrite -= ret))
        {
            free( thread->reply_data );
            thread->reply_data = NULL;
            /* sent everything, can go back to waiting for requests */
243 244
            set_fd_events( thread->request_fd, POLLIN );
            set_fd_events( thread->reply_fd, 0 );
245 246 247 248 249
        }
        return;
    }
    if (errno == EPIPE)
        kill_thread( thread, 0 );  /* normal death */
250
    else if (errno != EWOULDBLOCK && (EWOULDBLOCK == EAGAIN || errno != EAGAIN))
251
        fatal_protocol_error( thread, "reply write: %s\n", strerror( errno ));
252
}
Alexandre Julliard's avatar
Alexandre Julliard committed
253

254 255 256 257 258 259 260
/* send a reply to the current thread */
static void send_reply( union generic_reply *reply )
{
    int ret;

    if (!current->reply_size)
    {
261 262
        if ((ret = write( get_unix_fd( current->reply_fd ),
                          reply, sizeof(*reply) )) != sizeof(*reply)) goto error;
263 264
    }
    else
265
    {
266 267
        struct iovec vec[2];

268
        vec[0].iov_base = (void *)reply;
269 270 271 272
        vec[0].iov_len  = sizeof(*reply);
        vec[1].iov_base = current->reply_data;
        vec[1].iov_len  = current->reply_size;

273
        if ((ret = writev( get_unix_fd( current->reply_fd ), vec, 2 )) < sizeof(*reply)) goto error;
274 275

        if ((current->reply_towrite = current->reply_size - (ret - sizeof(*reply))))
276
        {
277
            /* couldn't write it all, wait for POLLOUT */
278 279
            set_fd_events( current->reply_fd, POLLOUT );
            set_fd_events( current->request_fd, 0 );
280 281
            return;
        }
282
    }
283 284
    free( current->reply_data );
    current->reply_data = NULL;
285 286 287 288 289 290 291 292
    return;

 error:
    if (ret >= 0)
        fatal_protocol_error( current, "partial write %d\n", ret );
    else if (errno == EPIPE)
        kill_thread( current, 0 );  /* normal death */
    else
293
        fatal_protocol_error( current, "reply write: %s\n", strerror( errno ));
294 295 296 297 298 299 300 301 302 303 304 305 306 307
}

/* call a request handler */
static void call_req_handler( struct thread *thread )
{
    union generic_reply reply;
    enum request req = thread->req.request_header.req;

    current = thread;
    current->reply_size = 0;
    clear_error();
    memset( &reply, 0, sizeof(reply) );

    if (debug_level) trace_request();
308 309

    if (req < REQ_NB_REQUESTS)
310
        req_handlers[req]( &current->req, &reply );
311 312 313 314 315 316
    else
        set_error( STATUS_NOT_IMPLEMENTED );

    if (current)
    {
        if (current->reply_fd)
317
        {
318 319 320 321
            reply.reply_header.error = current->error;
            reply.reply_header.reply_size = current->reply_size;
            if (debug_level) trace_reply( req, &reply );
            send_reply( &reply );
322
        }
323 324 325 326 327
        else
        {
            current->exit_code = 1;
            kill_thread( current, 1 );  /* no way to continue without reply fd */
        }
328
    }
329
    current = NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
330 331
}

332 333 334 335 336
/* read a request from a thread */
void read_request( struct thread *thread )
{
    int ret;

337
    if (!thread->req_toread)  /* no pending request */
338
    {
339
        if ((ret = read( get_unix_fd( thread->request_fd ), &thread->req,
340 341 342 343 344 345 346 347
                         sizeof(thread->req) )) != sizeof(thread->req)) goto error;
        if (!(thread->req_toread = thread->req.request_header.request_size))
        {
            /* no data, handle request at once */
            call_req_handler( thread );
            return;
        }
        if (!(thread->req_data = malloc( thread->req_toread )))
348 349 350 351 352
        {
            fatal_protocol_error( thread, "no memory for %u bytes request %d\n",
                                  thread->req_toread, thread->req.request_header.req );
            return;
        }
353
    }
354 355 356 357

    /* read the variable sized data */
    for (;;)
    {
358 359 360
        ret = read( get_unix_fd( thread->request_fd ),
                    (char *)thread->req_data + thread->req.request_header.request_size
                      - thread->req_toread,
361 362 363 364 365 366 367 368 369 370 371 372
                    thread->req_toread );
        if (ret <= 0) break;
        if (!(thread->req_toread -= ret))
        {
            call_req_handler( thread );
            free( thread->req_data );
            thread->req_data = NULL;
            return;
        }
    }

error:
373 374 375 376
    if (!ret)  /* closed pipe */
        kill_thread( thread, 0 );
    else if (ret > 0)
        fatal_protocol_error( thread, "partial read %d\n", ret );
377
    else if (errno != EWOULDBLOCK && (EWOULDBLOCK == EAGAIN || errno != EAGAIN))
378
        fatal_protocol_error( thread, "read: %s\n", strerror( errno ));
379 380
}

381 382
/* receive a file descriptor on the process socket */
int receive_fd( struct process *process )
383
{
384
    struct iovec vec;
385
    struct send_fd data;
386 387
    struct msghdr msghdr;
    int fd = -1, ret;
388

389
#ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
390
    msghdr.msg_accrightslen = sizeof(int);
391
    msghdr.msg_accrights = (void *)&fd;
392
#else  /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
393 394 395 396
    char cmsg_buffer[256];
    msghdr.msg_control    = cmsg_buffer;
    msghdr.msg_controllen = sizeof(cmsg_buffer);
    msghdr.msg_flags      = 0;
397
#endif  /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
398

399 400 401 402 403 404
    msghdr.msg_name    = NULL;
    msghdr.msg_namelen = 0;
    msghdr.msg_iov     = &vec;
    msghdr.msg_iovlen  = 1;
    vec.iov_base = (void *)&data;
    vec.iov_len  = sizeof(data);
405

406
    ret = recvmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
407

408
#ifndef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
409 410 411 412 413 414 415 416 417 418
    if (ret > 0)
    {
        struct cmsghdr *cmsg;
        for (cmsg = CMSG_FIRSTHDR( &msghdr ); cmsg; cmsg = CMSG_NXTHDR( &msghdr, cmsg ))
        {
            if (cmsg->cmsg_level != SOL_SOCKET) continue;
            if (cmsg->cmsg_type == SCM_RIGHTS) fd = *(int *)CMSG_DATA(cmsg);
        }
    }
#endif  /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
419

420
    if (ret == sizeof(data))
421
    {
422 423 424
        struct thread *thread;

        if (data.tid) thread = get_thread_from_id( data.tid );
425
        else thread = (struct thread *)grab_object( get_process_first_thread( process ));
426

427
        if (!thread || thread->process != process || thread->state == TERMINATED)
428 429
        {
            if (debug_level)
430 431
                fprintf( stderr, "%04x: *fd* %d <- %d bad thread id\n",
                         data.tid, data.fd, fd );
432 433 434 435 436
            close( fd );
        }
        else
        {
            if (debug_level)
437 438
                fprintf( stderr, "%04x: *fd* %d <- %d\n",
                         thread->id, data.fd, fd );
439 440
            thread_add_inflight_fd( thread, data.fd, fd );
        }
441
        if (thread) release_object( thread );
442 443 444
        return 0;
    }

445 446
    if (!ret)
    {
447
        kill_process( process, 0 );
448 449
    }
    else if (ret > 0)
450
    {
451 452
        fprintf( stderr, "Protocol error: process %04x: partial recvmsg %d for fd\n",
                 process->id, ret );
453
        if (fd != -1) close( fd );
454
        kill_process( process, 1 );
455
    }
456
    else
457
    {
458
        if (errno != EWOULDBLOCK && (EWOULDBLOCK == EAGAIN || errno != EAGAIN))
459
        {
460
            fprintf( stderr, "Protocol error: process %04x: ", process->id );
461
            perror( "recvmsg" );
462
            kill_process( process, 1 );
463 464 465
        }
    }
    return -1;
466 467
}

468
/* send an fd to a client */
469
int send_client_fd( struct process *process, int fd, obj_handle_t handle )
470
{
471 472
    struct iovec vec;
    struct msghdr msghdr;
473 474
    int ret;

475
#ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
476 477
    msghdr.msg_accrightslen = sizeof(fd);
    msghdr.msg_accrights = (void *)&fd;
478
#else  /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
479 480 481 482 483 484 485 486 487 488 489
    char cmsg_buffer[256];
    struct cmsghdr *cmsg;
    msghdr.msg_control    = cmsg_buffer;
    msghdr.msg_controllen = sizeof(cmsg_buffer);
    msghdr.msg_flags      = 0;
    cmsg = CMSG_FIRSTHDR( &msghdr );
    cmsg->cmsg_len   = CMSG_LEN( sizeof(fd) );
    cmsg->cmsg_level = SOL_SOCKET;
    cmsg->cmsg_type  = SCM_RIGHTS;
    *(int *)CMSG_DATA(cmsg) = fd;
    msghdr.msg_controllen = cmsg->cmsg_len;
490
#endif  /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
491

492 493 494 495 496 497 498 499 500 501
    msghdr.msg_name    = NULL;
    msghdr.msg_namelen = 0;
    msghdr.msg_iov     = &vec;
    msghdr.msg_iovlen  = 1;

    vec.iov_base = (void *)&handle;
    vec.iov_len  = sizeof(handle);

    if (debug_level)
        fprintf( stderr, "%04x: *fd* %04x -> %d\n", current ? current->id : process->id, handle, fd );
502

503
    ret = sendmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
504

505 506 507
    if (ret == sizeof(handle)) return 0;

    if (ret >= 0)
508
    {
509
        fprintf( stderr, "Protocol error: process %04x: partial sendmsg %d\n", process->id, ret );
510
        kill_process( process, 1 );
511
    }
512 513
    else if (errno == EPIPE)
    {
514
        kill_process( process, 0 );
515
    }
516 517
    else
    {
518
        fprintf( stderr, "Protocol error: process %04x: ", process->id );
519
        perror( "sendmsg" );
520
        kill_process( process, 1 );
521 522
    }
    return -1;
523 524
}

525 526 527
/* get current tick count to return to client */
unsigned int get_tick_count(void)
{
528 529 530 531
#ifdef __APPLE__
    static mach_timebase_info_data_t timebase;

    if (!timebase.denom) mach_timebase_info( &timebase );
532 533 534 535
#ifdef HAVE_MACH_CONTINUOUS_TIME
    if (&mach_continuous_time != NULL)
        return mach_continuous_time() * timebase.numer / timebase.denom / 1000000;
#endif
536 537
    return mach_absolute_time() * timebase.numer / timebase.denom / 1000000;
#elif defined(HAVE_CLOCK_GETTIME)
538 539 540 541 542 543 544 545
    struct timespec ts;
#ifdef CLOCK_MONOTONIC_RAW
    if (!clock_gettime( CLOCK_MONOTONIC_RAW, &ts ))
        return ts.tv_sec * 1000 + ts.tv_nsec / 1000000;
#endif
    if (!clock_gettime( CLOCK_MONOTONIC, &ts ))
        return ts.tv_sec * 1000 + ts.tv_nsec / 1000000;
#endif
546
    return (current_time - server_start_time) / 10000;
547 548
}

549 550 551 552
static void master_socket_dump( struct object *obj, int verbose )
{
    struct master_socket *sock = (struct master_socket *)obj;
    assert( obj->ops == &master_socket_ops );
553 554 555 556 557 558 559 560
    fprintf( stderr, "Master socket fd=%p\n", sock->fd );
}

static void master_socket_destroy( struct object *obj )
{
    struct master_socket *sock = (struct master_socket *)obj;
    assert( obj->ops == &master_socket_ops );
    release_object( sock->fd );
561 562 563
}

/* handle a socket event */
564
static void master_socket_poll_event( struct fd *fd, int event )
565
{
566 567
    struct master_socket *sock = get_fd_user( fd );
    assert( master_socket->obj.ops == &master_socket_ops );
568 569 570 571 572 573 574

    assert( sock == master_socket );  /* there is only one master socket */

    if (event & (POLLERR | POLLHUP))
    {
        /* this is not supposed to happen */
        fprintf( stderr, "wineserver: Error on master socket\n" );
575
        set_fd_events( sock->fd, -1 );
576 577 578
    }
    else if (event & POLLIN)
    {
579
        struct process *process;
580
        struct sockaddr_un dummy;
581
        socklen_t len = sizeof(dummy);
582
        int client = accept( get_unix_fd( master_socket->fd ), (struct sockaddr *) &dummy, &len );
583 584
        if (client == -1) return;
        fcntl( client, F_SETFL, O_NONBLOCK );
585
        if ((process = create_process( client, NULL, 0, NULL )))
586 587 588 589
        {
            create_thread( -1, process, NULL );
            release_object( process );
        }
590 591 592 593 594 595
    }
}

/* remove the socket upon exit */
static void socket_cleanup(void)
{
596
    static int do_it_once;
597
    if (!do_it_once++) unlink( server_socket_name );
598 599
}

600 601
/* create a directory and check its permissions */
static void create_dir( const char *name, struct stat *st )
602
{
603
    if (lstat( name, st ) == -1)
604
    {
605
        if (errno != ENOENT)
606
            fatal_error( "lstat %s: %s\n", name, strerror( errno ));
607 608 609 610
        if (mkdir( name, 0700 ) == -1 && errno != EEXIST)
            fatal_error( "mkdir %s: %s\n", name, strerror( errno ));
        if (lstat( name, st ) == -1)
            fatal_error( "lstat %s: %s\n", name, strerror( errno ));
611
    }
612 613 614
    if (!S_ISDIR(st->st_mode)) fatal_error( "%s is not a directory\n", name );
    if (st->st_uid != getuid()) fatal_error( "%s is not owned by you\n", name );
    if (st->st_mode & 077) fatal_error( "%s must not be accessible by other users\n", name );
615 616 617
}

/* create the server directory and chdir to it */
618
static char *create_server_dir( int force )
619
{
620 621
    const char *prefix = getenv( "WINEPREFIX" );
    char *p, *config_dir;
622
    struct stat st, st2;
623
    size_t len = sizeof("/server-") + 2 * sizeof(st.st_dev) + 2 * sizeof(st.st_ino) + 2;
624

625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
    /* open the configuration directory */

    if (prefix)
    {
        if (!(config_dir = strdup( prefix ))) fatal_error( "out of memory\n" );
        for (p = config_dir + strlen(config_dir); p > config_dir; p--) if (p[-1] != '/') break;
        if (p > config_dir) *p = 0;
        if (config_dir[0] != '/')
            fatal_error( "invalid directory %s in WINEPREFIX: not an absolute path\n", prefix );
    }
    else
    {
        const char *home = getenv( "HOME" );
        if (!home)
        {
            struct passwd *pwd = getpwuid( getuid() );
            if (pwd) home = pwd->pw_dir;
        }
        if (!home) fatal_error( "could not determine your home directory\n" );
        if (home[0] != '/') fatal_error( "your home directory %s is not an absolute path\n", home );
        if (!(config_dir = malloc( strlen(home) + sizeof("/.wine") ))) fatal_error( "out of memory\n" );
        strcpy( config_dir, home );
        for (p = config_dir + strlen(config_dir); p > config_dir; p--) if (p[-1] != '/') break;
        strcpy( p, "/.wine" );
    }

651 652 653 654 655 656 657
    if (chdir( config_dir ) == -1)
    {
        if (errno != ENOENT || force) fatal_error( "chdir to %s: %s\n", config_dir, strerror( errno ));
        return NULL;
    }
    if ((config_dir_fd = open( ".", O_RDONLY )) == -1)
        fatal_error( "open %s: %s\n", config_dir, strerror( errno ));
658 659 660 661
    if (fstat( config_dir_fd, &st ) == -1)
        fatal_error( "stat %s: %s\n", config_dir, strerror( errno ));
    if (st.st_uid != getuid())
        fatal_error( "%s is not owned by you\n", config_dir );
662

663 664 665 666 667 668 669 670 671 672 673 674 675
    /* create the base directory if needed */

#ifdef __ANDROID__  /* there's no /tmp dir on Android */
    len += strlen( config_dir ) + sizeof("/.wineserver");
    if (!(server_dir = malloc( len ))) fatal_error( "out of memory\n" );
    strcpy( server_dir, config_dir );
    strcat( server_dir, "/.wineserver" );
#else
    len += sizeof("/tmp/.wine-") + 12;
    if (!(server_dir = malloc( len ))) fatal_error( "out of memory\n" );
    sprintf( server_dir, "/tmp/.wine-%u", getuid() );
#endif
    create_dir( server_dir, &st2 );
676

677
    /* now create the server directory */
678

679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
    strcat( server_dir, "/server-" );
    p = server_dir + strlen(server_dir);

    if (st.st_dev != (unsigned long)st.st_dev)
        p += sprintf( p, "%lx%08lx-", (unsigned long)((unsigned long long)st.st_dev >> 32),
                      (unsigned long)st.st_dev );
    else
        p += sprintf( p, "%lx-", (unsigned long)st.st_dev );

    if (st.st_ino != (unsigned long)st.st_ino)
        sprintf( p, "%lx%08lx", (unsigned long)((unsigned long long)st.st_ino >> 32),
                 (unsigned long)st.st_ino );
    else
        sprintf( p, "%lx", (unsigned long)st.st_ino );

694 695
    create_dir( server_dir, &st );

696 697 698 699 700 701
    if (chdir( server_dir ) == -1)
        fatal_error( "chdir %s: %s\n", server_dir, strerror( errno ));
    if ((server_dir_fd = open( ".", O_RDONLY )) == -1)
        fatal_error( "open %s: %s\n", server_dir, strerror( errno ));
    if (fstat( server_dir_fd, &st2 ) == -1)
        fatal_error( "stat %s: %s\n", server_dir, strerror( errno ));
702 703 704
    if (st.st_dev != st2.st_dev || st.st_ino != st2.st_ino)
        fatal_error( "chdir did not end up in %s\n", server_dir );

705
    free( config_dir );
706
    return server_dir;
707 708
}

709 710 711 712 713 714 715 716 717
/* create the lock file and return its file descriptor */
static int create_server_lock(void)
{
    struct stat st;
    int fd;

    if (lstat( server_lock_name, &st ) == -1)
    {
        if (errno != ENOENT)
718
            fatal_error( "lstat %s/%s: %s\n", server_dir, server_lock_name, strerror( errno ));
719 720 721 722
    }
    else
    {
        if (!S_ISREG(st.st_mode))
723
            fatal_error( "%s/%s is not a regular file\n", server_dir, server_lock_name );
724 725 726
    }

    if ((fd = open( server_lock_name, O_CREAT|O_TRUNC|O_WRONLY, 0600 )) == -1)
727
        fatal_error( "error creating %s/%s: %s\n", server_dir, server_lock_name, strerror( errno ));
728 729 730
    return fd;
}

731 732
/* wait for the server lock */
int wait_for_lock(void)
733
{
734 735 736
    int fd, r;
    struct flock fl;

737
    server_dir = create_server_dir( 0 );
738 739
    if (!server_dir) return 0;  /* no server dir, so no lock to wait on */

740
    fd = create_server_lock();
741 742 743 744 745 746 747 748 749 750 751

    fl.l_type   = F_WRLCK;
    fl.l_whence = SEEK_SET;
    fl.l_start  = 0;
    fl.l_len    = 1;
    r = fcntl( fd, F_SETLKW, &fl );
    close(fd);

    return r;
}

752 753 754 755 756 757 758
/* kill the wine server holding the lock */
int kill_lock_owner( int sig )
{
    int fd, i, ret = 0;
    pid_t pid = 0;
    struct flock fl;

759
    server_dir = create_server_dir( 0 );
760 761
    if (!server_dir) return 0;  /* no server dir, nothing to do */

762 763
    fd = create_server_lock();

764
    for (i = 1; i <= 20; i++)
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
    {
        fl.l_type   = F_WRLCK;
        fl.l_whence = SEEK_SET;
        fl.l_start  = 0;
        fl.l_len    = 1;
        if (fcntl( fd, F_GETLK, &fl ) == -1) goto done;
        if (fl.l_type != F_WRLCK) goto done;  /* the file is not locked */
        if (!pid)  /* first time around */
        {
            if (!(pid = fl.l_pid)) goto done;  /* shouldn't happen */
            if (sig == -1)
            {
                if (kill( pid, SIGINT ) == -1) goto done;
                kill( pid, SIGCONT );
                ret = 1;
            }
            else  /* just send the specified signal and return */
            {
                ret = (kill( pid, sig ) != -1);
                goto done;
            }
        }
        else if (fl.l_pid != pid) goto done;  /* no longer the same process */
788
        usleep( 50000 * i );
789 790 791 792 793 794 795 796 797
    }
    /* waited long enough, now kill it */
    kill( pid, SIGKILL );

 done:
    close( fd );
    return ret;
}

798 799 800
/* acquire the main server lock */
static void acquire_lock(void)
{
801
    struct sockaddr_un addr;
802 803 804
    struct stat st;
    struct flock fl;
    int fd, slen, got_lock = 0;
805

806
    fd = create_server_lock();
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821

    fl.l_type   = F_WRLCK;
    fl.l_whence = SEEK_SET;
    fl.l_start  = 0;
    fl.l_len    = 1;
    if (fcntl( fd, F_SETLK, &fl ) != -1)
    {
        /* check for crashed server */
        if (stat( server_socket_name, &st ) != -1 &&   /* there is a leftover socket */
            stat( "core", &st ) != -1 && st.st_size)   /* and there is a non-empty core file */
        {
            fprintf( stderr,
                     "Warning: a previous instance of the wine server seems to have crashed.\n"
                     "Please run 'gdb %s %s/core',\n"
                     "type 'backtrace' at the gdb prompt and report the results. Thanks.\n\n",
822
                     server_argv0, server_dir );
823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841
        }
        unlink( server_socket_name ); /* we got the lock, we can safely remove the socket */
        got_lock = 1;
        /* in that case we reuse fd without closing it, this ensures
         * that we hold the lock until the process exits */
    }
    else
    {
        switch(errno)
        {
        case ENOLCK:
            break;
        case EACCES:
            /* check whether locks work at all on this file system */
            if (fcntl( fd, F_GETLK, &fl ) == -1) break;
            /* fall through */
        case EAGAIN:
            exit(2); /* we didn't get the lock, exit with special status */
        default:
842
            fatal_error( "fcntl %s/%s: %s\n", server_dir, server_lock_name, strerror( errno ));
843 844 845 846
        }
        /* it seems we can't use locks on this fs, so we will use the socket existence as lock */
        close( fd );
    }
847

848
    if ((fd = socket( AF_UNIX, SOCK_STREAM, 0 )) == -1) fatal_error( "socket: %s\n", strerror( errno ));
849
    addr.sun_family = AF_UNIX;
850
    strcpy( addr.sun_path, server_socket_name );
851
    slen = sizeof(addr) - sizeof(addr.sun_path) + strlen(addr.sun_path) + 1;
852
#ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
853 854 855
    addr.sun_len = slen;
#endif
    if (bind( fd, (struct sockaddr *)&addr, slen ) == -1)
856 857
    {
        if ((errno == EEXIST) || (errno == EADDRINUSE))
858 859 860 861 862
        {
            if (got_lock)
                fatal_error( "couldn't bind to the socket even though we hold the lock\n" );
            exit(2); /* we didn't get the lock, exit with special status */
        }
863
        fatal_error( "bind: %s\n", strerror( errno ));
864 865
    }
    atexit( socket_cleanup );
866
    chmod( server_socket_name, 0600 );  /* make sure no other user can connect */
867
    if (listen( fd, 5 ) == -1) fatal_error( "listen: %s\n", strerror( errno ));
868

869
    if (!(master_socket = alloc_object( &master_socket_ops )) ||
870
        !(master_socket->fd = create_anonymous_fd( &master_socket_fd_ops, fd, &master_socket->obj, 0 )))
871
        fatal_error( "out of memory\n" );
872
    set_fd_events( master_socket->fd, POLLIN );
873
    make_object_static( &master_socket->obj );
874 875 876 877 878
}

/* open the master server socket and start waiting for new clients */
void open_master_socket(void)
{
879
    int fd, pid, status, sync_pipe[2];
880 881 882 883 884 885
    char dummy;

    /* make sure no request is larger than the maximum size */
    assert( sizeof(union generic_request) == sizeof(struct request_max_size) );
    assert( sizeof(union generic_reply) == sizeof(struct request_max_size) );

886 887 888 889
    /* make sure the stdio fds are open */
    fd = open( "/dev/null", O_RDWR );
    while (fd >= 0 && fd <= 2) fd = dup( fd );

890
    server_dir = create_server_dir( 1 );
891

892
    if (!foreground)
893
    {
894
        if (pipe( sync_pipe ) == -1) fatal_error( "pipe: %s\n", strerror( errno ));
895 896 897 898 899 900
        pid = fork();
        switch( pid )
        {
        case 0:  /* child */
            setsid();
            close( sync_pipe[0] );
901

902
            acquire_lock();
903

904
            /* close stdin and stdout */
905 906
            dup2( fd, 0 );
            dup2( fd, 1 );
907

908
            /* signal parent */
909
            dummy = 0;
910 911 912
            write( sync_pipe[1], &dummy, 1 );
            close( sync_pipe[1] );
            break;
913

914
        case -1:
915
            fatal_error( "fork: %s\n", strerror( errno ));
916
            break;
917

918 919
        default:  /* parent */
            close( sync_pipe[1] );
920

921 922 923 924
            /* wait for child to signal us and then exit */
            if (read( sync_pipe[0], &dummy, 1 ) == 1) _exit(0);

            /* child terminated, propagate exit status */
925
            waitpid( pid, &status, 0 );
926 927 928 929 930 931 932
            if (WIFEXITED(status)) _exit( WEXITSTATUS(status) );
            _exit(1);
        }
    }
    else  /* remain in the foreground */
    {
        acquire_lock();
933
    }
934

935 936
    /* init the process tracing mechanism */
    init_tracing_mechanism();
937
    close( fd );
938 939
}

940 941
/* master socket timer expiration handler */
static void close_socket_timeout( void *arg )
942
{
943
    master_timeout = NULL;
944 945 946 947
    flush_registry();
    if (debug_level) fprintf( stderr, "wineserver: exiting (pid=%ld)\n", (long) getpid() );

#ifdef DEBUG_OBJECTS
948
    close_objects();  /* shut down everything properly */
949
#endif
950
    exit( 0 );
951 952
}

953
/* close the master socket and stop waiting for new clients */
954
void close_master_socket( timeout_t timeout )
955
{
956
    if (master_socket)
957
    {
958 959
        release_object( master_socket );
        master_socket = NULL;
960
    }
961 962 963
    if (master_timeout)  /* cancel previous timeout */
        remove_timeout_user( master_timeout );

964
    master_timeout = add_timeout_user( timeout, close_socket_timeout, NULL );
965
}