ocserv: modified match to apply to newer versions of occtl
[project/luci.git] / applications / luci-app-ocserv / luasrc / model / cbi / ocserv / main.lua
1 -- Copyright 2014 Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
2 -- Licensed to the public under the Apache License 2.0.
3
4 local fs = require "nixio.fs"
5 local has_ipv6 = fs.access("/proc/net/ipv6_route")
6
7 m = Map("ocserv", translate("OpenConnect VPN"))
8
9 s = m:section(TypedSection, "ocserv", "OpenConnect")
10 s.anonymous = true
11
12 s:tab("general",  translate("General Settings"))
13 s:tab("ca", translate("CA certificate"))
14 s:tab("template", translate("Edit Template"))
15
16 local e = s:taboption("general", Flag, "enable", translate("Enable server"))
17 e.rmempty = false
18 e.default = "1"
19
20 local o_sha = s:taboption("general", DummyValue, "sha_hash", translate("Server's certificate SHA1 hash"),
21                           translate("That value should be communicated to the client to verify the server's certificate"))
22 local o_pki = s:taboption("general", DummyValue, "pkid", translate("Server's Public Key ID"),
23                           translate("An alternative value to be communicated to the client to verify the server's certificate; this value only depends on the public key"))
24
25 local fd = io.popen("/usr/bin/certtool -i --infile /etc/ocserv/server-cert.pem", "r")
26 if fd then local ln
27         local found_sha = false
28         local found_pki = false
29         local complete = 0
30         while complete < 2 do
31                 local ln = fd:read("*l")
32                 if not ln then
33                         break
34                 elseif ln:match("SHA%-?1 fingerprint:") then
35                         found_sha = true
36                 elseif found_sha then
37                         local hash = ln:match("([a-f0-9]+)")
38                         o_sha.default = hash and hash:upper()
39                         complete = complete + 1
40                         found_sha = false
41                 elseif ln:match("Public Key I[Dd]:") then
42                         found_pki = true
43                 elseif found_pki then
44                         local hash = ln:match("([a-f0-9]+)")
45                         o_pki.default = hash and hash:upper()
46                         complete = complete + 1
47                         found_pki = false
48                 end
49         end
50         fd:close()
51 end
52
53 function m.on_commit(map)
54         luci.sys.call("/usr/bin/occtl reload  >/dev/null 2>&1")
55 end
56
57 function e.write(self, section, value)
58         if value == "0" then
59                 luci.sys.call("/etc/init.d/ocserv stop >/dev/null 2>&1")
60                 luci.sys.call("/etc/init.d/ocserv disable  >/dev/null 2>&1")
61         else
62                 luci.sys.call("/etc/init.d/ocserv enable  >/dev/null 2>&1")
63                 luci.sys.call("/etc/init.d/ocserv restart  >/dev/null 2>&1")
64         end
65         Flag.write(self, section, value)
66 end
67
68 local o
69
70 o = s:taboption("general", ListValue, "auth", translate("User Authentication"),
71         translate("The authentication method for the users. The simplest is plain with a single username-password pair. Use PAM modules to authenticate using another server (e.g., LDAP, Radius)."))
72 o.rmempty = false
73 o.default = "plain"
74 o:value("plain")
75 o:value("PAM")
76
77 o = s:taboption("general", Value, "zone", translate("Firewall Zone"),
78         translate("The firewall zone that the VPN clients will be set to"))
79 o.nocreate = true
80 o.default = "lan"
81 o.template = "cbi/firewall_zonelist"
82
83 s:taboption("general", Value, "port", translate("Port"),
84         translate("The same UDP and TCP ports will be used"))
85 s:taboption("general", Value, "max_clients", translate("Max clients"))
86 s:taboption("general", Value, "max_same", translate("Max same clients"))
87 s:taboption("general", Value, "dpd", translate("Dead peer detection time (secs)"))
88
89 local pip = s:taboption("general", Flag, "predictable_ips", translate("Predictable IPs"),
90         translate("The assigned IPs will be selected deterministically"))
91 pip.default = "1"
92
93 local udp = s:taboption("general", Flag, "udp", translate("Enable UDP"),
94         translate("Enable UDP channel support; this must be enabled unless you know what you are doing"))
95 udp.default = "1"
96
97 local cisco = s:taboption("general", Flag, "cisco_compat", translate("AnyConnect client compatibility"),
98         translate("Enable support for CISCO AnyConnect clients"))
99 cisco.default = "1"
100
101 ipaddr = s:taboption("general", Value, "ipaddr", translate("VPN <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Network-Address"))
102 ipaddr.datatype = "ip4addr"
103 ipaddr.default = "192.168.100.1"
104
105 nm = s:taboption("general", Value, "netmask", translate("VPN <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"))
106 nm.datatype = "ip4addr"
107 nm.default = "255.255.255.0"
108 nm:value("255.255.255.0")
109 nm:value("255.255.0.0")
110 nm:value("255.0.0.0")
111
112 if has_ipv6 then
113         ip6addr = s:taboption("general", Value, "ip6addr", translate("VPN <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Network-Address"), translate("<abbr title=\"Classless Inter-Domain Routing\">CIDR</abbr>-Notation: address/prefix"))
114         ip6addr.datatype = "ip6addr"
115 end
116
117
118 tmpl = s:taboption("template", Value, "_tmpl",
119         translate("Edit the template that is used for generating the ocserv configuration."))
120
121 tmpl.template = "cbi/tvalue"
122 tmpl.rows = 20
123
124 function tmpl.cfgvalue(self, section)
125         return nixio.fs.readfile("/etc/ocserv/ocserv.conf.template")
126 end
127
128 function tmpl.write(self, section, value)
129         value = value:gsub("\r\n?", "\n")
130         nixio.fs.writefile("/etc/ocserv/ocserv.conf.template", value)
131 end
132
133 ca = s:taboption("ca", Value, "_ca",
134         translate("View the CA certificate used by this server. You will need to save it as 'ca.pem' and import it into the clients."))
135
136 ca.template = "cbi/tvalue"
137 ca.rows = 20
138
139 function ca.cfgvalue(self, section)
140         return nixio.fs.readfile("/etc/ocserv/ca.pem")
141 end
142
143 --[[DNS]]--
144
145 s = m:section(TypedSection, "dns", translate("DNS servers"),
146         translate("The DNS servers to be provided to clients; can be either IPv6 or IPv4"))
147 s.anonymous = true
148 s.addremove = true
149 s.template = "cbi/tblsection"
150
151 s:option(Value, "ip", translate("IP Address")).rmempty = true
152 s.datatype = "ipaddr"
153
154 --[[Routes]]--
155
156 s = m:section(TypedSection, "routes", translate("Routing table"),
157         translate("The routing table to be provided to clients; you can mix IPv4 and IPv6 routes, the server will send only the appropriate. Leave empty to set a default route"))
158 s.anonymous = true
159 s.addremove = true
160 s.template = "cbi/tblsection"
161
162 s:option(Value, "ip", translate("IP Address")).rmempty = true
163
164 o = s:option(Value, "netmask", translate("Netmask (or IPv6-prefix)"))
165 o.default = "255.255.255.0"
166 o:value("255.255.255.0")
167 o:value("255.255.0.0")
168 o:value("255.0.0.0")
169
170
171 return m