Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F102085606
D22877.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
D22877.diff
View Options
Index: head/sbin/ipfw/ipfw.8
===================================================================
--- head/sbin/ipfw/ipfw.8
+++ head/sbin/ipfw/ipfw.8
@@ -3233,8 +3233,11 @@
Try to leave the alias port numbers unchanged from
the actual local port numbers.
.It Cm unreg_only
-Traffic on the local network not originating from an
+Traffic on the local network not originating from a RFC 1918
unregistered address spaces will be ignored.
+.It Cm unreg_cgn
+Like unreg_only, but includes the RFC 6598 (Carrier Grade NAT)
+address range.
.It Cm reset
Reset table of the packet aliasing engine on address change.
.It Cm reverse
Index: head/sbin/ipfw/ipfw2.h
===================================================================
--- head/sbin/ipfw/ipfw2.h
+++ head/sbin/ipfw/ipfw2.h
@@ -220,6 +220,7 @@
TOK_DENY_INC,
TOK_SAME_PORTS,
TOK_UNREG_ONLY,
+ TOK_UNREG_CGN,
TOK_SKIP_GLOBAL,
TOK_RESET_ADDR,
TOK_ALIAS_REV,
Index: head/sbin/ipfw/main.c
===================================================================
--- head/sbin/ipfw/main.c
+++ head/sbin/ipfw/main.c
@@ -43,8 +43,8 @@
"add [num] [set N] [prob x] RULE-BODY\n"
"{pipe|queue} N config PIPE-BODY\n"
"[pipe|queue] {zero|delete|show} [N{,N}]\n"
-"nat N config {ip IPADDR|if IFNAME|log|deny_in|same_ports|unreg_only|reset|\n"
-" reverse|proxy_only|redirect_addr linkspec|\n"
+"nat N config {ip IPADDR|if IFNAME|log|deny_in|same_ports|unreg_only|unreg_cgn|\n"
+" reset|reverse|proxy_only|redirect_addr linkspec|\n"
" redirect_port linkspec|redirect_proto linkspec}\n"
"set [disable N... enable N...] | move [rule] X to Y | swap X Y | show\n"
"set N {show|list|zero|resetlog|delete} [N{,N}] | flush\n"
Index: head/sbin/ipfw/nat.c
===================================================================
--- head/sbin/ipfw/nat.c
+++ head/sbin/ipfw/nat.c
@@ -60,6 +60,7 @@
{ "deny_in", TOK_DENY_INC },
{ "same_ports", TOK_SAME_PORTS },
{ "unreg_only", TOK_UNREG_ONLY },
+ { "unreg_cgn", TOK_UNREG_CGN },
{ "skip_global", TOK_SKIP_GLOBAL },
{ "reset", TOK_RESET_ADDR },
{ "reverse", TOK_ALIAS_REV },
@@ -663,6 +664,9 @@
} else if (n->mode & PKT_ALIAS_UNREGISTERED_ONLY) {
printf(" unreg_only");
n->mode &= ~PKT_ALIAS_UNREGISTERED_ONLY;
+ } else if (n->mode & PKT_ALIAS_UNREGISTERED_CGN) {
+ printf(" unreg_cgn");
+ n->mode &= ~PKT_ALIAS_UNREGISTERED_CGN;
} else if (n->mode & PKT_ALIAS_RESET_ON_ADDR_CHANGE) {
printf(" reset");
n->mode &= ~PKT_ALIAS_RESET_ON_ADDR_CHANGE;
Index: head/sys/netinet/libalias/alias.h
===================================================================
--- head/sys/netinet/libalias/alias.h
+++ head/sys/netinet/libalias/alias.h
@@ -228,6 +228,14 @@
*/
#define PKT_ALIAS_SKIP_GLOBAL 0x200
+/*
+ * Like PKT_ALIAS_UNREGISTERED_ONLY, but includes the RFC 6598
+ * (Carrier Grade NAT) address range as follows:
+ *
+ * 100.64.0.0 -> 100.127.255.255
+ */
+#define PKT_ALIAS_UNREGISTERED_CGN 0x400
+
/* Function return codes. */
#define PKT_ALIAS_ERROR -1
#define PKT_ALIAS_OK 1
Index: head/sys/netinet/libalias/alias.c
===================================================================
--- head/sys/netinet/libalias/alias.c
+++ head/sys/netinet/libalias/alias.c
@@ -1413,6 +1413,10 @@
#define UNREG_ADDR_C_LOWER 0xc0a80000
#define UNREG_ADDR_C_UPPER 0xc0a8ffff
+/* 100.64.0.0 -> 100.127.255.255 (RFC 6598 - Carrier Grade NAT) */
+#define UNREG_ADDR_CGN_LOWER 0x64400000
+#define UNREG_ADDR_CGN_UPPER 0x647fffff
+
int
LibAliasOut(struct libalias *la, char *ptr, int maxpacketsize)
{
@@ -1464,7 +1468,8 @@
}
addr_save = GetDefaultAliasAddress(la);
- if (la->packetAliasMode & PKT_ALIAS_UNREGISTERED_ONLY) {
+ if (la->packetAliasMode & PKT_ALIAS_UNREGISTERED_ONLY ||
+ la->packetAliasMode & PKT_ALIAS_UNREGISTERED_CGN) {
u_long addr;
int iclass;
@@ -1476,6 +1481,9 @@
iclass = 2;
else if (addr >= UNREG_ADDR_A_LOWER && addr <= UNREG_ADDR_A_UPPER)
iclass = 1;
+ else if (addr >= UNREG_ADDR_CGN_LOWER && addr <= UNREG_ADDR_CGN_UPPER &&
+ la->packetAliasMode & PKT_ALIAS_UNREGISTERED_CGN)
+ iclass = 4;
if (iclass == 0) {
SetDefaultAliasAddress(la, pip->ip_src);
Index: head/sys/netinet/libalias/libalias.3
===================================================================
--- head/sys/netinet/libalias/libalias.3
+++ head/sys/netinet/libalias/libalias.3
@@ -212,6 +212,11 @@
registered and unregistered subnets on different interfaces.
The registered subnet is fully accessible to the outside world, so traffic
from it does not need to be passed through the packet aliasing engine.
+.It Dv PKT_ALIAS_UNREGISTERED_CGN
+Like PKT_ALIAS_UNREGISTERED_ONLY, but includes the RFC 6598 (Carrier Grade
+NAT) subnet as follows:
+.Pp
+100.64.0.0 -> 100.127.255.255 (RFC 6598 subnet)
.It Dv PKT_ALIAS_RESET_ON_ADDR_CHANGE
When this mode bit is set and
.Fn LibAliasSetAddress
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Nov 8, 10:43 AM (9 h, 6 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14533522
Default Alt Text
D22877.diff (4 KB)
Attached To
Mode
D22877: libalias: Add support for RFC 6598/Carrier Grade NAT subnets
Attached
Detach File
Event Timeline
Log In to Comment