5769c1da0c153ce58be8ad2299bc8a9273a41e5c
[project/luci.git] / applications / luci-firewall / luasrc / model / cbi / luci_fw / rrule.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2010 Jo-Philipp Wich <xm@subsignal.org>
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11         http://www.apache.org/licenses/LICENSE-2.0
12
13 $Id$
14 ]]--
15
16 local sys = require "luci.sys"
17 local dsp = require "luci.dispatcher"
18
19 arg[1] = arg[1] or ""
20
21 m = Map("firewall", translate("Traffic Redirection"),
22         translate("Traffic redirection allows you to change the " ..
23                 "destination address of forwarded packets."))
24
25 m.redirect = dsp.build_url("admin", "network", "firewall")
26
27 if not m.uci:get(arg[1]) == "redirect" then
28         luci.http.redirect(m.redirect)
29         return
30 end
31
32 local has_v2 = nixio.fs.access("/lib/firewall/fw.sh")
33 local wan_zone = nil
34
35 m.uci:foreach("firewall", "zone",
36         function(s)
37                 local n = s.network or s.name
38                 if n then
39                         local i
40                         for i in n:gmatch("%S+") do
41                                 if i == "wan" then
42                                         wan_zone = s.name
43                                         return false
44                                 end
45                         end
46                 end
47         end)
48
49 s = m:section(NamedSection, arg[1], "redirect", "")
50 s.anonymous = true
51 s.addremove = false
52
53 s:tab("general", translate("General Settings"))
54 s:tab("advanced", translate("Advanced Settings"))
55
56 back = s:taboption("general", DummyValue, "_overview", translate("Overview"))
57 back.value = ""
58 back.titleref = luci.dispatcher.build_url("admin", "network", "firewall", "redirect")
59
60 name = s:taboption("general", Value, "_name", translate("Name"))
61 name.rmempty = true
62 name.size = 10
63
64 src = s:taboption("general", Value, "src", translate("Source zone"))
65 src.nocreate = true
66 src.default = "wan"
67 src.template = "cbi/firewall_zonelist"
68
69 proto = s:taboption("general", ListValue, "proto", translate("Protocol"))
70 proto.optional = true
71 proto:value("tcpudp", "TCP+UDP")
72 proto:value("tcp", "TCP")
73 proto:value("udp", "UDP")
74
75 dport = s:taboption("general", Value, "src_dport", translate("External port"),
76         translate("Match incoming traffic directed at the given " ..
77                 "destination port or port range on this host"))
78 dport.datatype = "portrange"
79 dport:depends("proto", "tcp")
80 dport:depends("proto", "udp")
81 dport:depends("proto", "tcpudp")
82
83 to = s:taboption("general", Value, "dest_ip", translate("Internal IP address"),
84         translate("Redirect matched incoming traffic to the specified " ..
85                 "internal host"))
86 to.datatype = "ip4addr"
87 for i, dataset in ipairs(luci.sys.net.arptable()) do
88         to:value(dataset["IP address"])
89 end
90
91 toport = s:taboption("general", Value, "dest_port", translate("Internal port (optional)"),
92         translate("Redirect matched incoming traffic to the given port on " ..
93                 "the internal host"))
94 toport.optional = true
95 toport.placeholder = "0-65535"
96
97 target = s:taboption("advanced", ListValue, "target", translate("Redirection type"))
98 target:value("DNAT")
99 target:value("SNAT")
100
101 dest = s:taboption("advanced", Value, "dest", translate("Destination zone"))
102 dest.nocreate = true
103 dest.default = "lan"
104 dest.template = "cbi/firewall_zonelist"
105
106 src_dip = s:taboption("advanced", Value, "src_dip",
107         translate("Intended destination address"),
108         translate(
109                 "For DNAT, match incoming traffic directed at the given destination "..
110                 "ip address. For SNAT rewrite the source address to the given address."
111         ))
112
113 src_dip.optional = true
114 src_dip.datatype = "ip4addr"
115 src_dip.placeholder = translate("any")
116
117 src_mac = s:taboption("advanced", Value, "src_mac", translate("Source MAC address"))
118 src_mac.optional = true
119 src_mac.datatype = "macaddr"
120 src_mac.placeholder = translate("any")
121
122 src_ip = s:taboption("advanced", Value, "src_ip", translate("Source IP address"))
123 src_ip.optional = true
124 src_ip.datatype = "ip4addr"
125 src_ip.placeholder = translate("any")
126
127 sport = s:taboption("advanced", Value, "src_port", translate("Source port"),
128         translate("Match incoming traffic originating from the given " ..
129                 "source port or port range on the client host"))
130 sport.optional = true
131 sport.datatype = "portrange"
132 sport.placeholder = "0-65536"
133 sport:depends("proto", "tcp")
134 sport:depends("proto", "udp")
135 sport:depends("proto", "tcpudp")
136
137 reflection = s:taboption("advanced", Flag, "reflection", translate("Enable NAT Loopback"))
138 reflection.rmempty = true
139 reflection:depends({ target = "DNAT", src = wan_zone })
140 reflection.cfgvalue = function(...)
141         return Flag.cfgvalue(...) or "1"
142 end
143
144 return m