1 /*- 2 * Copyright (c) 2015-2016 Yandex LLC 3 * Copyright (c) 2015-2016 Andrey V. Elsukov <ae@FreeBSD.org> 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 */ 27 28 #include <sys/cdefs.h> 29 __FBSDID("$FreeBSD$"); 30 31 #include <sys/param.h> 32 #include <sys/systm.h> 33 #include <sys/kernel.h> 34 #include <sys/lock.h> 35 #include <sys/malloc.h> 36 #include <sys/module.h> 37 #include <sys/rwlock.h> 38 #include <sys/socket.h> 39 #include <sys/sysctl.h> 40 41 #include <net/if.h> 42 #include <net/vnet.h> 43 44 #include <netinet/in.h> 45 #include <netinet/ip_var.h> 46 #include <netinet/ip_fw.h> 47 48 #include <netpfil/ipfw/ip_fw_private.h> 49 #include <netpfil/ipfw/nat64/ip_fw_nat64.h> 50 #include <netpfil/ipfw/nat64/nat64_translate.h> 51 52 53 int nat64_debug = 0; 54 SYSCTL_DECL(_net_inet_ip_fw); 55 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, nat64_debug, CTLFLAG_RW, 56 &nat64_debug, 0, "Debug level for NAT64 module"); 57 58 int nat64_allow_private = 0; 59 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, nat64_allow_private, CTLFLAG_RW, 60 &nat64_allow_private, 0, 61 "Allow use of non-global IPv4 addresses with NAT64"); 62 63 static int 64 vnet_ipfw_nat64_init(const void *arg __unused) 65 { 66 struct ip_fw_chain *ch; 67 int first, error; 68 69 ch = &V_layer3_chain; 70 first = IS_DEFAULT_VNET(curvnet) ? 1: 0; 71 error = nat64stl_init(ch, first); 72 if (error != 0) 73 return (error); 74 error = nat64lsn_init(ch, first); 75 if (error != 0) { 76 nat64stl_uninit(ch, first); 77 return (error); 78 } 79 return (0); 80 } 81 82 static int 83 vnet_ipfw_nat64_uninit(const void *arg __unused) 84 { 85 struct ip_fw_chain *ch; 86 int last; 87 88 ch = &V_layer3_chain; 89 last = IS_DEFAULT_VNET(curvnet) ? 1: 0; 90 nat64stl_uninit(ch, last); 91 nat64lsn_uninit(ch, last); 92 return (0); 93 } 94 95 static int 96 ipfw_nat64_modevent(module_t mod, int type, void *unused) 97 { 98 99 switch (type) { 100 case MOD_LOAD: 101 case MOD_UNLOAD: 102 break; 103 default: 104 return (EOPNOTSUPP); 105 } 106 return (0); 107 } 108 109 static moduledata_t ipfw_nat64_mod = { 110 "ipfw_nat64", 111 ipfw_nat64_modevent, 112 0 113 }; 114 115 /* Define startup order. */ 116 #define IPFW_NAT64_SI_SUB_FIREWALL SI_SUB_PROTO_IFATTACHDOMAIN 117 #define IPFW_NAT64_MODEVENT_ORDER (SI_ORDER_ANY - 128) /* after ipfw */ 118 #define IPFW_NAT64_MODULE_ORDER (IPFW_NAT64_MODEVENT_ORDER + 1) 119 #define IPFW_NAT64_VNET_ORDER (IPFW_NAT64_MODEVENT_ORDER + 2) 120 121 DECLARE_MODULE(ipfw_nat64, ipfw_nat64_mod, IPFW_NAT64_SI_SUB_FIREWALL, 122 SI_ORDER_ANY); 123 MODULE_DEPEND(ipfw_nat64, ipfw, 3, 3, 3); 124 MODULE_VERSION(ipfw_nat64, 1); 125 126 VNET_SYSINIT(vnet_ipfw_nat64_init, IPFW_NAT64_SI_SUB_FIREWALL, 127 IPFW_NAT64_VNET_ORDER, vnet_ipfw_nat64_init, NULL); 128 VNET_SYSUNINIT(vnet_ipfw_nat64_uninit, IPFW_NAT64_SI_SUB_FIREWALL, 129 IPFW_NAT64_VNET_ORDER, vnet_ipfw_nat64_uninit, NULL); 130