1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
/* msg.cc: Single unix specification IPC interface for Cygwin.
This file is part of Cygwin.
This software is a copyrighted work licensed under the terms of the
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
details. */
#ifdef __OUTSIDE_CYGWIN__
#include "woutsup.h"
#include <errno.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "cygserver.h"
#include "process.h"
#include "transport.h"
#include "cygserver_ipc.h"
#include "cygserver_msg.h"
client_request_msg::client_request_msg ()
: client_request (CYGSERVER_REQUEST_MSG,
&_parameters, sizeof (_parameters))
{
}
void
client_request_msg::serve (transport_layer_base *const conn,
process_cache *const cache)
{
if (msglen () != sizeof (_parameters.in))
{
syscall_printf ("bad request body length: expecting %lu bytes, got %lu",
sizeof (_parameters), msglen ());
error_code (EINVAL);
msglen (0);
return;
}
if (support_msgqueues == TUN_FALSE)
{
syscall_printf ("Message queue support not started");
error_code (ENOSYS);
if (_parameters.in.msgop == MSGOP_msgrcv)
_parameters.out.rcv = -1;
else
_parameters.out.ret = -1;
msglen (sizeof (_parameters.out));
return;
}
process *const client = cache->process (_parameters.in.ipcblk.cygpid,
_parameters.in.ipcblk.winpid);
if (!client)
{
error_code (EAGAIN);
msglen (0);
return;
}
if (!conn->impersonate_client ())
{
client->release ();
error_code (EACCES);
msglen (0);
return;
}
if (!adjust_identity_info (&_parameters.in.ipcblk))
{
client->release ();
conn->revert_to_self ();
error_code (EACCES);
msglen (0);
return;
}
/* Early revert_to_self since IPC code runs in kernel mode. */
conn->revert_to_self ();
/* sysv_msg.cc takes care of itself. */
client->release ();
thread td (client, &_parameters.in.ipcblk, true);
int res;
msgop_t msgop = _parameters.in.msgop; /* Get's overwritten otherwise. */
switch (msgop)
{
case MSGOP_msgctl:
res = msgctl (&td, &_parameters.in.ctlargs);
break;
case MSGOP_msgget:
res = msgget (&td, &_parameters.in.getargs);
break;
case MSGOP_msgrcv:
res = msgrcv (&td, &_parameters.in.rcvargs);
break;
case MSGOP_msgsnd:
res = msgsnd (&td, &_parameters.in.sndargs);
break;
default:
res = ENOSYS;
td.td_retval[0] = -1;
break;
}
/* Allocated by the call to adjust_identity_info(). */
if (_parameters.in.ipcblk.gidlist)
free (_parameters.in.ipcblk.gidlist);
error_code (res);
if (msgop == MSGOP_msgrcv)
_parameters.out.rcv = td.td_retval[0];
else
_parameters.out.ret = td.td_retval[0];
msglen (sizeof (_parameters.out));
}
#endif /* __OUTSIDE_CYGWIN__ */
|