8#include <linux/netlink.h>
10#include <netlink/cli/utils.h>
11#include <netlink/idiag/idiagnl.h>
12#include <netlink/idiag/msg.h>
14static void print_usage(
void)
17"Usage: idiag-socket-details [OPTION]\n"
20" --summary Show socket detail summary.\n"
21" --details Show socket details on multiple lines.\n"
22" --stats Show full socket statistics.\n"
23" -h, --help Show this help.\n"
24" -v, --version Show versioning information.\n"
29int main(
int argc,
char *argv[])
32 struct nl_cache *idiag_cache;
40 sock = nl_cli_alloc_socket();
41 nl_cli_connect(sock, NETLINK_INET_DIAG);
50 static struct option long_opts[] = {
51 {
"details", 0, 0, ARG_DETAILS },
52 {
"summary", 0, 0, ARG_SUMMARY },
53 {
"stats", 0, 0, ARG_STATS},
54 {
"help", 0, 0,
'h' },
55 {
"version", 0, 0,
'v' },
59 c = getopt_long(argc, argv,
"hv", long_opts, &optidx);
64 case '?': exit(NLE_INVAL);
68 case 'h': print_usage();
break;
69 case 'v': nl_cli_print_version();
break;
75 nl_cli_fatal(err,
"Unable to allocate idiag msg cache: %s",
void nl_cache_mngt_unprovide(struct nl_cache *cache)
Unprovide a cache for global use.
void nl_cache_mngt_provide(struct nl_cache *cache)
Provide a cache for global use.
void nl_cache_free(struct nl_cache *cache)
Free a cache.
void nl_cache_dump_filter(struct nl_cache *cache, struct nl_dump_params *params, struct nl_object *filter)
Dump all elements of a cache (filtered).
void nl_cli_fatal(int err, const char *fmt,...)
Print error message and quit application.
#define IDIAGNL_SS_ALL
Macro to represent all socket states.
int idiagnl_msg_alloc_cache(struct nl_sock *sk, int family, int states, struct nl_cache **result)
Build an inetdiag cache to hold socket state information.
void nl_socket_free(struct nl_sock *sk)
Free a netlink socket.
@ NL_DUMP_STATS
Dump all attributes including statistics.
@ NL_DUMP_LINE
Dump object briefly on one line.
@ NL_DUMP_DETAILS
Dump all attributes but no statistics.
enum nl_dump_type dp_type
Specifies the type of dump that is requested.