Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 1 | /* Copyright (C) 2010-2012 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 2 | * |
| 3 | * Andreas Langer |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of version 2 of the GNU General Public |
| 7 | * License as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 17 | * 02110-1301, USA |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | #include "main.h" |
| 21 | #include "unicast.h" |
| 22 | #include "send.h" |
| 23 | #include "soft-interface.h" |
| 24 | #include "gateway_client.h" |
| 25 | #include "originator.h" |
| 26 | #include "hash.h" |
| 27 | #include "translation-table.h" |
| 28 | #include "routing.h" |
| 29 | #include "hard-interface.h" |
| 30 | |
| 31 | |
| 32 | static struct sk_buff *frag_merge_packet(struct list_head *head, |
| 33 | struct frag_packet_list_entry *tfp, |
| 34 | struct sk_buff *skb) |
| 35 | { |
| 36 | struct unicast_frag_packet *up = |
| 37 | (struct unicast_frag_packet *)skb->data; |
| 38 | struct sk_buff *tmp_skb; |
| 39 | struct unicast_packet *unicast_packet; |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 40 | int hdr_len = sizeof(*unicast_packet); |
| 41 | int uni_diff = sizeof(*up) - hdr_len; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 42 | |
| 43 | /* set skb to the first part and tmp_skb to the second part */ |
| 44 | if (up->flags & UNI_FRAG_HEAD) { |
| 45 | tmp_skb = tfp->skb; |
| 46 | } else { |
| 47 | tmp_skb = skb; |
| 48 | skb = tfp->skb; |
| 49 | } |
| 50 | |
Sven Eckelmann | 531c9da | 2011-02-06 23:26:43 +0000 | [diff] [blame] | 51 | if (skb_linearize(skb) < 0 || skb_linearize(tmp_skb) < 0) |
| 52 | goto err; |
| 53 | |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 54 | skb_pull(tmp_skb, sizeof(*up)); |
Sven Eckelmann | 531c9da | 2011-02-06 23:26:43 +0000 | [diff] [blame] | 55 | if (pskb_expand_head(skb, 0, tmp_skb->len, GFP_ATOMIC) < 0) |
| 56 | goto err; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 57 | |
| 58 | /* move free entry to end */ |
| 59 | tfp->skb = NULL; |
| 60 | tfp->seqno = 0; |
| 61 | list_move_tail(&tfp->list, head); |
| 62 | |
| 63 | memcpy(skb_put(skb, tmp_skb->len), tmp_skb->data, tmp_skb->len); |
| 64 | kfree_skb(tmp_skb); |
| 65 | |
| 66 | memmove(skb->data + uni_diff, skb->data, hdr_len); |
Sven Eckelmann | 40e0c4f | 2012-03-07 09:07:48 +0100 | [diff] [blame] | 67 | unicast_packet = (struct unicast_packet *)skb_pull(skb, uni_diff); |
Sven Eckelmann | 76543d1 | 2011-11-20 15:47:38 +0100 | [diff] [blame] | 68 | unicast_packet->header.packet_type = BAT_UNICAST; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 69 | |
| 70 | return skb; |
Sven Eckelmann | 531c9da | 2011-02-06 23:26:43 +0000 | [diff] [blame] | 71 | |
| 72 | err: |
| 73 | /* free buffered skb, skb will be freed later */ |
| 74 | kfree_skb(tfp->skb); |
| 75 | return NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | static void frag_create_entry(struct list_head *head, struct sk_buff *skb) |
| 79 | { |
| 80 | struct frag_packet_list_entry *tfp; |
| 81 | struct unicast_frag_packet *up = |
| 82 | (struct unicast_frag_packet *)skb->data; |
| 83 | |
| 84 | /* free and oldest packets stand at the end */ |
| 85 | tfp = list_entry((head)->prev, typeof(*tfp), list); |
| 86 | kfree_skb(tfp->skb); |
| 87 | |
| 88 | tfp->seqno = ntohs(up->seqno); |
| 89 | tfp->skb = skb; |
| 90 | list_move(&tfp->list, head); |
| 91 | return; |
| 92 | } |
| 93 | |
| 94 | static int frag_create_buffer(struct list_head *head) |
| 95 | { |
| 96 | int i; |
| 97 | struct frag_packet_list_entry *tfp; |
| 98 | |
| 99 | for (i = 0; i < FRAG_BUFFER_SIZE; i++) { |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 100 | tfp = kmalloc(sizeof(*tfp), GFP_ATOMIC); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 101 | if (!tfp) { |
Sven Eckelmann | 88ed1e77 | 2012-05-12 02:09:40 +0200 | [diff] [blame] | 102 | batadv_frag_list_free(head); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 103 | return -ENOMEM; |
| 104 | } |
| 105 | tfp->skb = NULL; |
| 106 | tfp->seqno = 0; |
| 107 | INIT_LIST_HEAD(&tfp->list); |
| 108 | list_add(&tfp->list, head); |
| 109 | } |
| 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | |
| 114 | static struct frag_packet_list_entry *frag_search_packet(struct list_head *head, |
Sven Eckelmann | 747e422 | 2011-05-14 23:14:50 +0200 | [diff] [blame] | 115 | const struct unicast_frag_packet *up) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 116 | { |
| 117 | struct frag_packet_list_entry *tfp; |
| 118 | struct unicast_frag_packet *tmp_up = NULL; |
| 119 | uint16_t search_seqno; |
| 120 | |
| 121 | if (up->flags & UNI_FRAG_HEAD) |
| 122 | search_seqno = ntohs(up->seqno)+1; |
| 123 | else |
| 124 | search_seqno = ntohs(up->seqno)-1; |
| 125 | |
| 126 | list_for_each_entry(tfp, head, list) { |
| 127 | |
| 128 | if (!tfp->skb) |
| 129 | continue; |
| 130 | |
| 131 | if (tfp->seqno == ntohs(up->seqno)) |
| 132 | goto mov_tail; |
| 133 | |
| 134 | tmp_up = (struct unicast_frag_packet *)tfp->skb->data; |
| 135 | |
| 136 | if (tfp->seqno == search_seqno) { |
| 137 | |
| 138 | if ((tmp_up->flags & UNI_FRAG_HEAD) != |
| 139 | (up->flags & UNI_FRAG_HEAD)) |
| 140 | return tfp; |
| 141 | else |
| 142 | goto mov_tail; |
| 143 | } |
| 144 | } |
| 145 | return NULL; |
| 146 | |
| 147 | mov_tail: |
| 148 | list_move_tail(&tfp->list, head); |
| 149 | return NULL; |
| 150 | } |
| 151 | |
Sven Eckelmann | 88ed1e77 | 2012-05-12 02:09:40 +0200 | [diff] [blame] | 152 | void batadv_frag_list_free(struct list_head *head) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 153 | { |
| 154 | struct frag_packet_list_entry *pf, *tmp_pf; |
| 155 | |
| 156 | if (!list_empty(head)) { |
| 157 | |
| 158 | list_for_each_entry_safe(pf, tmp_pf, head, list) { |
| 159 | kfree_skb(pf->skb); |
| 160 | list_del(&pf->list); |
| 161 | kfree(pf); |
| 162 | } |
| 163 | } |
| 164 | return; |
| 165 | } |
| 166 | |
| 167 | /* frag_reassemble_skb(): |
| 168 | * returns NET_RX_DROP if the operation failed - skb is left intact |
| 169 | * returns NET_RX_SUCCESS if the fragment was buffered (skb_new will be NULL) |
| 170 | * or the skb could be reassembled (skb_new will point to the new packet and |
| 171 | * skb was freed) |
| 172 | */ |
Sven Eckelmann | 88ed1e77 | 2012-05-12 02:09:40 +0200 | [diff] [blame] | 173 | int batadv_frag_reassemble_skb(struct sk_buff *skb, struct bat_priv *bat_priv, |
| 174 | struct sk_buff **new_skb) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 175 | { |
| 176 | struct orig_node *orig_node; |
| 177 | struct frag_packet_list_entry *tmp_frag_entry; |
| 178 | int ret = NET_RX_DROP; |
| 179 | struct unicast_frag_packet *unicast_packet = |
| 180 | (struct unicast_frag_packet *)skb->data; |
| 181 | |
| 182 | *new_skb = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 183 | |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 184 | orig_node = orig_hash_find(bat_priv, unicast_packet->orig); |
| 185 | if (!orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 186 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 187 | |
| 188 | orig_node->last_frag_packet = jiffies; |
| 189 | |
| 190 | if (list_empty(&orig_node->frag_list) && |
| 191 | frag_create_buffer(&orig_node->frag_list)) { |
| 192 | pr_debug("couldn't create frag buffer\n"); |
| 193 | goto out; |
| 194 | } |
| 195 | |
| 196 | tmp_frag_entry = frag_search_packet(&orig_node->frag_list, |
| 197 | unicast_packet); |
| 198 | |
| 199 | if (!tmp_frag_entry) { |
| 200 | frag_create_entry(&orig_node->frag_list, skb); |
| 201 | ret = NET_RX_SUCCESS; |
| 202 | goto out; |
| 203 | } |
| 204 | |
| 205 | *new_skb = frag_merge_packet(&orig_node->frag_list, tmp_frag_entry, |
| 206 | skb); |
| 207 | /* if not, merge failed */ |
| 208 | if (*new_skb) |
| 209 | ret = NET_RX_SUCCESS; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 210 | |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 211 | out: |
| 212 | if (orig_node) |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 213 | batadv_orig_node_free_ref(orig_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 214 | return ret; |
| 215 | } |
| 216 | |
Sven Eckelmann | 88ed1e77 | 2012-05-12 02:09:40 +0200 | [diff] [blame] | 217 | int batadv_frag_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv, |
| 218 | struct hard_iface *hard_iface, const uint8_t dstaddr[]) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 219 | { |
| 220 | struct unicast_packet tmp_uc, *unicast_packet; |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 221 | struct hard_iface *primary_if; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 222 | struct sk_buff *frag_skb; |
| 223 | struct unicast_frag_packet *frag1, *frag2; |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 224 | int uc_hdr_len = sizeof(*unicast_packet); |
| 225 | int ucf_hdr_len = sizeof(*frag1); |
Sven Eckelmann | 5c77d8b | 2011-01-25 21:59:26 +0000 | [diff] [blame] | 226 | int data_len = skb->len - uc_hdr_len; |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 227 | int large_tail = 0, ret = NET_RX_DROP; |
Sven Eckelmann | c2f7f0e | 2011-02-10 14:33:56 +0000 | [diff] [blame] | 228 | uint16_t seqno; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 229 | |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 230 | primary_if = primary_if_get_selected(bat_priv); |
| 231 | if (!primary_if) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 232 | goto dropped; |
| 233 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 234 | frag_skb = dev_alloc_skb(data_len - (data_len / 2) + ucf_hdr_len); |
Jesper Juhl | ed7809d | 2011-01-13 21:53:38 +0100 | [diff] [blame] | 235 | if (!frag_skb) |
| 236 | goto dropped; |
Sven Eckelmann | 5c77d8b | 2011-01-25 21:59:26 +0000 | [diff] [blame] | 237 | skb_reserve(frag_skb, ucf_hdr_len); |
Jesper Juhl | ed7809d | 2011-01-13 21:53:38 +0100 | [diff] [blame] | 238 | |
Sven Eckelmann | 40e0c4f | 2012-03-07 09:07:48 +0100 | [diff] [blame] | 239 | unicast_packet = (struct unicast_packet *)skb->data; |
Jesper Juhl | ed7809d | 2011-01-13 21:53:38 +0100 | [diff] [blame] | 240 | memcpy(&tmp_uc, unicast_packet, uc_hdr_len); |
Sven Eckelmann | 5c77d8b | 2011-01-25 21:59:26 +0000 | [diff] [blame] | 241 | skb_split(skb, frag_skb, data_len / 2 + uc_hdr_len); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 242 | |
Sven Eckelmann | 04b482a | 2012-05-12 02:09:38 +0200 | [diff] [blame] | 243 | if (batadv_skb_head_push(skb, ucf_hdr_len - uc_hdr_len) < 0 || |
| 244 | batadv_skb_head_push(frag_skb, ucf_hdr_len) < 0) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 245 | goto drop_frag; |
| 246 | |
| 247 | frag1 = (struct unicast_frag_packet *)skb->data; |
| 248 | frag2 = (struct unicast_frag_packet *)frag_skb->data; |
| 249 | |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 250 | memcpy(frag1, &tmp_uc, sizeof(tmp_uc)); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 251 | |
Sven Eckelmann | 76543d1 | 2011-11-20 15:47:38 +0100 | [diff] [blame] | 252 | frag1->header.ttl--; |
| 253 | frag1->header.version = COMPAT_VERSION; |
| 254 | frag1->header.packet_type = BAT_UNICAST_FRAG; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 255 | |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 256 | memcpy(frag1->orig, primary_if->net_dev->dev_addr, ETH_ALEN); |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 257 | memcpy(frag2, frag1, sizeof(*frag2)); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 258 | |
Sven Eckelmann | ae361ce | 2011-01-25 22:02:31 +0000 | [diff] [blame] | 259 | if (data_len & 1) |
| 260 | large_tail = UNI_FRAG_LARGETAIL; |
| 261 | |
| 262 | frag1->flags = UNI_FRAG_HEAD | large_tail; |
| 263 | frag2->flags = large_tail; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 264 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 265 | seqno = atomic_add_return(2, &hard_iface->frag_seqno); |
Sven Eckelmann | c2f7f0e | 2011-02-10 14:33:56 +0000 | [diff] [blame] | 266 | frag1->seqno = htons(seqno - 1); |
| 267 | frag2->seqno = htons(seqno); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 268 | |
Sven Eckelmann | 9455e34 | 2012-05-12 02:09:37 +0200 | [diff] [blame] | 269 | batadv_send_skb_packet(skb, hard_iface, dstaddr); |
| 270 | batadv_send_skb_packet(frag_skb, hard_iface, dstaddr); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 271 | ret = NET_RX_SUCCESS; |
| 272 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 273 | |
| 274 | drop_frag: |
| 275 | kfree_skb(frag_skb); |
| 276 | dropped: |
| 277 | kfree_skb(skb); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 278 | out: |
| 279 | if (primary_if) |
| 280 | hardif_free_ref(primary_if); |
| 281 | return ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Sven Eckelmann | 88ed1e77 | 2012-05-12 02:09:40 +0200 | [diff] [blame] | 284 | int batadv_unicast_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 285 | { |
| 286 | struct ethhdr *ethhdr = (struct ethhdr *)skb->data; |
| 287 | struct unicast_packet *unicast_packet; |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 288 | struct orig_node *orig_node; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 289 | struct neigh_node *neigh_node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 290 | int data_len = skb->len; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 291 | int ret = 1; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 292 | |
| 293 | /* get routing information */ |
Linus Lüssing | 43c70ad | 2011-02-13 21:13:04 +0000 | [diff] [blame] | 294 | if (is_multicast_ether_addr(ethhdr->h_dest)) { |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 295 | orig_node = batadv_gw_get_selected_orig(bat_priv); |
Linus Lüssing | 43c70ad | 2011-02-13 21:13:04 +0000 | [diff] [blame] | 296 | if (orig_node) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 297 | goto find_router; |
| 298 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 299 | |
Antonio Quartulli | 3d393e4 | 2011-07-07 15:35:37 +0200 | [diff] [blame] | 300 | /* check for tt host - increases orig_node refcount. |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 301 | * returns NULL in case of AP isolation |
| 302 | */ |
Sven Eckelmann | 08c36d3 | 2012-05-12 02:09:39 +0200 | [diff] [blame] | 303 | orig_node = batadv_transtable_search(bat_priv, ethhdr->h_source, |
| 304 | ethhdr->h_dest); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 305 | find_router: |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 306 | /* find_router(): |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 307 | * - if orig_node is NULL it returns NULL |
| 308 | * - increases neigh_nodes refcount if found. |
| 309 | */ |
Sven Eckelmann | 30d3c51 | 2012-05-12 02:09:36 +0200 | [diff] [blame] | 310 | neigh_node = batadv_find_router(bat_priv, orig_node, NULL); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 311 | if (!neigh_node) |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 312 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 313 | |
Sven Eckelmann | 04b482a | 2012-05-12 02:09:38 +0200 | [diff] [blame] | 314 | if (batadv_skb_head_push(skb, sizeof(*unicast_packet)) < 0) |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 315 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 316 | |
| 317 | unicast_packet = (struct unicast_packet *)skb->data; |
| 318 | |
Sven Eckelmann | 76543d1 | 2011-11-20 15:47:38 +0100 | [diff] [blame] | 319 | unicast_packet->header.version = COMPAT_VERSION; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 320 | /* batman packet type: unicast */ |
Sven Eckelmann | 76543d1 | 2011-11-20 15:47:38 +0100 | [diff] [blame] | 321 | unicast_packet->header.packet_type = BAT_UNICAST; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 322 | /* set unicast ttl */ |
Sven Eckelmann | 76543d1 | 2011-11-20 15:47:38 +0100 | [diff] [blame] | 323 | unicast_packet->header.ttl = TTL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 324 | /* copy the destination for faster routing */ |
| 325 | memcpy(unicast_packet->dest, orig_node->orig, ETH_ALEN); |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 326 | /* set the destination tt version number */ |
| 327 | unicast_packet->ttvn = |
| 328 | (uint8_t)atomic_read(&orig_node->last_ttvn); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 329 | |
Antonio Quartulli | 3275e7c | 2012-03-16 18:03:28 +0100 | [diff] [blame] | 330 | /* inform the destination node that we are still missing a correct route |
| 331 | * for this client. The destination will receive this packet and will |
| 332 | * try to reroute it because the ttvn contained in the header is less |
| 333 | * than the current one |
| 334 | */ |
Sven Eckelmann | 08c36d3 | 2012-05-12 02:09:39 +0200 | [diff] [blame] | 335 | if (batadv_tt_global_client_is_roaming(bat_priv, ethhdr->h_dest)) |
Antonio Quartulli | 3275e7c | 2012-03-16 18:03:28 +0100 | [diff] [blame] | 336 | unicast_packet->ttvn = unicast_packet->ttvn - 1; |
| 337 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 338 | if (atomic_read(&bat_priv->fragmentation) && |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 339 | data_len + sizeof(*unicast_packet) > |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 340 | neigh_node->if_incoming->net_dev->mtu) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 341 | /* send frag skb decreases ttl */ |
Sven Eckelmann | 76543d1 | 2011-11-20 15:47:38 +0100 | [diff] [blame] | 342 | unicast_packet->header.ttl++; |
Sven Eckelmann | 88ed1e77 | 2012-05-12 02:09:40 +0200 | [diff] [blame] | 343 | ret = batadv_frag_send_skb(skb, bat_priv, |
| 344 | neigh_node->if_incoming, |
| 345 | neigh_node->addr); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 346 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 347 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 348 | |
Sven Eckelmann | 9455e34 | 2012-05-12 02:09:37 +0200 | [diff] [blame] | 349 | batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 350 | ret = 0; |
| 351 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 352 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 353 | out: |
| 354 | if (neigh_node) |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 355 | batadv_neigh_node_free_ref(neigh_node); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 356 | if (orig_node) |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 357 | batadv_orig_node_free_ref(orig_node); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 358 | if (ret == 1) |
| 359 | kfree_skb(skb); |
| 360 | return ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 361 | } |