forked from apache/nuttx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IP forwarding: Move to separate directory. A few fixes from early tes…
…ting; In TUN driver, do all polling on worker thread. Otherwise, the stack gets very deep.
- Loading branch information
1 parent
99ef7c6
commit 7258f1c
Showing
20 changed files
with
164 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# | ||
# For a description of the syntax of this configuration file, | ||
# see the file kconfig-language.txt in the NuttX tools repository. | ||
# | ||
|
||
config NET_IPFORWARD | ||
bool "Enable L2 forwarding" | ||
default n | ||
---help--- | ||
Enable forwarding of packets. Packets received with IP addresses | ||
that are not supported by this platform will be forwarded to the | ||
appropriate network device. Routing table support may be required. | ||
|
||
config NET_IPFORWARD_BROADCAST | ||
bool "Forward broadcast/multicast packets" | ||
default n | ||
depends on NET_IPFORWARD && NETDEV_MULTINIC | ||
---help--- | ||
If selected, broadcast packets received on one network device will | ||
be forwarded though other network devices. | ||
|
||
config NET_IPFORWARD_NSTRUCT | ||
int "Number of pre-allocated forwarding structures" | ||
default 4 | ||
depends on NET_IPFORWARD && NETDEV_MULTINIC | ||
---help--- | ||
When packets are forwarded from on device to another, a structure | ||
must be allocated to hold the state of forwarding across several | ||
asynchronous events. Those structures are pre-allocated for | ||
minimal, deterministic performance and to prevent hogging of memory | ||
(of course, that means that this value must be carefully selected | ||
for your application). This setting defines the number of such pre- | ||
allocated structures. | ||
|
||
NOTE: This setting effectively puts a maximum on the number of | ||
packets that may be waiting to be forwarded from one network device | ||
to another. CONFIG_IOB_NBUFFERS also limits the forward because the | ||
payload of the packet (up to the MSS) is retain in IOBs. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
############################################################################ | ||
# net/ipforward/Make.defs | ||
# | ||
# Copyright (C) 2017 Gregory Nutt. All rights reserved. | ||
# Author: Gregory Nutt <gnutt@nuttx.org> | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions | ||
# are met: | ||
# | ||
# 1. Redistributions of source code must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# 2. Redistributions in binary form must reproduce the above copyright | ||
# notice, this list of conditions and the following disclaimer in | ||
# the documentation and/or other materials provided with the | ||
# distribution. | ||
# 3. Neither the name NuttX nor the names of its contributors may be | ||
# used to endorse or promote products derived from this software | ||
# without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | ||
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | ||
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
# POSSIBILITY OF SUCH DAMAGE. | ||
# | ||
############################################################################ | ||
|
||
# IP forwarding source files | ||
|
||
ifeq ($(CONFIG_NET_IPFORWARD),y) | ||
|
||
ifeq ($(CONFIG_NET_IPv4),y) | ||
NET_CSRCS += ipv4_forward.c | ||
endif | ||
|
||
ifeq ($(CONFIG_NET_IPv6),y) | ||
NET_CSRCS += ipv6_forward.c | ||
endif | ||
|
||
ifeq ($(CONFIG_NETDEV_MULTINIC),y) | ||
NET_CSRCS += ip_forward.c | ||
endif | ||
|
||
# Include IP forwaring build support | ||
|
||
DEPPATH += --dep-path ipforward | ||
VPATH += :ipforward | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.