aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv/packet.h
diff options
context:
space:
mode:
authorAntonio Quartulli <ordex@autistici.org>2011-04-27 08:27:44 -0400
committerSven Eckelmann <sven@narfation.org>2011-06-20 05:37:24 -0400
commita73105b8d4c765d9ebfb664d0a66802127d8e4c7 (patch)
treeb4b11a4050109d8f042c7ac87a5a6d6d91b5d1d2 /net/batman-adv/packet.h
parent3b27ffb00fbe9d9189715ea13ce8712e2f0cb0c5 (diff)
batman-adv: improved client announcement mechanism
The client announcement mechanism informs every mesh node in the network of any connected non-mesh client, in order to find the path towards that client from any given point in the mesh. The old implementation was based on the simple idea of appending a data buffer to each OGM containing all the client MAC addresses the node is serving. All other nodes can populate their global translation tables (table which links client MAC addresses to node addresses) using this MAC address buffer and linking it to the node's address contained in the OGM. A node that wants to contact a client has to lookup the node the client is connected to and its address in the global translation table. It is easy to understand that this implementation suffers from several issues: - big overhead (each and every OGM contains the entire list of connected clients) - high latencies for client route updates due to long OGM trip time and OGM losses The new implementation addresses these issues by appending client changes (new client joined or a client left) to the OGM instead of filling it with all the client addresses each time. In this way nodes can modify their global tables by means of "updates", thus reducing the overhead within the OGMs. To keep the entire network in sync each node maintains a translation table version number (ttvn) and a translation table checksum. These values are spread with the OGM to allow all the network participants to determine whether or not they need to update their translation table information. When a translation table lookup is performed in order to send a packet to a client attached to another node, the destination's ttvn is added to the payload packet. Forwarding nodes can compare the packet's ttvn with their destination's ttvn (this node could have a fresher information than the source) and re-route the packet if necessary. This greatly reduces the packet loss of clients roaming from one AP to the next. Signed-off-by: Antonio Quartulli <ordex@autistici.org> Signed-off-by: Marek Lindner <lindner_marek@yahoo.de> Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv/packet.h')
-rw-r--r--net/batman-adv/packet.h59
1 files changed, 54 insertions, 5 deletions
diff --git a/net/batman-adv/packet.h b/net/batman-adv/packet.h
index 6ddbfd830784..407dd2e84aff 100644
--- a/net/batman-adv/packet.h
+++ b/net/batman-adv/packet.h
@@ -30,7 +30,8 @@ enum bat_packettype {
30 BAT_UNICAST = 0x03, 30 BAT_UNICAST = 0x03,
31 BAT_BCAST = 0x04, 31 BAT_BCAST = 0x04,
32 BAT_VIS = 0x05, 32 BAT_VIS = 0x05,
33 BAT_UNICAST_FRAG = 0x06 33 BAT_UNICAST_FRAG = 0x06,
34 BAT_TT_QUERY = 0x07
34}; 35};
35 36
36/* this file is included by batctl which needs these defines */ 37/* this file is included by batctl which needs these defines */
@@ -63,6 +64,25 @@ enum unicast_frag_flags {
63 UNI_FRAG_LARGETAIL = 1 << 1 64 UNI_FRAG_LARGETAIL = 1 << 1
64}; 65};
65 66
67/* TT_QUERY subtypes */
68#define TT_QUERY_TYPE_MASK 0x3
69
70enum tt_query_packettype {
71 TT_REQUEST = 0,
72 TT_RESPONSE = 1
73};
74
75/* TT_QUERY flags */
76enum tt_query_flags {
77 TT_FULL_TABLE = 1 << 2
78};
79
80/* TT_CHANGE flags */
81enum tt_change_flags {
82 TT_CHANGE_DEL = 0x01,
83 TT_CLIENT_ROAM = 0x02
84};
85
66struct batman_packet { 86struct batman_packet {
67 uint8_t packet_type; 87 uint8_t packet_type;
68 uint8_t version; /* batman version field */ 88 uint8_t version; /* batman version field */
@@ -73,8 +93,9 @@ struct batman_packet {
73 uint8_t prev_sender[6]; 93 uint8_t prev_sender[6];
74 uint8_t gw_flags; /* flags related to gateway class */ 94 uint8_t gw_flags; /* flags related to gateway class */
75 uint8_t tq; 95 uint8_t tq;
76 uint8_t num_tt; 96 uint8_t tt_num_changes;
77 uint8_t reserved; 97 uint8_t ttvn; /* translation table version number */
98 uint16_t tt_crc;
78} __packed; 99} __packed;
79 100
80#define BAT_PACKET_LEN sizeof(struct batman_packet) 101#define BAT_PACKET_LEN sizeof(struct batman_packet)
@@ -112,7 +133,7 @@ struct unicast_packet {
112 uint8_t packet_type; 133 uint8_t packet_type;
113 uint8_t version; /* batman version field */ 134 uint8_t version; /* batman version field */
114 uint8_t ttl; 135 uint8_t ttl;
115 uint8_t reserved; 136 uint8_t ttvn; /* destination translation table version number */
116 uint8_t dest[6]; 137 uint8_t dest[6];
117} __packed; 138} __packed;
118 139
@@ -120,7 +141,7 @@ struct unicast_frag_packet {
120 uint8_t packet_type; 141 uint8_t packet_type;
121 uint8_t version; /* batman version field */ 142 uint8_t version; /* batman version field */
122 uint8_t ttl; 143 uint8_t ttl;
123 uint8_t reserved; 144 uint8_t ttvn; /* destination translation table version number */
124 uint8_t dest[6]; 145 uint8_t dest[6];
125 uint8_t flags; 146 uint8_t flags;
126 uint8_t align; 147 uint8_t align;
@@ -150,4 +171,32 @@ struct vis_packet {
150 uint8_t sender_orig[6]; /* who sent or rebroadcasted this packet */ 171 uint8_t sender_orig[6]; /* who sent or rebroadcasted this packet */
151} __packed; 172} __packed;
152 173
174struct tt_query_packet {
175 uint8_t packet_type;
176 uint8_t version; /* batman version field */
177 uint8_t ttl;
178 /* the flag field is a combination of:
179 * - TT_REQUEST or TT_RESPONSE
180 * - TT_FULL_TABLE */
181 uint8_t flags;
182 uint8_t dst[ETH_ALEN];
183 uint8_t src[ETH_ALEN];
184 /* the ttvn field is:
185 * if TT_REQUEST: ttvn that triggered the
186 * request
187 * if TT_RESPONSE: new ttvn for the src
188 * orig_node */
189 uint8_t ttvn;
190 /* tt_data field is:
191 * if TT_REQUEST: crc associated with the
192 * ttvn
193 * if TT_RESPONSE: table_size */
194 uint16_t tt_data;
195} __packed;
196
197struct tt_change {
198 uint8_t flags;
199 uint8_t addr[ETH_ALEN];
200} __packed;
201
153#endif /* _NET_BATMAN_ADV_PACKET_H_ */ 202#endif /* _NET_BATMAN_ADV_PACKET_H_ */