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