batctl currently supports settings which are either mesh interface or vlan specific. But B.A.T.M.A.N. V introduced two additional settings which are hard (slave) interface specific. To support these, an additional command prefix called hardif is implemented for some sysfs commands: $ batctl -m bat0 hardif eth0 .. The usable commands with that are: * elp_interval * throughput_override Signed-off-by: Sven Eckelmann <sven@narfation.org>
183 lines
5.4 KiB
Diff
183 lines
5.4 KiB
Diff
From: Sven Eckelmann <sven@narfation.org>
|
|
Date: Thu, 13 Jun 2019 21:12:15 +0200
|
|
Subject: batctl: Integrate hardif setting framework
|
|
|
|
batctl currently supports settings which are either mesh interface or vlan
|
|
specific. But B.A.T.M.A.N. V introduced two additional settings which are
|
|
hard (slave) interface specific.
|
|
|
|
To support these, an additional command prefix called hardif is implemented
|
|
for some sysfs commands:
|
|
|
|
$ batctl -m bat0 hardif eth0 ...
|
|
|
|
Signed-off-by: Sven Eckelmann <sven@narfation.org>
|
|
|
|
Forwarded: https://patchwork.open-mesh.org/patch/17948/
|
|
|
|
diff --git a/main.c b/main.c
|
|
index 6ca13ac0ec4c82ee969be04737a339fd702b52bd..c806dbf4373fd082ff368cba391bdf14eebf4eae 100644
|
|
--- a/main.c
|
|
+++ b/main.c
|
|
@@ -35,7 +35,8 @@ static void print_usage(void)
|
|
{
|
|
.label = "commands:\n",
|
|
.types = BIT(SUBCOMMAND) |
|
|
- BIT(SUBCOMMAND_VID),
|
|
+ BIT(SUBCOMMAND_VID) |
|
|
+ BIT(SUBCOMMAND_HIF),
|
|
},
|
|
{
|
|
.label = "debug tables: \tdisplay the corresponding debug table\n",
|
|
@@ -51,6 +52,10 @@ static void print_usage(void)
|
|
"vid <vid> ",
|
|
NULL,
|
|
};
|
|
+ const char *hardif_prefixes[] = {
|
|
+ "hardif <netdev> ",
|
|
+ NULL,
|
|
+ };
|
|
const struct command **p;
|
|
const char **prefixes;
|
|
const char **prefix;
|
|
@@ -81,6 +86,9 @@ static void print_usage(void)
|
|
case SUBCOMMAND_VID:
|
|
prefixes = vlan_prefixes;
|
|
break;
|
|
+ case SUBCOMMAND_HIF:
|
|
+ prefixes = hardif_prefixes;
|
|
+ break;
|
|
default:
|
|
prefixes = default_prefixes;
|
|
break;
|
|
@@ -133,6 +141,12 @@ static const struct command *find_command(struct state *state, const char *name)
|
|
if (state->vid < 0 && cmd->type == SUBCOMMAND_VID)
|
|
continue;
|
|
|
|
+ if (state->hif > 0 && cmd->type != SUBCOMMAND_HIF)
|
|
+ continue;
|
|
+
|
|
+ if (state->hif == 0 && cmd->type == SUBCOMMAND_HIF)
|
|
+ continue;
|
|
+
|
|
if (strcmp(cmd->name, name) == 0)
|
|
return cmd;
|
|
|
|
@@ -180,6 +194,18 @@ static int parse_dev_args(struct state *state, int argc, char *argv[])
|
|
state->arg_iface = argv[1];
|
|
translate_mesh_iface(state);
|
|
|
|
+ return 2;
|
|
+ } else if (strcmp(argv[0], "hardif") == 0) {
|
|
+ state->hif = if_nametoindex(argv[1]);
|
|
+ if (state->hif == 0) {
|
|
+ fprintf(stderr, "Error - hard interface not found\n");
|
|
+ return -ENODEV;
|
|
+ }
|
|
+
|
|
+ snprintf(state->hard_iface, sizeof(state->hard_iface), "%s",
|
|
+ argv[1]);
|
|
+
|
|
+ translate_mesh_iface(state);
|
|
return 2;
|
|
} else {
|
|
/* parse vlan as part of -m parameter */
|
|
@@ -193,6 +219,7 @@ int main(int argc, char **argv)
|
|
const struct command *cmd;
|
|
struct state state = {
|
|
.arg_iface = mesh_dfl_iface,
|
|
+ .hif = 0,
|
|
.cmd = NULL,
|
|
};
|
|
int dev_arguments;
|
|
diff --git a/main.h b/main.h
|
|
index 1d952610aefb8367bd52e24bea8c04c3d70b94ea..a27d8486ef689206b27b1b50cb017b1b740e91c9 100644
|
|
--- a/main.h
|
|
+++ b/main.h
|
|
@@ -59,6 +59,7 @@ enum command_flags {
|
|
enum command_type {
|
|
SUBCOMMAND,
|
|
SUBCOMMAND_VID,
|
|
+ SUBCOMMAND_HIF,
|
|
DEBUGTABLE,
|
|
};
|
|
|
|
@@ -66,6 +67,8 @@ struct state {
|
|
char *arg_iface;
|
|
char mesh_iface[IF_NAMESIZE];
|
|
unsigned int mesh_ifindex;
|
|
+ char hard_iface[IF_NAMESIZE];
|
|
+ unsigned int hif;
|
|
int vid;
|
|
const struct command *cmd;
|
|
|
|
diff --git a/sys.c b/sys.c
|
|
index f19719cfad61f36f2a5c1078305de83eb5be142a..fd34b2fa3bcf168a32bd53fc0df3f35d5532433f 100644
|
|
--- a/sys.c
|
|
+++ b/sys.c
|
|
@@ -150,6 +150,10 @@ static void settings_usage(struct state *state)
|
|
"vid <vid> ",
|
|
NULL,
|
|
};
|
|
+ const char *hardif_prefixes[] = {
|
|
+ "hardif <netdev> ",
|
|
+ NULL,
|
|
+ };
|
|
const char *linestart = "Usage:";
|
|
const char **prefixes;
|
|
const char **prefix;
|
|
@@ -158,6 +162,9 @@ static void settings_usage(struct state *state)
|
|
case SUBCOMMAND_VID:
|
|
prefixes = vlan_prefixes;
|
|
break;
|
|
+ case SUBCOMMAND_HIF:
|
|
+ prefixes = hardif_prefixes;
|
|
+ break;
|
|
default:
|
|
prefixes = default_prefixes;
|
|
break;
|
|
@@ -259,15 +266,23 @@ int handle_sys_setting(struct state *state, int argc, char **argv)
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
- /* if the specified interface is a VLAN then change the path to point
|
|
- * to the proper "vlan%{vid}" subfolder in the sysfs tree.
|
|
- */
|
|
- if (state->vid >= 0)
|
|
+ if (state->hif > 0) {
|
|
+ /* if a hard interface was specified then change the path to
|
|
+ * point to the proper ${hardif}/batman-adv path in the sysfs
|
|
+ * tree.
|
|
+ */
|
|
+ snprintf(path_buff, PATH_BUFF_LEN, SYS_HARDIF_PATH,
|
|
+ state->hard_iface);
|
|
+ } else if (state->vid >= 0) {
|
|
+ /* if the specified interface is a VLAN then change the path to
|
|
+ * point to the proper "vlan%{vid}" subfolder in the sysfs tree.
|
|
+ */
|
|
snprintf(path_buff, PATH_BUFF_LEN, SYS_VLAN_PATH,
|
|
state->mesh_iface, state->vid);
|
|
- else
|
|
+ } else {
|
|
snprintf(path_buff, PATH_BUFF_LEN, SYS_BATIF_PATH_FMT,
|
|
state->mesh_iface);
|
|
+ }
|
|
|
|
if (argc == 1) {
|
|
res = sys_read_setting(state, path_buff, settings->sysfs_name);
|
|
diff --git a/sys.h b/sys.h
|
|
index d4f2fcf542bc66b2b1c6ec55a9ac16e10fdc5cac..b6f0f9043a9af8e3c4d4f8bf7e4af4cab0aa5df9 100644
|
|
--- a/sys.h
|
|
+++ b/sys.h
|
|
@@ -21,8 +21,9 @@
|
|
#define SYS_BATIF_PATH_FMT "/sys/class/net/%s/mesh/"
|
|
#define SYS_IFACE_PATH "/sys/class/net"
|
|
#define SYS_IFACE_DIR SYS_IFACE_PATH"/%s/"
|
|
-#define SYS_MESH_IFACE_FMT SYS_IFACE_PATH"/%s/batman_adv/mesh_iface"
|
|
-#define SYS_IFACE_STATUS_FMT SYS_IFACE_PATH"/%s/batman_adv/iface_status"
|
|
+#define SYS_HARDIF_PATH SYS_IFACE_DIR "batman_adv/"
|
|
+#define SYS_MESH_IFACE_FMT SYS_HARDIF_PATH "mesh_iface"
|
|
+#define SYS_IFACE_STATUS_FMT SYS_HARDIF_PATH "iface_status"
|
|
#define SYS_VLAN_PATH SYS_IFACE_PATH"/%s/mesh/vlan%d/"
|
|
#define SYS_ROUTING_ALGO_FMT SYS_IFACE_PATH"/%s/mesh/routing_algo"
|
|
#define VLAN_ID_MAX_LEN 4
|