123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874 |
- /*
- * $Id$
- *
- * Stats reporting code. It reports through SIG_USR1 and if loaded
- * through the SNMP module
- *
- * Copyright (C) 2001-2003 FhG Fokus
- *
- * This file is part of ser, a free SIP server.
- *
- * ser 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
- *
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact iptel.org by e-mail at the following addresses:
- * [email protected]
- *
- * ser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * History:
- * -------
- * 2003-03-19: added support for route type in find_export (janakj)
- */
- /*!
- * \file
- * \brief SIP-router core :: Stats reporting code
- * \ingroup core
- * Module: \ref core
- */
- #ifdef STATS
- #include "stats.h"
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include "dprint.h"
- #include "mem/shm_mem.h"
- #include "sr_module.h"
- /* SNMP includes */
- #include "modules/snmp/snmp_handler.h"
- #include "modules/snmp/sipCommonStatsMethod.h"
- #include "modules/snmp/sipCommonStatusCode.h"
- struct stats_s *stats; /* per process stats structure */
- char *stat_file = NULL; /* set by the parser */
- /* private variables */
- static struct stats_s *global_stats=NULL;
- static int stats_segments=-1; /*used also to determine if we've been init'ed*/
- /* adds up global statistics and puts them into passed struct.
- * -1 returned on failure */
- static int collect_stats(struct stats_s *s);
- /***********************8 SNMP Stuff **************************/
- /* a small structure we use to pass around the functions needed by
- * all the registration functions */
- struct stats_funcs {
- int (*reg_func)(const char *, struct sip_snmp_handler*);
- struct sip_snmp_handler* (*new_func)(size_t);
- void (*free_func)(struct sip_snmp_handler*);
- };
- /* SNMP Handler registration functions */
- static int sipSummaryStatsTable_register(const struct stats_funcs *f);
- static int sipMethodStatsTable_register(const struct stats_funcs *f);
- static int sipStatusCodesTable_register(const struct stats_funcs *f);
- /* the handlers */
- static int collect_InReqs(struct sip_snmp_obj *, enum handler_op);
- static int collect_OutReqs(struct sip_snmp_obj *, enum handler_op);
- static int collect_InResp(struct sip_snmp_obj *, enum handler_op);
- static int collect_OutResp(struct sip_snmp_obj *, enum handler_op);
- static int sipStatsMethod_handler(struct sip_snmp_obj *o, enum handler_op op);
- static int sipStatusCodes_handler(struct sip_snmp_obj *o, enum handler_op op);
- int init_stats(int nr_of_processes)
- {
- LOG(L_DBG,"init_stats(): initializing stats for %d processes\n",
- nr_of_processes);
- global_stats = shm_malloc(nr_of_processes*sizeof(struct stats_s));
- if(!global_stats) {
- LOG(L_ERR, "Out of memory\n");
- return -1;
- }
- stats_segments = nr_of_processes;
- if(stats_register() == -1)
- LOG(L_WARN, "init_stats(): Couldn't register stats"
- " with snmp module\n");
- return 0;
- }
- /* sets the stats pointer for the passed process */
- void setstats(int child_index)
- {
- if(stats_segments == -1 || !global_stats) {
- LOG(L_ERR, "Stats not initialized. Cannot set them\n");
- stats = NULL;
- return;
- }
- if(child_index < 0 || child_index >= stats_segments) {
- stats = NULL;
- LOG(L_ERR, "Invalid index %d while setting statistics. Only have "
- "space for %d processes\n", child_index, stats_segments);
- return;
- }
- stats = global_stats+child_index;
- stats->process_index = child_index;
- /* can't use pids[] because we may be called before the corresponding
- * slot in pids[] is initialized (chk main_loop()) */
- stats->pid = getpid();
- stats->start_time = time(NULL);
- }
- /* printheader is used to print pid, date and index */
- int dump_statistic(FILE *fp, struct stats_s *istats, int printheader)
- {
- struct tm res;
- char t[256];
- if(stats_segments == -1 || !global_stats) {
- LOG(L_ERR, "Stats \"engine\" not initialized\n");
- return -1;
- }
- if(printheader) {
- localtime_r(&istats->start_time, &res);
- strftime(t, 255, "%c", &res);
-
- fprintf(fp, "stats for process %d (pid %d) started at %s\n",
- istats->process_index, istats->pid, t);
- }
- fprintf(fp, "received requests:\ninv: %ld\tack: %ld\tcnc: %ld\t"
- "bye: %ld\tother: %ld\n",
- istats->received_requests_inv,
- istats->received_requests_ack,
- istats->received_requests_cnc,
- istats->received_requests_bye,
- istats->received_requests_other);
- fprintf(fp, "sent requests:\n"
- "inv: %ld\tack: %ld\tcnc: %ld\tbye: %ld\tother: %ld\n",
- istats->sent_requests_inv,
- istats->sent_requests_ack,
- istats->sent_requests_cnc,
- istats->sent_requests_bye,
- istats->sent_requests_other);
- fprintf(fp, "received responses:\n"
- "1: %ld\t2: %ld\t3: %ld\t4: %ld\t5: %ld\t6: %ld\tother: %ld\t"
- "drops: %ld\n",
- istats->received_responses_1,
- istats->received_responses_2,
- istats->received_responses_3,
- istats->received_responses_4,
- istats->received_responses_5,
- istats->received_responses_6,
- istats->received_responses_other,
- istats->received_drops);
- fprintf(fp, "sent responses:\n"
- "1: %ld\t2: %ld\t3: %ld\t4: %ld\t5: %ld\t6: %ld\n",
- istats->sent_responses_1,
- istats->sent_responses_2,
- istats->sent_responses_3,
- istats->sent_responses_4,
- istats->sent_responses_5,
- istats->sent_responses_6);
- fprintf(fp, "processed requests: %ld\t\tprocessed responses: %ld\n"
- "acc req time: %ld\t\t\tacc res time: %ld\nfailed on send: %ld\n\n",
- istats->processed_requests,
- istats->processed_responses,
- istats->acc_req_time,
- istats->acc_res_time,
- istats->failed_on_send);
- return 0;
- }
- int dump_all_statistic()
- {
- register int i;
- register struct stats_s *c;
- static struct stats_s *g = NULL;
- struct tm res;
- char t[256];
- time_t ts;
- FILE *stat_fp = NULL;
- if(stats_segments == -1 || !global_stats) {
- LOG(L_ERR, "%s: Can't dump statistics, not initialized!\n", __func__);
- return -1;
- }
- if(!stat_file) {
- LOG(L_ERR, "%s: Can't dump statistics, invalid stats file\n", __func__);
- return -1;
- }
- stat_fp = fopen(stat_file, "a");
- if(!stat_fp) {
- LOG(L_ERR, "%s: Couldn't open stats file %s: %s\n", __func__, stat_file,
- strerror(errno));
- return -1;
- }
- /* time stamp them since we're appending to the file */
- ts = time(NULL);
- localtime_r(&ts, &res);
- strftime(t, 255, "%c", &res);
- fprintf(stat_fp, "#### stats @ %s #####\n", t);
- c = global_stats;
- for(i=0; i<stats_segments; i++) {
- if(dump_statistic(stat_fp, c, 1) == -1) {
- LOG(L_ERR, "Error dumping statistics for process %d\n", i);
- goto end;
- }
- c++;
- }
- fprintf(stat_fp, "## Global Stats ##\n");
- if(!g)
- g = calloc(1, sizeof(struct stats_s));
- if(!g) {
- LOG(L_ERR, "Couldn't dump global stats: %s\n", strerror(errno));
- goto end;
- }
-
- if(collect_stats(g) == -1) {
- LOG(L_ERR, "%s: Couldn't dump global stats\n", __func__);
- goto end;
- }
- if(dump_statistic(stat_fp, g, 0) == -1) {
- LOG(L_ERR, "Couldn't dump global stats\n");
- goto end;
- }
- end:
- fprintf(stat_fp, "\n");
- fclose(stat_fp);
- return 0;
- }
- static int collect_stats(struct stats_s *s)
- {
- register int i;
- register struct stats_s *c;
- if(!s) {
- LOG(L_ERR, "collect_stats(): Invalid stats pointer passed\n");
- return -1;
- }
- if(!global_stats || stats_segments == -1) {
- LOG(L_ERR, "Can't collect statistics, not initialized!!\n");
- return -1;
- }
- c = global_stats;
- memset(s, '\0', sizeof(struct stats_s));
- for(i=0; i<stats_segments; i++) {
- s->received_requests_inv += c->received_requests_inv;
- s->received_requests_ack += c->received_requests_ack;
- s->received_requests_cnc += c->received_requests_cnc;
- s->received_requests_bye += c->received_requests_bye;
- s->received_requests_other += c->received_requests_other;
- s->received_responses_1 += c->received_responses_1;
- s->received_responses_2 += c->received_responses_2;
- s->received_responses_3 += c->received_responses_3;
- s->received_responses_4 += c->received_responses_4;
- s->received_responses_5 += c->received_responses_5;
- s->received_responses_6 += c->received_responses_6;
- s->received_responses_other += c->received_responses_other;
- s->received_drops += c->received_drops;
- s->sent_requests_inv += c->sent_requests_inv;
- s->sent_requests_ack += c->sent_requests_ack;
- s->sent_requests_cnc += c->sent_requests_cnc;
- s->sent_requests_bye += c->sent_requests_bye;
- s->sent_requests_other += c->sent_requests_other;
- s->sent_responses_1 += c->sent_responses_1;
- s->sent_responses_2 += c->sent_responses_2;
- s->sent_responses_3 += c->sent_responses_3;
- s->sent_responses_4 += c->sent_responses_4;
- s->sent_responses_5 += c->sent_responses_5;
- s->sent_responses_6 += c->sent_responses_6;
- s->processed_requests += c->processed_requests;
- s->processed_responses += c->processed_responses;
- s->acc_req_time += c->acc_req_time;
- s->acc_res_time += c->acc_res_time;
- s->failed_on_send += c->failed_on_send;
- c++; /* next, please... */
- }
- return 0;
- }
- /*************************** SNMP Stuff ***********************/
- /* ##### Registration Functions ####### */
- /* Registers the handlers for:
- * - sipSummaryStatsTable
- * - sipMethodStatsTable
- * - sipStatusCodesTable
- * - sipCommonStatusCodeTable
- *
- * Returns 0 if snmp module not present, -1 on error, 1 on successful
- * registration
- */
- #define reg(t) \
- if(t##_register(&f) == -1) { \
- LOG(L_ERR, "%s: Failed registering SNMP handlers\n", func); \
- return -1; \
- }
- int stats_register()
- {
- const char *func = __FUNCTION__;
- struct stats_funcs f;
- f.reg_func = (void*) find_export("snmp_register_handler", 2, 0);
- f.new_func = (void*) find_export("snmp_new_handler", 1, 0);
- f.free_func = (void*) find_export("snmp_free_handler", 1, 0);
- if(!f.reg_func || !f.new_func || !f.free_func) {
- LOG(L_INFO, "%s: Couldn't find SNMP module\n", func);
- LOG(L_INFO, "%s: Not reporting stats through SNMP\n", func);
- return 0;
- }
- reg(sipSummaryStatsTable);
- reg(sipMethodStatsTable);
- reg(sipStatusCodesTable);
- return 0;
- }
- /* Receives the function used to register SNMP handlers. Returns 0
- * on success, -1 on error */
- /* Registers:
- * - sipSummaryInRequests
- * - sipSummaryOutRequests
- * - sipSummaryInResponses
- * - sipSummaryOutResponses
- * => sipSummaryTotalTransactions is handled by the tm module */
- static int sipSummaryStatsTable_register(const struct stats_funcs *f)
- {
- register struct sip_snmp_handler *h;
- register struct sip_snmp_obj *o;
- const char *func = __FUNCTION__;
- h = f->new_func(sizeof(unsigned long));
- if(!h) {
- LOG(L_ERR, "%s: Error creating handler\n", func);
- return -1;
- }
- o = h->sip_obj;
- /* this is the same for all of our objects */
- o->type = SER_COUNTER;
- *o->value.integer = 0; /* default value. The real one is computed on
- request */
- o->val_len = sizeof(unsigned long);
- /* sipSummaryInRequests */
- h->on_get = collect_InReqs;
- h->on_set = h->on_end = NULL;
- if(f->reg_func("sipSummaryInRequests", h) == -1) {
- LOG(L_ERR, "%s: Error registering sipSummaryInRequests\n", func);
- f->free_func(h);
- return -1;
- }
- /* sipSummaryOutRequests */
- h->on_get = collect_OutReqs;
- if(f->reg_func("sipSummaryOutRequests", h) == -1) {
- LOG(L_ERR, "%s: Error registering sipSummaryOutRequests\n", func);
- f->free_func(h);
- return -1;
- }
- /* sipSummaryInResponses */
- h->on_get = collect_InResp;
- if(f->reg_func("sipSummaryInResponses", h) == -1) {
- LOG(L_ERR, "%s: Error registering sipSummaryInResponses\n", func);
- f->free_func(h);
- return -1;
- }
-
- /* sipSummaryOutResponses */
- h->on_get = collect_OutResp;
- if(f->reg_func("sipSummaryOutResponses", h) == -1) {
- LOG(L_ERR, "%s: Error registering sipSummaryOutResponses\n", func);
- f->free_func(h);
- return -1;
- }
- f->free_func(h);
- return 0;
- }
- static int sipMethodStatsTable_register(const struct stats_funcs *f)
- {
- const char* objs[] = {
- "sipStatsInviteIns",
- "sipStatsInviteOuts",
- "sipStatsAckIns",
- "sipStatsAckOuts",
- "sipStatsByeIns",
- "sipStatsByeOuts",
- "sipStatsCancelIns",
- "sipStatsCancelOuts"
- #if 0 /* we don't know about these */
- "sipStatsOptionsIns",
- "sipStatsOptionsOuts",
- "sipStatsRegisterIns",
- "sipStatsRegisterOuts",
- "sipStatsInfoIns",
- "sipStatsInfoOuts"
- #endif
- };
- int i, num = 8;
- const char *func = __FUNCTION__;
- register struct sip_snmp_handler *h;
- register struct sip_snmp_obj *o;
- h = f->new_func(sizeof(unsigned long));
- if(!h) {
- LOG(L_ERR, "%s: Error creating handler\n", func);
- return -1;
- }
- o = h->sip_obj;
- o->type = SER_COUNTER;
- *o->value.integer = 0;
- o->val_len = sizeof(unsigned long);
- h->on_get = sipStatsMethod_handler;
- h->on_set = h->on_end = NULL;
- for(i=0; i<num; i++) {
- if(f->reg_func(objs[i], h) == -1) {
- LOG(L_ERR, "%s: Error registering %s\n", func, objs[i]);
- f->free_func(h);
- return -1;
- }
- }
- f->free_func(h);
- return 0;
- }
- static int sipStatusCodesTable_register(const struct stats_funcs *f)
- {
- const char *objs[] = {
- "sipStatsInfoClassIns",
- "sipStatsInfoClassOuts",
- "sipStatsSuccessClassIns",
- "sipStatsSuccessClassOuts",
- "sipStatsRedirClassIns",
- "sipStatsRedirClassOuts",
- "sipStatsReqFailClassIns",
- "sipStatsReqFailClassOuts",
- "sipStatsServerFailClassIns",
- "sipStatsServerFailClassOuts",
- "sipStatsGlobalFailClassIns",
- "sipStatsGlobalFailClassOuts",
- "sipStatsOtherClassesIns",
- "sipStatsOtherClassesOuts"
- };
- int i, num = 14;
- const char *func = __FUNCTION__;
- register struct sip_snmp_handler *h;
- register struct sip_snmp_obj *o;
- h = f->new_func(sizeof(unsigned long));
- if(!h) {
- LOG(L_ERR, "%s: Error creating handler\n", func);
- return -1;
- }
- o = h->sip_obj;
- o->type = SER_COUNTER;
- *o->value.integer = 0;
- o->val_len = sizeof(unsigned long);
- h->on_get = sipStatusCodes_handler;
- h->on_set = h->on_end = NULL;
- for(i=0; i<num; i++) {
- if(f->reg_func(objs[i], h) == -1) {
- LOG(L_ERR, "%s: Error registering %s\n", func, objs[i]);
- f->free_func(h);
- return -1;
- }
- }
- f->free_func(h);
- return 0;}
- /* ########################## SNMP Handlers ######################### */
- /*** Handlers for sipSummaryStatsTable */
- static int collect_InReqs(struct sip_snmp_obj *o, enum handler_op op)
- {
- register int i;
- register struct stats_s *c;
- register unsigned long t1, t2, t3, t4, t5;
- const char *func = __FUNCTION__;
- if(!global_stats || stats_segments == -1) {
- LOG(L_ERR, "%s: Can't collect stats, they have not been initialized."
- "Did you call init_stats()?\n", func);
- return -1;
- }
- if(op != SER_GET) {
- LOG(L_ERR, "%s: Invalid handler operation passed\n", func);
- return -1;
- }
- if(!o->value.integer) {
- o->value.integer = calloc(1, sizeof(unsigned long));
- if(!o->value.integer) {
- LOG(L_ERR, "%s: %s\n", func, strerror(errno));
- return -1;
- }
- }
- c = global_stats;
- t1 = t2 = t3 = t4 = t5 = 0;
- for(i=0; i<stats_segments; i++, c++) {
- t1 += c->received_requests_inv;
- t2 += c->received_requests_ack;
- t3 += c->received_requests_cnc;
- t4 += c->received_requests_bye;
- t5 += c->received_requests_other;
- }
- *o->value.integer = t1 + t2 + t3 + t4 + t5;
- o->val_len = sizeof(unsigned long);
- o->type = SER_COUNTER;
-
- return 0;
- }
- static int collect_OutReqs(struct sip_snmp_obj *o, enum handler_op op)
- {
- register int i;
- register struct stats_s *c;
- register unsigned long t1, t2, t3, t4, t5;
- const char *func = __FUNCTION__;
- if(!global_stats || stats_segments == -1) {
- LOG(L_ERR, "%s: Can't collect stats, they have not been initialized."
- "Did you call init_stats()?\n", func);
- return -1;
- }
- if(op != SER_GET) {
- LOG(L_ERR, "%s: Invalid handler operation passed\n", func);
- return -1;
- }
- if(!o->value.integer) {
- o->value.integer = calloc(1, sizeof(unsigned long));
- if(!o->value.integer) {
- LOG(L_ERR, "%s: %s\n", func, strerror(errno));
- return -1;
- }
- }
- c = global_stats;
- t1 = t2 = t3 = t4 = t5 = 0;
- for(i=0; i<stats_segments; i++, c++) {
- t1 += c->sent_requests_inv;
- t2 += c->sent_requests_ack;
- t3 += c->sent_requests_cnc;
- t4 += c->sent_requests_bye;
- t5 += c->sent_requests_other;
- }
- *o->value.integer = t1 + t2 + t3 + t4 + t5;
- o->val_len = sizeof(unsigned long);
- o->type = SER_COUNTER;
-
- return 0;
- }
- static int collect_InResp(struct sip_snmp_obj *o, enum handler_op op)
- {
- register int i;
- register struct stats_s *c;
- register unsigned long t1, t2, t3, t4, t5, t6, t7;
- const char *func = __FUNCTION__;
- if(!global_stats || stats_segments == -1) {
- LOG(L_ERR, "%s: Can't collect stats, they have not been initialized."
- "Did you call init_stats()?\n", func);
- return -1;
- }
- if(op != SER_GET) {
- LOG(L_ERR, "%s: Invalid handler operation passed\n", func);
- return -1;
- }
- if(!o->value.integer) {
- o->value.integer = calloc(1, sizeof(unsigned long));
- if(!o->value.integer) {
- LOG(L_ERR, "%s: %s\n", func, strerror(errno));
- return -1;
- }
- }
- c = global_stats;
- t1 = t2 = t3 = t4 = t5 = t6 = t7 = 0;
- for(i=0; i<stats_segments; i++, c++) {
- t1 += c->received_responses_1;
- t2 += c->received_responses_2;
- t3 += c->received_responses_3;
- t4 += c->received_responses_4;
- t5 += c->received_responses_5;
- t6 += c->received_responses_6;
- t7 += c->received_responses_other;
- }
- *o->value.integer = t1 + t2 + t3 + t4 + t5 + t6 + t7;
- o->val_len = sizeof(unsigned long);
- o->type = SER_COUNTER;
-
- return 0;
- }
- static int collect_OutResp(struct sip_snmp_obj *o, enum handler_op op)
- {
- register int i;
- register struct stats_s *c;
- register unsigned long t1, t2, t3, t4, t5, t6, t7;
- const char *func = __FUNCTION__;
- if(!global_stats || stats_segments == -1) {
- LOG(L_ERR, "%s: Can't collect stats, they have not been initialized\n",
- func);
- return -1;
- }
- if(op != SER_GET) {
- LOG(L_ERR, "%s: Invalid handler operation passed\n", func);
- return -1;
- }
- if(!o->value.integer) {
- o->value.integer = calloc(1, sizeof(unsigned long));
- if(!o->value.integer) {
- LOG(L_ERR, "%s: %s\n", func, strerror(errno));
- return -1;
- }
- }
- c = global_stats;
- t1 = t2 = t3 = t4 = t5 = t6 = t7 = 0;
- for(i=0; i<stats_segments; i++, c++) {
- t1 += c->sent_responses_1;
- t2 += c->sent_responses_2;
- t3 += c->sent_responses_3;
- t4 += c->sent_responses_4;
- t5 += c->sent_responses_5;
- t6 += c->sent_responses_6;
- /* XXX: Not in stats struct
- t7 += c->sent_responses_other;
- */
- }
- *o->value.integer = t1 + t2 + t3 + t4 + t5 + t6 + t7;
- o->val_len = sizeof(unsigned long);
- o->type = SER_COUNTER;
-
- return 0;
- }
- /***** Handlers for sipMethodStatsTable ******/
- /* Collects the specified stat and puts the result in total. s defines
- * the starting point in the stats array, normally global_stats */
- #define collect_this_stat(stat, total, s) \
- for(i=0; i<stats_segments; i++) \
- total += s++->stat;
- static int sipStatsMethod_handler(struct sip_snmp_obj *o, enum handler_op op)
- {
- register struct stats_s *c;
- register unsigned long total;
- register int i;
- const char *func = __FUNCTION__;
- if(!o) {
- LOG(L_ERR, "%s: Invalid sip SNMP object passed\n", func);
- return -1;
- }
- if(!global_stats || stats_segments == -1) {
- LOG(L_ERR, "%s: Can't collect stats, they have not been initialized\n",
- func);
- return -1;
- }
- if(op != SER_GET) {
- LOG(L_ERR, "%s: Invalid handler operation passed\n", func);
- return -1;
- }
- if(!o->value.integer) {
- o->value.integer = calloc(1, sizeof(unsigned long));
- if(!o->value.integer) {
- LOG(L_ERR, "%s: %s\n", func, strerror(errno));
- return -1;
- }
- }
- c = global_stats;
- total = 0;
- switch(o->col) {
- /* these definitions are taken from sipMethodStatsHandler */
- case COLUMN_SIPSTATSINVITEINS:
- collect_this_stat(received_requests_inv, total, c);
- break;
- case COLUMN_SIPSTATSINVITEOUTS:
- collect_this_stat(sent_requests_inv, total, c);
- break;
- case COLUMN_SIPSTATSACKINS:
- collect_this_stat(received_requests_ack, total, c);
- break;
- case COLUMN_SIPSTATSACKOUTS:
- collect_this_stat(sent_requests_ack, total, c);
- break;
- case COLUMN_SIPSTATSBYEINS:
- collect_this_stat(received_requests_bye, total, c);
- break;
- case COLUMN_SIPSTATSBYEOUTS:
- collect_this_stat(sent_requests_bye, total, c);
- break;
- case COLUMN_SIPSTATSCANCELINS:
- collect_this_stat(received_requests_cnc, total, c);
- break;
- case COLUMN_SIPSTATSCANCELOUTS:
- collect_this_stat(sent_requests_cnc, total, c);
- break;
- /* ser doesn't have notion for these. We don't
- * register them with snmp. Here just as remainder */
- #if 0
- case COLUMN_SIPSTATSOPTIONSINS:
- case COLUMN_SIPSTATSOPTIONSOUTS:
- case COLUMN_SIPSTATSREGISTERINS:
- case COLUMN_SIPSTATSREGISTEROUTS:
- case COLUMN_SIPSTATSINFOINS:
- case COLUMN_SIPSTATSINFOOUTS:
- break;
- #endif
- }
- *o->value.integer = total;
- o->val_len = sizeof(unsigned long);
- o->type = SER_COUNTER;
- return 0;
- }
- static int sipStatusCodes_handler(struct sip_snmp_obj *o, enum handler_op op)
- {
- register struct stats_s *c;
- register unsigned long total;
- register int i;
- const char *func = __FUNCTION__;
- if(!o) {
- LOG(L_ERR, "%s: Invalid sip SNMP object passed\n", func);
- return -1;
- }
- if(!global_stats || stats_segments == -1) {
- LOG(L_ERR, "%s: Can't collect stats, they have not been initialized\n",
- func);
- return -1;
- }
- if(op != SER_GET) {
- LOG(L_ERR, "%s: Invalid handler operation passed\n", func);
- return -1;
- }
- if(!o->value.integer) {
- o->value.integer = calloc(1, sizeof(unsigned long));
- if(!o->value.integer) {
- LOG(L_ERR, "%s: %s\n", func, strerror(errno));
- return -1;
- }
- }
- c = global_stats;
- total = 0;
- switch(o->col) {
- case COLUMN_SIPSTATSINFOCLASSINS:
- collect_this_stat(received_responses_1, total, c);
- break;
- case COLUMN_SIPSTATSINFOCLASSOUTS:
- collect_this_stat(sent_responses_1, total, c);
- break;
- case COLUMN_SIPSTATSSUCCESSCLASSINS:
- collect_this_stat(received_responses_2, total, c);
- break;
- case COLUMN_SIPSTATSSUCCESSCLASSOUTS:
- collect_this_stat(sent_responses_2, total, c);
- break;
- case COLUMN_SIPSTATSREDIRCLASSINS:
- collect_this_stat(received_responses_3, total, c);
- break;
- case COLUMN_SIPSTATSREDIRCLASSOUTS:
- collect_this_stat(sent_responses_3, total, c);
- break;
- case COLUMN_SIPSTATSREQFAILCLASSINS:
- collect_this_stat(received_responses_4, total, c);
- break;
- case COLUMN_SIPSTATSREQFAILCLASSOUTS:
- collect_this_stat(sent_responses_4, total, c);
- break;
- case COLUMN_SIPSTATSSERVERFAILCLASSINS:
- collect_this_stat(received_responses_5, total, c);
- break;
- case COLUMN_SIPSTATSSERVERFAILCLASSOUTS:
- collect_this_stat(sent_responses_5, total, c);
- break;
- case COLUMN_SIPSTATSGLOBALFAILCLASSINS:
- collect_this_stat(received_responses_6, total, c);
- break;
- case COLUMN_SIPSTATSGLOBALFAILCLASSOUTS:
- collect_this_stat(sent_responses_6, total, c);
- break;
- case COLUMN_SIPSTATSOTHERCLASSESINS:
- collect_this_stat(received_responses_other, total, c);
- break;
- case COLUMN_SIPSTATSOTHERCLASSESOUTS:
- /* FIXME: For some reason this is not defined in
- * struct stats_s... */
- /* collect_this_stat(sent_responses_other, total, c); */
- total = 0;
- break;
- }
- *o->value.integer = total;
- o->val_len = sizeof(unsigned long);
- o->type = SER_COUNTER;
- return 0;
- }
- #endif
|