b43: HT-PHY: switch to channel after enabling radio
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / batman-adv / main.c
blob0a7cee0076f4ce60dbcb815e95a506939fa34687
1 /*
2 * Copyright (C) 2007-2011 B.A.T.M.A.N. contributors:
4 * Marek Lindner, Simon Wunderlich
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA
22 #include "main.h"
23 #include "bat_sysfs.h"
24 #include "bat_debugfs.h"
25 #include "routing.h"
26 #include "send.h"
27 #include "originator.h"
28 #include "soft-interface.h"
29 #include "icmp_socket.h"
30 #include "translation-table.h"
31 #include "hard-interface.h"
32 #include "gateway_client.h"
33 #include "vis.h"
34 #include "hash.h"
37 /* List manipulations on hardif_list have to be rtnl_lock()'ed,
38 * list traversals just rcu-locked */
39 struct list_head hardif_list;
41 unsigned char broadcast_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
43 struct workqueue_struct *bat_event_workqueue;
45 static int __init batman_init(void)
47 INIT_LIST_HEAD(&hardif_list);
49 /* the name should not be longer than 10 chars - see
50 * http://lwn.net/Articles/23634/ */
51 bat_event_workqueue = create_singlethread_workqueue("bat_events");
53 if (!bat_event_workqueue)
54 return -ENOMEM;
56 bat_socket_init();
57 debugfs_init();
59 register_netdevice_notifier(&hard_if_notifier);
61 pr_info("B.A.T.M.A.N. advanced %s%s (compatibility version %i) "
62 "loaded\n", SOURCE_VERSION, REVISION_VERSION_STR,
63 COMPAT_VERSION);
65 return 0;
68 static void __exit batman_exit(void)
70 debugfs_destroy();
71 unregister_netdevice_notifier(&hard_if_notifier);
72 hardif_remove_interfaces();
74 flush_workqueue(bat_event_workqueue);
75 destroy_workqueue(bat_event_workqueue);
76 bat_event_workqueue = NULL;
78 rcu_barrier();
81 int mesh_init(struct net_device *soft_iface)
83 struct bat_priv *bat_priv = netdev_priv(soft_iface);
85 spin_lock_init(&bat_priv->forw_bat_list_lock);
86 spin_lock_init(&bat_priv->forw_bcast_list_lock);
87 spin_lock_init(&bat_priv->tt_lhash_lock);
88 spin_lock_init(&bat_priv->tt_ghash_lock);
89 spin_lock_init(&bat_priv->gw_list_lock);
90 spin_lock_init(&bat_priv->vis_hash_lock);
91 spin_lock_init(&bat_priv->vis_list_lock);
92 spin_lock_init(&bat_priv->softif_neigh_lock);
93 spin_lock_init(&bat_priv->softif_neigh_vid_lock);
95 INIT_HLIST_HEAD(&bat_priv->forw_bat_list);
96 INIT_HLIST_HEAD(&bat_priv->forw_bcast_list);
97 INIT_HLIST_HEAD(&bat_priv->gw_list);
98 INIT_HLIST_HEAD(&bat_priv->softif_neigh_vids);
100 if (originator_init(bat_priv) < 1)
101 goto err;
103 if (tt_local_init(bat_priv) < 1)
104 goto err;
106 if (tt_global_init(bat_priv) < 1)
107 goto err;
109 tt_local_add(soft_iface, soft_iface->dev_addr);
111 if (vis_init(bat_priv) < 1)
112 goto err;
114 atomic_set(&bat_priv->mesh_state, MESH_ACTIVE);
115 goto end;
117 err:
118 pr_err("Unable to allocate memory for mesh information structures: "
119 "out of mem ?\n");
120 mesh_free(soft_iface);
121 return -1;
123 end:
124 return 0;
127 void mesh_free(struct net_device *soft_iface)
129 struct bat_priv *bat_priv = netdev_priv(soft_iface);
131 atomic_set(&bat_priv->mesh_state, MESH_DEACTIVATING);
133 purge_outstanding_packets(bat_priv, NULL);
135 vis_quit(bat_priv);
137 gw_node_purge(bat_priv);
138 originator_free(bat_priv);
140 tt_local_free(bat_priv);
141 tt_global_free(bat_priv);
143 softif_neigh_purge(bat_priv);
145 atomic_set(&bat_priv->mesh_state, MESH_INACTIVE);
148 void inc_module_count(void)
150 try_module_get(THIS_MODULE);
153 void dec_module_count(void)
155 module_put(THIS_MODULE);
158 int is_my_mac(uint8_t *addr)
160 struct hard_iface *hard_iface;
162 rcu_read_lock();
163 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
164 if (hard_iface->if_status != IF_ACTIVE)
165 continue;
167 if (compare_eth(hard_iface->net_dev->dev_addr, addr)) {
168 rcu_read_unlock();
169 return 1;
172 rcu_read_unlock();
173 return 0;
177 module_init(batman_init);
178 module_exit(batman_exit);
180 MODULE_LICENSE("GPL");
182 MODULE_AUTHOR(DRIVER_AUTHOR);
183 MODULE_DESCRIPTION(DRIVER_DESC);
184 MODULE_SUPPORTED_DEVICE(DRIVER_DEVICE);
185 #ifdef REVISION_VERSION
186 MODULE_VERSION(SOURCE_VERSION "-" REVISION_VERSION);
187 #else
188 MODULE_VERSION(SOURCE_VERSION);
189 #endif