1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
/*
* udp.c -- scli udp mode implementation
*
* Copyright (C) 2001 Juergen Schoenwaelder
*
* 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, 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* @(#) $Id: udp.c 712 2004-10-14 20:51:26Z schoenw $
*/
#include "scli.h"
#include "udp-mib.h"
#include "udp-mib-proc.h"
static void
xml_udp_listener(xmlNodePtr root, udp_mib_udpEntry_t *udpEntry, int width)
{
xmlNodePtr node;
node = xmlNewChild(root, NULL, "listener", NULL);
xmlSetProp(node, "address",
fmt_ipv4_address(udpEntry->udpLocalAddress, SCLI_FMT_ADDR));
xmlSetProp(node, "port",
fmt_udp_port(udpEntry->udpLocalPort, SCLI_FMT_ADDR));
}
static void
fmt_udp_listener(GString *s, udp_mib_udpEntry_t *udpEntry, int width)
{
int pos;
g_string_sprintfa(s, "%s:%s%n",
fmt_ipv4_address(udpEntry->udpLocalAddress,
SCLI_FMT_NAME_OR_ADDR),
fmt_udp_port(udpEntry->udpLocalPort,
SCLI_FMT_NAME_OR_ADDR),
&pos);
g_string_sprintfa(s, "%*s", MAX(width-pos+1, 1), "");
g_string_append(s, "listen\n");
}
static int
show_udp_listener(scli_interp_t *interp, int argc, char **argv)
{
udp_mib_udpEntry_t **udpTable = NULL;
int width = 20;
char *addr, *port;
int i, len;
g_return_val_if_fail(interp, SCLI_ERROR);
if (argc > 1) {
return SCLI_SYNTAX_NUMARGS;
}
if (scli_interp_dry(interp)) {
return SCLI_OK;
}
udp_mib_get_udpTable(interp->peer, &udpTable, 0);
if (interp->peer->error_status) {
return SCLI_SNMP;
}
if (udpTable) {
for (i = 0; udpTable[i]; i++) {
addr = fmt_ipv4_address(udpTable[i]->udpLocalAddress,
SCLI_FMT_NAME_OR_ADDR);
port = fmt_udp_port(udpTable[i]->udpLocalPort,
SCLI_FMT_NAME_OR_ADDR);
len = strlen(addr) + strlen(port) + 1;
if (len > width) {
width = len;
}
}
if (! scli_interp_xml(interp)) {
g_string_sprintfa(interp->header, "%-*s %s",
width, "LOCAL ADDRESS", "STATE");
}
for (i = 0; udpTable[i]; i++) {
if (scli_interp_xml(interp)) {
xml_udp_listener(interp->xml_node, udpTable[i], width);
} else {
fmt_udp_listener(interp->result, udpTable[i], width);
}
}
}
if (udpTable) udp_mib_free_udpTable(udpTable);
return SCLI_OK;
}
static int
show_udp_stats(scli_interp_t *interp, int argc, char **argv)
{
udp_mib_proc_stats_t _udpStats, *udpStats = &_udpStats;
g_return_val_if_fail(interp, SCLI_ERROR);
if (argc > 1) {
return SCLI_SYNTAX_NUMARGS;
}
udp_mib_proc_get_stats(interp->peer, &udpStats);
if (interp->peer->error_status) {
return SCLI_SNMP;
}
if (udpStats) {
g_string_sprintfa(interp->result, "in %u datagrams\n", udpStats->udpInDatagrams);
}
return SCLI_OK;
}
void
scli_init_udp_mode(scli_interp_t *interp)
{
static scli_cmd_t cmds[] = {
{ "show udp listener", NULL,
"The `show udp listener' command displays the listening UDP\n"
"endpoints.",
SCLI_CMD_FLAG_NEED_PEER | SCLI_CMD_FLAG_XML | SCLI_CMD_FLAG_DRY,
"udp", NULL,
show_udp_listener },
{ "show udp stats", NULL,
"The `show udp statistics' about datagrams received or sent.",
SCLI_CMD_FLAG_NEED_PEER,
NULL, NULL,
show_udp_stats },
{ NULL, NULL, NULL, 0, NULL, NULL, NULL }
};
static scli_mode_t udp_mode = {
"udp",
"The scli udp mode is based on the UDP-MIB as published in\n"
"RFC 2013. It provides commands to browse information specific\n"
"to the UDP transport protocol.",
cmds
};
scli_register_mode(interp, &udp_mode);
}
|