2012-05-02 16:58:39 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2010-2012 Paul Gardner-Stephen, Serval Project.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Android does unix domain sockets, but only stream sockets, not datagram sockets.
|
|
|
|
So we need a separate monitor interface for Android. A bit of a pain, but in
|
|
|
|
fact it lets us make a very Android/Java-friendly interface, without any binary
|
|
|
|
data structures (except for a binary extent for an audio sample block).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "serval.h"
|
2012-05-11 21:54:52 +00:00
|
|
|
#include "rhizome.h"
|
2012-05-02 16:58:39 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2012-05-21 02:52:50 +00:00
|
|
|
#if defined(LOCAL_PEERCRED) && !defined(SO_PEERCRED)
|
|
|
|
#define SO_PEERCRED LOCAL_PEERCRED
|
|
|
|
#endif
|
2012-05-03 02:41:13 +00:00
|
|
|
|
2012-05-02 16:58:39 +00:00
|
|
|
/* really shouldn't need more than 2:
|
|
|
|
1 for rhizome
|
|
|
|
1 for VoMP call
|
|
|
|
but spares never hurt, and the cost is low
|
|
|
|
*/
|
2012-05-03 17:46:06 +00:00
|
|
|
#define MONITOR_LINE_LENGTH 160
|
2012-05-02 16:58:39 +00:00
|
|
|
#define MONITOR_DATA_SIZE MAX_AUDIO_BYTES
|
|
|
|
struct monitor_context {
|
|
|
|
#define MONITOR_VOMP (1<<0)
|
|
|
|
#define MONITOR_RHIZOME (1<<1)
|
2012-05-21 03:25:25 +00:00
|
|
|
#define MONITOR_PEERS (1<<2)
|
2012-05-02 16:58:39 +00:00
|
|
|
int flags;
|
|
|
|
int socket;
|
|
|
|
char line[MONITOR_LINE_LENGTH];
|
|
|
|
int line_length;
|
|
|
|
#define MONITOR_STATE_COMMAND 1
|
|
|
|
#define MONITOR_STATE_DATA 2
|
|
|
|
int state;
|
|
|
|
unsigned char buffer[MONITOR_DATA_SIZE];
|
|
|
|
int data_expected;
|
|
|
|
int data_offset;
|
|
|
|
int sample_codec;
|
|
|
|
int sample_call_session_token;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MAX_MONITOR_SOCKETS 8
|
|
|
|
int monitor_socket_count=0;
|
|
|
|
struct monitor_context monitor_sockets[MAX_MONITOR_SOCKETS];
|
2012-05-02 17:30:34 +00:00
|
|
|
long long monitor_last_update_time=0;
|
2012-05-02 16:58:39 +00:00
|
|
|
|
|
|
|
int monitor_process_command(int index,char *cmd);
|
|
|
|
int monitor_process_data(int index);
|
|
|
|
|
|
|
|
int monitor_named_socket=-1;
|
|
|
|
int monitor_setup_sockets()
|
|
|
|
{
|
|
|
|
struct sockaddr_un name;
|
|
|
|
int len;
|
|
|
|
|
2012-05-28 05:24:33 +00:00
|
|
|
bzero(&name, sizeof(name));
|
2012-05-02 16:58:39 +00:00
|
|
|
name.sun_family = AF_UNIX;
|
|
|
|
|
2012-05-28 05:24:33 +00:00
|
|
|
if (monitor_named_socket!=-1)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* ignore SIGPIPE so that we don't explode */
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
if ((monitor_named_socket = socket(AF_UNIX, SOCK_STREAM, 0))==-1) {
|
|
|
|
WHY_perror("socket");
|
|
|
|
goto error;
|
|
|
|
}
|
2012-05-03 18:14:41 +00:00
|
|
|
|
2012-05-28 05:24:33 +00:00
|
|
|
#ifdef linux
|
|
|
|
/* Use abstract namespace as Android has no writable FS which supports sockets */
|
|
|
|
name.sun_path[0]=0;
|
|
|
|
/* XXX: 104 comes from OSX sys/un.h - no #define (note Linux has UNIX_PATH_MAX and it's 108(!)) */
|
|
|
|
snprintf(&name.sun_path[1],104-2,"org.servalproject.servald.monitor.socket");
|
|
|
|
/* Doesn't include trailing nul */
|
|
|
|
len = 1+strlen(&name.sun_path[1]) + sizeof(name.sun_family);
|
|
|
|
#else
|
|
|
|
snprintf(name.sun_path,104-1,"%s/org.servalproject.servald.monitor.socket",serval_instancepath());
|
|
|
|
unlink(name.sun_path);
|
|
|
|
/* Includes trailing nul */
|
2012-05-29 00:18:22 +00:00
|
|
|
len = 1+strlen(name.sun_path) + sizeof(name.sun_family);
|
2012-05-28 05:24:33 +00:00
|
|
|
#endif
|
2012-05-02 16:58:39 +00:00
|
|
|
|
2012-05-28 05:24:33 +00:00
|
|
|
if(bind(monitor_named_socket, (struct sockaddr *)&name, len)==-1) {
|
|
|
|
WHY_perror("bind");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if(listen(monitor_named_socket,MAX_MONITOR_SOCKETS)==-1) {
|
|
|
|
WHY_perror("listen");
|
|
|
|
goto error;
|
|
|
|
}
|
2012-05-17 03:43:42 +00:00
|
|
|
|
2012-05-28 05:24:33 +00:00
|
|
|
int reuseP=1;
|
|
|
|
if(setsockopt(monitor_named_socket, SOL_SOCKET, SO_REUSEADDR,
|
|
|
|
&reuseP, sizeof(reuseP)) < 0) {
|
|
|
|
WHY_perror("setsockopt");
|
|
|
|
WHY("Could not indicate reuse addresses. Not necessarily a problem (yet)");
|
2012-05-02 16:58:39 +00:00
|
|
|
}
|
2012-05-28 05:24:33 +00:00
|
|
|
|
|
|
|
int send_buffer_size=64*1024;
|
|
|
|
if(setsockopt(monitor_named_socket, SOL_SOCKET, SO_RCVBUF,
|
|
|
|
&send_buffer_size, sizeof(send_buffer_size))==-1)
|
|
|
|
WHY_perror("setsockopt");
|
|
|
|
if (debug&(DEBUG_IO|DEBUG_VERBOSE_IO)) WHY("Monitor server socket setup");
|
2012-05-02 16:58:39 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2012-05-28 05:24:33 +00:00
|
|
|
error:
|
|
|
|
close(monitor_named_socket);
|
|
|
|
monitor_named_socket=-1;
|
|
|
|
return -1;
|
2012-05-02 16:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int monitor_get_fds(struct pollfd *fds,int *fdcount,int fdmax)
|
|
|
|
{
|
|
|
|
/* Make sure sockets are open */
|
|
|
|
monitor_setup_sockets();
|
|
|
|
|
2012-05-02 18:07:03 +00:00
|
|
|
/* This block should work, but in reality it doesn't.
|
|
|
|
poll() on linux is ALWAYS claiming that accept() can be
|
|
|
|
run. So we just have to check it whenever some other fd triggers
|
|
|
|
poll to break, which fortunately is fairly often. */
|
2012-05-02 16:58:39 +00:00
|
|
|
if ((*fdcount)>=fdmax) return -1;
|
|
|
|
if (monitor_named_socket>-1)
|
|
|
|
{
|
2012-05-02 18:07:03 +00:00
|
|
|
if (debug&(DEBUG_IO|DEBUG_VERBOSE_IO)) {
|
2012-05-03 07:34:20 +00:00
|
|
|
WHYF("Monitor named unix domain socket is poll() slot #%d (fd %d)\n",
|
|
|
|
*fdcount,monitor_named_socket);
|
2012-05-02 16:58:39 +00:00
|
|
|
}
|
|
|
|
fds[*fdcount].fd=monitor_named_socket;
|
|
|
|
fds[*fdcount].events=POLLIN;
|
|
|
|
(*fdcount)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int i;
|
2012-05-03 07:34:20 +00:00
|
|
|
if (debug&(DEBUG_IO|DEBUG_VERBOSE_IO))
|
|
|
|
WHYF("looking at %d monitor clients",monitor_socket_count);
|
2012-05-02 16:58:39 +00:00
|
|
|
for(i=0;i<monitor_socket_count;i++) {
|
|
|
|
if ((*fdcount)>=fdmax) return -1;
|
2012-05-02 18:07:03 +00:00
|
|
|
if (debug&(DEBUG_IO|DEBUG_VERBOSE_IO)) {
|
2012-05-03 07:34:47 +00:00
|
|
|
WHYF("Monitor named unix domain client socket is poll() slot #%d (fd %d)\n",
|
2012-05-03 07:34:20 +00:00
|
|
|
*fdcount,monitor_sockets[i].socket);
|
2012-05-02 16:58:39 +00:00
|
|
|
}
|
|
|
|
fds[*fdcount].fd=monitor_sockets[i].socket;
|
|
|
|
fds[*fdcount].events=POLLIN;
|
|
|
|
(*fdcount)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int monitor_poll()
|
|
|
|
{
|
|
|
|
int s;
|
2012-05-08 22:05:05 +00:00
|
|
|
unsigned char buffer[1024];
|
|
|
|
struct sockaddr *ignored_address=(struct sockaddr *)&buffer[0];
|
2012-05-02 16:58:39 +00:00
|
|
|
socklen_t ignored_length=sizeof(ignored_address);
|
|
|
|
|
2012-05-02 17:30:34 +00:00
|
|
|
/* tell all monitor clients about status of all calls periodically */
|
|
|
|
long long now=overlay_gettime_ms();
|
2012-05-06 23:38:56 +00:00
|
|
|
char msg[128];
|
|
|
|
int m;
|
2012-05-08 06:28:37 +00:00
|
|
|
if (monitor_last_update_time>(now+1000)) {
|
|
|
|
WHY("Fixed run away monitor_last_update_time");
|
|
|
|
monitor_last_update_time=now+1000;
|
|
|
|
}
|
2012-05-02 17:30:34 +00:00
|
|
|
if (now>(monitor_last_update_time+1000)) {
|
2012-05-08 22:10:29 +00:00
|
|
|
// WHY("Send keep alives");
|
2012-05-02 17:30:34 +00:00
|
|
|
monitor_last_update_time=now;
|
|
|
|
int i;
|
2012-05-06 23:31:46 +00:00
|
|
|
for(i=0;i<vomp_call_count;i++) {
|
|
|
|
/* Push out any undelivered status changes */
|
2012-05-02 17:30:34 +00:00
|
|
|
monitor_call_status(&vomp_call_states[i]);
|
2012-05-08 06:17:39 +00:00
|
|
|
WHYF("Sending keepalives for call #%d",i);
|
2012-05-08 22:05:05 +00:00
|
|
|
|
2012-05-06 23:31:46 +00:00
|
|
|
/* And let far-end know that call is still alive */
|
2012-05-08 03:25:57 +00:00
|
|
|
snprintf(msg,128,"\nKEEPALIVE:%06x\n",vomp_call_states[i].local.session);
|
2012-05-06 23:31:46 +00:00
|
|
|
for(m=0;m<monitor_socket_count;m++)
|
|
|
|
write(monitor_sockets[m].socket,msg,strlen(msg));
|
|
|
|
}
|
2012-05-02 17:30:34 +00:00
|
|
|
}
|
|
|
|
|
2012-05-02 16:58:39 +00:00
|
|
|
/* Check for new connections */
|
2012-05-03 04:07:18 +00:00
|
|
|
fcntl(monitor_named_socket,F_SETFL,
|
|
|
|
fcntl(monitor_named_socket, F_GETFL, NULL)|O_NONBLOCK);
|
2012-05-10 04:37:11 +00:00
|
|
|
while (
|
2012-05-03 03:59:48 +00:00
|
|
|
#ifdef HAVE_LINUX_IF_H
|
2012-05-10 04:37:11 +00:00
|
|
|
(s = accept4(monitor_named_socket,ignored_address,&ignored_length,O_NONBLOCK))
|
2012-05-03 03:59:48 +00:00
|
|
|
#else
|
2012-05-10 04:45:21 +00:00
|
|
|
(s = accept(monitor_named_socket,ignored_address,&ignored_length))
|
2012-05-03 03:59:48 +00:00
|
|
|
#endif
|
2012-05-10 04:37:11 +00:00
|
|
|
!= -1
|
|
|
|
) {
|
2012-05-22 07:34:24 +00:00
|
|
|
if (0) WHYF("ignored_length=%d",ignored_length);
|
2012-05-02 16:58:39 +00:00
|
|
|
int res = fcntl(s,F_SETFL, O_NONBLOCK);
|
2012-05-03 02:41:13 +00:00
|
|
|
if (res) { close(s); continue; }
|
2012-05-21 02:52:50 +00:00
|
|
|
#if defined(HAVE_LINUX_STRUCT_UCRED)
|
2012-05-03 02:41:13 +00:00
|
|
|
struct ucred ucred;
|
2012-05-21 02:52:50 +00:00
|
|
|
#elif defined(HAVE_BSD_STRUCT_UCRED)
|
|
|
|
struct xucred ucred;
|
|
|
|
#else
|
|
|
|
#error "Unknown ucred struct"
|
|
|
|
#endif
|
|
|
|
uid_t otheruid;
|
2012-05-03 02:41:13 +00:00
|
|
|
socklen_t len=sizeof(ucred);
|
|
|
|
res = getsockopt(s,SOL_SOCKET,SO_PEERCRED,&ucred,&len);
|
2012-05-08 22:05:05 +00:00
|
|
|
if (len>sizeof(ucred)) {
|
|
|
|
WHYF("This is likely to be bad (memory overrun by getsockopt())");
|
|
|
|
}
|
2012-05-03 02:41:13 +00:00
|
|
|
if (res) {
|
|
|
|
WHY("Failed to read credentials of monitor.socket client");
|
|
|
|
close(s); continue; }
|
2012-05-21 02:52:50 +00:00
|
|
|
#if defined(HAVE_LINUX_STRUCT_UCRED)
|
|
|
|
otheruid = ucred.uid;
|
|
|
|
#elif defined(HAVE_BSD_STRUCT_UCRED)
|
|
|
|
otheruid = ucred.cr_uid;
|
|
|
|
#endif
|
|
|
|
if (otheruid&&(otheruid!=getuid())) {
|
2012-05-22 07:34:24 +00:00
|
|
|
if (0) WHYF("monitor.socket client has wrong uid (%d versus %d)",
|
|
|
|
otheruid,getuid());
|
2012-05-08 03:25:57 +00:00
|
|
|
write(s,"\nCLOSE:Incorrect UID\n",strlen("\nCLOSE:Incorrect UID\n"));
|
2012-05-03 02:41:13 +00:00
|
|
|
close(s); continue;
|
|
|
|
}
|
2012-05-08 22:05:05 +00:00
|
|
|
else if (monitor_socket_count>=MAX_MONITOR_SOCKETS
|
|
|
|
||monitor_socket_count<0) {
|
2012-05-08 03:25:57 +00:00
|
|
|
write(s,"\nCLOSE:All sockets busy\n",strlen("\nCLOSE:All sockets busy\n"));
|
2012-05-02 16:58:39 +00:00
|
|
|
close(s);
|
|
|
|
} else {
|
|
|
|
struct monitor_context *c=&monitor_sockets[monitor_socket_count];
|
2012-05-03 17:46:06 +00:00
|
|
|
c->socket=s;
|
2012-05-02 16:58:39 +00:00
|
|
|
c->line_length=0;
|
|
|
|
c->state=MONITOR_STATE_COMMAND;
|
|
|
|
monitor_socket_count++;
|
2012-05-08 03:25:57 +00:00
|
|
|
write(s,"\nMONITOR:You are talking to servald\n",
|
|
|
|
strlen("\nMONITOR:You are talking to servald\n"));
|
2012-05-03 07:32:57 +00:00
|
|
|
WHYF("Got %d clients",monitor_socket_count);
|
2012-05-02 16:58:39 +00:00
|
|
|
}
|
2012-05-02 18:07:03 +00:00
|
|
|
|
2012-05-02 16:58:39 +00:00
|
|
|
ignored_length=sizeof(ignored_address);
|
2012-05-03 03:59:48 +00:00
|
|
|
fcntl(monitor_named_socket,F_SETFL,
|
|
|
|
fcntl(monitor_named_socket, F_GETFL, NULL)|O_NONBLOCK);
|
2012-05-02 16:58:39 +00:00
|
|
|
}
|
2012-05-10 14:47:02 +00:00
|
|
|
if (errno != EAGAIN) WHY_perror("accept");
|
2012-05-02 16:58:39 +00:00
|
|
|
|
|
|
|
/* Read from any open connections */
|
|
|
|
int i;
|
|
|
|
for(i=0;i<monitor_socket_count;i++) {
|
|
|
|
nextInSameSlot:
|
|
|
|
errno=0;
|
|
|
|
int bytes;
|
2012-05-03 06:46:36 +00:00
|
|
|
struct monitor_context *c=&monitor_sockets[i];
|
2012-05-03 03:34:17 +00:00
|
|
|
fcntl(c->socket,F_SETFL,
|
|
|
|
fcntl(c->socket, F_GETFL, NULL)|O_NONBLOCK);
|
2012-05-02 16:58:39 +00:00
|
|
|
switch(c->state) {
|
|
|
|
case MONITOR_STATE_COMMAND:
|
|
|
|
bytes=1;
|
|
|
|
while(bytes==1) {
|
|
|
|
if (c->line_length>=MONITOR_LINE_LENGTH) {
|
|
|
|
/* line too long */
|
|
|
|
c->line[MONITOR_LINE_LENGTH-1]=0;
|
|
|
|
monitor_process_command(i,c->line);
|
2012-05-03 03:34:17 +00:00
|
|
|
bytes=-1;
|
2012-05-02 16:58:39 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-05-03 18:28:34 +00:00
|
|
|
errno=0;
|
2012-05-02 16:58:39 +00:00
|
|
|
bytes=read(c->socket,&c->line[c->line_length],1);
|
2012-05-03 18:28:34 +00:00
|
|
|
if (bytes<1) {
|
2012-05-02 16:58:39 +00:00
|
|
|
switch(errno) {
|
2012-05-10 14:47:02 +00:00
|
|
|
case EINTR:
|
|
|
|
case ENOTRECOVERABLE:
|
2012-05-02 16:58:39 +00:00
|
|
|
/* transient errors */
|
2012-05-10 14:47:02 +00:00
|
|
|
WHY_perror("read");
|
|
|
|
break;
|
|
|
|
case EAGAIN:
|
2012-05-03 17:46:06 +00:00
|
|
|
break;
|
2012-05-02 16:58:39 +00:00
|
|
|
default:
|
2012-05-10 14:47:02 +00:00
|
|
|
WHY_perror("read");
|
2012-05-02 16:58:39 +00:00
|
|
|
/* all other errors; close socket */
|
2012-05-05 09:58:31 +00:00
|
|
|
WHYF("Tearing down monitor client #%d due to errno=%d (%s)",
|
2012-05-08 22:05:05 +00:00
|
|
|
i,errno,strerror(errno)?strerror(errno):"<unknown error>");
|
2012-05-02 16:58:39 +00:00
|
|
|
close(c->socket);
|
|
|
|
if (i==monitor_socket_count-1) {
|
|
|
|
monitor_socket_count--;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
bcopy(&monitor_sockets[monitor_socket_count-1],
|
|
|
|
&monitor_sockets[i],
|
|
|
|
sizeof(struct monitor_context));
|
|
|
|
monitor_socket_count--;
|
|
|
|
goto nextInSameSlot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-05-03 17:46:06 +00:00
|
|
|
if (bytes>0&&(c->line[c->line_length]!='\r'))
|
|
|
|
{
|
|
|
|
c->line_length+=bytes;
|
|
|
|
if (c->line[c->line_length-1]=='\n') {
|
|
|
|
/* got command */
|
|
|
|
c->line[c->line_length-1]=0; /* trim new line for easier parsing */
|
|
|
|
monitor_process_command(i,c->line);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-05-02 16:58:39 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MONITOR_STATE_DATA:
|
2012-05-03 18:28:34 +00:00
|
|
|
errno=0;
|
2012-05-02 16:58:39 +00:00
|
|
|
bytes=read(c->socket,
|
|
|
|
&c->buffer[c->data_offset],
|
|
|
|
c->data_expected-c->data_offset);
|
2012-05-03 18:28:34 +00:00
|
|
|
if (bytes<1) {
|
2012-05-02 16:58:39 +00:00
|
|
|
switch(errno) {
|
|
|
|
case EAGAIN: case EINTR:
|
|
|
|
/* transient errors */
|
2012-05-03 17:46:06 +00:00
|
|
|
break;
|
2012-05-02 16:58:39 +00:00
|
|
|
default:
|
|
|
|
/* all other errors; close socket */
|
2012-05-03 07:32:57 +00:00
|
|
|
WHYF("Tearing down monitor client #%d due to errno=%d",
|
|
|
|
i,errno);
|
2012-05-02 16:58:39 +00:00
|
|
|
close(c->socket);
|
|
|
|
if (i==monitor_socket_count-1) {
|
|
|
|
monitor_socket_count--;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
bcopy(&monitor_sockets[monitor_socket_count-1],
|
|
|
|
&monitor_sockets[i],
|
|
|
|
sizeof(struct monitor_context));
|
|
|
|
monitor_socket_count--;
|
|
|
|
goto nextInSameSlot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
c->data_offset+=bytes;
|
|
|
|
if (c->data_offset>=c->data_expected)
|
|
|
|
{
|
|
|
|
/* we have the binary data we were expecting. */
|
|
|
|
monitor_process_data(i);
|
|
|
|
c->state=MONITOR_STATE_COMMAND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2012-05-03 06:46:36 +00:00
|
|
|
default:
|
|
|
|
c->state=MONITOR_STATE_COMMAND;
|
|
|
|
WHY("fixed monitor connection state");
|
2012-05-02 16:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int monitor_process_command(int index,char *cmd)
|
|
|
|
{
|
|
|
|
int callSessionToken,sampleType,bytes;
|
2012-05-03 17:46:06 +00:00
|
|
|
char sid[MONITOR_LINE_LENGTH],localDid[MONITOR_LINE_LENGTH];
|
2012-05-03 18:14:41 +00:00
|
|
|
char remoteDid[MONITOR_LINE_LENGTH],digits[MONITOR_LINE_LENGTH];
|
2012-05-02 17:30:34 +00:00
|
|
|
overlay_mdp_frame mdp;
|
|
|
|
mdp.packetTypeAndFlags=MDP_VOMPEVENT;
|
2012-05-02 16:58:39 +00:00
|
|
|
|
|
|
|
struct monitor_context *c=&monitor_sockets[index];
|
|
|
|
c->line_length=0;
|
|
|
|
|
2012-05-03 03:34:17 +00:00
|
|
|
fcntl(c->socket,F_SETFL,
|
|
|
|
fcntl(c->socket, F_GETFL, NULL)|O_NONBLOCK);
|
|
|
|
|
2012-05-03 17:46:06 +00:00
|
|
|
if (strlen(cmd)>MONITOR_LINE_LENGTH) {
|
2012-05-08 03:25:57 +00:00
|
|
|
write(c->socket,"\nERROR:Command too long\n",
|
|
|
|
strlen("\nERROR:Command too long\n"));
|
2012-05-02 17:30:34 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-05-03 17:54:53 +00:00
|
|
|
char msg[1024];
|
2012-05-10 22:30:09 +00:00
|
|
|
int flag;
|
2012-05-03 17:54:53 +00:00
|
|
|
|
2012-05-03 18:14:41 +00:00
|
|
|
if (cmd[0]=='*') {
|
|
|
|
/* command with content */
|
|
|
|
int ofs=0;
|
|
|
|
if (sscanf(cmd,"*%d:%n",&bytes,&ofs)==1) {
|
|
|
|
/* work out rest of command */
|
|
|
|
cmd=&cmd[ofs];
|
2012-05-02 16:58:39 +00:00
|
|
|
c->state=MONITOR_STATE_DATA;
|
|
|
|
c->data_expected=bytes;
|
|
|
|
c->data_offset=0;
|
2012-05-03 18:14:41 +00:00
|
|
|
c->sample_codec=-1;
|
|
|
|
|
|
|
|
if (sscanf(cmd,"AUDIO:%x:%d",
|
|
|
|
&callSessionToken,&sampleType)==2)
|
|
|
|
{
|
|
|
|
/* Start getting sample */
|
|
|
|
c->sample_call_session_token=callSessionToken;
|
|
|
|
c->sample_codec=sampleType;
|
|
|
|
return 0;
|
|
|
|
}
|
2012-05-02 16:58:39 +00:00
|
|
|
}
|
2012-05-03 18:14:41 +00:00
|
|
|
}
|
2012-05-02 16:58:39 +00:00
|
|
|
else if (!strcasecmp(cmd,"monitor vomp"))
|
|
|
|
c->flags|=MONITOR_VOMP;
|
|
|
|
else if (!strcasecmp(cmd,"ignore vomp"))
|
|
|
|
c->flags&=~MONITOR_VOMP;
|
|
|
|
else if (!strcasecmp(cmd,"monitor rhizome"))
|
|
|
|
c->flags|=MONITOR_RHIZOME;
|
|
|
|
else if (!strcasecmp(cmd,"ignore rhizome"))
|
|
|
|
c->flags&=~MONITOR_RHIZOME;
|
2012-05-21 03:34:54 +00:00
|
|
|
else if (!strcasecmp(cmd,"monitor peers"))
|
|
|
|
c->flags|=MONITOR_PEERS;
|
|
|
|
else if (!strcasecmp(cmd,"ignore peers"))
|
|
|
|
c->flags&=~MONITOR_PEERS;
|
2012-05-10 22:30:09 +00:00
|
|
|
else if (sscanf(cmd,"FASTAUDIO:%x:%d",&callSessionToken,&flag)==2)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i=0;i<vomp_call_count;i++)
|
|
|
|
if (vomp_call_states[i].local.session==callSessionToken
|
|
|
|
||callSessionToken==0) {
|
|
|
|
vomp_call_states[i].fast_audio=flag;
|
|
|
|
vomp_call_states[i].local.last_state=-1;
|
|
|
|
monitor_call_status(&vomp_call_states[i]);
|
|
|
|
}
|
|
|
|
}
|
2012-05-03 17:46:06 +00:00
|
|
|
else if (sscanf(cmd,"call %s %s %s",sid,localDid,remoteDid)==3) {
|
2012-05-14 06:22:15 +00:00
|
|
|
WHY("here");
|
2012-05-08 05:02:13 +00:00
|
|
|
if (sid[0]=='*') {
|
|
|
|
/* For testing, pick a peer and call them */
|
|
|
|
int bin,slot;
|
|
|
|
for(bin=0;bin<overlay_bin_count;bin++)
|
|
|
|
for(slot=0;slot<overlay_bin_size;slot++)
|
|
|
|
{
|
|
|
|
if (!overlay_nodes[bin][slot].sid[0])
|
|
|
|
{
|
|
|
|
continue; }
|
|
|
|
strcpy(sid,overlay_render_sid(overlay_nodes[bin][slot].sid));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-05-02 17:30:34 +00:00
|
|
|
mdp.vompevent.flags=VOMPEVENT_DIAL;
|
2012-05-03 17:54:53 +00:00
|
|
|
int cn=0,in=0,kp=0;
|
|
|
|
if(!keyring_next_identity(keyring,&cn,&in,&kp))
|
|
|
|
{
|
2012-05-08 03:25:57 +00:00
|
|
|
snprintf(msg,1024,"\nERROR:no local identity, so cannot place call\n");
|
2012-05-03 17:54:53 +00:00
|
|
|
write(c->socket,msg,strlen(msg));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bcopy(keyring->contexts[cn]->identities[in]
|
|
|
|
->keypairs[kp]->public_key,
|
|
|
|
&mdp.vompevent.local_sid[0],SID_SIZE);
|
|
|
|
stowSid(&mdp.vompevent.remote_sid[0],0,sid);
|
|
|
|
vomp_mdp_event(&mdp,NULL,0);
|
|
|
|
}
|
2012-05-14 06:22:15 +00:00
|
|
|
WHY("here");
|
2012-05-02 17:30:34 +00:00
|
|
|
}
|
2012-05-06 23:01:53 +00:00
|
|
|
else if (sscanf(cmd,"status %x",&callSessionToken)==1) {
|
|
|
|
int i;
|
|
|
|
for(i=0;i<vomp_call_count;i++)
|
|
|
|
if (vomp_call_states[i].local.session==callSessionToken
|
|
|
|
||callSessionToken==0) {
|
|
|
|
vomp_call_states[i].local.last_state=0;
|
|
|
|
monitor_call_status(&vomp_call_states[i]);
|
|
|
|
}
|
|
|
|
} else if (sscanf(cmd,"pickup %x",&callSessionToken)==1) {
|
2012-05-02 17:30:34 +00:00
|
|
|
mdp.vompevent.flags=VOMPEVENT_PICKUP;
|
|
|
|
mdp.vompevent.call_session_token=callSessionToken;
|
|
|
|
vomp_mdp_event(&mdp,NULL,0);
|
|
|
|
}
|
2012-05-03 17:46:06 +00:00
|
|
|
else if (sscanf(cmd,"hangup %x",&callSessionToken)==1) {
|
2012-05-02 17:30:34 +00:00
|
|
|
mdp.vompevent.flags=VOMPEVENT_HANGUP;
|
|
|
|
mdp.vompevent.call_session_token=callSessionToken;
|
|
|
|
vomp_mdp_event(&mdp,NULL,0);
|
2012-05-03 18:14:41 +00:00
|
|
|
} else if (sscanf(cmd,"dtmf %x %s",&callSessionToken,digits)==2) {
|
|
|
|
mdp.vompevent.flags=VOMPEVENT_AUDIOPACKET;
|
|
|
|
mdp.vompevent.call_session_token=callSessionToken;
|
|
|
|
|
|
|
|
/* One digit per sample block. */
|
|
|
|
mdp.vompevent.audio_sample_codec=VOMP_CODEC_DTMF;
|
|
|
|
mdp.vompevent.audio_sample_bytes=1;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for(i=0;i<strlen(digits);i++) {
|
|
|
|
int digit=vomp_parse_dtmf_digit(digits[i]);
|
|
|
|
if (digit<0) {
|
2012-05-08 03:25:57 +00:00
|
|
|
snprintf(msg,1024,"\nERROR: invalid DTMF digit 0x%02x\n",digit);
|
2012-05-03 18:14:41 +00:00
|
|
|
write(c->socket,msg,strlen(msg));
|
|
|
|
}
|
|
|
|
mdp.vompevent.audio_bytes[mdp.vompevent.audio_sample_bytes]
|
|
|
|
=(digit<<4); /* 80ms standard tone duration, so that it is a multiple
|
|
|
|
of the majority of codec time units (70ms is the nominal
|
|
|
|
DTMF tone length for most systems). */
|
|
|
|
if (overlay_mdp_send(&mdp,0,0)) WHY("Send DTMF failed.");
|
|
|
|
}
|
|
|
|
|
2012-05-02 17:30:34 +00:00
|
|
|
}
|
2012-05-02 16:58:39 +00:00
|
|
|
|
2012-05-03 03:34:17 +00:00
|
|
|
fcntl(c->socket,F_SETFL,
|
|
|
|
fcntl(c->socket, F_GETFL, NULL)|O_NONBLOCK);
|
|
|
|
|
2012-05-08 03:25:57 +00:00
|
|
|
snprintf(msg,1024,"\nMONITORSTATUS:%d\n",c->flags);
|
2012-05-02 16:58:39 +00:00
|
|
|
write(c->socket,msg,strlen(msg));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int monitor_process_data(int index)
|
|
|
|
{
|
|
|
|
/* Called when we have received an entire data sample */
|
|
|
|
struct monitor_context *c=&monitor_sockets[index];
|
|
|
|
c->state=MONITOR_STATE_COMMAND;
|
|
|
|
|
|
|
|
if (vomp_sample_size(c->sample_codec)!=c->data_offset)
|
2012-05-07 07:20:49 +00:00
|
|
|
return
|
2012-06-18 00:07:24 +00:00
|
|
|
WHYF("Ignoring sample block of incorrect size (expected %d, got %d bytes for codec %d)",
|
|
|
|
vomp_sample_size(c->sample_codec), c->data_offset, c->sample_codec);
|
2012-05-02 16:58:39 +00:00
|
|
|
|
2012-05-03 03:34:17 +00:00
|
|
|
fcntl(c->socket,F_SETFL,
|
|
|
|
fcntl(c->socket, F_GETFL, NULL)|O_NONBLOCK);
|
|
|
|
|
2012-05-02 16:58:39 +00:00
|
|
|
vomp_call_state *call=vomp_find_call_by_session(c->sample_call_session_token);
|
|
|
|
if (!call) {
|
2012-05-08 03:25:57 +00:00
|
|
|
write(c->socket,"\nERROR:No such call\n",strlen("\nERROR:No such call\n"));
|
2012-05-02 16:58:39 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
overlay_mdp_frame mdp;
|
|
|
|
mdp.packetTypeAndFlags=MDP_VOMPEVENT;
|
|
|
|
mdp.vompevent.flags=VOMPEVENT_AUDIOPACKET;
|
|
|
|
mdp.vompevent.call_session_token=c->sample_call_session_token;
|
|
|
|
mdp.vompevent.audio_sample_codec=c->sample_codec;
|
|
|
|
bcopy(&c->buffer[0],&mdp.vompevent.audio_bytes[0],
|
|
|
|
vomp_sample_size(c->sample_codec));
|
2012-05-06 12:53:58 +00:00
|
|
|
mdp.vompevent.audio_sample_bytes=vomp_sample_size(c->sample_codec);
|
2012-05-02 16:58:39 +00:00
|
|
|
|
2012-05-06 12:53:58 +00:00
|
|
|
if (overlay_mdp_send(&mdp,0,0)) WHY("Send audio failed.");
|
2012-05-02 16:58:39 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2012-05-02 17:30:34 +00:00
|
|
|
|
2012-05-11 21:54:52 +00:00
|
|
|
int monitor_announce_bundle(rhizome_manifest *m)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char msg[1024];
|
2012-05-23 06:34:00 +00:00
|
|
|
const char *service = rhizome_manifest_get(m, "service", NULL, 0);
|
|
|
|
const char *sender = rhizome_manifest_get(m, "sender", NULL, 0);
|
|
|
|
const char *recipient = rhizome_manifest_get(m, "recipient", NULL, 0);
|
|
|
|
snprintf(msg,1024,"\nBUNDLE:%s:%s:%lld:%lld:%s:%s:%s\n",
|
|
|
|
/* XXX bit of a hack here, since SIDs and cryptosign public keys have the same length */
|
2012-05-11 21:54:52 +00:00
|
|
|
overlay_render_sid(m->cryptoSignPublic),
|
2012-05-23 06:34:00 +00:00
|
|
|
service ? service : "",
|
2012-05-11 21:54:52 +00:00
|
|
|
m->version,
|
|
|
|
m->fileLength,
|
2012-05-23 06:34:00 +00:00
|
|
|
sender,
|
|
|
|
recipient,
|
2012-05-11 21:54:52 +00:00
|
|
|
m->dataFileName?m->dataFileName:"");
|
|
|
|
for(i=0;i<monitor_socket_count;i++)
|
|
|
|
{
|
|
|
|
if (!(monitor_sockets[i].flags&MONITOR_RHIZOME))
|
|
|
|
continue;
|
|
|
|
nextInSameSlot:
|
|
|
|
errno=0;
|
|
|
|
fcntl(monitor_sockets[i].socket,F_SETFL,
|
|
|
|
fcntl(monitor_sockets[i].socket, F_GETFL, NULL)|O_NONBLOCK);
|
|
|
|
write(monitor_sockets[i].socket,msg,strlen(msg));
|
|
|
|
if (errno&&(errno!=EINTR)&&(errno!=EAGAIN)) {
|
|
|
|
/* error sending update, so kill monitor socket */
|
|
|
|
WHYF("Tearing down monitor client #%d due to errno=%d",
|
|
|
|
i,errno);
|
|
|
|
close(monitor_sockets[i].socket);
|
|
|
|
if (i==monitor_socket_count-1) {
|
|
|
|
monitor_socket_count--;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
bcopy(&monitor_sockets[monitor_socket_count-1],
|
|
|
|
&monitor_sockets[i],
|
|
|
|
sizeof(struct monitor_context));
|
|
|
|
monitor_socket_count--;
|
|
|
|
goto nextInSameSlot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-02 17:30:34 +00:00
|
|
|
int monitor_call_status(vomp_call_state *call)
|
|
|
|
{
|
2012-05-02 18:07:03 +00:00
|
|
|
int i;
|
|
|
|
char msg[1024];
|
2012-05-03 18:28:34 +00:00
|
|
|
int show=0;
|
|
|
|
if (call->local.state>call->local.last_state) show=1;
|
|
|
|
if (call->remote.state>call->remote.last_state) show=1;
|
|
|
|
call->local.last_state=call->local.state;
|
|
|
|
call->remote.last_state=call->remote.state;
|
|
|
|
if (show) {
|
2012-05-06 23:01:53 +00:00
|
|
|
if (0) WHYF("sending call status to monitor");
|
2012-05-10 22:30:09 +00:00
|
|
|
snprintf(msg,1024,"\nCALLSTATUS:%06x:%06x:%d:%d:%d:%s:%s:%s:%s\n",
|
2012-05-03 18:28:34 +00:00
|
|
|
call->local.session,call->remote.session,
|
2012-05-04 18:28:02 +00:00
|
|
|
call->local.state,call->remote.state,
|
2012-05-10 22:30:09 +00:00
|
|
|
call->fast_audio,
|
2012-05-04 18:28:02 +00:00
|
|
|
overlay_render_sid(call->local.sid),
|
|
|
|
overlay_render_sid(call->remote.sid),
|
|
|
|
call->local.did,call->remote.did);
|
2012-05-08 22:05:05 +00:00
|
|
|
msg[1023]=0;
|
2012-05-03 18:28:34 +00:00
|
|
|
for(i=0;i<monitor_socket_count;i++)
|
|
|
|
{
|
|
|
|
if (!(monitor_sockets[i].flags&MONITOR_VOMP))
|
2012-05-02 18:07:03 +00:00
|
|
|
continue;
|
2012-05-03 18:28:34 +00:00
|
|
|
nextInSameSlot:
|
|
|
|
errno=0;
|
|
|
|
fcntl(monitor_sockets[i].socket,F_SETFL,
|
|
|
|
fcntl(monitor_sockets[i].socket, F_GETFL, NULL)|O_NONBLOCK);
|
|
|
|
write(monitor_sockets[i].socket,msg,strlen(msg));
|
|
|
|
if (errno&&(errno!=EINTR)&&(errno!=EAGAIN)) {
|
|
|
|
/* error sending update, so kill monitor socket */
|
|
|
|
WHYF("Tearing down monitor client #%d due to errno=%d",
|
|
|
|
i,errno);
|
|
|
|
close(monitor_sockets[i].socket);
|
|
|
|
if (i==monitor_socket_count-1) {
|
|
|
|
monitor_socket_count--;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
bcopy(&monitor_sockets[monitor_socket_count-1],
|
|
|
|
&monitor_sockets[i],
|
|
|
|
sizeof(struct monitor_context));
|
|
|
|
monitor_socket_count--;
|
|
|
|
goto nextInSameSlot;
|
|
|
|
}
|
2012-05-02 18:07:03 +00:00
|
|
|
}
|
|
|
|
}
|
2012-05-03 18:28:34 +00:00
|
|
|
}
|
2012-05-02 17:30:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-18 10:50:18 +00:00
|
|
|
int monitor_announce_peer(unsigned char *sid)
|
|
|
|
{
|
|
|
|
unsigned char msg[1024];
|
2012-05-21 04:43:36 +00:00
|
|
|
snprintf((char *)msg,1024,"\nNEWPEER:%s\n",overlay_render_sid(sid));
|
2012-05-21 03:17:19 +00:00
|
|
|
monitor_tell_clients(msg,strlen((char *)msg),MONITOR_PEERS);
|
2012-05-18 10:50:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-02 17:30:34 +00:00
|
|
|
int monitor_send_audio(vomp_call_state *call,overlay_mdp_frame *audio)
|
|
|
|
{
|
2012-05-08 22:05:05 +00:00
|
|
|
if (0) WHYF("Tell call monitor about audio for call %06x:%06x",
|
|
|
|
call->local.session,call->remote.session);
|
2012-05-02 18:07:03 +00:00
|
|
|
|
|
|
|
int sample_bytes=vomp_sample_size(audio->vompevent.audio_sample_codec);
|
|
|
|
unsigned char msg[1024+MAX_AUDIO_BYTES];
|
2012-05-03 18:14:41 +00:00
|
|
|
/* All commands followed by binary data start with *len:, so that
|
2012-05-08 03:25:57 +00:00
|
|
|
they can be easily parsed at the far end, even if not supported.
|
|
|
|
Put newline at start of these so that receiving data in command
|
|
|
|
mode doesn't confuse the parser. */
|
2012-05-02 18:07:03 +00:00
|
|
|
snprintf((char *)msg,1024,
|
2012-05-08 03:25:57 +00:00
|
|
|
"\n*%d:AUDIOPACKET:%06x:%06x:%d:%d:%d:%lld:%lld\n",
|
2012-05-03 18:14:41 +00:00
|
|
|
sample_bytes,
|
2012-05-02 18:07:03 +00:00
|
|
|
call->local.session,call->remote.session,
|
|
|
|
call->local.state,call->remote.state,
|
|
|
|
audio->vompevent.audio_sample_codec,
|
|
|
|
audio->vompevent.audio_sample_starttime,
|
|
|
|
audio->vompevent.audio_sample_endtime);
|
|
|
|
int msglen=strlen((char *)msg);
|
|
|
|
bcopy(&audio->vompevent.audio_bytes[0],
|
|
|
|
&msg[msglen],sample_bytes);
|
|
|
|
msglen+=sample_bytes;
|
|
|
|
|
2012-05-21 03:17:19 +00:00
|
|
|
monitor_tell_clients(msg,msglen,MONITOR_VOMP);
|
2012-05-18 10:50:18 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-21 03:17:19 +00:00
|
|
|
int monitor_tell_clients(unsigned char *msg,int msglen,int mask)
|
2012-05-18 10:50:18 +00:00
|
|
|
{
|
2012-05-02 18:07:03 +00:00
|
|
|
int i;
|
|
|
|
for(i=0;i<monitor_socket_count;i++)
|
|
|
|
{
|
2012-05-21 03:17:19 +00:00
|
|
|
if (!(monitor_sockets[i].flags&mask))
|
2012-05-02 18:11:26 +00:00
|
|
|
continue;
|
2012-05-02 18:07:03 +00:00
|
|
|
nextInSameSlot:
|
|
|
|
errno=0;
|
2012-05-03 03:34:17 +00:00
|
|
|
fcntl(monitor_sockets[i].socket,F_SETFL,
|
|
|
|
fcntl(monitor_sockets[i].socket, F_GETFL, NULL)|O_NONBLOCK);
|
2012-05-02 18:07:03 +00:00
|
|
|
write(monitor_sockets[i].socket,msg,msglen);
|
2012-05-08 22:05:05 +00:00
|
|
|
// WHYF("Writing AUDIOPACKET to client");
|
2012-05-02 18:07:03 +00:00
|
|
|
if (errno&&(errno!=EINTR)&&(errno!=EAGAIN)) {
|
|
|
|
/* error sending update, so kill monitor socket */
|
2012-05-03 07:32:57 +00:00
|
|
|
WHYF("Tearing down monitor client #%d due to errno=%d",
|
|
|
|
i,errno);
|
2012-05-02 18:07:03 +00:00
|
|
|
close(monitor_sockets[i].socket);
|
|
|
|
if (i==monitor_socket_count-1) {
|
|
|
|
monitor_socket_count--;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
bcopy(&monitor_sockets[monitor_socket_count-1],
|
|
|
|
&monitor_sockets[i],
|
|
|
|
sizeof(struct monitor_context));
|
|
|
|
monitor_socket_count--;
|
|
|
|
goto nextInSameSlot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-05-02 17:30:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2012-05-21 11:15:07 +00:00
|
|
|
|
|
|
|
/* Check if there is a running server, and whether it is responding or not.
|
|
|
|
*/
|
|
|
|
int server_probe(int *pid)
|
|
|
|
{
|
|
|
|
int fd=-1;
|
|
|
|
struct sockaddr_un addr;
|
|
|
|
if ( (fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
|
|
|
|
return SERVER_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&addr, 0, sizeof(addr));
|
|
|
|
addr.sun_family = AF_UNIX;
|
|
|
|
addr.sun_path[0]=0;
|
|
|
|
snprintf(&addr.sun_path[1],100,"org.servalproject.servald.monitor.socket");
|
|
|
|
int len = 1+strlen(&addr.sun_path[1]) + sizeof(addr.sun_family);
|
|
|
|
char *p=(char *)&addr;
|
2012-05-25 06:29:57 +00:00
|
|
|
if (0) DEBUGF("last char='%c' %02x\n",p[len-1],p[len-1]);
|
2012-05-21 11:15:07 +00:00
|
|
|
|
|
|
|
if (connect(fd, (struct sockaddr*)&addr, len) == -1) {
|
|
|
|
close(fd);
|
|
|
|
return SERVER_NOTRUNNING;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Give the server 2 seconds to send us something */
|
|
|
|
struct pollfd fds[1];
|
|
|
|
fds[0].fd=fd;
|
|
|
|
fds[0].events=POLLIN;
|
|
|
|
poll(fds,1,2000);
|
|
|
|
|
|
|
|
fcntl(fd,F_SETFL,fcntl(fd, F_GETFL, NULL)|O_NONBLOCK);
|
|
|
|
|
|
|
|
*pid=-1;
|
|
|
|
if (pid!=NULL) {
|
|
|
|
#if defined(HAVE_LINUX_STRUCT_UCRED)
|
|
|
|
struct ucred ucred;
|
|
|
|
#elif defined(HAVE_BSD_STRUCT_UCRED)
|
|
|
|
struct xucred ucred;
|
|
|
|
#else
|
|
|
|
#error "Unknown ucred struct"
|
|
|
|
#endif
|
|
|
|
socklen_t len=sizeof(ucred);
|
|
|
|
int res=getsockopt(fd,SOL_SOCKET,SO_PEERCRED,&ucred,&len);
|
|
|
|
if (len>sizeof(ucred)) {
|
|
|
|
WHYF("This is likely to be bad (memory overrun by getsockopt())");
|
|
|
|
}
|
|
|
|
if (res) {
|
|
|
|
WHY("Failed to read credentials of monitor.socket client");
|
|
|
|
} else {
|
|
|
|
#if defined(HAVE_LINUX_STRUCT_UCRED)
|
|
|
|
*pid = ucred.pid;
|
|
|
|
#elif defined(HAVE_BSD_STRUCT_UCRED)
|
|
|
|
#warning cannot get PID from ucred on BSD
|
|
|
|
*pid = -1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char buff[1024];
|
|
|
|
int bytes=read(fd,buff,1024);
|
|
|
|
close(fd);
|
|
|
|
if (bytes<0) {
|
|
|
|
return SERVER_NOTRESPONDING;
|
|
|
|
} else if (bytes==0) {
|
|
|
|
// Could just be really busy.
|
|
|
|
return SERVER_NOTRESPONDING;
|
|
|
|
} else {
|
|
|
|
return SERVER_RUNNING;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|