VLAN-GUI: enforce config requirements for UPnP and IGMPproxy
[tomato.git] / release / src / router / www / forward-upnp.asp
blob15aef1448047e749644b455a55c3cce8181cb969
1 <!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0//EN'>
2 <!--
3 Tomato GUI
4 Copyright (C) 2006-2010 Jonathan Zarate
5 http://www.polarcloud.com/tomato/
7 For use with Tomato Firmware only.
8 No part of this file may be used without permission.
9 -->
10 <html>
11 <head>
12 <meta http-equiv='content-type' content='text/html;charset=utf-8'>
13 <meta name='robots' content='noindex,nofollow'>
14 <title>[<% ident(); %>] Forwarding: UPnP / NAT-PMP</title>
15 <link rel='stylesheet' type='text/css' href='tomato.css'>
16 <% css(); %>
17 <script type='text/javascript' src='tomato.js'></script>
19 <!-- / / / -->
21 <style type='text/css'>
22 #upnp-grid .co1, #upnp-grid .co2 {
23 width: 12%;
25 #upnp-grid .co3 {
26 width: 15%;
28 #upnp-grid .co4 {
29 width: 8%;
31 #upnp-grid .co5 {
32 width: 53%;
34 </style>
36 <script type='text/javascript' src='debug.js'></script>
38 <script type='text/javascript'>
40 /* REMOVE-BEGIN
41 !!TB - additional miniupnp settings
42 REMOVE-END */
43 // <% nvram("upnp_enable,upnp_mnp,upnp_clean,upnp_secure,upnp_clean_interval,upnp_clean_threshold,upnp_lan,upnp_lan1,upnp_lan2,upnp_lan3,lan_ifname,lan1_ifname,lan2_ifname,lan3_ifname,"); %>
45 // <% upnpinfo(); %>
47 nvram.upnp_enable = fixInt(nvram.upnp_enable, 0, 3, 0);
50 function submitDelete(proto, eport)
52 form.submitHidden('upnp.cgi', {
53 remove_proto: proto,
54 remove_eport: eport,
55 _redirect: 'forward-upnp.asp' });
58 function deleteData(data)
60 if (!confirm('Delete ' + data[3] + ' ' + data[0] + ' -> ' + data[2] + ':' + data[1] + ' ?')) return;
61 submitDelete(data[3], data[0]);
64 var ug = new TomatoGrid();
66 ug.onClick = function(cell) {
67 deleteData(cell.parentNode.getRowData());
70 ug.rpDel = function(e) {
71 deleteData(PR(e).getRowData());
75 ug.setup = function() {
76 this.init('upnp-grid', 'sort delete');
77 this.headerSet(['External', 'Internal', 'Internal Address', 'Protocol', 'Description']);
78 ug.populate();
81 ug.populate = function() {
82 var i, j, r, row, data;
84 if (nvram.upnp_enable != 0) {
85 var data = mupnp_data.split('\n');
86 for (i = 0; i < data.length; ++i) {
87 r = data[i].match(/^(UDP|TCP)\s+(\d+)\s+(.+?)\s+(\d+)\s+\[(.*)\](.*)$/);
88 if (r == null) continue;
89 row = this.insertData(-1, [r[2], r[4], r[3], r[1], r[5]]);
91 if (!r[0]) {
92 for (j = 0; j < 5; ++j) {
93 elem.addClass(row.cells[j], 'disabled');
96 for (j = 0; j < 5; ++j) {
97 row.cells[j].title = 'Click to delete';
100 this.sort(2);
102 E('upnp-delete-all').disabled = (ug.getDataCount() == 0);
105 function deleteAll()
107 if (!confirm('Delete all entries?')) return;
108 submitDelete('*', '0');
111 function toggleFiltersVisibility(){
112 if(E('upnpsettings').style.display=='')
113 E('upnpsettings').style.display='none';
114 else
115 E('upnpsettings').style.display='';
118 function verifyFields(focused, quiet)
120 /* REMOVE-BEGIN
121 !!TB - additional miniupnp settings
122 REMOVE-END */
123 var enable = E('_f_enable_upnp').checked || E('_f_enable_natpmp').checked;
124 var bc = E('_f_upnp_clean').checked;
126 E('_f_upnp_clean').disabled = (enable == 0);
127 E('_f_upnp_secure').disabled = (enable == 0);
128 E('_f_upnp_mnp').disabled = (E('_f_enable_upnp').checked == 0);
129 E('_upnp_clean_interval').disabled = (enable == 0) || (bc == 0);
130 E('_upnp_clean_threshold').disabled = (enable == 0) || (bc == 0);
131 elem.display(PR(E('_upnp_clean_interval')), (enable != 0) && (bc != 0));
132 elem.display(PR(E('_upnp_clean_threshold')), (enable != 0) && (bc != 0));
134 if ((enable != 0) && (bc != 0)) {
135 if (!v_range('_upnp_clean_interval', quiet, 60, 65535)) return 0;
136 if (!v_range('_upnp_clean_threshold', quiet, 0, 9999)) return 0;
138 else {
139 ferror.clear(E('_upnp_clean_interval'));
140 ferror.clear(E('_upnp_clean_threshold'));
142 /* VLAN-BEGIN */
143 E('_f_upnp_lan').disabled = ((nvram.lan_ifname.length < 1) || !((enable != 0) && (bc != 0)));
144 if (E('_f_upnp_lan').disabled)
145 E('_f_upnp_lan').checked = false;
146 E('_f_upnp_lan1').disabled = ((nvram.lan1_ifname.length < 1) || !((enable != 0) && (bc != 0)));
147 if (E('_f_upnp_lan1').disabled)
148 E('_f_upnp_lan1').checked = false;
149 E('_f_upnp_lan2').disabled = ((nvram.lan2_ifname.length < 1) || !((enable != 0) && (bc != 0)));
150 if (E('_f_upnp_lan2').disabled)
151 E('_f_upnp_lan2').checked = false;
152 E('_f_upnp_lan3').disabled = ((nvram.lan3_ifname.length < 1) || !((enable != 0) && (bc != 0)));
153 if (E('_f_upnp_lan3').disabled)
154 E('_f_upnp_lan3').checked = false;
155 if ((enable) && (!E('_f_upnp_lan').checked) && (!E('_f_upnp_lan1').checked) && (!E('_f_upnp_lan2').checked) && (!E('_f_upnp_lan3').checked)) {
156 if (E('_f_enable_natpmp').checked)
157 ferror.set('_f_enable_natpmp', 'NAT-PMP must be enabled in least one LAN bridge', quiet);
158 if (E('_f_enable_upnp').checked)
159 ferror.set('_f_enable_upnp', 'UPnP must be enabled in least one LAN bridge', quiet);
160 return 0;
161 } else {
162 ferror.clear('_f_enable_natpmp');
163 ferror.clear('_f_enable_upnp');
165 /* VLAN-END */
166 return 1;
169 function save()
171 /* REMOVE-BEGIN
172 !!TB - miniupnp
173 REMOVE-END */
174 if (!verifyFields(null, 0)) return;
176 var fom = E('_fom');
177 fom.upnp_enable.value = 0;
178 if (fom.f_enable_upnp.checked) fom.upnp_enable.value = 1;
179 if (fom.f_enable_natpmp.checked) fom.upnp_enable.value |= 2;
181 /* REMOVE-BEGIN
182 !!TB - additional miniupnp settings
183 REMOVE-END */
184 fom.upnp_mnp.value = E('_f_upnp_mnp').checked ? 1 : 0;
185 fom.upnp_clean.value = E('_f_upnp_clean').checked ? 1 : 0;
186 fom.upnp_secure.value = E('_f_upnp_secure').checked ? 1 : 0;
188 /* VLAN-BEGIN */
189 fom.upnp_lan.value = E('_f_upnp_lan').checked ? 1 : 0;
190 fom.upnp_lan1.value = E('_f_upnp_lan1').checked ? 1 : 0;
191 fom.upnp_lan2.value = E('_f_upnp_lan2').checked ? 1 : 0;
192 fom.upnp_lan3.value = E('_f_upnp_lan3').checked ? 1 : 0;
193 /* VLAN-END */
194 form.submit(fom, 0);
197 function init()
199 ug.recolor();
202 /* REMOVE-BEGIN
203 !!TB - miniupnp
204 REMOVE-END */
205 function submit_complete()
207 reloadPage();
209 </script>
211 </head>
212 <body onload='init()'>
213 <form id='_fom' method='post' action='tomato.cgi'>
214 <table id='container' cellspacing=0>
215 <tr><td colspan=2 id='header'>
216 <div class='title'>Tomato</div>
217 <div class='version'>Version <% version(); %></div>
218 </td></tr>
219 <tr id='body'><td id='navi'><script type='text/javascript'>navi()</script></td>
220 <td id='content'>
221 <div id='ident'><% ident(); %></div>
223 <!-- / / / -->
225 <input type='hidden' name='_nextpage' value='forward-upnp.asp'>
226 <input type='hidden' name='_service' value='upnp-restart'>
228 <input type='hidden' name='upnp_enable'>
229 /* REMOVE-BEGIN
230 !!TB - additional miniupnp settings
231 REMOVE-END */
232 <input type='hidden' name='upnp_mnp'>
233 <input type='hidden' name='upnp_clean'>
234 <input type='hidden' name='upnp_secure'>
235 <!-- VLAN-BEGIN -->
236 <input type='hidden' name='upnp_lan'>
237 <input type='hidden' name='upnp_lan1'>
238 <input type='hidden' name='upnp_lan2'>
239 <input type='hidden' name='upnp_lan3'>
240 <!-- VLAN-END -->
242 <div class='section-title'>Forwarded Ports</div>
243 <div class='section'>
244 <table id='upnp-grid' class='tomato-grid'></table>
245 <div style='width: 100%; text-align: right'><input type='button' value='Delete All' onclick='deleteAll()' id='upnp-delete-all'> <input type='button' value='Refresh' onclick='javascript:reloadPage();'></div>
246 </div>
248 <div class='section-title'>Settings <small><i><a href='javascript:toggleFiltersVisibility();'>(Toggle Visibility)</a></i></small></div>
249 <div class='section' id='upnpsettings' style='display:none'>
250 <script type='text/javascript'>
251 createFieldTable('', [
252 { title: 'Enable UPnP', name: 'f_enable_upnp', type: 'checkbox', value: (nvram.upnp_enable & 1) },
253 { title: 'Enable NAT-PMP', name: 'f_enable_natpmp', type: 'checkbox', value: (nvram.upnp_enable & 2) },
254 /* REMOVE-BEGIN
255 !!TB - additional miniupnp settings
256 REMOVE-END */
257 { title: 'Inactive Rules Cleaning', name: 'f_upnp_clean', type: 'checkbox', value: (nvram.upnp_clean == '1') },
258 { title: 'Cleaning Interval', indent: 2, name: 'upnp_clean_interval', type: 'text', maxlen: 5, size: 7,
259 suffix: ' <small>seconds</small>', value: nvram.upnp_clean_interval },
260 { title: 'Cleaning Threshold', indent: 2, name: 'upnp_clean_threshold', type: 'text', maxlen: 4, size: 7,
261 suffix: ' <small>redirections</small>', value: nvram.upnp_clean_threshold },
262 { title: 'Secure Mode', name: 'f_upnp_secure', type: 'checkbox',
263 suffix: ' <small>(when enabled, UPnP clients are allowed to add mappings only to their IP)</small>',
264 value: (nvram.upnp_secure == '1') },
265 /* VLAN-BEGIN */
266 { title: 'Listen on' },
267 { title: 'LAN', indent: 2, name: 'f_upnp_lan', type: 'checkbox', value: (nvram.upnp_lan == '1') },
268 { title: 'LAN1', indent: 2, name: 'f_upnp_lan1', type: 'checkbox', value: (nvram.upnp_lan1 == '1') },
269 { title: 'LAN2', indent: 2, name: 'f_upnp_lan2', type: 'checkbox', value: (nvram.upnp_lan2 == '1') },
270 { title: 'LAN3', indent: 2, name: 'f_upnp_lan3', type: 'checkbox', value: (nvram.upnp_lan3 == '1') },
271 /* VLAN-END */
272 { title: 'Show In My Network Places', name: 'f_upnp_mnp', type: 'checkbox', value: (nvram.upnp_mnp == '1')}
274 </script>
275 </div>
278 <!-- / / / -->
280 </td></tr>
281 <tr><td id='footer' colspan=2>
282 <span id='footer-msg'></span>
283 <input type='button' value='Save' id='save-button' onclick='save()'>
284 <input type='button' value='Cancel' id='cancel-button' onclick='javascript:reloadPage();'>
285 </td></tr>
286 </table>
287 </form>
288 /* REMOVE-BEGIN
289 !!TB - added verifyFields
290 REMOVE-END */
291 <script type='text/javascript'>ug.setup();verifyFields(null, 1);</script>
292 </body>
293 </html>