linux/net/batman-adv/bat_iv_ogm.c
<<
>>
Prefs
   1/*
   2 * Copyright (C) 2007-2012 B.A.T.M.A.N. contributors:
   3 *
   4 * Marek Lindner, Simon Wunderlich
   5 *
   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.
   9 *
  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.
  14 *
  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
  19 *
  20 */
  21
  22#include "main.h"
  23#include "translation-table.h"
  24#include "ring_buffer.h"
  25#include "originator.h"
  26#include "routing.h"
  27#include "gateway_common.h"
  28#include "gateway_client.h"
  29#include "hard-interface.h"
  30#include "send.h"
  31#include "bat_algo.h"
  32
  33static void bat_iv_ogm_init(struct hard_iface *hard_iface)
  34{
  35        struct batman_ogm_packet *batman_ogm_packet;
  36
  37        hard_iface->packet_len = BATMAN_OGM_LEN;
  38        hard_iface->packet_buff = kmalloc(hard_iface->packet_len, GFP_ATOMIC);
  39
  40        batman_ogm_packet = (struct batman_ogm_packet *)hard_iface->packet_buff;
  41        batman_ogm_packet->header.packet_type = BAT_OGM;
  42        batman_ogm_packet->header.version = COMPAT_VERSION;
  43        batman_ogm_packet->header.ttl = 2;
  44        batman_ogm_packet->flags = NO_FLAGS;
  45        batman_ogm_packet->tq = TQ_MAX_VALUE;
  46        batman_ogm_packet->tt_num_changes = 0;
  47        batman_ogm_packet->ttvn = 0;
  48}
  49
  50static void bat_iv_ogm_init_primary(struct hard_iface *hard_iface)
  51{
  52        struct batman_ogm_packet *batman_ogm_packet;
  53
  54        batman_ogm_packet = (struct batman_ogm_packet *)hard_iface->packet_buff;
  55        batman_ogm_packet->flags = PRIMARIES_FIRST_HOP;
  56        batman_ogm_packet->header.ttl = TTL;
  57}
  58
  59static void bat_iv_ogm_update_mac(struct hard_iface *hard_iface)
  60{
  61        struct batman_ogm_packet *batman_ogm_packet;
  62
  63        batman_ogm_packet = (struct batman_ogm_packet *)hard_iface->packet_buff;
  64        memcpy(batman_ogm_packet->orig,
  65               hard_iface->net_dev->dev_addr, ETH_ALEN);
  66        memcpy(batman_ogm_packet->prev_sender,
  67               hard_iface->net_dev->dev_addr, ETH_ALEN);
  68}
  69
  70/* when do we schedule our own ogm to be sent */
  71static unsigned long bat_iv_ogm_emit_send_time(const struct bat_priv *bat_priv)
  72{
  73        return jiffies + msecs_to_jiffies(
  74                   atomic_read(&bat_priv->orig_interval) -
  75                   JITTER + (random32() % 2*JITTER));
  76}
  77
  78/* when do we schedule a ogm packet to be sent */
  79static unsigned long bat_iv_ogm_fwd_send_time(void)
  80{
  81        return jiffies + msecs_to_jiffies(random32() % (JITTER/2));
  82}
  83
  84/* apply hop penalty for a normal link */
  85static uint8_t hop_penalty(uint8_t tq, const struct bat_priv *bat_priv)
  86{
  87        int hop_penalty = atomic_read(&bat_priv->hop_penalty);
  88        return (tq * (TQ_MAX_VALUE - hop_penalty)) / (TQ_MAX_VALUE);
  89}
  90
  91/* is there another aggregated packet here? */
  92static int bat_iv_ogm_aggr_packet(int buff_pos, int packet_len,
  93                                  int tt_num_changes)
  94{
  95        int next_buff_pos = buff_pos + BATMAN_OGM_LEN + tt_len(tt_num_changes);
  96
  97        return (next_buff_pos <= packet_len) &&
  98                (next_buff_pos <= MAX_AGGREGATION_BYTES);
  99}
 100
 101/* send a batman ogm to a given interface */
 102static void bat_iv_ogm_send_to_if(struct forw_packet *forw_packet,
 103                                  struct hard_iface *hard_iface)
 104{
 105        struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
 106        char *fwd_str;
 107        uint8_t packet_num;
 108        int16_t buff_pos;
 109        struct batman_ogm_packet *batman_ogm_packet;
 110        struct sk_buff *skb;
 111
 112        if (hard_iface->if_status != IF_ACTIVE)
 113                return;
 114
 115        packet_num = 0;
 116        buff_pos = 0;
 117        batman_ogm_packet = (struct batman_ogm_packet *)forw_packet->skb->data;
 118
 119        /* adjust all flags and log packets */
 120        while (bat_iv_ogm_aggr_packet(buff_pos, forw_packet->packet_len,
 121                                      batman_ogm_packet->tt_num_changes)) {
 122
 123                /* we might have aggregated direct link packets with an
 124                 * ordinary base packet */
 125                if ((forw_packet->direct_link_flags & (1 << packet_num)) &&
 126                    (forw_packet->if_incoming == hard_iface))
 127                        batman_ogm_packet->flags |= DIRECTLINK;
 128                else
 129                        batman_ogm_packet->flags &= ~DIRECTLINK;
 130
 131                fwd_str = (packet_num > 0 ? "Forwarding" : (forw_packet->own ?
 132                                                            "Sending own" :
 133                                                            "Forwarding"));
 134                bat_dbg(DBG_BATMAN, bat_priv,
 135                        "%s %spacket (originator %pM, seqno %d, TQ %d, TTL %d, IDF %s, ttvn %d) on interface %s [%pM]\n",
 136                        fwd_str, (packet_num > 0 ? "aggregated " : ""),
 137                        batman_ogm_packet->orig,
 138                        ntohl(batman_ogm_packet->seqno),
 139                        batman_ogm_packet->tq, batman_ogm_packet->header.ttl,
 140                        (batman_ogm_packet->flags & DIRECTLINK ?
 141                         "on" : "off"),
 142                        batman_ogm_packet->ttvn, hard_iface->net_dev->name,
 143                        hard_iface->net_dev->dev_addr);
 144
 145                buff_pos += BATMAN_OGM_LEN +
 146                                tt_len(batman_ogm_packet->tt_num_changes);
 147                packet_num++;
 148                batman_ogm_packet = (struct batman_ogm_packet *)
 149                                        (forw_packet->skb->data + buff_pos);
 150        }
 151
 152        /* create clone because function is called more than once */
 153        skb = skb_clone(forw_packet->skb, GFP_ATOMIC);
 154        if (skb)
 155                send_skb_packet(skb, hard_iface, broadcast_addr);
 156}
 157
 158/* send a batman ogm packet */
 159static void bat_iv_ogm_emit(struct forw_packet *forw_packet)
 160{
 161        struct hard_iface *hard_iface;
 162        struct net_device *soft_iface;
 163        struct bat_priv *bat_priv;
 164        struct hard_iface *primary_if = NULL;
 165        struct batman_ogm_packet *batman_ogm_packet;
 166        unsigned char directlink;
 167
 168        batman_ogm_packet = (struct batman_ogm_packet *)
 169                                                (forw_packet->skb->data);
 170        directlink = (batman_ogm_packet->flags & DIRECTLINK ? 1 : 0);
 171
 172        if (!forw_packet->if_incoming) {
 173                pr_err("Error - can't forward packet: incoming iface not specified\n");
 174                goto out;
 175        }
 176
 177        soft_iface = forw_packet->if_incoming->soft_iface;
 178        bat_priv = netdev_priv(soft_iface);
 179
 180        if (forw_packet->if_incoming->if_status != IF_ACTIVE)
 181                goto out;
 182
 183        primary_if = primary_if_get_selected(bat_priv);
 184        if (!primary_if)
 185                goto out;
 186
 187        /* multihomed peer assumed */
 188        /* non-primary OGMs are only broadcasted on their interface */
 189        if ((directlink && (batman_ogm_packet->header.ttl == 1)) ||
 190            (forw_packet->own && (forw_packet->if_incoming != primary_if))) {
 191
 192                /* FIXME: what about aggregated packets ? */
 193                bat_dbg(DBG_BATMAN, bat_priv,
 194                        "%s packet (originator %pM, seqno %d, TTL %d) on interface %s [%pM]\n",
 195                        (forw_packet->own ? "Sending own" : "Forwarding"),
 196                        batman_ogm_packet->orig,
 197                        ntohl(batman_ogm_packet->seqno),
 198                        batman_ogm_packet->header.ttl,
 199                        forw_packet->if_incoming->net_dev->name,
 200                        forw_packet->if_incoming->net_dev->dev_addr);
 201
 202                /* skb is only used once and than forw_packet is free'd */
 203                send_skb_packet(forw_packet->skb, forw_packet->if_incoming,
 204                                broadcast_addr);
 205                forw_packet->skb = NULL;
 206
 207                goto out;
 208        }
 209
 210        /* broadcast on every interface */
 211        rcu_read_lock();
 212        list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
 213                if (hard_iface->soft_iface != soft_iface)
 214                        continue;
 215
 216                bat_iv_ogm_send_to_if(forw_packet, hard_iface);
 217        }
 218        rcu_read_unlock();
 219
 220out:
 221        if (primary_if)
 222                hardif_free_ref(primary_if);
 223}
 224
 225/* return true if new_packet can be aggregated with forw_packet */
 226static bool bat_iv_ogm_can_aggregate(const struct batman_ogm_packet
 227                                                        *new_batman_ogm_packet,
 228                                     struct bat_priv *bat_priv,
 229                                     int packet_len, unsigned long send_time,
 230                                     bool directlink,
 231                                     const struct hard_iface *if_incoming,
 232                                     const struct forw_packet *forw_packet)
 233{
 234        struct batman_ogm_packet *batman_ogm_packet;
 235        int aggregated_bytes = forw_packet->packet_len + packet_len;
 236        struct hard_iface *primary_if = NULL;
 237        bool res = false;
 238
 239        batman_ogm_packet = (struct batman_ogm_packet *)forw_packet->skb->data;
 240
 241        /**
 242         * we can aggregate the current packet to this aggregated packet
 243         * if:
 244         *
 245         * - the send time is within our MAX_AGGREGATION_MS time
 246         * - the resulting packet wont be bigger than
 247         *   MAX_AGGREGATION_BYTES
 248         */
 249
 250        if (time_before(send_time, forw_packet->send_time) &&
 251            time_after_eq(send_time + msecs_to_jiffies(MAX_AGGREGATION_MS),
 252                                        forw_packet->send_time) &&
 253            (aggregated_bytes <= MAX_AGGREGATION_BYTES)) {
 254
 255                /**
 256                 * check aggregation compatibility
 257                 * -> direct link packets are broadcasted on
 258                 *    their interface only
 259                 * -> aggregate packet if the current packet is
 260                 *    a "global" packet as well as the base
 261                 *    packet
 262                 */
 263
 264                primary_if = primary_if_get_selected(bat_priv);
 265                if (!primary_if)
 266                        goto out;
 267
 268                /* packets without direct link flag and high TTL
 269                 * are flooded through the net  */
 270                if ((!directlink) &&
 271                    (!(batman_ogm_packet->flags & DIRECTLINK)) &&
 272                    (batman_ogm_packet->header.ttl != 1) &&
 273
 274                    /* own packets originating non-primary
 275                     * interfaces leave only that interface */
 276                    ((!forw_packet->own) ||
 277                     (forw_packet->if_incoming == primary_if))) {
 278                        res = true;
 279                        goto out;
 280                }
 281
 282                /* if the incoming packet is sent via this one
 283                 * interface only - we still can aggregate */
 284                if ((directlink) &&
 285                    (new_batman_ogm_packet->header.ttl == 1) &&
 286                    (forw_packet->if_incoming == if_incoming) &&
 287
 288                    /* packets from direct neighbors or
 289                     * own secondary interface packets
 290                     * (= secondary interface packets in general) */
 291                    (batman_ogm_packet->flags & DIRECTLINK ||
 292                     (forw_packet->own &&
 293                      forw_packet->if_incoming != primary_if))) {
 294                        res = true;
 295                        goto out;
 296                }
 297        }
 298
 299out:
 300        if (primary_if)
 301                hardif_free_ref(primary_if);
 302        return res;
 303}
 304
 305/* create a new aggregated packet and add this packet to it */
 306static void bat_iv_ogm_aggregate_new(const unsigned char *packet_buff,
 307                                     int packet_len, unsigned long send_time,
 308                                     bool direct_link,
 309                                     struct hard_iface *if_incoming,
 310                                     int own_packet)
 311{
 312        struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
 313        struct forw_packet *forw_packet_aggr;
 314        unsigned char *skb_buff;
 315
 316        if (!atomic_inc_not_zero(&if_incoming->refcount))
 317                return;
 318
 319        /* own packet should always be scheduled */
 320        if (!own_packet) {
 321                if (!atomic_dec_not_zero(&bat_priv->batman_queue_left)) {
 322                        bat_dbg(DBG_BATMAN, bat_priv,
 323                                "batman packet queue full\n");
 324                        goto out;
 325                }
 326        }
 327
 328        forw_packet_aggr = kmalloc(sizeof(*forw_packet_aggr), GFP_ATOMIC);
 329        if (!forw_packet_aggr) {
 330                if (!own_packet)
 331                        atomic_inc(&bat_priv->batman_queue_left);
 332                goto out;
 333        }
 334
 335        if ((atomic_read(&bat_priv->aggregated_ogms)) &&
 336            (packet_len < MAX_AGGREGATION_BYTES))
 337                forw_packet_aggr->skb = dev_alloc_skb(MAX_AGGREGATION_BYTES +
 338                                                      sizeof(struct ethhdr));
 339        else
 340                forw_packet_aggr->skb = dev_alloc_skb(packet_len +
 341                                                      sizeof(struct ethhdr));
 342
 343        if (!forw_packet_aggr->skb) {
 344                if (!own_packet)
 345                        atomic_inc(&bat_priv->batman_queue_left);
 346                kfree(forw_packet_aggr);
 347                goto out;
 348        }
 349        skb_reserve(forw_packet_aggr->skb, sizeof(struct ethhdr));
 350
 351        INIT_HLIST_NODE(&forw_packet_aggr->list);
 352
 353        skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
 354        forw_packet_aggr->packet_len = packet_len;
 355        memcpy(skb_buff, packet_buff, packet_len);
 356
 357        forw_packet_aggr->own = own_packet;
 358        forw_packet_aggr->if_incoming = if_incoming;
 359        forw_packet_aggr->num_packets = 0;
 360        forw_packet_aggr->direct_link_flags = NO_FLAGS;
 361        forw_packet_aggr->send_time = send_time;
 362
 363        /* save packet direct link flag status */
 364        if (direct_link)
 365                forw_packet_aggr->direct_link_flags |= 1;
 366
 367        /* add new packet to packet list */
 368        spin_lock_bh(&bat_priv->forw_bat_list_lock);
 369        hlist_add_head(&forw_packet_aggr->list, &bat_priv->forw_bat_list);
 370        spin_unlock_bh(&bat_priv->forw_bat_list_lock);
 371
 372        /* start timer for this packet */
 373        INIT_DELAYED_WORK(&forw_packet_aggr->delayed_work,
 374                          send_outstanding_bat_ogm_packet);
 375        queue_delayed_work(bat_event_workqueue,
 376                           &forw_packet_aggr->delayed_work,
 377                           send_time - jiffies);
 378
 379        return;
 380out:
 381        hardif_free_ref(if_incoming);
 382}
 383
 384/* aggregate a new packet into the existing ogm packet */
 385static void bat_iv_ogm_aggregate(struct forw_packet *forw_packet_aggr,
 386                                 const unsigned char *packet_buff,
 387                                 int packet_len, bool direct_link)
 388{
 389        unsigned char *skb_buff;
 390
 391        skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
 392        memcpy(skb_buff, packet_buff, packet_len);
 393        forw_packet_aggr->packet_len += packet_len;
 394        forw_packet_aggr->num_packets++;
 395
 396        /* save packet direct link flag status */
 397        if (direct_link)
 398                forw_packet_aggr->direct_link_flags |=
 399                        (1 << forw_packet_aggr->num_packets);
 400}
 401
 402static void bat_iv_ogm_queue_add(struct bat_priv *bat_priv,
 403                                 unsigned char *packet_buff,
 404                                 int packet_len, struct hard_iface *if_incoming,
 405                                 int own_packet, unsigned long send_time)
 406{
 407        /**
 408         * _aggr -> pointer to the packet we want to aggregate with
 409         * _pos -> pointer to the position in the queue
 410         */
 411        struct forw_packet *forw_packet_aggr = NULL, *forw_packet_pos = NULL;
 412        struct hlist_node *tmp_node;
 413        struct batman_ogm_packet *batman_ogm_packet;
 414        bool direct_link;
 415
 416        batman_ogm_packet = (struct batman_ogm_packet *)packet_buff;
 417        direct_link = batman_ogm_packet->flags & DIRECTLINK ? 1 : 0;
 418
 419        /* find position for the packet in the forward queue */
 420        spin_lock_bh(&bat_priv->forw_bat_list_lock);
 421        /* own packets are not to be aggregated */
 422        if ((atomic_read(&bat_priv->aggregated_ogms)) && (!own_packet)) {
 423                hlist_for_each_entry(forw_packet_pos, tmp_node,
 424                                     &bat_priv->forw_bat_list, list) {
 425                        if (bat_iv_ogm_can_aggregate(batman_ogm_packet,
 426                                                     bat_priv, packet_len,
 427                                                     send_time, direct_link,
 428                                                     if_incoming,
 429                                                     forw_packet_pos)) {
 430                                forw_packet_aggr = forw_packet_pos;
 431                                break;
 432                        }
 433                }
 434        }
 435
 436        /* nothing to aggregate with - either aggregation disabled or no
 437         * suitable aggregation packet found */
 438        if (!forw_packet_aggr) {
 439                /* the following section can run without the lock */
 440                spin_unlock_bh(&bat_priv->forw_bat_list_lock);
 441
 442                /**
 443                 * if we could not aggregate this packet with one of the others
 444                 * we hold it back for a while, so that it might be aggregated
 445                 * later on
 446                 */
 447                if ((!own_packet) &&
 448                    (atomic_read(&bat_priv->aggregated_ogms)))
 449                        send_time += msecs_to_jiffies(MAX_AGGREGATION_MS);
 450
 451                bat_iv_ogm_aggregate_new(packet_buff, packet_len,
 452                                         send_time, direct_link,
 453                                         if_incoming, own_packet);
 454        } else {
 455                bat_iv_ogm_aggregate(forw_packet_aggr, packet_buff,
 456                                     packet_len, direct_link);
 457                spin_unlock_bh(&bat_priv->forw_bat_list_lock);
 458        }
 459}
 460
 461static void bat_iv_ogm_forward(struct orig_node *orig_node,
 462                               const struct ethhdr *ethhdr,
 463                               struct batman_ogm_packet *batman_ogm_packet,
 464                               int directlink, struct hard_iface *if_incoming)
 465{
 466        struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
 467        struct neigh_node *router;
 468        uint8_t in_tq, in_ttl, tq_avg = 0;
 469        uint8_t tt_num_changes;
 470
 471        if (batman_ogm_packet->header.ttl <= 1) {
 472                bat_dbg(DBG_BATMAN, bat_priv, "ttl exceeded\n");
 473                return;
 474        }
 475
 476        router = orig_node_get_router(orig_node);
 477
 478        in_tq = batman_ogm_packet->tq;
 479        in_ttl = batman_ogm_packet->header.ttl;
 480        tt_num_changes = batman_ogm_packet->tt_num_changes;
 481
 482        batman_ogm_packet->header.ttl--;
 483        memcpy(batman_ogm_packet->prev_sender, ethhdr->h_source, ETH_ALEN);
 484
 485        /* rebroadcast tq of our best ranking neighbor to ensure the rebroadcast
 486         * of our best tq value */
 487        if (router && router->tq_avg != 0) {
 488
 489                /* rebroadcast ogm of best ranking neighbor as is */
 490                if (!compare_eth(router->addr, ethhdr->h_source)) {
 491                        batman_ogm_packet->tq = router->tq_avg;
 492
 493                        if (router->last_ttl)
 494                                batman_ogm_packet->header.ttl =
 495                                        router->last_ttl - 1;
 496                }
 497
 498                tq_avg = router->tq_avg;
 499        }
 500
 501        if (router)
 502                neigh_node_free_ref(router);
 503
 504        /* apply hop penalty */
 505        batman_ogm_packet->tq = hop_penalty(batman_ogm_packet->tq, bat_priv);
 506
 507        bat_dbg(DBG_BATMAN, bat_priv,
 508                "Forwarding packet: tq_orig: %i, tq_avg: %i, tq_forw: %i, ttl_orig: %i, ttl_forw: %i\n",
 509                in_tq, tq_avg, batman_ogm_packet->tq, in_ttl - 1,
 510                batman_ogm_packet->header.ttl);
 511
 512        batman_ogm_packet->seqno = htonl(batman_ogm_packet->seqno);
 513        batman_ogm_packet->tt_crc = htons(batman_ogm_packet->tt_crc);
 514
 515        /* switch of primaries first hop flag when forwarding */
 516        batman_ogm_packet->flags &= ~PRIMARIES_FIRST_HOP;
 517        if (directlink)
 518                batman_ogm_packet->flags |= DIRECTLINK;
 519        else
 520                batman_ogm_packet->flags &= ~DIRECTLINK;
 521
 522        bat_iv_ogm_queue_add(bat_priv, (unsigned char *)batman_ogm_packet,
 523                             BATMAN_OGM_LEN + tt_len(tt_num_changes),
 524                             if_incoming, 0, bat_iv_ogm_fwd_send_time());
 525}
 526
 527static void bat_iv_ogm_schedule(struct hard_iface *hard_iface,
 528                                int tt_num_changes)
 529{
 530        struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
 531        struct batman_ogm_packet *batman_ogm_packet;
 532        struct hard_iface *primary_if;
 533        int vis_server;
 534
 535        vis_server = atomic_read(&bat_priv->vis_mode);
 536        primary_if = primary_if_get_selected(bat_priv);
 537
 538        batman_ogm_packet = (struct batman_ogm_packet *)hard_iface->packet_buff;
 539
 540        /* change sequence number to network order */
 541        batman_ogm_packet->seqno =
 542                        htonl((uint32_t)atomic_read(&hard_iface->seqno));
 543
 544        batman_ogm_packet->ttvn = atomic_read(&bat_priv->ttvn);
 545        batman_ogm_packet->tt_crc = htons((uint16_t)
 546                                                atomic_read(&bat_priv->tt_crc));
 547        if (tt_num_changes >= 0)
 548                batman_ogm_packet->tt_num_changes = tt_num_changes;
 549
 550        if (vis_server == VIS_TYPE_SERVER_SYNC)
 551                batman_ogm_packet->flags |= VIS_SERVER;
 552        else
 553                batman_ogm_packet->flags &= ~VIS_SERVER;
 554
 555        if ((hard_iface == primary_if) &&
 556            (atomic_read(&bat_priv->gw_mode) == GW_MODE_SERVER))
 557                batman_ogm_packet->gw_flags =
 558                                (uint8_t)atomic_read(&bat_priv->gw_bandwidth);
 559        else
 560                batman_ogm_packet->gw_flags = NO_FLAGS;
 561
 562        atomic_inc(&hard_iface->seqno);
 563
 564        slide_own_bcast_window(hard_iface);
 565        bat_iv_ogm_queue_add(bat_priv, hard_iface->packet_buff,
 566                             hard_iface->packet_len, hard_iface, 1,
 567                             bat_iv_ogm_emit_send_time(bat_priv));
 568
 569        if (primary_if)
 570                hardif_free_ref(primary_if);
 571}
 572
 573static void bat_iv_ogm_orig_update(struct bat_priv *bat_priv,
 574                                   struct orig_node *orig_node,
 575                                   const struct ethhdr *ethhdr,
 576                                   const struct batman_ogm_packet
 577                                                        *batman_ogm_packet,
 578                                   struct hard_iface *if_incoming,
 579                                   const unsigned char *tt_buff,
 580                                   int is_duplicate)
 581{
 582        struct neigh_node *neigh_node = NULL, *tmp_neigh_node = NULL;
 583        struct neigh_node *router = NULL;
 584        struct orig_node *orig_node_tmp;
 585        struct hlist_node *node;
 586        uint8_t bcast_own_sum_orig, bcast_own_sum_neigh;
 587
 588        bat_dbg(DBG_BATMAN, bat_priv,
 589                "update_originator(): Searching and updating originator entry of received packet\n");
 590
 591        rcu_read_lock();
 592        hlist_for_each_entry_rcu(tmp_neigh_node, node,
 593                                 &orig_node->neigh_list, list) {
 594                if (compare_eth(tmp_neigh_node->addr, ethhdr->h_source) &&
 595                    (tmp_neigh_node->if_incoming == if_incoming) &&
 596                     atomic_inc_not_zero(&tmp_neigh_node->refcount)) {
 597                        if (neigh_node)
 598                                neigh_node_free_ref(neigh_node);
 599                        neigh_node = tmp_neigh_node;
 600                        continue;
 601                }
 602
 603                if (is_duplicate)
 604                        continue;
 605
 606                spin_lock_bh(&tmp_neigh_node->tq_lock);
 607                ring_buffer_set(tmp_neigh_node->tq_recv,
 608                                &tmp_neigh_node->tq_index, 0);
 609                tmp_neigh_node->tq_avg =
 610                        ring_buffer_avg(tmp_neigh_node->tq_recv);
 611                spin_unlock_bh(&tmp_neigh_node->tq_lock);
 612        }
 613
 614        if (!neigh_node) {
 615                struct orig_node *orig_tmp;
 616
 617                orig_tmp = get_orig_node(bat_priv, ethhdr->h_source);
 618                if (!orig_tmp)
 619                        goto unlock;
 620
 621                neigh_node = create_neighbor(orig_node, orig_tmp,
 622                                             ethhdr->h_source, if_incoming);
 623
 624                orig_node_free_ref(orig_tmp);
 625                if (!neigh_node)
 626                        goto unlock;
 627        } else
 628                bat_dbg(DBG_BATMAN, bat_priv,
 629                        "Updating existing last-hop neighbor of originator\n");
 630
 631        rcu_read_unlock();
 632
 633        orig_node->flags = batman_ogm_packet->flags;
 634        neigh_node->last_valid = jiffies;
 635
 636        spin_lock_bh(&neigh_node->tq_lock);
 637        ring_buffer_set(neigh_node->tq_recv,
 638                        &neigh_node->tq_index,
 639                        batman_ogm_packet->tq);
 640        neigh_node->tq_avg = ring_buffer_avg(neigh_node->tq_recv);
 641        spin_unlock_bh(&neigh_node->tq_lock);
 642
 643        if (!is_duplicate) {
 644                orig_node->last_ttl = batman_ogm_packet->header.ttl;
 645                neigh_node->last_ttl = batman_ogm_packet->header.ttl;
 646        }
 647
 648        bonding_candidate_add(orig_node, neigh_node);
 649
 650        /* if this neighbor already is our next hop there is nothing
 651         * to change */
 652        router = orig_node_get_router(orig_node);
 653        if (router == neigh_node)
 654                goto update_tt;
 655
 656        /* if this neighbor does not offer a better TQ we won't consider it */
 657        if (router && (router->tq_avg > neigh_node->tq_avg))
 658                goto update_tt;
 659
 660        /* if the TQ is the same and the link not more symmetric we
 661         * won't consider it either */
 662        if (router && (neigh_node->tq_avg == router->tq_avg)) {
 663                orig_node_tmp = router->orig_node;
 664                spin_lock_bh(&orig_node_tmp->ogm_cnt_lock);
 665                bcast_own_sum_orig =
 666                        orig_node_tmp->bcast_own_sum[if_incoming->if_num];
 667                spin_unlock_bh(&orig_node_tmp->ogm_cnt_lock);
 668
 669                orig_node_tmp = neigh_node->orig_node;
 670                spin_lock_bh(&orig_node_tmp->ogm_cnt_lock);
 671                bcast_own_sum_neigh =
 672                        orig_node_tmp->bcast_own_sum[if_incoming->if_num];
 673                spin_unlock_bh(&orig_node_tmp->ogm_cnt_lock);
 674
 675                if (bcast_own_sum_orig >= bcast_own_sum_neigh)
 676                        goto update_tt;
 677        }
 678
 679        update_route(bat_priv, orig_node, neigh_node);
 680
 681update_tt:
 682        /* I have to check for transtable changes only if the OGM has been
 683         * sent through a primary interface */
 684        if (((batman_ogm_packet->orig != ethhdr->h_source) &&
 685             (batman_ogm_packet->header.ttl > 2)) ||
 686            (batman_ogm_packet->flags & PRIMARIES_FIRST_HOP))
 687                tt_update_orig(bat_priv, orig_node, tt_buff,
 688                               batman_ogm_packet->tt_num_changes,
 689                               batman_ogm_packet->ttvn,
 690                               batman_ogm_packet->tt_crc);
 691
 692        if (orig_node->gw_flags != batman_ogm_packet->gw_flags)
 693                gw_node_update(bat_priv, orig_node,
 694                               batman_ogm_packet->gw_flags);
 695
 696        orig_node->gw_flags = batman_ogm_packet->gw_flags;
 697
 698        /* restart gateway selection if fast or late switching was enabled */
 699        if ((orig_node->gw_flags) &&
 700            (atomic_read(&bat_priv->gw_mode) == GW_MODE_CLIENT) &&
 701            (atomic_read(&bat_priv->gw_sel_class) > 2))
 702                gw_check_election(bat_priv, orig_node);
 703
 704        goto out;
 705
 706unlock:
 707        rcu_read_unlock();
 708out:
 709        if (neigh_node)
 710                neigh_node_free_ref(neigh_node);
 711        if (router)
 712                neigh_node_free_ref(router);
 713}
 714
 715static int bat_iv_ogm_calc_tq(struct orig_node *orig_node,
 716                              struct orig_node *orig_neigh_node,
 717                              struct batman_ogm_packet *batman_ogm_packet,
 718                              struct hard_iface *if_incoming)
 719{
 720        struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
 721        struct neigh_node *neigh_node = NULL, *tmp_neigh_node;
 722        struct hlist_node *node;
 723        uint8_t total_count;
 724        uint8_t orig_eq_count, neigh_rq_count, tq_own;
 725        int tq_asym_penalty, ret = 0;
 726
 727        /* find corresponding one hop neighbor */
 728        rcu_read_lock();
 729        hlist_for_each_entry_rcu(tmp_neigh_node, node,
 730                                 &orig_neigh_node->neigh_list, list) {
 731
 732                if (!compare_eth(tmp_neigh_node->addr, orig_neigh_node->orig))
 733                        continue;
 734
 735                if (tmp_neigh_node->if_incoming != if_incoming)
 736                        continue;
 737
 738                if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
 739                        continue;
 740
 741                neigh_node = tmp_neigh_node;
 742                break;
 743        }
 744        rcu_read_unlock();
 745
 746        if (!neigh_node)
 747                neigh_node = create_neighbor(orig_neigh_node,
 748                                             orig_neigh_node,
 749                                             orig_neigh_node->orig,
 750                                             if_incoming);
 751
 752        if (!neigh_node)
 753                goto out;
 754
 755        /* if orig_node is direct neighbor update neigh_node last_valid */
 756        if (orig_node == orig_neigh_node)
 757                neigh_node->last_valid = jiffies;
 758
 759        orig_node->last_valid = jiffies;
 760
 761        /* find packet count of corresponding one hop neighbor */
 762        spin_lock_bh(&orig_node->ogm_cnt_lock);
 763        orig_eq_count = orig_neigh_node->bcast_own_sum[if_incoming->if_num];
 764        neigh_rq_count = neigh_node->real_packet_count;
 765        spin_unlock_bh(&orig_node->ogm_cnt_lock);
 766
 767        /* pay attention to not get a value bigger than 100 % */
 768        total_count = (orig_eq_count > neigh_rq_count ?
 769                       neigh_rq_count : orig_eq_count);
 770
 771        /* if we have too few packets (too less data) we set tq_own to zero */
 772        /* if we receive too few packets it is not considered bidirectional */
 773        if ((total_count < TQ_LOCAL_BIDRECT_SEND_MINIMUM) ||
 774            (neigh_rq_count < TQ_LOCAL_BIDRECT_RECV_MINIMUM))
 775                tq_own = 0;
 776        else
 777                /* neigh_node->real_packet_count is never zero as we
 778                 * only purge old information when getting new
 779                 * information */
 780                tq_own = (TQ_MAX_VALUE * total_count) / neigh_rq_count;
 781
 782        /* 1 - ((1-x) ** 3), normalized to TQ_MAX_VALUE this does
 783         * affect the nearly-symmetric links only a little, but
 784         * punishes asymmetric links more.  This will give a value
 785         * between 0 and TQ_MAX_VALUE
 786         */
 787        tq_asym_penalty = TQ_MAX_VALUE - (TQ_MAX_VALUE *
 788                                (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count) *
 789                                (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count) *
 790                                (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count)) /
 791                                        (TQ_LOCAL_WINDOW_SIZE *
 792                                         TQ_LOCAL_WINDOW_SIZE *
 793                                         TQ_LOCAL_WINDOW_SIZE);
 794
 795        batman_ogm_packet->tq = ((batman_ogm_packet->tq * tq_own
 796                                                        * tq_asym_penalty) /
 797                                                (TQ_MAX_VALUE * TQ_MAX_VALUE));
 798
 799        bat_dbg(DBG_BATMAN, bat_priv,
 800                "bidirectional: orig = %-15pM neigh = %-15pM => own_bcast = %2i, real recv = %2i, local tq: %3i, asym_penalty: %3i, total tq: %3i\n",
 801                orig_node->orig, orig_neigh_node->orig, total_count,
 802                neigh_rq_count, tq_own, tq_asym_penalty, batman_ogm_packet->tq);
 803
 804        /* if link has the minimum required transmission quality
 805         * consider it bidirectional */
 806        if (batman_ogm_packet->tq >= TQ_TOTAL_BIDRECT_LIMIT)
 807                ret = 1;
 808
 809out:
 810        if (neigh_node)
 811                neigh_node_free_ref(neigh_node);
 812        return ret;
 813}
 814
 815/* processes a batman packet for all interfaces, adjusts the sequence number and
 816 * finds out whether it is a duplicate.
 817 * returns:
 818 *   1 the packet is a duplicate
 819 *   0 the packet has not yet been received
 820 *  -1 the packet is old and has been received while the seqno window
 821 *     was protected. Caller should drop it.
 822 */
 823static int bat_iv_ogm_update_seqnos(const struct ethhdr *ethhdr,
 824                                    const struct batman_ogm_packet
 825                                                        *batman_ogm_packet,
 826                                    const struct hard_iface *if_incoming)
 827{
 828        struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
 829        struct orig_node *orig_node;
 830        struct neigh_node *tmp_neigh_node;
 831        struct hlist_node *node;
 832        int is_duplicate = 0;
 833        int32_t seq_diff;
 834        int need_update = 0;
 835        int set_mark, ret = -1;
 836
 837        orig_node = get_orig_node(bat_priv, batman_ogm_packet->orig);
 838        if (!orig_node)
 839                return 0;
 840
 841        spin_lock_bh(&orig_node->ogm_cnt_lock);
 842        seq_diff = batman_ogm_packet->seqno - orig_node->last_real_seqno;
 843
 844        /* signalize caller that the packet is to be dropped. */
 845        if (window_protected(bat_priv, seq_diff,
 846                             &orig_node->batman_seqno_reset))
 847                goto out;
 848
 849        rcu_read_lock();
 850        hlist_for_each_entry_rcu(tmp_neigh_node, node,
 851                                 &orig_node->neigh_list, list) {
 852
 853                is_duplicate |= get_bit_status(tmp_neigh_node->real_bits,
 854                                               orig_node->last_real_seqno,
 855                                               batman_ogm_packet->seqno);
 856
 857                if (compare_eth(tmp_neigh_node->addr, ethhdr->h_source) &&
 858                    (tmp_neigh_node->if_incoming == if_incoming))
 859                        set_mark = 1;
 860                else
 861                        set_mark = 0;
 862
 863                /* if the window moved, set the update flag. */
 864                need_update |= bit_get_packet(bat_priv,
 865                                              tmp_neigh_node->real_bits,
 866                                              seq_diff, set_mark);
 867
 868                tmp_neigh_node->real_packet_count =
 869                        bit_packet_count(tmp_neigh_node->real_bits);
 870        }
 871        rcu_read_unlock();
 872
 873        if (need_update) {
 874                bat_dbg(DBG_BATMAN, bat_priv,
 875                        "updating last_seqno: old %d, new %d\n",
 876                        orig_node->last_real_seqno, batman_ogm_packet->seqno);
 877                orig_node->last_real_seqno = batman_ogm_packet->seqno;
 878        }
 879
 880        ret = is_duplicate;
 881
 882out:
 883        spin_unlock_bh(&orig_node->ogm_cnt_lock);
 884        orig_node_free_ref(orig_node);
 885        return ret;
 886}
 887
 888static void bat_iv_ogm_process(const struct ethhdr *ethhdr,
 889                               struct batman_ogm_packet *batman_ogm_packet,
 890                               const unsigned char *tt_buff,
 891                               struct hard_iface *if_incoming)
 892{
 893        struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
 894        struct hard_iface *hard_iface;
 895        struct orig_node *orig_neigh_node, *orig_node;
 896        struct neigh_node *router = NULL, *router_router = NULL;
 897        struct neigh_node *orig_neigh_router = NULL;
 898        int has_directlink_flag;
 899        int is_my_addr = 0, is_my_orig = 0, is_my_oldorig = 0;
 900        int is_broadcast = 0, is_bidirectional, is_single_hop_neigh;
 901        int is_duplicate;
 902        uint32_t if_incoming_seqno;
 903
 904        /* Silently drop when the batman packet is actually not a
 905         * correct packet.
 906         *
 907         * This might happen if a packet is padded (e.g. Ethernet has a
 908         * minimum frame length of 64 byte) and the aggregation interprets
 909         * it as an additional length.
 910         *
 911         * TODO: A more sane solution would be to have a bit in the
 912         * batman_ogm_packet to detect whether the packet is the last
 913         * packet in an aggregation.  Here we expect that the padding
 914         * is always zero (or not 0x01)
 915         */
 916        if (batman_ogm_packet->header.packet_type != BAT_OGM)
 917                return;
 918
 919        /* could be changed by schedule_own_packet() */
 920        if_incoming_seqno = atomic_read(&if_incoming->seqno);
 921
 922        has_directlink_flag = (batman_ogm_packet->flags & DIRECTLINK ? 1 : 0);
 923
 924        is_single_hop_neigh = (compare_eth(ethhdr->h_source,
 925                                           batman_ogm_packet->orig) ? 1 : 0);
 926
 927        bat_dbg(DBG_BATMAN, bat_priv,
 928                "Received BATMAN packet via NB: %pM, IF: %s [%pM] (from OG: %pM, via prev OG: %pM, seqno %d, ttvn %u, crc %u, changes %u, td %d, TTL %d, V %d, IDF %d)\n",
 929                ethhdr->h_source, if_incoming->net_dev->name,
 930                if_incoming->net_dev->dev_addr, batman_ogm_packet->orig,
 931                batman_ogm_packet->prev_sender, batman_ogm_packet->seqno,
 932                batman_ogm_packet->ttvn, batman_ogm_packet->tt_crc,
 933                batman_ogm_packet->tt_num_changes, batman_ogm_packet->tq,
 934                batman_ogm_packet->header.ttl,
 935                batman_ogm_packet->header.version, has_directlink_flag);
 936
 937        rcu_read_lock();
 938        list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
 939                if (hard_iface->if_status != IF_ACTIVE)
 940                        continue;
 941
 942                if (hard_iface->soft_iface != if_incoming->soft_iface)
 943                        continue;
 944
 945                if (compare_eth(ethhdr->h_source,
 946                                hard_iface->net_dev->dev_addr))
 947                        is_my_addr = 1;
 948
 949                if (compare_eth(batman_ogm_packet->orig,
 950                                hard_iface->net_dev->dev_addr))
 951                        is_my_orig = 1;
 952
 953                if (compare_eth(batman_ogm_packet->prev_sender,
 954                                hard_iface->net_dev->dev_addr))
 955                        is_my_oldorig = 1;
 956
 957                if (is_broadcast_ether_addr(ethhdr->h_source))
 958                        is_broadcast = 1;
 959        }
 960        rcu_read_unlock();
 961
 962        if (batman_ogm_packet->header.version != COMPAT_VERSION) {
 963                bat_dbg(DBG_BATMAN, bat_priv,
 964                        "Drop packet: incompatible batman version (%i)\n",
 965                        batman_ogm_packet->header.version);
 966                return;
 967        }
 968
 969        if (is_my_addr) {
 970                bat_dbg(DBG_BATMAN, bat_priv,
 971                        "Drop packet: received my own broadcast (sender: %pM)\n",
 972                        ethhdr->h_source);
 973                return;
 974        }
 975
 976        if (is_broadcast) {
 977                bat_dbg(DBG_BATMAN, bat_priv,
 978                        "Drop packet: ignoring all packets with broadcast source addr (sender: %pM)\n",
 979                        ethhdr->h_source);
 980                return;
 981        }
 982
 983        if (is_my_orig) {
 984                unsigned long *word;
 985                int offset;
 986
 987                orig_neigh_node = get_orig_node(bat_priv, ethhdr->h_source);
 988                if (!orig_neigh_node)
 989                        return;
 990
 991                /* neighbor has to indicate direct link and it has to
 992                 * come via the corresponding interface */
 993                /* save packet seqno for bidirectional check */
 994                if (has_directlink_flag &&
 995                    compare_eth(if_incoming->net_dev->dev_addr,
 996                                batman_ogm_packet->orig)) {
 997                        offset = if_incoming->if_num * NUM_WORDS;
 998
 999                        spin_lock_bh(&orig_neigh_node->ogm_cnt_lock);
1000                        word = &(orig_neigh_node->bcast_own[offset]);
1001                        bit_mark(word,
1002                                 if_incoming_seqno -
1003                                                batman_ogm_packet->seqno - 2);
1004                        orig_neigh_node->bcast_own_sum[if_incoming->if_num] =
1005                                bit_packet_count(word);
1006                        spin_unlock_bh(&orig_neigh_node->ogm_cnt_lock);
1007                }
1008
1009                bat_dbg(DBG_BATMAN, bat_priv,
1010                        "Drop packet: originator packet from myself (via neighbor)\n");
1011                orig_node_free_ref(orig_neigh_node);
1012                return;
1013        }
1014
1015        if (is_my_oldorig) {
1016                bat_dbg(DBG_BATMAN, bat_priv,
1017                        "Drop packet: ignoring all rebroadcast echos (sender: %pM)\n",
1018                        ethhdr->h_source);
1019                return;
1020        }
1021
1022        orig_node = get_orig_node(bat_priv, batman_ogm_packet->orig);
1023        if (!orig_node)
1024                return;
1025
1026        is_duplicate = bat_iv_ogm_update_seqnos(ethhdr, batman_ogm_packet,
1027                                                if_incoming);
1028
1029        if (is_duplicate == -1) {
1030                bat_dbg(DBG_BATMAN, bat_priv,
1031                        "Drop packet: packet within seqno protection time (sender: %pM)\n",
1032                        ethhdr->h_source);
1033                goto out;
1034        }
1035
1036        if (batman_ogm_packet->tq == 0) {
1037                bat_dbg(DBG_BATMAN, bat_priv,
1038                        "Drop packet: originator packet with tq equal 0\n");
1039                goto out;
1040        }
1041
1042        router = orig_node_get_router(orig_node);
1043        if (router)
1044                router_router = orig_node_get_router(router->orig_node);
1045
1046        /* avoid temporary routing loops */
1047        if (router && router_router &&
1048            (compare_eth(router->addr, batman_ogm_packet->prev_sender)) &&
1049            !(compare_eth(batman_ogm_packet->orig,
1050                          batman_ogm_packet->prev_sender)) &&
1051            (compare_eth(router->addr, router_router->addr))) {
1052                bat_dbg(DBG_BATMAN, bat_priv,
1053                        "Drop packet: ignoring all rebroadcast packets that may make me loop (sender: %pM)\n",
1054                        ethhdr->h_source);
1055                goto out;
1056        }
1057
1058        /* if sender is a direct neighbor the sender mac equals
1059         * originator mac */
1060        orig_neigh_node = (is_single_hop_neigh ?
1061                           orig_node :
1062                           get_orig_node(bat_priv, ethhdr->h_source));
1063        if (!orig_neigh_node)
1064                goto out;
1065
1066        orig_neigh_router = orig_node_get_router(orig_neigh_node);
1067
1068        /* drop packet if sender is not a direct neighbor and if we
1069         * don't route towards it */
1070        if (!is_single_hop_neigh && (!orig_neigh_router)) {
1071                bat_dbg(DBG_BATMAN, bat_priv,
1072                        "Drop packet: OGM via unknown neighbor!\n");
1073                goto out_neigh;
1074        }
1075
1076        is_bidirectional = bat_iv_ogm_calc_tq(orig_node, orig_neigh_node,
1077                                              batman_ogm_packet, if_incoming);
1078
1079        bonding_save_primary(orig_node, orig_neigh_node, batman_ogm_packet);
1080
1081        /* update ranking if it is not a duplicate or has the same
1082         * seqno and similar ttl as the non-duplicate */
1083        if (is_bidirectional &&
1084            (!is_duplicate ||
1085             ((orig_node->last_real_seqno == batman_ogm_packet->seqno) &&
1086              (orig_node->last_ttl - 3 <= batman_ogm_packet->header.ttl))))
1087                bat_iv_ogm_orig_update(bat_priv, orig_node, ethhdr,
1088                                       batman_ogm_packet, if_incoming,
1089                                       tt_buff, is_duplicate);
1090
1091        /* is single hop (direct) neighbor */
1092        if (is_single_hop_neigh) {
1093
1094                /* mark direct link on incoming interface */
1095                bat_iv_ogm_forward(orig_node, ethhdr, batman_ogm_packet,
1096                                   1, if_incoming);
1097
1098                bat_dbg(DBG_BATMAN, bat_priv,
1099                        "Forwarding packet: rebroadcast neighbor packet with direct link flag\n");
1100                goto out_neigh;
1101        }
1102
1103        /* multihop originator */
1104        if (!is_bidirectional) {
1105                bat_dbg(DBG_BATMAN, bat_priv,
1106                        "Drop packet: not received via bidirectional link\n");
1107                goto out_neigh;
1108        }
1109
1110        if (is_duplicate) {
1111                bat_dbg(DBG_BATMAN, bat_priv,
1112                        "Drop packet: duplicate packet received\n");
1113                goto out_neigh;
1114        }
1115
1116        bat_dbg(DBG_BATMAN, bat_priv,
1117                "Forwarding packet: rebroadcast originator packet\n");
1118        bat_iv_ogm_forward(orig_node, ethhdr, batman_ogm_packet,
1119                           0, if_incoming);
1120
1121out_neigh:
1122        if ((orig_neigh_node) && (!is_single_hop_neigh))
1123                orig_node_free_ref(orig_neigh_node);
1124out:
1125        if (router)
1126                neigh_node_free_ref(router);
1127        if (router_router)
1128                neigh_node_free_ref(router_router);
1129        if (orig_neigh_router)
1130                neigh_node_free_ref(orig_neigh_router);
1131
1132        orig_node_free_ref(orig_node);
1133}
1134
1135static void bat_iv_ogm_receive(struct hard_iface *if_incoming,
1136                               struct sk_buff *skb)
1137{
1138        struct batman_ogm_packet *batman_ogm_packet;
1139        struct ethhdr *ethhdr;
1140        int buff_pos = 0, packet_len;
1141        unsigned char *tt_buff, *packet_buff;
1142
1143        packet_len = skb_headlen(skb);
1144        ethhdr = (struct ethhdr *)skb_mac_header(skb);
1145        packet_buff = skb->data;
1146        batman_ogm_packet = (struct batman_ogm_packet *)packet_buff;
1147
1148        /* unpack the aggregated packets and process them one by one */
1149        do {
1150                /* network to host order for our 32bit seqno and the
1151                   orig_interval */
1152                batman_ogm_packet->seqno = ntohl(batman_ogm_packet->seqno);
1153                batman_ogm_packet->tt_crc = ntohs(batman_ogm_packet->tt_crc);
1154
1155                tt_buff = packet_buff + buff_pos + BATMAN_OGM_LEN;
1156
1157                bat_iv_ogm_process(ethhdr, batman_ogm_packet,
1158                                   tt_buff, if_incoming);
1159
1160                buff_pos += BATMAN_OGM_LEN +
1161                                tt_len(batman_ogm_packet->tt_num_changes);
1162
1163                batman_ogm_packet = (struct batman_ogm_packet *)
1164                                                (packet_buff + buff_pos);
1165        } while (bat_iv_ogm_aggr_packet(buff_pos, packet_len,
1166                                        batman_ogm_packet->tt_num_changes));
1167}
1168
1169static struct bat_algo_ops batman_iv __read_mostly = {
1170        .name = "BATMAN IV",
1171        .bat_ogm_init = bat_iv_ogm_init,
1172        .bat_ogm_init_primary = bat_iv_ogm_init_primary,
1173        .bat_ogm_update_mac = bat_iv_ogm_update_mac,
1174        .bat_ogm_schedule = bat_iv_ogm_schedule,
1175        .bat_ogm_emit = bat_iv_ogm_emit,
1176        .bat_ogm_receive = bat_iv_ogm_receive,
1177};
1178
1179int __init bat_iv_init(void)
1180{
1181        return bat_algo_register(&batman_iv);
1182}
1183