2013-10-05 13:20:17 -06:00
|
|
|
/****************************************************************************
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
* net/route/net_alloc_ramroute.c
|
2013-10-05 13:20:17 -06:00
|
|
|
*
|
2024-09-11 14:39:39 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
|
* License. You may obtain a copy of the License at
|
2013-10-05 13:20:17 -06:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-10-05 13:20:17 -06:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
|
* under the License.
|
2013-10-05 13:20:17 -06:00
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
|
* Included Files
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <errno.h>
|
2013-10-05 15:42:20 -06:00
|
|
|
#include <assert.h>
|
2013-10-05 13:20:17 -06:00
|
|
|
|
2014-07-04 16:38:51 -06:00
|
|
|
#include <nuttx/net/net.h>
|
2013-10-05 13:20:17 -06:00
|
|
|
#include <arch/irq.h>
|
|
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
#include "utils/utils.h"
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
#include "route/ramroute.h"
|
2014-06-26 13:02:08 -06:00
|
|
|
#include "route/route.h"
|
2013-10-05 13:20:17 -06:00
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
#if defined(CONFIG_ROUTE_IPv4_RAMROUTE) || defined(CONFIG_ROUTE_IPv6_RAMROUTE)
|
2013-10-05 13:20:17 -06:00
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
|
* Public Data
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
/* These are the routing tables. The in-memory routing tables are
|
|
|
|
|
* represented as singly linked lists.
|
|
|
|
|
*/
|
2013-10-05 13:20:17 -06:00
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
#ifdef CONFIG_ROUTE_IPv4_RAMROUTE
|
|
|
|
|
FAR struct net_route_ipv4_queue_s g_ipv4_routes;
|
2015-05-13 07:22:02 -06:00
|
|
|
#endif
|
|
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
#ifdef CONFIG_ROUTE_IPv6_RAMROUTE
|
|
|
|
|
FAR struct net_route_ipv6_queue_s g_ipv6_routes;
|
2015-05-13 07:22:02 -06:00
|
|
|
#endif
|
2013-10-05 13:20:17 -06:00
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
|
* Private Data
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
/* The array containing all routing table entries. */
|
2013-10-05 13:20:17 -06:00
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
#ifdef CONFIG_ROUTE_IPv4_RAMROUTE
|
2025-07-28 15:28:02 +08:00
|
|
|
NET_BUFPOOL_DECLARE(g_ipv4routes, sizeof(struct net_route_ipv4_entry_s),
|
|
|
|
|
CONFIG_ROUTE_MAX_IPv4_RAMROUTES, 0, 0);
|
2015-05-13 07:22:02 -06:00
|
|
|
#endif
|
|
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
#ifdef CONFIG_ROUTE_IPv6_RAMROUTE
|
2025-07-28 15:28:02 +08:00
|
|
|
NET_BUFPOOL_DECLARE(g_ipv6routes, sizeof(struct net_route_ipv6_entry_s),
|
|
|
|
|
CONFIG_ROUTE_MAX_IPv6_RAMROUTES, 0, 0);
|
2015-05-13 07:22:02 -06:00
|
|
|
#endif
|
2013-10-05 13:20:17 -06:00
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
|
* Public Functions
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-08-10 09:14:31 -06:00
|
|
|
* Name: net_allocroute_ipv4 and net_allocroute_ipv6
|
2013-10-05 13:20:17 -06:00
|
|
|
*
|
|
|
|
|
* Description:
|
|
|
|
|
* Allocate one route by removing it from the free list
|
|
|
|
|
*
|
2018-03-13 09:52:27 -06:00
|
|
|
* Input Parameters:
|
2013-10-05 13:20:17 -06:00
|
|
|
* None
|
|
|
|
|
*
|
|
|
|
|
* Returned Value:
|
2017-07-08 13:03:58 -06:00
|
|
|
* On success, a pointer to the newly allocated routing table entry is
|
2013-10-05 13:20:17 -06:00
|
|
|
* returned; NULL is returned on failure.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
#ifdef CONFIG_ROUTE_IPv4_RAMROUTE
|
2017-08-10 16:18:06 -06:00
|
|
|
FAR struct net_route_ipv4_s *net_allocroute_ipv4(void)
|
2013-10-05 13:20:17 -06:00
|
|
|
{
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
FAR struct net_route_ipv4_entry_s *route;
|
2013-10-05 13:20:17 -06:00
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
/* Get exclusive address to the networking data structures and
|
|
|
|
|
* then remove the first entry from the g_ipv4routes pool
|
|
|
|
|
*/
|
2013-10-05 13:20:17 -06:00
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
route = NET_BUFPOOL_TRYALLOC(g_ipv4routes);
|
2024-01-03 14:56:54 +08:00
|
|
|
if (!route)
|
|
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
return &route->entry;
|
2013-10-05 13:20:17 -06:00
|
|
|
}
|
2015-05-13 07:22:02 -06:00
|
|
|
#endif
|
|
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
#ifdef CONFIG_ROUTE_IPv6_RAMROUTE
|
2015-05-13 07:22:02 -06:00
|
|
|
FAR struct net_route_ipv6_s *net_allocroute_ipv6(void)
|
|
|
|
|
{
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
FAR struct net_route_ipv6_entry_s *route;
|
2015-05-13 07:22:02 -06:00
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
/* Get exclusive address to the networking data structures and
|
|
|
|
|
* then remove the first entry from the g_ipv6routes pool
|
|
|
|
|
*/
|
2015-05-13 07:22:02 -06:00
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
route = NET_BUFPOOL_TRYALLOC(g_ipv6routes);
|
2024-01-03 14:56:54 +08:00
|
|
|
if (!route)
|
|
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
return &route->entry;
|
2015-05-13 07:22:02 -06:00
|
|
|
}
|
|
|
|
|
#endif
|
2013-10-05 13:20:17 -06:00
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-08-10 09:14:31 -06:00
|
|
|
* Name: net_freeroute_ipv4 and net_freeroute_ipv6
|
2013-10-05 13:20:17 -06:00
|
|
|
*
|
|
|
|
|
* Description:
|
|
|
|
|
* Free one route by adding it from the free list
|
|
|
|
|
*
|
2018-03-13 09:52:27 -06:00
|
|
|
* Input Parameters:
|
2013-10-05 13:20:17 -06:00
|
|
|
* route - The route to be freed
|
|
|
|
|
*
|
|
|
|
|
* Returned Value:
|
|
|
|
|
* None
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
#ifdef CONFIG_ROUTE_IPv4_RAMROUTE
|
2017-08-10 16:18:06 -06:00
|
|
|
void net_freeroute_ipv4(FAR struct net_route_ipv4_s *route)
|
2013-10-05 13:20:17 -06:00
|
|
|
{
|
|
|
|
|
DEBUGASSERT(route);
|
|
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
/* Add the new entry to the g_ipv4routes pool */
|
2013-10-05 13:20:17 -06:00
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
NET_BUFPOOL_FREE(g_ipv4routes, (FAR struct net_route_ipv4_entry_s *)route);
|
2013-10-05 13:20:17 -06:00
|
|
|
}
|
2015-05-13 07:22:02 -06:00
|
|
|
#endif
|
|
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
#ifdef CONFIG_ROUTE_IPv6_RAMROUTE
|
2015-05-13 07:22:02 -06:00
|
|
|
void net_freeroute_ipv6(FAR struct net_route_ipv6_s *route)
|
|
|
|
|
{
|
|
|
|
|
DEBUGASSERT(route);
|
|
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
/* Add the new entry to the g_ipv6routes pool */
|
|
|
|
|
|
|
|
|
|
NET_BUFPOOL_FREE(g_ipv6routes, (FAR struct net_route_ipv6_entry_s *)route);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
|
* Name: net_lockroute_ipv4 and net_unlockroute_ipv4
|
|
|
|
|
*
|
|
|
|
|
* Description:
|
|
|
|
|
* Lock and unlock the g_ipv4routes pool
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_ROUTE_IPv4_RAMROUTE
|
|
|
|
|
void net_lockroute_ipv4(void)
|
|
|
|
|
{
|
|
|
|
|
NET_BUFPOOL_LOCK(g_ipv4routes);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void net_unlockroute_ipv4(void)
|
|
|
|
|
{
|
|
|
|
|
NET_BUFPOOL_UNLOCK(g_ipv4routes);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2015-05-13 07:22:02 -06:00
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
/****************************************************************************
|
|
|
|
|
* Name: net_lockroute_ipv6 and net_unlockroute_ipv6
|
|
|
|
|
*
|
|
|
|
|
* Description:
|
|
|
|
|
* Lock and unlock the g_ipv6routes pool
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
2015-05-13 07:22:02 -06:00
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
#ifdef CONFIG_ROUTE_IPv6_RAMROUTE
|
|
|
|
|
void net_lockroute_ipv6(void)
|
|
|
|
|
{
|
|
|
|
|
NET_BUFPOOL_LOCK(g_ipv6routes);
|
|
|
|
|
}
|
2015-05-13 07:22:02 -06:00
|
|
|
|
2025-07-28 15:28:02 +08:00
|
|
|
void net_unlockroute_ipv6(void)
|
|
|
|
|
{
|
|
|
|
|
NET_BUFPOOL_UNLOCK(g_ipv6routes);
|
2015-05-13 07:22:02 -06:00
|
|
|
}
|
|
|
|
|
#endif
|
2013-10-05 13:20:17 -06:00
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 09:04:31 -06:00
|
|
|
#endif /* CONFIG_ROUTE_IPv4_RAMROUTE || CONFIG_ROUTE_IPv6_RAMROUTE */
|