Signed-off-by: Robbie King <[email protected]>
---
 example/ipsec/odp_ipsec_fwd_db.c |  133 ++++++++++++++++++++++++++++++++++++++
 example/ipsec/odp_ipsec_fwd_db.h |   89 +++++++++++++++++++++++++
 2 files changed, 222 insertions(+), 0 deletions(-)
 create mode 100644 example/ipsec/odp_ipsec_fwd_db.c
 create mode 100644 example/ipsec/odp_ipsec_fwd_db.h

diff --git a/example/ipsec/odp_ipsec_fwd_db.c b/example/ipsec/odp_ipsec_fwd_db.c
new file mode 100644
index 0000000..2354eee
--- /dev/null
+++ b/example/ipsec/odp_ipsec_fwd_db.c
@@ -0,0 +1,133 @@
+/* Copyright (c) 2014, Linaro Limited
+ * All rights reserved.
+ *
+ * SPDX-License-Identifier:     BSD-3-Clause
+ */
+
+#include <stdlib.h>
+#include <string.h>
+
+#include <odp.h>
+#include <odp_align.h>
+#include <odp_crypto.h>
+
+#include <odp_ipsec_fwd_db.h>
+
+/** Global pointer to fwd db */
+fwd_db_t *fwd_db;
+
+void init_fwd_db(void)
+{
+       fwd_db = odp_shm_reserve("shm_fwd_db",
+                                sizeof(fwd_db_t),
+                                ODP_CACHE_LINE_SIZE);
+       if (fwd_db == NULL) {
+               ODP_ERR("Error: shared mem alloc failed.\n");
+               exit(EXIT_FAILURE);
+       }
+       memset(fwd_db, 0, sizeof(*fwd_db));
+}
+
+int create_fwd_db_entry(char *input)
+{
+       int pos;
+       char *local, *str, *save;
+       fwd_db_entry_t *entry = &fwd_db->array[fwd_db->index];
+
+       /* Verify we haven't run out of space */
+       if (MAX_DB <= fwd_db->index)
+               return -1;
+
+       /* Make a local copy */
+       local = malloc(strlen(input) + 1);
+       if (local == NULL)
+               return -1;
+       strcpy(local, input);
+
+       /* count the number of tokens separated by ',' */
+       for (str = local, save = NULL, pos = 0;; str = NULL, pos++) {
+               char *token = strtok_r(str, ":", &save);
+
+               /* Check for no more tokens */
+               if (token == NULL)
+                       break;
+
+               /* Parse based on postion */
+               switch (pos) {
+               case 0:
+                       parse_ipv4_string(token,
+                                         &entry->subnet.addr,
+                                         &entry->subnet.mask);
+                       break;
+               case 1:
+                       entry->oif = token;
+                       break;
+               case 2:
+                       parse_mac_string(token, entry->dst_mac);
+                       break;
+               default:
+                       return -1;
+               }
+       }
+
+       /* Verify all positions filled */
+       if (3 != pos)
+               return -1;
+
+       /* Reset queue to invalid */
+       entry->queue = ODP_QUEUE_INVALID;
+
+       /* Add route to the list */
+       fwd_db->index++;
+       entry->next = fwd_db->list;
+       fwd_db->list = entry;
+
+       return 0;
+}
+
+void resolve_fwd_db(char *intf, odp_queue_t outq, uint8_t *mac)
+{
+       fwd_db_entry_t *entry;
+
+       /* Walk the list and attempt to set output queue and MAC */
+       for (entry = fwd_db->list; NULL != entry; entry = entry->next) {
+               if (strcmp(intf, entry->oif))
+                       continue;
+
+               entry->queue = outq;
+               memcpy(entry->src_mac, mac, 6);
+       }
+}
+
+void dump_fwd_db_entry(fwd_db_entry_t *entry)
+{
+       char subnet_str[32];
+       char mac_str[32];
+
+       printf(" %s %s %s\n",
+              ipv4_subnet_str(subnet_str, &entry->subnet),
+              entry->oif,
+              mac_addr_str(mac_str, entry->dst_mac));
+}
+
+void dump_fwd_db(void)
+{
+       fwd_db_entry_t *entry;
+
+       printf("\n"
+              "Routing table\n"
+              "-------------\n");
+
+       for (entry = fwd_db->list; NULL != entry; entry = entry->next)
+               dump_fwd_db_entry(entry);
+}
+
+fwd_db_entry_t *find_fwd_db_entry(uint32_t dst_ip)
+{
+       fwd_db_entry_t *entry;
+
+       for (entry = fwd_db->list; NULL != entry; entry = entry->next)
+               if (entry->subnet.addr == (dst_ip & entry->subnet.mask))
+                       break;
+       return entry;
+}
diff --git a/example/ipsec/odp_ipsec_fwd_db.h b/example/ipsec/odp_ipsec_fwd_db.h
new file mode 100644
index 0000000..efb5a5c
--- /dev/null
+++ b/example/ipsec/odp_ipsec_fwd_db.h
@@ -0,0 +1,89 @@
+/* Copyright (c) 2014, Linaro Limited
+ * All rights reserved.
+ *
+ * SPDX-License-Identifier:     BSD-3-Clause
+ */
+
+#ifndef ODP_IPSEC_FWD_DB_H_
+#define ODP_IPSEC_FWD_DB_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <odp.h>
+#include <odp_ipsec_misc.h>
+
+/**
+ * Forwarding data base entry
+ */
+typedef struct fwd_db_entry_s {
+       struct fwd_db_entry_s *next;          /**< Next entry on list */
+       char                  *oif;           /**< Output interface name */
+       odp_queue_t            queue;         /**< Output transmit queue */
+       uint8_t                src_mac[6];    /**< Output source MAC */
+       uint8_t                dst_mac[6];    /**< Output destination MAC */
+       ip_addr_range_t        subnet;        /**< Subnet for this router */
+} fwd_db_entry_t;
+
+/**
+ * Forwarding data base global structure
+ */
+typedef struct fwd_db_s {
+       uint32_t          index;          /**< Next available entry */
+       fwd_db_entry_t   *list;           /**< List of active routes */
+       fwd_db_entry_t    array[MAX_DB];  /**< Entry storage */
+} fwd_db_t;
+
+/** Global pointer to fwd db */
+extern fwd_db_t *fwd_db;
+
+/** Initialize FWD DB */
+void init_fwd_db(void);
+
+/**
+ * Create a forwarding database entry
+ *
+ * String is of the format "SubNet:Intf:NextHopMAC"
+ *
+ * @param input  Pointer to string describing route
+ *
+ * @return 0 if successful else -1
+ */
+int create_fwd_db_entry(char *input);
+
+/**
+ * Scan FWD DB entries and resolve output queue and source MAC address
+ *
+ * @param intf   Interface name string
+ * @param outq   Output queue for packet transmit
+ * @param mac    MAC address of this interface
+ */
+void resolve_fwd_db(char *intf, odp_queue_t outq, uint8_t *mac);
+
+/**
+ * Display one fowarding database entry
+ *
+ * @param entry  Pointer to entry to display
+ */
+void dump_fwd_db_entry(fwd_db_entry_t *entry);
+
+/**
+ * Display the forwarding database
+ */
+void dump_fwd_db(void);
+
+/**
+ * Find a matching forwarding database entry
+ *
+ * @param dst_ip  Destination IPv4 address
+ *
+ * @return pointer to forwarding DB entry else NULL
+ */
+fwd_db_entry_t *find_fwd_db_entry(uint32_t dst_ip);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
-- 
1.7.7.6


_______________________________________________
lng-odp mailing list
[email protected]
http://lists.linaro.org/mailman/listinfo/lng-odp

Reply via email to