mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-02-08 21:54:05 +01:00
monitor: Add command line option for netlink monitor device
This commit is contained in:
parent
81118dfc1f
commit
e260854da3
@ -26,6 +26,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <getopt.h>
|
||||||
#include <linux/genetlink.h>
|
#include <linux/genetlink.h>
|
||||||
#include <ell/ell.h>
|
#include <ell/ell.h>
|
||||||
|
|
||||||
@ -45,7 +46,8 @@ static struct nlmon *nlmon = NULL;
|
|||||||
#define NLA_DATA(nla) ((void*)(((char*)(nla)) + NLA_LENGTH(0)))
|
#define NLA_DATA(nla) ((void*)(((char*)(nla)) + NLA_LENGTH(0)))
|
||||||
#define NLA_PAYLOAD(nla) ((int)((nla)->nla_len - NLA_LENGTH(0)))
|
#define NLA_PAYLOAD(nla) ((int)((nla)->nla_len - NLA_LENGTH(0)))
|
||||||
|
|
||||||
static void genl_parse(uint16_t type, const void *data, uint32_t len)
|
static void genl_parse(uint16_t type, const void *data, uint32_t len,
|
||||||
|
const char *ifname)
|
||||||
{
|
{
|
||||||
const struct genlmsghdr *genlmsg = data;
|
const struct genlmsghdr *genlmsg = data;
|
||||||
const struct nlattr *nla;
|
const struct nlattr *nla;
|
||||||
@ -77,28 +79,32 @@ static void genl_parse(uint16_t type, const void *data, uint32_t len)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (!strcmp(name, NL80211_GENL_NAME))
|
if (!strcmp(name, NL80211_GENL_NAME))
|
||||||
nlmon = nlmon_open(id);
|
nlmon = nlmon_open(ifname, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void genl_notify(uint16_t type, const void *data,
|
static void genl_notify(uint16_t type, const void *data,
|
||||||
uint32_t len, void *user_data)
|
uint32_t len, void *user_data)
|
||||||
{
|
{
|
||||||
genl_parse(type, data, len);
|
const char *ifname = user_data;
|
||||||
|
|
||||||
|
genl_parse(type, data, len, ifname);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void genl_callback(int error, uint16_t type, const void *data,
|
static void genl_callback(int error, uint16_t type, const void *data,
|
||||||
uint32_t len, void *user_data)
|
uint32_t len, void *user_data)
|
||||||
{
|
{
|
||||||
|
const char *ifname = user_data;
|
||||||
|
|
||||||
if (error < 0) {
|
if (error < 0) {
|
||||||
fprintf(stderr, "Failed to lookup nl80211 family\n");
|
fprintf(stderr, "Failed to lookup nl80211 family\n");
|
||||||
l_main_quit();
|
l_main_quit();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
genl_parse(type, data, len);
|
genl_parse(type, data, len, ifname);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct l_netlink *genl_lookup(void)
|
static struct l_netlink *genl_lookup(const char *ifname)
|
||||||
{
|
{
|
||||||
struct l_netlink *genl;
|
struct l_netlink *genl;
|
||||||
char buf[GENL_HDRLEN + NLA_HDRLEN + GENL_NAMSIZ];
|
char buf[GENL_HDRLEN + NLA_HDRLEN + GENL_NAMSIZ];
|
||||||
@ -121,7 +127,7 @@ static struct l_netlink *genl_lookup(void)
|
|||||||
NL80211_GENL_NAME, GENL_NAMSIZ);
|
NL80211_GENL_NAME, GENL_NAMSIZ);
|
||||||
|
|
||||||
l_netlink_send(genl, GENL_ID_CTRL, 0, buf, sizeof(buf),
|
l_netlink_send(genl, GENL_ID_CTRL, 0, buf, sizeof(buf),
|
||||||
genl_callback, NULL, NULL);
|
genl_callback, (char *) ifname, NULL);
|
||||||
|
|
||||||
return genl;
|
return genl;
|
||||||
}
|
}
|
||||||
@ -137,20 +143,65 @@ static void signal_handler(struct l_signal *signal, uint32_t signo,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void usage(void)
|
||||||
|
{
|
||||||
|
printf("iwmon - Wireless monitor\n"
|
||||||
|
"Usage:\n");
|
||||||
|
printf("\tiwmon [options]\n");
|
||||||
|
printf("options:\n"
|
||||||
|
"\t-i, --interface <dev> Use specified netlink monitor\n"
|
||||||
|
"\t-h, --help Show help options\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct option main_options[] = {
|
||||||
|
{ "interface", required_argument, NULL, 'i' },
|
||||||
|
{ "version", no_argument, NULL, 'v' },
|
||||||
|
{ "help", no_argument, NULL, 'h' },
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
const char *ifname = "nlmon";
|
||||||
struct l_signal *signal;
|
struct l_signal *signal;
|
||||||
struct l_netlink *genl;
|
struct l_netlink *genl;
|
||||||
sigset_t mask;
|
sigset_t mask;
|
||||||
int exit_status;
|
int exit_status;
|
||||||
|
|
||||||
|
for (;;) {
|
||||||
|
int opt;
|
||||||
|
|
||||||
|
opt = getopt_long(argc, argv, "i:vh", main_options, NULL);
|
||||||
|
if (opt < 0)
|
||||||
|
break;
|
||||||
|
|
||||||
|
switch (opt) {
|
||||||
|
case 'i':
|
||||||
|
ifname = optarg;
|
||||||
|
break;
|
||||||
|
case 'v':
|
||||||
|
printf("%s\n", VERSION);
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
case 'h':
|
||||||
|
usage();
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
default:
|
||||||
|
return EXIT_FAILURE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (argc - optind > 0) {
|
||||||
|
fprintf(stderr, "Invalid command line parameters\n");
|
||||||
|
return EXIT_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
sigemptyset(&mask);
|
sigemptyset(&mask);
|
||||||
sigaddset(&mask, SIGINT);
|
sigaddset(&mask, SIGINT);
|
||||||
sigaddset(&mask, SIGTERM);
|
sigaddset(&mask, SIGTERM);
|
||||||
|
|
||||||
signal = l_signal_create(&mask, signal_handler, NULL, NULL);
|
signal = l_signal_create(&mask, signal_handler, NULL, NULL);
|
||||||
|
|
||||||
genl = genl_lookup();
|
genl = genl_lookup(ifname);
|
||||||
|
|
||||||
l_main_run();
|
l_main_run();
|
||||||
|
|
||||||
|
@ -1015,14 +1015,14 @@ static struct l_io *open_packet(const char *name)
|
|||||||
return io;
|
return io;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct nlmon *nlmon_open(uint16_t id)
|
struct nlmon *nlmon_open(const char *ifname, uint16_t id)
|
||||||
{
|
{
|
||||||
struct nlmon *nlmon;
|
struct nlmon *nlmon;
|
||||||
|
|
||||||
nlmon = l_new(struct nlmon, 1);
|
nlmon = l_new(struct nlmon, 1);
|
||||||
|
|
||||||
nlmon->id = id;
|
nlmon->id = id;
|
||||||
nlmon->io = open_packet("nlmon");
|
nlmon->io = open_packet(ifname);
|
||||||
nlmon->req_list = l_queue_new();
|
nlmon->req_list = l_queue_new();
|
||||||
|
|
||||||
l_io_set_read_handler(nlmon->io, nlmon_receive, nlmon, NULL);
|
l_io_set_read_handler(nlmon->io, nlmon_receive, nlmon, NULL);
|
||||||
|
@ -24,5 +24,5 @@
|
|||||||
|
|
||||||
struct nlmon;
|
struct nlmon;
|
||||||
|
|
||||||
struct nlmon *nlmon_open(uint16_t id);
|
struct nlmon *nlmon_open(const char *ifname, uint16_t id);
|
||||||
void nlmon_close(struct nlmon *nlmon);
|
void nlmon_close(struct nlmon *nlmon);
|
||||||
|
Loading…
Reference in New Issue
Block a user