You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/modules/corex/corex_rpc.c

169 lines
3.6 KiB

/**
* $Id$
*
* Copyright (C) 2011 Daniel-Constantin Mierla (asipto.com)
*
* This file is part of Kamailio, a free SIP server.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include "../../dprint.h"
#include "../../ut.h"
#include "../../socket_info.h"
#include "../../name_alias.h"
#include "../../rpc.h"
#include "../../rpc_lookup.h"
static const char* corex_rpc_list_sockets_doc[2] = {
"List listening sockets",
0
};
/*
* RPC command to list the listening sockets
*/
static void corex_rpc_list_sockets(rpc_t* rpc, void* ctx)
{
void* th;
void* ih;
struct socket_info *si;
struct socket_info** list;
struct addr_info* ai;
unsigned short proto;
proto=PROTO_UDP;
do {
list=get_sock_info_list(proto);
for(si=list?*list:0; si; si=si->next)
{
/* add structure node */
if (rpc->add(ctx, "{", &th) < 0)
{
rpc->fault(ctx, 500, "Internal error socket structure");
return;
}
if(rpc->struct_add(th, "ss{",
"PROTO", get_valid_proto_name(proto),
"NAME", si->name.s,
"ADDRLIST", &ih)<0)
{
rpc->fault(ctx, 500, "Internal error address list structure");
return;
}
if(rpc->struct_add(ih, "s", "ADDR", si->address_str.s)<0)
{
rpc->fault(ctx, 500, "Internal error address structure");
return;
}
if (si->addr_info_lst)
{
for (ai=si->addr_info_lst; ai; ai=ai->next)
{
if(rpc->struct_add(ih, "s", "ADDR", ai->address_str.s)<0)
{
rpc->fault(ctx, 500,
"Internal error extra address structure");
return;
}
}
}
if(rpc->struct_add(th, "ssss",
"PORT", si->port_no_str.s,
"MCAST", si->flags & SI_IS_MCAST ? "yes" : "no",
"MHOMED", si->flags & SI_IS_MHOMED? "yes" : "no",
"ADVERTISE", si->useinfo.name.s?si->useinfo.name.s:"-")<0)
{
rpc->fault(ctx, 500, "Internal error attrs structure");
return;
}
}
} while((proto=next_proto(proto)));
return;
}
static const char* corex_rpc_list_aliases_doc[2] = {
"List socket aliases",
0
};
/*
* RPC command to list the socket aliases
*/
static void corex_rpc_list_aliases(rpc_t* rpc, void* ctx)
{
void* th;
struct host_alias* a;
for(a=aliases; a; a=a->next)
{
/* add structure node */
if (rpc->add(ctx, "{", &th) < 0)
{
rpc->fault(ctx, 500, "Internal error alias structure");
return;
}
if(rpc->struct_add(th, "sSd",
"PROTO", get_valid_proto_name(a->proto),
"ADDR", &a->alias,
"PORT", a->port)<0)
{
rpc->fault(ctx, 500, "Internal error alias attributes");
return;
}
}
return;
}
rpc_export_t corex_rpc_cmds[] = {
{"corex.list_sockets", corex_rpc_list_sockets,
corex_rpc_list_sockets_doc, 0},
{"corex.list_aliases", corex_rpc_list_aliases,
corex_rpc_list_aliases_doc, 0},
{0, 0, 0, 0}
};
/**
* register RPC commands
*/
int corex_init_rpc(void)
{
if (rpc_register_array(corex_rpc_cmds)!=0)
{
LM_ERR("failed to register RPC commands\n");
return -1;
}
return 0;
}