|
@@ -32,7 +32,6 @@
|
|
#include <linux/kref.h>
|
|
#include <linux/kref.h>
|
|
#include <linux/list.h>
|
|
#include <linux/list.h>
|
|
#include <linux/module.h>
|
|
#include <linux/module.h>
|
|
-#include <linux/moduleparam.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
#include <linux/netdevice.h>
|
|
#include <linux/rculist.h>
|
|
#include <linux/rculist.h>
|
|
#include <linux/rcupdate.h>
|
|
#include <linux/rcupdate.h>
|
|
@@ -68,8 +67,6 @@
|
|
struct list_head batadv_hardif_list;
|
|
struct list_head batadv_hardif_list;
|
|
static int (*batadv_rx_handler[256])(struct sk_buff *,
|
|
static int (*batadv_rx_handler[256])(struct sk_buff *,
|
|
struct batadv_hard_iface *);
|
|
struct batadv_hard_iface *);
|
|
-char batadv_routing_algo[20] = "BATMAN_IV";
|
|
|
|
-static struct hlist_head batadv_algo_list;
|
|
|
|
|
|
|
|
unsigned char batadv_broadcast_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
|
|
unsigned char batadv_broadcast_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
|
|
|
|
|
|
@@ -80,7 +77,7 @@ static void batadv_recv_handler_init(void);
|
|
static int __init batadv_init(void)
|
|
static int __init batadv_init(void)
|
|
{
|
|
{
|
|
INIT_LIST_HEAD(&batadv_hardif_list);
|
|
INIT_LIST_HEAD(&batadv_hardif_list);
|
|
- INIT_HLIST_HEAD(&batadv_algo_list);
|
|
|
|
|
|
+ batadv_algo_init();
|
|
|
|
|
|
batadv_recv_handler_init();
|
|
batadv_recv_handler_init();
|
|
|
|
|
|
@@ -535,76 +532,6 @@ void batadv_recv_handler_unregister(u8 packet_type)
|
|
batadv_rx_handler[packet_type] = batadv_recv_unhandled_packet;
|
|
batadv_rx_handler[packet_type] = batadv_recv_unhandled_packet;
|
|
}
|
|
}
|
|
|
|
|
|
-static struct batadv_algo_ops *batadv_algo_get(char *name)
|
|
|
|
-{
|
|
|
|
- struct batadv_algo_ops *bat_algo_ops = NULL, *bat_algo_ops_tmp;
|
|
|
|
-
|
|
|
|
- hlist_for_each_entry(bat_algo_ops_tmp, &batadv_algo_list, list) {
|
|
|
|
- if (strcmp(bat_algo_ops_tmp->name, name) != 0)
|
|
|
|
- continue;
|
|
|
|
-
|
|
|
|
- bat_algo_ops = bat_algo_ops_tmp;
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- return bat_algo_ops;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-int batadv_algo_register(struct batadv_algo_ops *bat_algo_ops)
|
|
|
|
-{
|
|
|
|
- struct batadv_algo_ops *bat_algo_ops_tmp;
|
|
|
|
-
|
|
|
|
- bat_algo_ops_tmp = batadv_algo_get(bat_algo_ops->name);
|
|
|
|
- if (bat_algo_ops_tmp) {
|
|
|
|
- pr_info("Trying to register already registered routing algorithm: %s\n",
|
|
|
|
- bat_algo_ops->name);
|
|
|
|
- return -EEXIST;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /* all algorithms must implement all ops (for now) */
|
|
|
|
- if (!bat_algo_ops->bat_iface_enable ||
|
|
|
|
- !bat_algo_ops->bat_iface_disable ||
|
|
|
|
- !bat_algo_ops->bat_iface_update_mac ||
|
|
|
|
- !bat_algo_ops->bat_primary_iface_set ||
|
|
|
|
- !bat_algo_ops->bat_neigh_cmp ||
|
|
|
|
- !bat_algo_ops->bat_neigh_is_similar_or_better) {
|
|
|
|
- pr_info("Routing algo '%s' does not implement required ops\n",
|
|
|
|
- bat_algo_ops->name);
|
|
|
|
- return -EINVAL;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- INIT_HLIST_NODE(&bat_algo_ops->list);
|
|
|
|
- hlist_add_head(&bat_algo_ops->list, &batadv_algo_list);
|
|
|
|
-
|
|
|
|
- return 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-int batadv_algo_select(struct batadv_priv *bat_priv, char *name)
|
|
|
|
-{
|
|
|
|
- struct batadv_algo_ops *bat_algo_ops;
|
|
|
|
-
|
|
|
|
- bat_algo_ops = batadv_algo_get(name);
|
|
|
|
- if (!bat_algo_ops)
|
|
|
|
- return -EINVAL;
|
|
|
|
-
|
|
|
|
- bat_priv->bat_algo_ops = bat_algo_ops;
|
|
|
|
-
|
|
|
|
- return 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-int batadv_algo_seq_print_text(struct seq_file *seq, void *offset)
|
|
|
|
-{
|
|
|
|
- struct batadv_algo_ops *bat_algo_ops;
|
|
|
|
-
|
|
|
|
- seq_puts(seq, "Available routing algorithms:\n");
|
|
|
|
-
|
|
|
|
- hlist_for_each_entry(bat_algo_ops, &batadv_algo_list, list) {
|
|
|
|
- seq_printf(seq, " * %s\n", bat_algo_ops->name);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- return 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* batadv_skb_crc32 - calculate CRC32 of the whole packet and skip bytes in
|
|
* batadv_skb_crc32 - calculate CRC32 of the whole packet and skip bytes in
|
|
* the header
|
|
* the header
|
|
@@ -691,36 +618,6 @@ bool batadv_vlan_ap_isola_get(struct batadv_priv *bat_priv, unsigned short vid)
|
|
return ap_isolation_enabled;
|
|
return ap_isolation_enabled;
|
|
}
|
|
}
|
|
|
|
|
|
-static int batadv_param_set_ra(const char *val, const struct kernel_param *kp)
|
|
|
|
-{
|
|
|
|
- struct batadv_algo_ops *bat_algo_ops;
|
|
|
|
- char *algo_name = (char *)val;
|
|
|
|
- size_t name_len = strlen(algo_name);
|
|
|
|
-
|
|
|
|
- if (name_len > 0 && algo_name[name_len - 1] == '\n')
|
|
|
|
- algo_name[name_len - 1] = '\0';
|
|
|
|
-
|
|
|
|
- bat_algo_ops = batadv_algo_get(algo_name);
|
|
|
|
- if (!bat_algo_ops) {
|
|
|
|
- pr_err("Routing algorithm '%s' is not supported\n", algo_name);
|
|
|
|
- return -EINVAL;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- return param_set_copystring(algo_name, kp);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static const struct kernel_param_ops batadv_param_ops_ra = {
|
|
|
|
- .set = batadv_param_set_ra,
|
|
|
|
- .get = param_get_string,
|
|
|
|
-};
|
|
|
|
-
|
|
|
|
-static struct kparam_string batadv_param_string_ra = {
|
|
|
|
- .maxlen = sizeof(batadv_routing_algo),
|
|
|
|
- .string = batadv_routing_algo,
|
|
|
|
-};
|
|
|
|
-
|
|
|
|
-module_param_cb(routing_algo, &batadv_param_ops_ra, &batadv_param_string_ra,
|
|
|
|
- 0644);
|
|
|
|
module_init(batadv_init);
|
|
module_init(batadv_init);
|
|
module_exit(batadv_exit);
|
|
module_exit(batadv_exit);
|
|
|
|
|