*/
#ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
#endif
-#include <netdissect-stdinc.h>
+#include "netdissect-stdinc.h"
#include <stdio.h>
#include <string.h>
};
struct nfrec_v1 {
- struct in_addr src_ina;
- struct in_addr dst_ina;
- struct in_addr nhop_ina;
+ nd_ipv4 src_ina;
+ nd_ipv4 dst_ina;
+ nd_ipv4 nhop_ina;
nd_uint16_t input; /* SNMP index of input interface */
nd_uint16_t output; /* SNMP index of output interface */
nd_uint32_t packets; /* packets in the flow */
};
struct nfrec_v5 {
- struct in_addr src_ina;
- struct in_addr dst_ina;
- struct in_addr nhop_ina;
+ nd_ipv4 src_ina;
+ nd_ipv4 dst_ina;
+ nd_ipv4 nhop_ina;
nd_uint16_t input; /* SNMP index of input interface */
nd_uint16_t output; /* SNMP index of output interface */
nd_uint32_t packets; /* packets in the flow */
nd_uint8_t src_mask; /* source address mask bits */
nd_uint8_t dst_mask; /* destination address prefix mask bits */
nd_byte pad2[2];
- struct in_addr peer_nexthop; /* v6: IP address of the nexthop within the peer (FIB)*/
+ nd_ipv4 peer_nexthop; /* v6: IP address of the nexthop within the peer (FIB)*/
};
struct nfhdr_v6 {
};
struct nfrec_v6 {
- struct in_addr src_ina;
- struct in_addr dst_ina;
- struct in_addr nhop_ina;
+ nd_ipv4 src_ina;
+ nd_ipv4 dst_ina;
+ nd_ipv4 nhop_ina;
nd_uint16_t input; /* SNMP index of input interface */
nd_uint16_t output; /* SNMP index of output interface */
nd_uint32_t packets; /* packets in the flow */
nd_uint8_t src_mask; /* source address mask bits */
nd_uint8_t dst_mask; /* destination address prefix mask bits */
nd_uint16_t flags;
- struct in_addr peer_nexthop; /* v6: IP address of the nexthop within the peer (FIB)*/
+ nd_ipv4 peer_nexthop; /* v6: IP address of the nexthop within the peer (FIB)*/
};
static void
#endif
nh = (const struct nfhdr_v1 *)cp;
- ND_TCHECK(*nh);
+ ND_TCHECK_SIZE(nh);
ver = EXTRACT_BE_U_2(nh->version);
nrecs = EXTRACT_BE_U_4(nh->count);
t = EXTRACT_BE_U_4(nh->utc_sec);
#endif
- ND_PRINT((ndo, "NetFlow v%x, %u.%03u uptime, %u.%09u, ", ver,
+ ND_PRINT("NetFlow v%x, %u.%03u uptime, %u.%09u, ", ver,
EXTRACT_BE_U_4(nh->msys_uptime)/1000,
EXTRACT_BE_U_4(nh->msys_uptime)%1000,
- EXTRACT_BE_U_4(nh->utc_sec), EXTRACT_BE_U_4(nh->utc_nsec)));
+ EXTRACT_BE_U_4(nh->utc_sec), EXTRACT_BE_U_4(nh->utc_nsec));
nr = (const struct nfrec_v1 *)&nh[1];
- ND_PRINT((ndo, "%2u recs", nrecs));
+ ND_PRINT("%2u recs", nrecs);
for (; nrecs != 0; nr++, nrecs--) {
char buf[20];
/*
* Make sure we have the entire record.
*/
- ND_TCHECK(*nr);
- ND_PRINT((ndo, "\n started %u.%03u, last %u.%03u",
+ ND_TCHECK_SIZE(nr);
+ ND_PRINT("\n started %u.%03u, last %u.%03u",
EXTRACT_BE_U_4(nr->start_time)/1000,
EXTRACT_BE_U_4(nr->start_time)%1000,
EXTRACT_BE_U_4(nr->last_time)/1000,
- EXTRACT_BE_U_4(nr->last_time)%1000));
+ EXTRACT_BE_U_4(nr->last_time)%1000);
asbuf[0] = buf[0] = '\0';
- ND_PRINT((ndo, "\n %s%s%s:%u ", intoa(nr->src_ina.s_addr), buf, asbuf,
- EXTRACT_BE_U_2(nr->srcport)));
+ ND_PRINT("\n %s%s%s:%u ",
+ intoa(EXTRACT_IPV4_TO_NETWORK_ORDER(nr->src_ina)),
+ buf, asbuf,
+ EXTRACT_BE_U_2(nr->srcport));
- ND_PRINT((ndo, "> %s%s%s:%u ", intoa(nr->dst_ina.s_addr), buf, asbuf,
- EXTRACT_BE_U_2(nr->dstport)));
+ ND_PRINT("> %s%s%s:%u ",
+ intoa(EXTRACT_IPV4_TO_NETWORK_ORDER(nr->dst_ina)),
+ buf, asbuf,
+ EXTRACT_BE_U_2(nr->dstport));
- ND_PRINT((ndo, ">> %s\n ", intoa(nr->nhop_ina.s_addr)));
+ ND_PRINT(">> %s\n ",
+ intoa(EXTRACT_IPV4_TO_NETWORK_ORDER(nr->nhop_ina)));
proto = EXTRACT_U_1(nr->proto);
if (!ndo->ndo_nflag && (p_name = netdb_protoname(proto)) != NULL)
- ND_PRINT((ndo, "%s ", p_name));
+ ND_PRINT("%s ", p_name);
else
- ND_PRINT((ndo, "%u ", proto));
+ ND_PRINT("%u ", proto);
/* tcp flags for tcp only */
if (proto == IPPROTO_TCP) {
u_int flags;
flags = EXTRACT_U_1(nr->tcp_flags);
- ND_PRINT((ndo, "%s%s%s%s%s%s%s",
+ ND_PRINT("%s%s%s%s%s%s%s",
flags & TH_FIN ? "F" : "",
flags & TH_SYN ? "S" : "",
flags & TH_RST ? "R" : "",
flags & TH_PUSH ? "P" : "",
flags & TH_ACK ? "A" : "",
flags & TH_URG ? "U" : "",
- flags ? " " : ""));
+ flags ? " " : "");
}
buf[0]='\0';
- ND_PRINT((ndo, "tos %u, %u (%u octets) %s",
+ ND_PRINT("tos %u, %u (%u octets) %s",
EXTRACT_U_1(nr->tos),
EXTRACT_BE_U_4(nr->packets),
- EXTRACT_BE_U_4(nr->octets), buf));
+ EXTRACT_BE_U_4(nr->octets), buf);
}
return;
trunc:
- ND_PRINT((ndo, "[|cnfp]"));
+ nd_print_trunc(ndo);
return;
}
#endif
nh = (const struct nfhdr_v5 *)cp;
- ND_TCHECK(*nh);
+ ND_TCHECK_SIZE(nh);
ver = EXTRACT_BE_U_2(nh->version);
nrecs = EXTRACT_BE_U_4(nh->count);
t = EXTRACT_BE_U_4(nh->utc_sec);
#endif
- ND_PRINT((ndo, "NetFlow v%x, %u.%03u uptime, %u.%09u, ", ver,
+ ND_PRINT("NetFlow v%x, %u.%03u uptime, %u.%09u, ", ver,
EXTRACT_BE_U_4(nh->msys_uptime)/1000,
EXTRACT_BE_U_4(nh->msys_uptime)%1000,
- EXTRACT_BE_U_4(nh->utc_sec), EXTRACT_BE_U_4(nh->utc_nsec)));
+ EXTRACT_BE_U_4(nh->utc_sec), EXTRACT_BE_U_4(nh->utc_nsec));
- ND_PRINT((ndo, "#%u, ", EXTRACT_BE_U_4(nh->sequence)));
+ ND_PRINT("#%u, ", EXTRACT_BE_U_4(nh->sequence));
nr = (const struct nfrec_v5 *)&nh[1];
- ND_PRINT((ndo, "%2u recs", nrecs));
+ ND_PRINT("%2u recs", nrecs);
for (; nrecs != 0; nr++, nrecs--) {
char buf[20];
/*
* Make sure we have the entire record.
*/
- ND_TCHECK(*nr);
- ND_PRINT((ndo, "\n started %u.%03u, last %u.%03u",
+ ND_TCHECK_SIZE(nr);
+ ND_PRINT("\n started %u.%03u, last %u.%03u",
EXTRACT_BE_U_4(nr->start_time)/1000,
EXTRACT_BE_U_4(nr->start_time)%1000,
EXTRACT_BE_U_4(nr->last_time)/1000,
- EXTRACT_BE_U_4(nr->last_time)%1000));
+ EXTRACT_BE_U_4(nr->last_time)%1000);
asbuf[0] = buf[0] = '\0';
- snprintf(buf, sizeof(buf), "/%u", EXTRACT_U_1(nr->src_mask));
- snprintf(asbuf, sizeof(asbuf), ":%u",
+ nd_snprintf(buf, sizeof(buf), "/%u", EXTRACT_U_1(nr->src_mask));
+ nd_snprintf(asbuf, sizeof(asbuf), ":%u",
EXTRACT_BE_U_2(nr->src_as));
- ND_PRINT((ndo, "\n %s%s%s:%u ", intoa(nr->src_ina.s_addr), buf, asbuf,
- EXTRACT_BE_U_2(nr->srcport)));
+ ND_PRINT("\n %s%s%s:%u ",
+ intoa(EXTRACT_IPV4_TO_NETWORK_ORDER(nr->src_ina)),
+ buf, asbuf,
+ EXTRACT_BE_U_2(nr->srcport));
- snprintf(buf, sizeof(buf), "/%u", EXTRACT_U_1(nr->dst_mask));
- snprintf(asbuf, sizeof(asbuf), ":%u",
+ nd_snprintf(buf, sizeof(buf), "/%u", EXTRACT_U_1(nr->dst_mask));
+ nd_snprintf(asbuf, sizeof(asbuf), ":%u",
EXTRACT_BE_U_2(nr->dst_as));
- ND_PRINT((ndo, "> %s%s%s:%u ", intoa(nr->dst_ina.s_addr), buf, asbuf,
- EXTRACT_BE_U_2(nr->dstport)));
+ ND_PRINT("> %s%s%s:%u ",
+ intoa(EXTRACT_IPV4_TO_NETWORK_ORDER(nr->dst_ina)),
+ buf, asbuf,
+ EXTRACT_BE_U_2(nr->dstport));
- ND_PRINT((ndo, ">> %s\n ", intoa(nr->nhop_ina.s_addr)));
+ ND_PRINT(">> %s\n ",
+ intoa(EXTRACT_IPV4_TO_NETWORK_ORDER(nr->nhop_ina)));
proto = EXTRACT_U_1(nr->proto);
if (!ndo->ndo_nflag && (p_name = netdb_protoname(proto)) != NULL)
- ND_PRINT((ndo, "%s ", p_name));
+ ND_PRINT("%s ", p_name);
else
- ND_PRINT((ndo, "%u ", proto));
+ ND_PRINT("%u ", proto);
/* tcp flags for tcp only */
if (proto == IPPROTO_TCP) {
u_int flags;
flags = EXTRACT_U_1(nr->tcp_flags);
- ND_PRINT((ndo, "%s%s%s%s%s%s%s",
+ ND_PRINT("%s%s%s%s%s%s%s",
flags & TH_FIN ? "F" : "",
flags & TH_SYN ? "S" : "",
flags & TH_RST ? "R" : "",
flags & TH_PUSH ? "P" : "",
flags & TH_ACK ? "A" : "",
flags & TH_URG ? "U" : "",
- flags ? " " : ""));
+ flags ? " " : "");
}
buf[0]='\0';
- ND_PRINT((ndo, "tos %u, %u (%u octets) %s",
+ ND_PRINT("tos %u, %u (%u octets) %s",
EXTRACT_U_1(nr->tos),
EXTRACT_BE_U_4(nr->packets),
- EXTRACT_BE_U_4(nr->octets), buf));
+ EXTRACT_BE_U_4(nr->octets), buf);
}
return;
trunc:
- ND_PRINT((ndo, "[|cnfp]"));
+ nd_print_trunc(ndo);
return;
}
#endif
nh = (const struct nfhdr_v6 *)cp;
- ND_TCHECK(*nh);
+ ND_TCHECK_SIZE(nh);
ver = EXTRACT_BE_U_2(nh->version);
nrecs = EXTRACT_BE_U_4(nh->count);
t = EXTRACT_BE_U_4(nh->utc_sec);
#endif
- ND_PRINT((ndo, "NetFlow v%x, %u.%03u uptime, %u.%09u, ", ver,
+ ND_PRINT("NetFlow v%x, %u.%03u uptime, %u.%09u, ", ver,
EXTRACT_BE_U_4(nh->msys_uptime)/1000,
EXTRACT_BE_U_4(nh->msys_uptime)%1000,
- EXTRACT_BE_U_4(nh->utc_sec), EXTRACT_BE_U_4(nh->utc_nsec)));
+ EXTRACT_BE_U_4(nh->utc_sec), EXTRACT_BE_U_4(nh->utc_nsec));
- ND_PRINT((ndo, "#%u, ", EXTRACT_BE_U_4(nh->sequence)));
+ ND_PRINT("#%u, ", EXTRACT_BE_U_4(nh->sequence));
nr = (const struct nfrec_v6 *)&nh[1];
- ND_PRINT((ndo, "%2u recs", nrecs));
+ ND_PRINT("%2u recs", nrecs);
for (; nrecs != 0; nr++, nrecs--) {
char buf[20];
/*
* Make sure we have the entire record.
*/
- ND_TCHECK(*nr);
- ND_PRINT((ndo, "\n started %u.%03u, last %u.%03u",
+ ND_TCHECK_SIZE(nr);
+ ND_PRINT("\n started %u.%03u, last %u.%03u",
EXTRACT_BE_U_4(nr->start_time)/1000,
EXTRACT_BE_U_4(nr->start_time)%1000,
EXTRACT_BE_U_4(nr->last_time)/1000,
- EXTRACT_BE_U_4(nr->last_time)%1000));
+ EXTRACT_BE_U_4(nr->last_time)%1000);
asbuf[0] = buf[0] = '\0';
- snprintf(buf, sizeof(buf), "/%u", EXTRACT_U_1(nr->src_mask));
- snprintf(asbuf, sizeof(asbuf), ":%u",
+ nd_snprintf(buf, sizeof(buf), "/%u", EXTRACT_U_1(nr->src_mask));
+ nd_snprintf(asbuf, sizeof(asbuf), ":%u",
EXTRACT_BE_U_2(nr->src_as));
- ND_PRINT((ndo, "\n %s%s%s:%u ", intoa(nr->src_ina.s_addr), buf, asbuf,
- EXTRACT_BE_U_2(nr->srcport)));
+ ND_PRINT("\n %s%s%s:%u ",
+ intoa(EXTRACT_IPV4_TO_NETWORK_ORDER(nr->src_ina)),
+ buf, asbuf,
+ EXTRACT_BE_U_2(nr->srcport));
- snprintf(buf, sizeof(buf), "/%u", EXTRACT_U_1(nr->dst_mask));
- snprintf(asbuf, sizeof(asbuf), ":%u",
+ nd_snprintf(buf, sizeof(buf), "/%u", EXTRACT_U_1(nr->dst_mask));
+ nd_snprintf(asbuf, sizeof(asbuf), ":%u",
EXTRACT_BE_U_2(nr->dst_as));
- ND_PRINT((ndo, "> %s%s%s:%u ", intoa(nr->dst_ina.s_addr), buf, asbuf,
- EXTRACT_BE_U_2(nr->dstport)));
+ ND_PRINT("> %s%s%s:%u ",
+ intoa(EXTRACT_IPV4_TO_NETWORK_ORDER(nr->dst_ina)),
+ buf, asbuf,
+ EXTRACT_BE_U_2(nr->dstport));
- ND_PRINT((ndo, ">> %s\n ", intoa(nr->nhop_ina.s_addr)));
+ ND_PRINT(">> %s\n ",
+ intoa(EXTRACT_IPV4_TO_NETWORK_ORDER(nr->nhop_ina)));
proto = EXTRACT_U_1(nr->proto);
if (!ndo->ndo_nflag && (p_name = netdb_protoname(proto)) != NULL)
- ND_PRINT((ndo, "%s ", p_name));
+ ND_PRINT("%s ", p_name);
else
- ND_PRINT((ndo, "%u ", proto));
+ ND_PRINT("%u ", proto);
/* tcp flags for tcp only */
if (proto == IPPROTO_TCP) {
u_int flags;
flags = EXTRACT_U_1(nr->tcp_flags);
- ND_PRINT((ndo, "%s%s%s%s%s%s%s",
+ ND_PRINT("%s%s%s%s%s%s%s",
flags & TH_FIN ? "F" : "",
flags & TH_SYN ? "S" : "",
flags & TH_RST ? "R" : "",
flags & TH_PUSH ? "P" : "",
flags & TH_ACK ? "A" : "",
flags & TH_URG ? "U" : "",
- flags ? " " : ""));
+ flags ? " " : "");
}
buf[0]='\0';
- snprintf(buf, sizeof(buf), "(%u<>%u encaps)",
+ nd_snprintf(buf, sizeof(buf), "(%u<>%u encaps)",
(EXTRACT_BE_U_2(nr->flags) >> 8) & 0xff,
(EXTRACT_BE_U_2(nr->flags)) & 0xff);
- ND_PRINT((ndo, "tos %u, %u (%u octets) %s",
+ ND_PRINT("tos %u, %u (%u octets) %s",
EXTRACT_U_1(nr->tos),
EXTRACT_BE_U_4(nr->packets),
- EXTRACT_BE_U_4(nr->octets), buf));
+ EXTRACT_BE_U_4(nr->octets), buf);
}
return;
trunc:
- ND_PRINT((ndo, "[|cnfp]"));
+ nd_print_trunc(ndo);
return;
}
/*
* First 2 bytes are the version number.
*/
+ ndo->ndo_protocol = "cnfp";
ND_TCHECK_2(cp);
ver = EXTRACT_BE_U_2(cp);
switch (ver) {
break;
default:
- ND_PRINT((ndo, "NetFlow v%x", ver));
+ ND_PRINT("NetFlow v%x", ver);
break;
}
return;
trunc:
- ND_PRINT((ndo, "[|cnfp]"));
+ nd_print_trunc(ndo);
return;
}