1998-12-27 21:47:14 +00:00
|
|
|
/*
|
1999-12-14 21:14:28 +00:00
|
|
|
* Copyright (c) 1998,1999 Martin Husemann. All rights reserved.
|
1998-12-27 21:47:14 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the author nor the names of any co-contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
* 4. Altered versions must be plainly marked as such, and must not be
|
|
|
|
* misrepresented as being the original software and/or documentation.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*---------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* i4b daemon - network monitor server module
|
|
|
|
* ------------------------------------------
|
|
|
|
*
|
2000-10-09 14:22:51 +00:00
|
|
|
* $Id: monitor.c,v 1.30 2000/10/09 12:53:29 hm Exp $
|
1998-12-27 21:47:14 +00:00
|
|
|
*
|
1999-12-14 21:14:28 +00:00
|
|
|
* $FreeBSD$
|
1998-12-27 21:47:14 +00:00
|
|
|
*
|
1999-12-14 21:14:28 +00:00
|
|
|
* last edit-date: [Mon Dec 13 21:47:44 1999]
|
1998-12-27 21:47:14 +00:00
|
|
|
*
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "isdnd.h"
|
|
|
|
|
|
|
|
#ifndef I4B_EXTERNAL_MONITOR
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* dummy version of routines needed by config file parser
|
1998-12-27 21:47:14 +00:00
|
|
|
* (config files should be valid with and without external montioring
|
1999-12-14 21:14:28 +00:00
|
|
|
* support compiled into the daemon)
|
|
|
|
*/
|
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
void monitor_clear_rights()
|
|
|
|
{ }
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
int monitor_start_rights(const char *clientspec)
|
|
|
|
{ return I4BMAR_OK; }
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
void monitor_add_rights(int rights_mask)
|
|
|
|
{ }
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
void monitor_fixup_rights()
|
|
|
|
{ }
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#include "monitor.h"
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
|
|
|
#ifndef I4B_NOTCPIP_MONITOR
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-05-26 02:09:24 +00:00
|
|
|
static TAILQ_HEAD(rights_q, monitor_rights) rights = TAILQ_HEAD_INITIALIZER(rights);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
static struct monitor_rights * local_rights = NULL; /* entry for local socket */
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
/* for each active monitor connection we have one of this: */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
struct monitor_connection {
|
2000-05-26 02:09:24 +00:00
|
|
|
TAILQ_ENTRY(monitor_connection) connections;
|
1998-12-27 21:47:14 +00:00
|
|
|
int sock; /* socket for this connection */
|
|
|
|
int rights; /* active rights for this connection */
|
|
|
|
int events; /* bitmask of events client is interested in */
|
1999-12-14 21:14:28 +00:00
|
|
|
char source[FILENAME_MAX];
|
1998-12-27 21:47:14 +00:00
|
|
|
};
|
|
|
|
|
2000-05-26 02:09:24 +00:00
|
|
|
static TAILQ_HEAD(connections_tq, monitor_connection) connections = TAILQ_HEAD_INITIALIZER(connections);
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
/* local prototypes */
|
1999-12-14 21:14:28 +00:00
|
|
|
static int cmp_rights(const struct monitor_rights *pa, const struct monitor_rights *pb);
|
|
|
|
static int monitor_command(struct monitor_connection *con, int fd, int rights);
|
|
|
|
static void cmd_dump_rights(int fd, int rights, u_int8_t *cmd, const char * source);
|
|
|
|
static void cmd_dump_mcons(int fd, int rights, u_int8_t *cmd, const char * source);
|
|
|
|
static void cmd_reread_cfg(int fd, int rights, u_int8_t *cmd, const char * source);
|
|
|
|
static void cmd_hangup(int fd, int rights, u_int8_t *cmd, const char * source);
|
|
|
|
static void monitor_broadcast(int mask, u_int8_t *pkt, size_t bytes);
|
1998-12-27 21:47:14 +00:00
|
|
|
static int anybody(int mask);
|
1999-12-14 21:14:28 +00:00
|
|
|
static void hangup_channel(int controller, int channel, const char *source);
|
|
|
|
static ssize_t sock_read(int fd, void *buf, size_t nbytes);
|
|
|
|
static ssize_t sock_write(int fd, void *buf, size_t nbytes);
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Due to the way we structure config files, the rights for an external
|
|
|
|
* monitor might be stated in multiple steps. First a call to
|
|
|
|
* monitor_start_rights opens an entry. Further (optional) calls to
|
|
|
|
* montior_add_rights assemble additional rights for this "current"
|
|
|
|
* entry. When closing the sys-file section of the config file, the
|
|
|
|
* "current" entry becomes invalid.
|
|
|
|
*/
|
1999-12-14 21:14:28 +00:00
|
|
|
static struct monitor_rights * cur_add_entry = NULL;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Initialize the monitor server module. This affects only active
|
|
|
|
* connections, the access rights are not modified here!
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_init(void)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
struct monitor_connection * con;
|
1998-12-27 21:47:14 +00:00
|
|
|
accepted = 0;
|
1999-12-14 21:14:28 +00:00
|
|
|
while ((con = TAILQ_FIRST(&connections)) != NULL)
|
|
|
|
{
|
|
|
|
TAILQ_REMOVE(&connections, con, connections);
|
|
|
|
free(con);
|
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Prepare for exit
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_exit(void)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
struct monitor_connection *c;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
/* Close all open connections. */
|
1999-12-14 21:14:28 +00:00
|
|
|
while((c = TAILQ_FIRST(&connections)) != NULL) {
|
|
|
|
close(c->sock);
|
|
|
|
TAILQ_REMOVE(&connections, c, connections);
|
|
|
|
free(c);
|
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Initialize access rights. No active connections are affected!
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_clear_rights(void)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
struct monitor_rights *r;
|
|
|
|
while ((r = TAILQ_FIRST(&rights)) != NULL) {
|
|
|
|
TAILQ_REMOVE(&rights, r, list);
|
|
|
|
free(r);
|
|
|
|
}
|
|
|
|
cur_add_entry = NULL;
|
|
|
|
local_rights = NULL;
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Add an entry to the access lists. The clientspec either is
|
|
|
|
* the name of the local socket or a host- or networkname or
|
|
|
|
* numeric ip/host-bit-len spec.
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
int
|
|
|
|
monitor_start_rights(const char *clientspec)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
|
|
|
struct monitor_rights r;
|
|
|
|
|
|
|
|
/* initialize the new rights entry */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
memset(&r, 0, sizeof r);
|
|
|
|
|
|
|
|
/* check clientspec */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if (*clientspec == '/')
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
struct sockaddr_un sa;
|
|
|
|
|
|
|
|
/* this is a local socket spec, check if we already have one */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if (local_rights != NULL)
|
1998-12-27 21:47:14 +00:00
|
|
|
return I4BMAR_DUP;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
/* does it fit in a local socket address? */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
if (strlen(clientspec) > sizeof sa.sun_path)
|
|
|
|
return I4BMAR_LENGTH;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
r.local = 1;
|
|
|
|
strcpy(r.name, clientspec);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
#ifndef I4B_NOTCPIP_MONITOR
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
/* remote entry, parse host/net and cidr */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
struct monitor_rights * rp;
|
1998-12-27 21:47:14 +00:00
|
|
|
char hostname[FILENAME_MAX];
|
|
|
|
char *p;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
p = strchr(clientspec, '/');
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if (!p)
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
struct hostent *host;
|
|
|
|
u_int32_t hn;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
/* must be a host spec */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
r.mask = ~0;
|
|
|
|
host = gethostbyname(clientspec);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
if (!host)
|
|
|
|
return I4BMAR_NOIP;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
memcpy(&hn, host->h_addr_list[0], sizeof hn);
|
|
|
|
r.net = (u_int32_t)ntohl(hn);
|
1999-12-14 21:14:28 +00:00
|
|
|
}
|
|
|
|
else if(p[1])
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
/* must be net/cidr spec */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
int l;
|
|
|
|
struct netent *net;
|
|
|
|
u_int32_t s = ~0U;
|
|
|
|
int num = strtol(p+1, NULL, 10);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
if (num < 0 || num > 32)
|
|
|
|
return I4BMAR_CIDR;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
s >>= num;
|
|
|
|
s ^= ~0U;
|
|
|
|
l = p - clientspec;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
if (l >= sizeof hostname)
|
|
|
|
return I4BMAR_LENGTH;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
strncpy(hostname, clientspec, l);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
hostname[l] = '\0';
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
net = getnetbyname(hostname);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
if (net == NULL)
|
|
|
|
r.net = (u_int32_t)inet_network(hostname);
|
|
|
|
else
|
|
|
|
r.net = (u_int32_t)net->n_net;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
r.mask = s;
|
|
|
|
r.net &= s;
|
1999-12-14 21:14:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
return I4BMAR_CIDR;
|
1999-12-14 21:14:28 +00:00
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
/* check for duplicate entry */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
for (rp = TAILQ_FIRST(&rights); rp != NULL; rp = TAILQ_NEXT(rp, list))
|
|
|
|
{
|
|
|
|
if (rp->mask == r.mask &&
|
|
|
|
rp->net == r.net &&
|
|
|
|
rp->local == r.local)
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
return I4BMAR_DUP;
|
1999-12-14 21:14:28 +00:00
|
|
|
}
|
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
#endif
|
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
r.rights = 0;
|
|
|
|
|
|
|
|
/* entry ok, add it to the collection */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
cur_add_entry = malloc(sizeof(r));
|
|
|
|
memcpy(cur_add_entry, &r, sizeof(r));
|
|
|
|
TAILQ_INSERT_TAIL(&rights, cur_add_entry, list);
|
|
|
|
|
|
|
|
if(r.local)
|
|
|
|
local_rights = cur_add_entry;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-03-07 16:12:47 +00:00
|
|
|
DBGL(DL_RCCF, (log(LL_DBG, "system: monitor = %s", clientspec)));
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
return I4BMAR_OK;
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Add rights to the currently constructed entry - if any.
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_add_rights(int rights_mask)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
if(cur_add_entry == NULL)
|
|
|
|
return; /* noone under construction */
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
cur_add_entry->rights |= rights_mask;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-03-07 16:12:47 +00:00
|
|
|
DBGL(DL_RCCF, (log(LL_DBG, "system: monitor-access = 0x%x", rights_mask)));
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* All rights have been added now. Sort the to get most specific
|
|
|
|
* host/net masks first, so we can travel the list and use the first
|
|
|
|
* match for actual rights.
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_fixup_rights(void)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
struct monitor_rights * cur, * test, * next;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
/* no more rights may be added to the current entry */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
cur_add_entry = NULL;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/* sort the rights */
|
|
|
|
for (next = NULL, cur = TAILQ_FIRST(&rights); cur != NULL; cur = next)
|
|
|
|
{
|
|
|
|
next = TAILQ_NEXT(cur, list);
|
|
|
|
for (test = TAILQ_FIRST(&rights); test != NULL && test != cur; test = TAILQ_NEXT(test, list))
|
|
|
|
{
|
|
|
|
if (cmp_rights(cur, test) > 0) {
|
|
|
|
/* move cur up the list and insert before test */
|
|
|
|
TAILQ_REMOVE(&rights, cur, list);
|
|
|
|
if (test == TAILQ_FIRST(&rights))
|
|
|
|
TAILQ_INSERT_HEAD(&rights, cur, list);
|
|
|
|
else
|
|
|
|
TAILQ_INSERT_BEFORE(test, cur, list);
|
1998-12-27 21:47:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
* comparator for rights
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
|
|
|
cmp_rights(const struct monitor_rights *pa, const struct monitor_rights *pb)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
|
|
|
u_int32_t mask;
|
|
|
|
|
|
|
|
/* local sorts first */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
if (pa->local)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* which is the less specific netmask? */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
mask = pa->mask;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
if ((pb->mask & mask) == 0)
|
|
|
|
mask = pb->mask;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
/* are the entries disjunct? */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if ((pa->net & mask) != (pb->net & mask))
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
/* simply compare net part of address */
|
|
|
|
return ((pa->net & mask) < (pb->net & mask)) ? -1 : 1;
|
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
/* One entry is part of the others net. We already now "mask" is
|
|
|
|
* the netmask of the less specific (i.e. greater) one */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
return (pa->mask == mask) ? 1 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef I4B_NOTCPIP_MONITOR
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Check if access rights for a remote socket are specified and
|
|
|
|
* create this socket. Return -1 otherwise.
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
int
|
|
|
|
monitor_create_remote_socket(int portno)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_in sa;
|
|
|
|
int val;
|
1999-12-14 21:14:28 +00:00
|
|
|
int remotesockfd;
|
|
|
|
|
|
|
|
remotesockfd = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
|
|
|
|
if(remotesockfd == -1)
|
|
|
|
{
|
|
|
|
log(LL_MER, "could not create remote monitor socket: %s", strerror(errno));
|
|
|
|
return(-1);
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
val = 1;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if(setsockopt(remotesockfd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof val))
|
|
|
|
{
|
|
|
|
log(LL_MER, "could not setsockopt: %s", strerror(errno));
|
|
|
|
return(-1);
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
memset(&sa, 0, sizeof sa);
|
|
|
|
sa.sin_len = sizeof sa;
|
|
|
|
sa.sin_family = AF_INET;
|
|
|
|
sa.sin_port = htons(portno);
|
|
|
|
sa.sin_addr.s_addr = htonl(INADDR_ANY);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if(bind(remotesockfd, (struct sockaddr *)&sa, sizeof sa) == -1)
|
|
|
|
{
|
|
|
|
log(LL_MER, "could not bind remote monitor socket to port %d: %s", portno, strerror(errno));
|
|
|
|
return(-1);
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if(listen(remotesockfd, 0))
|
|
|
|
{
|
|
|
|
log(LL_MER, "could not listen on monitor socket: %s", strerror(errno));
|
|
|
|
return(-1);
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
return(remotesockfd);
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Check if access rights for a local socket are specified and
|
|
|
|
* create this socket. Return -1 otherwise.
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
int
|
|
|
|
monitor_create_local_socket(void)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
|
|
|
int s;
|
|
|
|
struct sockaddr_un sa;
|
|
|
|
|
|
|
|
/* check for a local entry */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if (local_rights == NULL)
|
|
|
|
return(-1);
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
/* create and setup socket */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
s = socket(AF_LOCAL, SOCK_STREAM, 0);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if (s == -1)
|
|
|
|
{
|
|
|
|
log(LL_MER, "could not create local monitor socket, errno = %d", errno);
|
|
|
|
return(-1);
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
unlink(local_rights->name);
|
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
memset(&sa, 0, sizeof sa);
|
|
|
|
sa.sun_len = sizeof sa;
|
|
|
|
sa.sun_family = AF_LOCAL;
|
1999-12-14 21:14:28 +00:00
|
|
|
strcpy(sa.sun_path, local_rights->name);
|
|
|
|
|
|
|
|
if (bind(s, (struct sockaddr *)&sa, SUN_LEN(&sa)))
|
|
|
|
{
|
|
|
|
log(LL_MER, "could not bind local monitor socket [%s], errno = %d", local_rights->name, errno);
|
|
|
|
return(-1);
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
chmod(local_rights->name, 0500);
|
|
|
|
|
|
|
|
if (listen(s, 0))
|
|
|
|
{
|
|
|
|
log(LL_MER, "could not listen on local monitor socket, errno = %d", errno);
|
|
|
|
return(-1);
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
return(s);
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Prepare a fd_set for a select call. Add all our local
|
|
|
|
* filedescriptors to the set, increment max_fd if appropriate.
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_prepselect(fd_set *selset, int *max_fd)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
struct monitor_connection * con;
|
|
|
|
|
|
|
|
for (con = TAILQ_FIRST(&connections); con != NULL; con = TAILQ_NEXT(con, connections))
|
|
|
|
{
|
|
|
|
int fd = con->sock;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
if (fd > *max_fd)
|
|
|
|
*max_fd = fd;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
FD_SET(fd, selset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Check if the result from a select call indicates something
|
|
|
|
* to do for us.
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_handle_input(fd_set *selset)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
struct monitor_connection * con, * next;
|
|
|
|
|
|
|
|
for (next = NULL, con = TAILQ_FIRST(&connections); con != NULL; con = next)
|
|
|
|
{
|
|
|
|
int fd = con->sock;
|
|
|
|
next = TAILQ_NEXT(con, connections);
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
if (FD_ISSET(fd, selset))
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
/* handle command from this client */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if (monitor_command(con, fd, con->rights) != 0)
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
/* broken or closed connection */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
char source[FILENAME_MAX];
|
|
|
|
|
|
|
|
strcpy(source, con->source);
|
|
|
|
TAILQ_REMOVE(&connections, con, connections);
|
|
|
|
free(con);
|
|
|
|
log(LL_DMN, "monitor closed from %s", source );
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* all connections gone? */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if (TAILQ_FIRST(&connections) == NULL)
|
1998-12-27 21:47:14 +00:00
|
|
|
accepted = 0;
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Try new incoming connection on the given socket.
|
|
|
|
* Setup client descriptor and send initial data.
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_handle_connect(int sockfd, int is_local)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
|
|
|
struct monitor_connection *con;
|
1999-12-14 21:14:28 +00:00
|
|
|
struct monitor_rights *rp;
|
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
#ifndef I4B_NOTCPIP_MONITOR
|
|
|
|
struct sockaddr_in ia;
|
|
|
|
u_int32_t ha = 0;
|
|
|
|
#endif
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
struct sockaddr_un ua;
|
1999-12-14 21:14:28 +00:00
|
|
|
u_int8_t idata[I4B_MON_IDATA_SIZE];
|
|
|
|
int fd = -1, s, i, r_mask, t_events;
|
1998-12-27 21:47:14 +00:00
|
|
|
char source[FILENAME_MAX];
|
|
|
|
|
|
|
|
/* accept the connection */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if(is_local)
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
s = sizeof ua;
|
|
|
|
fd = accept(sockfd, (struct sockaddr *)&ua, &s);
|
1999-12-14 21:14:28 +00:00
|
|
|
strcpy(source, "local");
|
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
#ifndef I4B_NOTCPIP_MONITOR
|
1999-12-14 21:14:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct hostent *hp;
|
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
s = sizeof ia;
|
|
|
|
fd = accept(sockfd, (struct sockaddr *)&ia, &s);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
hp = gethostbyaddr((char *)&ia.sin_addr, 4, AF_INET);
|
|
|
|
|
|
|
|
if(hp == NULL)
|
|
|
|
snprintf(source, sizeof source, "%s (%s)", inet_ntoa(ia.sin_addr), inet_ntoa(ia.sin_addr));
|
|
|
|
else
|
|
|
|
snprintf(source, sizeof source, "%s (%s)", hp->h_name, inet_ntoa(ia.sin_addr));
|
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
memcpy(&ha, &ia.sin_addr.s_addr, sizeof ha);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
ha = ntohl(ha);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check the access rights of this connection */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
r_mask = 0;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
for (rp = TAILQ_FIRST(&rights); rp != NULL; rp = TAILQ_NEXT(rp, list))
|
|
|
|
{
|
|
|
|
if(rp->local)
|
|
|
|
{
|
|
|
|
if(is_local)
|
|
|
|
{
|
|
|
|
r_mask = rp->rights;
|
1998-12-27 21:47:14 +00:00
|
|
|
break;
|
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
#ifndef I4B_NOTCPIP_MONITOR
|
1999-12-14 21:14:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if((ha & rp->mask) == rp->net)
|
|
|
|
{
|
|
|
|
r_mask = rp->rights;
|
1998-12-27 21:47:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
if(r_mask == 0)
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
/* no rights - go away */
|
1999-12-14 21:14:28 +00:00
|
|
|
log(LL_MER, "monitor access denied from %s", source);
|
1998-12-27 21:47:14 +00:00
|
|
|
close(fd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
accepted = 1;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
con = malloc(sizeof(struct monitor_connection));
|
1998-12-27 21:47:14 +00:00
|
|
|
memset(con, 0, sizeof *con);
|
1999-12-14 21:14:28 +00:00
|
|
|
TAILQ_INSERT_TAIL(&connections, con, connections);
|
1998-12-27 21:47:14 +00:00
|
|
|
con->sock = fd;
|
|
|
|
con->rights = r_mask;
|
1999-12-14 21:14:28 +00:00
|
|
|
strcpy(con->source, source);
|
|
|
|
|
|
|
|
log(LL_DMN, "monitor opened from %s rights 0x%x", source, r_mask);
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
/* send initial data */
|
|
|
|
I4B_PREP_CMD(idata, I4B_MON_IDATA_CODE);
|
|
|
|
I4B_PUT_2B(idata, I4B_MON_IDATA_VERSMAJOR, MPROT_VERSION);
|
|
|
|
I4B_PUT_2B(idata, I4B_MON_IDATA_VERSMINOR, MPROT_REL);
|
|
|
|
I4B_PUT_2B(idata, I4B_MON_IDATA_NUMCTRL, ncontroller);
|
1999-12-14 21:14:28 +00:00
|
|
|
I4B_PUT_2B(idata, I4B_MON_IDATA_NUMENTR, nentries);
|
1998-12-27 21:47:14 +00:00
|
|
|
I4B_PUT_4B(idata, I4B_MON_IDATA_CLACCESS, r_mask);
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
if((sock_write(fd, idata, sizeof idata)) == -1)
|
|
|
|
{
|
|
|
|
log(LL_MER, "monitor_handle_connect: sock_write 1 error - %s", strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ncontroller; i++)
|
|
|
|
{
|
|
|
|
u_int8_t ictrl[I4B_MON_ICTRL_SIZE];
|
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
I4B_PREP_CMD(ictrl, I4B_MON_ICTRL_CODE);
|
|
|
|
I4B_PUT_STR(ictrl, I4B_MON_ICTRL_NAME, name_of_controller(isdn_ctrl_tab[i].ctrl_type, isdn_ctrl_tab[i].card_type));
|
|
|
|
I4B_PUT_2B(ictrl, I4B_MON_ICTRL_BUSID, 0);
|
|
|
|
I4B_PUT_4B(ictrl, I4B_MON_ICTRL_FLAGS, 0);
|
|
|
|
I4B_PUT_4B(ictrl, I4B_MON_ICTRL_NCHAN, 2);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if((sock_write(fd, ictrl, sizeof ictrl)) == -1)
|
|
|
|
{
|
|
|
|
log(LL_MER, "monitor_handle_connect: sock_write 2 error - %s", strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* send device names from entries */
|
|
|
|
|
|
|
|
for(i=0; i < nentries; i++) /* walk thru all entries */
|
|
|
|
{
|
|
|
|
u_int8_t ictrl[I4B_MON_IDEV_SIZE];
|
|
|
|
cfg_entry_t *p;
|
|
|
|
char nbuf[64];
|
|
|
|
p = &cfg_entry_tab[i]; /* get ptr to enry */
|
|
|
|
|
2000-10-09 09:07:45 +00:00
|
|
|
snprintf(nbuf, sizeof(nbuf), "%s%d ", bdrivername(p->usrdevicename), p->usrdeviceunit);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
I4B_PREP_CMD(ictrl, I4B_MON_IDEV_CODE);
|
|
|
|
/*XXX*/ I4B_PUT_2B(ictrl, I4B_MON_IDEV_STATE, 1);
|
|
|
|
I4B_PUT_STR(ictrl, I4B_MON_IDEV_NAME, nbuf);
|
|
|
|
|
|
|
|
if((sock_write(fd, ictrl, sizeof ictrl)) == -1)
|
|
|
|
{
|
|
|
|
log(LL_MER, "monitor_handle_connect: sock_write 3 error - %s", strerror(errno));
|
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
/*XXX*/ t_events = con->events;
|
|
|
|
/*XXX*/ con->events = -1;
|
|
|
|
|
|
|
|
/* current state of controller(s) */
|
|
|
|
|
|
|
|
for(i=0; i < ncontroller; i++)
|
|
|
|
{
|
|
|
|
monitor_evnt_tei(i, isdn_ctrl_tab[i].tei);
|
|
|
|
monitor_evnt_l12stat(i, LAYER_ONE, isdn_ctrl_tab[i].l1stat);
|
|
|
|
monitor_evnt_l12stat(i, LAYER_TWO, isdn_ctrl_tab[i].l2stat);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* current state of entries */
|
|
|
|
|
|
|
|
for(i=0; i < nentries; i++)
|
|
|
|
{
|
|
|
|
cfg_entry_t *cep = &cfg_entry_tab[i];
|
|
|
|
|
|
|
|
if(cep->state == ST_CONNECTED)
|
|
|
|
{
|
|
|
|
monitor_evnt_connect(cep);
|
|
|
|
monitor_evnt_acct(cep);
|
|
|
|
monitor_evnt_charge(cep, cep->charge, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*XXX*/ con->events = t_events;
|
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
* dump all monitor rights
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
cmd_dump_rights(int fd, int r_mask, u_int8_t *cmd, const char *source)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
struct monitor_rights * r;
|
|
|
|
int num_rights;
|
|
|
|
u_int8_t drini[I4B_MON_DRINI_SIZE];
|
|
|
|
u_int8_t dr[I4B_MON_DR_SIZE];
|
|
|
|
|
|
|
|
for (num_rights = 0, r = TAILQ_FIRST(&rights); r != NULL; r = TAILQ_NEXT(r, list))
|
|
|
|
num_rights++;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
I4B_PREP_EVNT(drini, I4B_MON_DRINI_CODE);
|
1999-12-14 21:14:28 +00:00
|
|
|
I4B_PUT_2B(drini, I4B_MON_DRINI_COUNT, num_rights);
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
if((sock_write(fd, drini, sizeof drini)) == -1)
|
|
|
|
{
|
|
|
|
log(LL_MER, "cmd_dump_rights: sock_write 1 error - %s", strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (r = TAILQ_FIRST(&rights); r != NULL; r = TAILQ_NEXT(r, list))
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
I4B_PREP_EVNT(dr, I4B_MON_DR_CODE);
|
1999-12-14 21:14:28 +00:00
|
|
|
I4B_PUT_4B(dr, I4B_MON_DR_RIGHTS, r->rights);
|
|
|
|
I4B_PUT_4B(dr, I4B_MON_DR_NET, r->net);
|
|
|
|
I4B_PUT_4B(dr, I4B_MON_DR_MASK, r->mask);
|
|
|
|
I4B_PUT_1B(dr, I4B_MON_DR_LOCAL, r->local);
|
|
|
|
if((sock_write(fd, dr, sizeof dr)) == -1)
|
|
|
|
{
|
|
|
|
log(LL_MER, "cmd_dump_rights: sock_write 2 error - %s", strerror(errno));
|
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
* rescan config file
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
cmd_reread_cfg(int fd, int rights, u_int8_t *cmd, const char * source)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
|
|
|
rereadconfig(42);
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
* drop one connection
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
cmd_hangup(int fd, int rights, u_int8_t *cmd, const char * source)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
|
|
|
int channel = I4B_GET_4B(cmd, I4B_MON_HANGUP_CHANNEL);
|
1999-12-14 21:14:28 +00:00
|
|
|
int ctrl = I4B_GET_4B(cmd, I4B_MON_HANGUP_CTRL);
|
|
|
|
|
|
|
|
hangup_channel(ctrl, channel, source);
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
* dump all active monitor connections
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
cmd_dump_mcons(int fd, int rights, u_int8_t *cmd, const char * source)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
int num_connections;
|
|
|
|
struct monitor_connection *con;
|
|
|
|
u_int8_t dcini[I4B_MON_DCINI_SIZE];
|
|
|
|
|
|
|
|
for (num_connections = 0, con = TAILQ_FIRST(&connections); con != NULL; con = TAILQ_NEXT(con, connections))
|
|
|
|
num_connections++;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
I4B_PREP_EVNT(dcini, I4B_MON_DCINI_CODE);
|
1999-12-14 21:14:28 +00:00
|
|
|
I4B_PUT_2B(dcini, I4B_MON_DCINI_COUNT, num_connections);
|
|
|
|
|
|
|
|
if((sock_write(fd, dcini, sizeof dcini)) == -1)
|
|
|
|
{
|
|
|
|
log(LL_MER, "cmd_dump_mcons: sock_write 1 error - %s", strerror(errno));
|
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
for (con = TAILQ_FIRST(&connections); con != NULL; con = TAILQ_NEXT(con, connections))
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
#ifndef I4B_NOTCPIP_MONITOR
|
|
|
|
int namelen;
|
|
|
|
struct sockaddr_in name;
|
|
|
|
#endif
|
1999-12-14 21:14:28 +00:00
|
|
|
u_int8_t dc[I4B_MON_DC_SIZE];
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
I4B_PREP_EVNT(dc, I4B_MON_DC_CODE);
|
1999-12-14 21:14:28 +00:00
|
|
|
I4B_PUT_4B(dc, I4B_MON_DC_RIGHTS, con->rights);
|
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
#ifndef I4B_NOTCPIP_MONITOR
|
|
|
|
namelen = sizeof name;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if (getpeername(con->sock, (struct sockaddr*)&name, &namelen) == 0)
|
1998-12-27 21:47:14 +00:00
|
|
|
memcpy(dc+I4B_MON_DC_WHO, &name.sin_addr, sizeof name.sin_addr);
|
|
|
|
#endif
|
1999-12-14 21:14:28 +00:00
|
|
|
if((sock_write(fd, dc, sizeof dc)) == -1)
|
|
|
|
{
|
|
|
|
log(LL_MER, "cmd_dump_mcons: sock_write 2 error - %s", strerror(errno));
|
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Handle a command from the given socket. The client
|
|
|
|
* has rights as specified in the rights parameter.
|
|
|
|
* Return non-zero if connection is closed.
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
|
|
|
monitor_command(struct monitor_connection * con, int fd, int rights)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
|
|
|
char cmd[I4B_MAX_MON_CLIENT_CMD];
|
|
|
|
u_int code;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
/* command dispatch table */
|
1999-12-14 21:14:28 +00:00
|
|
|
typedef void (*cmd_func_t)(int fd, int rights, u_int8_t *cmd, const char *source);
|
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
static struct {
|
|
|
|
cmd_func_t call; /* function to execute */
|
|
|
|
u_int rights; /* necessary rights */
|
|
|
|
} cmd_tab[] =
|
|
|
|
{
|
|
|
|
/* 0 */ { NULL, 0 },
|
|
|
|
/* 1 */ { cmd_dump_rights, I4B_CA_COMMAND_FULL },
|
|
|
|
/* 2 */ { cmd_dump_mcons, I4B_CA_COMMAND_FULL },
|
|
|
|
/* 3 */ { cmd_reread_cfg, I4B_CA_COMMAND_FULL },
|
|
|
|
/* 4 */ { cmd_hangup, I4B_CA_COMMAND_FULL },
|
|
|
|
};
|
|
|
|
#define NUMCMD (sizeof cmd_tab / sizeof cmd_tab[0])
|
|
|
|
|
|
|
|
u_long u;
|
|
|
|
int bytes;
|
|
|
|
|
|
|
|
/* Network transfer may deliver two or more packets concatenated.
|
|
|
|
* Peek at the header and read only one event at a time... */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
ioctl(fd, FIONREAD, &u);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if (u < I4B_MON_CMD_HDR)
|
|
|
|
{
|
|
|
|
if (u == 0)
|
|
|
|
{
|
|
|
|
/* log(LL_MER, "monitor read 0 bytes"); */
|
1998-12-27 21:47:14 +00:00
|
|
|
/* socket closed by peer */
|
|
|
|
close(fd);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0; /* not enough data there yet */
|
|
|
|
}
|
1999-08-06 14:05:10 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
bytes = recv(fd, cmd, I4B_MON_CMD_HDR, MSG_PEEK);
|
1999-08-06 14:05:10 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
if (bytes < I4B_MON_CMD_HDR)
|
1999-08-06 14:05:10 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
log(LL_MER, "monitor read only %d bytes", bytes);
|
1998-12-27 21:47:14 +00:00
|
|
|
return 0; /* errh? something must be wrong... */
|
1999-08-06 14:05:10 +00:00
|
|
|
}
|
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
bytes = I4B_GET_2B(cmd, I4B_MON_CMD_LEN);
|
1999-08-06 14:05:10 +00:00
|
|
|
|
|
|
|
if (bytes >= sizeof cmd)
|
|
|
|
{
|
1998-12-27 21:47:14 +00:00
|
|
|
close(fd);
|
1999-12-14 21:14:28 +00:00
|
|
|
log(LL_MER, "monitor: garbage on connection");
|
1998-12-27 21:47:14 +00:00
|
|
|
return 1;
|
|
|
|
}
|
1999-08-06 14:05:10 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
/* now we know the size, it fits, so lets read it! */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if(sock_read(fd, cmd, bytes) <= 0)
|
1999-08-06 14:05:10 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
log(LL_MER, "monitor: sock_read <= 0");
|
1998-12-27 21:47:14 +00:00
|
|
|
close(fd);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* decode command */
|
|
|
|
code = I4B_GET_2B(cmd, I4B_MON_CMD);
|
|
|
|
|
|
|
|
/* special case: may modify our connection descriptor, is
|
|
|
|
* beyound all rights checks */
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
if (code == I4B_MON_CCMD_SETMASK)
|
|
|
|
{
|
|
|
|
/*XXX*/
|
1998-12-27 21:47:14 +00:00
|
|
|
/*
|
|
|
|
u_int major = I4B_GET_2B(cmd, I4B_MON_ICLIENT_VERMAJOR);
|
|
|
|
u_int minor = I4B_GET_2B(cmd, I4B_MON_ICLIENT_VERMINOR);
|
|
|
|
*/
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
int events = I4B_GET_4B(cmd, I4B_MON_ICLIENT_EVENTS);
|
1999-12-14 21:14:28 +00:00
|
|
|
con->events = events & rights;
|
1998-12-27 21:47:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
if (code < 0 || code >= NUMCMD)
|
|
|
|
{
|
|
|
|
log(LL_MER, "illegal command from client, code = %d\n",
|
|
|
|
code);
|
1998-12-27 21:47:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
if (cmd_tab[code].call == NULL)
|
|
|
|
return 0;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
if ((cmd_tab[code].rights & rights) == cmd_tab[code].rights)
|
1999-12-14 21:14:28 +00:00
|
|
|
cmd_tab[code].call(fd, rights, cmd, con->source);
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Check if somebody would receive an event with this mask.
|
|
|
|
* We are lazy and try to avoid assembling unneccesary packets.
|
|
|
|
* Return 0 if no one interested, nonzero otherwise.
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
|
|
|
anybody(int mask)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
struct monitor_connection * con;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
for (con = TAILQ_FIRST(&connections); con != NULL; con = TAILQ_NEXT(con, connections))
|
|
|
|
{
|
|
|
|
if ((con->events & mask) == mask)
|
1998-12-27 21:47:14 +00:00
|
|
|
return 1;
|
1999-12-14 21:14:28 +00:00
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
* exec hangup command
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
hangup_channel(int controller, int channel, const char *source)
|
|
|
|
{
|
|
|
|
cfg_entry_t * cep = NULL;
|
|
|
|
|
|
|
|
if(controller < ncontroller)
|
|
|
|
{
|
|
|
|
if(isdn_ctrl_tab[controller].state != CTRL_UP)
|
|
|
|
return;
|
|
|
|
if(isdn_ctrl_tab[controller].stateb1 != CHAN_IDLE)
|
|
|
|
{
|
|
|
|
cep = get_cep_by_cc(controller, 0);
|
|
|
|
if (cep != NULL && cep->isdnchannelused == channel &&
|
|
|
|
cep->isdncontrollerused == controller)
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
if(isdn_ctrl_tab[controller].stateb2 != CHAN_IDLE)
|
|
|
|
{
|
|
|
|
cep = get_cep_by_cc(controller, 1);
|
|
|
|
if (cep != NULL && cep->isdnchannelused == channel &&
|
|
|
|
cep->isdncontrollerused == controller)
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* not found */
|
|
|
|
return;
|
|
|
|
|
|
|
|
found:
|
|
|
|
log(LL_CHD, "%05d %s manual disconnect (remote from %s)", cep->cdid, cep->name, source);
|
|
|
|
cep->hangup = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Send an event to every connection interested in this kind of
|
|
|
|
* event
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
monitor_broadcast(int mask, u_int8_t *pkt, size_t bytes)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
struct monitor_connection *con;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
for (con = TAILQ_FIRST(&connections); con != NULL; con = TAILQ_NEXT(con, connections))
|
|
|
|
{
|
|
|
|
if ((con->events & mask) == mask)
|
|
|
|
{
|
|
|
|
int fd = con->sock;
|
|
|
|
|
|
|
|
if((sock_write(fd, pkt, bytes)) == -1)
|
|
|
|
{
|
|
|
|
log(LL_MER, "monitor_broadcast: sock_write error - %s", strerror(errno));
|
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Post a logfile event
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_evnt_log(int prio, const char * what, const char * msg)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
u_int8_t evnt[I4B_MON_LOGEVNT_SIZE];
|
1998-12-27 21:47:14 +00:00
|
|
|
time_t now;
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
if (!anybody(I4B_CA_EVNT_I4B))
|
|
|
|
return;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
time(&now);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
I4B_PREP_EVNT(evnt, I4B_MON_LOGEVNT_CODE);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_LOGEVNT_TSTAMP, (long)now);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_LOGEVNT_PRIO, prio);
|
|
|
|
I4B_PUT_STR(evnt, I4B_MON_LOGEVNT_WHAT, what);
|
|
|
|
I4B_PUT_STR(evnt, I4B_MON_LOGEVNT_MSG, msg);
|
|
|
|
|
|
|
|
monitor_broadcast(I4B_CA_EVNT_I4B, evnt, sizeof evnt);
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Post a charging event on the connection described
|
|
|
|
* by the given config entry.
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_evnt_charge(cfg_entry_t *cep, int units, int estimate)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
int mask;
|
1998-12-27 21:47:14 +00:00
|
|
|
time_t now;
|
1999-12-14 21:14:28 +00:00
|
|
|
u_int8_t evnt[I4B_MON_CHRG_SIZE];
|
|
|
|
|
|
|
|
mask = (cep->direction == DIR_IN) ? I4B_CA_EVNT_CALLIN : I4B_CA_EVNT_CALLOUT;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
if(!anybody(mask))
|
|
|
|
return;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
time(&now);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
I4B_PREP_EVNT(evnt, I4B_MON_CHRG_CODE);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_CHRG_TSTAMP, (long)now);
|
1999-12-14 21:14:28 +00:00
|
|
|
I4B_PUT_4B(evnt, I4B_MON_CHRG_CTRL, cep->isdncontrollerused);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_CHRG_CHANNEL, cep->isdnchannelused);
|
1998-12-27 21:47:14 +00:00
|
|
|
I4B_PUT_4B(evnt, I4B_MON_CHRG_UNITS, units);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_CHRG_ESTIMATED, estimate ? 1 : 0);
|
|
|
|
|
|
|
|
monitor_broadcast(mask, evnt, sizeof evnt);
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Post a connection event
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_evnt_connect(cfg_entry_t *cep)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
u_int8_t evnt[I4B_MON_CONNECT_SIZE];
|
1998-12-27 21:47:14 +00:00
|
|
|
char devname[I4B_MAX_MON_STRING];
|
1999-12-14 21:14:28 +00:00
|
|
|
int mask;
|
1998-12-27 21:47:14 +00:00
|
|
|
time_t now;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
mask = (cep->direction == DIR_IN) ? I4B_CA_EVNT_CALLIN : I4B_CA_EVNT_CALLOUT;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
if (!anybody(mask))
|
|
|
|
return;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
time(&now);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
snprintf(devname, sizeof devname, "%s%d", bdrivername(cep->usrdevicename), cep->usrdeviceunit);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
I4B_PREP_EVNT(evnt, I4B_MON_CONNECT_CODE);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_CONNECT_TSTAMP, (long)now);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_CONNECT_DIR, cep->direction == DIR_OUT ? 1 : 0);
|
1999-12-14 21:14:28 +00:00
|
|
|
I4B_PUT_4B(evnt, I4B_MON_CONNECT_CTRL, cep->isdncontrollerused);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_CONNECT_CHANNEL, cep->isdnchannelused);
|
1998-12-27 21:47:14 +00:00
|
|
|
I4B_PUT_STR(evnt, I4B_MON_CONNECT_CFGNAME, cep->name);
|
|
|
|
I4B_PUT_STR(evnt, I4B_MON_CONNECT_DEVNAME, devname);
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
if(cep->direction == DIR_OUT)
|
|
|
|
{
|
|
|
|
I4B_PUT_STR(evnt, I4B_MON_CONNECT_REMPHONE, cep->remote_phone_dialout);
|
|
|
|
I4B_PUT_STR(evnt, I4B_MON_CONNECT_LOCPHONE, cep->local_phone_dialout);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
I4B_PUT_STR(evnt, I4B_MON_CONNECT_REMPHONE, cep->real_phone_incoming);
|
|
|
|
I4B_PUT_STR(evnt, I4B_MON_CONNECT_LOCPHONE, cep->local_phone_incoming);
|
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
monitor_broadcast(mask, evnt, sizeof evnt);
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Post a disconnect event
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_evnt_disconnect(cfg_entry_t *cep)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
u_int8_t evnt[I4B_MON_DISCONNECT_SIZE];
|
|
|
|
int mask;
|
1998-12-27 21:47:14 +00:00
|
|
|
time_t now;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
mask = (cep->direction == DIR_IN) ? I4B_CA_EVNT_CALLIN : I4B_CA_EVNT_CALLOUT;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
if (!anybody(mask))
|
|
|
|
return;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
time(&now);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
I4B_PREP_EVNT(evnt, I4B_MON_DISCONNECT_CODE);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_DISCONNECT_TSTAMP, (long)now);
|
1999-12-14 21:14:28 +00:00
|
|
|
I4B_PUT_4B(evnt, I4B_MON_DISCONNECT_CTRL, cep->isdncontrollerused);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_DISCONNECT_CHANNEL, cep->isdnchannelused);
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
monitor_broadcast(mask, evnt, sizeof evnt);
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
1998-12-27 21:47:14 +00:00
|
|
|
* Post an up/down event
|
1999-12-14 21:14:28 +00:00
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_evnt_updown(cfg_entry_t *cep, int up)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
u_int8_t evnt[I4B_MON_UPDOWN_SIZE];
|
|
|
|
int mask;
|
1998-12-27 21:47:14 +00:00
|
|
|
time_t now;
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
mask = (cep->direction == DIR_IN) ? I4B_CA_EVNT_CALLIN : I4B_CA_EVNT_CALLOUT;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
if (!anybody(mask))
|
|
|
|
return;
|
1998-12-27 21:47:14 +00:00
|
|
|
|
|
|
|
time(&now);
|
1999-12-14 21:14:28 +00:00
|
|
|
|
1998-12-27 21:47:14 +00:00
|
|
|
I4B_PREP_EVNT(evnt, I4B_MON_UPDOWN_CODE);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_UPDOWN_TSTAMP, (long)now);
|
1999-12-14 21:14:28 +00:00
|
|
|
I4B_PUT_4B(evnt, I4B_MON_UPDOWN_CTRL, cep->isdncontrollerused);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_UPDOWN_CHANNEL, cep->isdnchannelused);
|
1998-12-27 21:47:14 +00:00
|
|
|
I4B_PUT_4B(evnt, I4B_MON_UPDOWN_ISUP, up);
|
|
|
|
|
|
|
|
monitor_broadcast(mask, evnt, sizeof evnt);
|
|
|
|
}
|
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
* Post a Layer1/2 status change event
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_evnt_l12stat(int controller, int layer, int state)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
u_int8_t evnt[I4B_MON_L12STAT_SIZE];
|
|
|
|
time_t now;
|
|
|
|
|
|
|
|
if(!anybody(I4B_CA_EVNT_I4B))
|
|
|
|
return;
|
|
|
|
|
|
|
|
time(&now);
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
I4B_PREP_EVNT(evnt, I4B_MON_L12STAT_CODE);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_L12STAT_TSTAMP, (long)now);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_L12STAT_CTRL, controller);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_L12STAT_LAYER, layer);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_L12STAT_STATE, state);
|
|
|
|
|
|
|
|
monitor_broadcast(I4B_CA_EVNT_I4B, evnt, sizeof evnt);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
* Post a TEI change event
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_evnt_tei(int controller, int tei)
|
|
|
|
{
|
|
|
|
u_int8_t evnt[I4B_MON_TEI_SIZE];
|
|
|
|
time_t now;
|
|
|
|
|
|
|
|
if(!anybody(I4B_CA_EVNT_I4B))
|
|
|
|
return;
|
|
|
|
|
|
|
|
time(&now);
|
|
|
|
|
|
|
|
I4B_PREP_EVNT(evnt, I4B_MON_TEI_CODE);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_TEI_TSTAMP, (long)now);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_TEI_CTRL, controller);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_TEI_TEI, tei);
|
|
|
|
|
|
|
|
monitor_broadcast(I4B_CA_EVNT_I4B, evnt, sizeof evnt);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
* Post an accounting event
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
monitor_evnt_acct(cfg_entry_t *cep)
|
|
|
|
{
|
|
|
|
u_int8_t evnt[I4B_MON_ACCT_SIZE];
|
|
|
|
time_t now;
|
|
|
|
|
|
|
|
if(!anybody(I4B_CA_EVNT_I4B))
|
|
|
|
return;
|
|
|
|
|
|
|
|
time(&now);
|
|
|
|
|
|
|
|
I4B_PREP_EVNT(evnt, I4B_MON_ACCT_CODE);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_ACCT_TSTAMP, (long)now);
|
|
|
|
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_ACCT_CTRL, cep->isdncontrollerused);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_ACCT_CHAN, cep->isdnchannelused);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_ACCT_OBYTES, cep->outbytes);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_ACCT_OBPS, cep->outbps);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_ACCT_IBYTES, cep->inbytes);
|
|
|
|
I4B_PUT_4B(evnt, I4B_MON_ACCT_IBPS, cep->inbps);
|
|
|
|
|
|
|
|
monitor_broadcast(I4B_CA_EVNT_I4B, evnt, sizeof evnt);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
* read from a socket
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
static ssize_t
|
|
|
|
sock_read(int fd, void *buf, size_t nbytes)
|
|
|
|
{
|
|
|
|
size_t nleft;
|
|
|
|
ssize_t nread;
|
|
|
|
unsigned char *ptr;
|
|
|
|
|
|
|
|
ptr = buf;
|
|
|
|
nleft = nbytes;
|
|
|
|
|
|
|
|
while(nleft > 0)
|
|
|
|
{
|
|
|
|
if((nread = read(fd, ptr, nleft)) < 0)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
if(errno == EINTR)
|
|
|
|
{
|
|
|
|
nread = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return(-1);
|
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
else if(nread == 0)
|
1998-12-27 21:47:14 +00:00
|
|
|
{
|
1999-12-14 21:14:28 +00:00
|
|
|
break; /* EOF */
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
|
|
|
|
nleft -= nread;
|
|
|
|
ptr += nread;
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
1999-12-14 21:14:28 +00:00
|
|
|
return(nbytes - nleft);
|
|
|
|
}
|
1998-12-27 21:47:14 +00:00
|
|
|
|
1999-12-14 21:14:28 +00:00
|
|
|
/*---------------------------------------------------------------------------
|
|
|
|
* write to a socket
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
static ssize_t
|
|
|
|
sock_write(int fd, void *buf, size_t nbytes)
|
|
|
|
{
|
|
|
|
size_t nleft;
|
|
|
|
ssize_t nwritten;
|
|
|
|
unsigned char *ptr;
|
|
|
|
|
|
|
|
ptr = buf;
|
|
|
|
nleft = nbytes;
|
|
|
|
|
|
|
|
while(nleft > 0)
|
|
|
|
{
|
|
|
|
if((nwritten = write(fd, ptr, nleft)) <= 0)
|
|
|
|
{
|
|
|
|
if(errno == EINTR)
|
|
|
|
{
|
|
|
|
nwritten = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nleft -= nwritten;
|
|
|
|
ptr += nwritten;
|
|
|
|
}
|
|
|
|
return(nbytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct monitor_rights * monitor_next_rights(const struct monitor_rights *r)
|
|
|
|
{
|
|
|
|
if (r == NULL)
|
|
|
|
return TAILQ_FIRST(&rights);
|
|
|
|
else
|
|
|
|
return TAILQ_NEXT(r, list);
|
1998-12-27 21:47:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* I4B_EXTERNAL_MONITOR */
|