controller.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. <?php
  2. /* Wifi Hotspot app for YunoHost
  3. * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. * Contribute at https://github.com/labriqueinternet/hotspot_ynh
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. function ynh_setting_get($setting) {
  20. $value = exec("sudo grep \"^$setting:\" /etc/yunohost/apps/hotspot/settings.yml");
  21. $value = preg_replace('/^[^:]+:\s*["\']?/', '', $value);
  22. $value = preg_replace('/\s*["\']$/', '', $value);
  23. return htmlspecialchars($value);
  24. }
  25. function ynh_setting_set($setting, $value) {
  26. return exec('sudo yunohost app setting hotspot '.escapeshellarg($setting).' -v '.escapeshellarg($value));
  27. }
  28. function stop_service() {
  29. exec('sudo systemctl stop ynh-hotspot');
  30. }
  31. function start_service() {
  32. exec('sudo systemctl start ynh-hotspot', $output, $retcode);
  33. return $retcode;
  34. }
  35. function service_status() {
  36. exec('sudo ynh-hotspot status', $output);
  37. return $output;
  38. }
  39. function service_faststatus() {
  40. exec('systemctl is-active hostapd', $output, $retcode);
  41. return $retcode;
  42. }
  43. function ipv6_expanded($ip) {
  44. exec('ipv6_expanded '.escapeshellarg($ip), $output);
  45. return $output[0];
  46. }
  47. function ipv6_compressed($ip) {
  48. exec('ipv6_compressed '.escapeshellarg($ip), $output);
  49. return $output[0];
  50. }
  51. function iw_multissid($nic) {
  52. exec('sudo iw_multissid '.escapeshellarg($nic), $output);
  53. return $output[0];
  54. }
  55. function iw_devices() {
  56. exec('sudo iw_devices', $output);
  57. return !empty($output) ? getArray($output[0]) : '';
  58. }
  59. function getArray($str) {
  60. return explode('|', $str);
  61. }
  62. function noneValue($str) {
  63. return ($str == 'none') ? '' : $str;
  64. }
  65. function is_connected_through_hotspot($ip6_net, $ip4_nat_prefix) {
  66. $ip = $_SERVER['REMOTE_ADDR'];
  67. foreach($ip6_net as $net) {
  68. $ip6_regex = '/^'.preg_quote(preg_replace('/::$/', '', $net)).':/';
  69. if(preg_match($ip6_regex, $ip)) {
  70. return true;
  71. }
  72. }
  73. foreach($ip4_nat_prefix as $prefix) {
  74. $ip4_regex = '/^'.preg_quote($prefix).'\./';
  75. if(preg_match($ip4_regex, $ip)) {
  76. return true;
  77. }
  78. }
  79. return false;
  80. }
  81. dispatch('/', function() {
  82. $ssids = array();
  83. $devs = iw_devices();
  84. $devs_list = '';
  85. $wifi_device = noneValue(ynh_setting_get('wifi_device'));
  86. $multissid = ynh_setting_get('multissid');
  87. $wifi_channel = ynh_setting_get('wifi_channel');
  88. foreach($devs AS $dev) {
  89. $dev_multissid = iw_multissid($dev);
  90. $active = ($dev == $wifi_device) ? 'class="active"' : '';
  91. $devs_list .= "<li $active data-multissid='$dev_multissid'><a href='#'>$dev</a></li>\n";
  92. }
  93. $wifi_ssid = getArray(ynh_setting_get('wifi_ssid'));
  94. $wifi_secure = getArray(ynh_setting_get('wifi_secure'));
  95. $wifi_passphrase = getArray(ynh_setting_get('wifi_passphrase'));
  96. $ip6_net = getArray(ynh_setting_get('ip6_net'));
  97. $ip6_firewall = getArray(ynh_setting_get('ip6_firewall'));
  98. $ip6_dns0 = getArray(ynh_setting_get('ip6_dns0'));
  99. $ip6_dns1 = getArray(ynh_setting_get('ip6_dns1'));
  100. $ip4_nat_prefix = getArray(ynh_setting_get('ip4_nat_prefix'));
  101. $ip4_dns0 = getArray(ynh_setting_get('ip4_dns0'));
  102. $ip4_dns1 = getArray(ynh_setting_get('ip4_dns1'));
  103. for($i = 0; $i < $multissid; $i++) {
  104. $ssid = [
  105. 'id' => $i,
  106. 'wifi_ssid' => noneValue($wifi_ssid[$i]),
  107. 'wifi_secure' => noneValue($wifi_secure[$i]),
  108. 'wifi_passphrase' => noneValue($wifi_passphrase[$i]),
  109. 'ip6_net' => noneValue($ip6_net[$i]),
  110. 'ip6_firewall' => noneValue($ip6_firewall[$i]),
  111. 'ip6_dns0' => noneValue($ip6_dns0[$i]),
  112. 'ip6_dns1' => noneValue($ip6_dns1[$i]),
  113. 'ip4_nat_prefix' => noneValue($ip4_nat_prefix[$i]),
  114. 'ip4_dns0' => noneValue($ip4_dns0[$i]),
  115. 'ip4_dns1' => noneValue($ip4_dns1[$i]),
  116. ];
  117. array_push($ssids, $ssid);
  118. }
  119. $ip6_net = ynh_setting_get('ip6_net');
  120. $ip6_net = ($ip6_net == 'none') ? '' : getArray($ip6_net);
  121. $ip4_nat_prefix = getArray(ynh_setting_get('ip4_nat_prefix'));
  122. set('service_enabled', ynh_setting_get('service_enabled'));
  123. set('ssids', $ssids);
  124. set('wifi_device', $wifi_device);
  125. set('wifi_channel', $wifi_channel);
  126. set('wifi_device_list', $devs_list);
  127. set('faststatus', service_faststatus() == 0);
  128. set('is_connected_through_hotspot', is_connected_through_hotspot($ip6_net, $ip4_nat_prefix));
  129. return render('settings.html.php');
  130. });
  131. dispatch_put('/settings', function() {
  132. $retcode = 1;
  133. if(!empty($_POST['wifi_device'])) {
  134. exec('ip link show '.escapeshellarg($_POST['wifi_device']), $output, $retcode);
  135. }
  136. $wifi_device_exists = ($retcode == 0);
  137. $service_enabled = isset($_POST['service_enabled']) ? 1 : 0;
  138. $wifi_ssid_uniqueness = array();
  139. $ip4_nat_prefix_uniqueness = array();
  140. $ip6_net_uniqueness = array();
  141. $ssids = array();
  142. $id = 0;
  143. if($service_enabled == 1) {
  144. try {
  145. if(!$wifi_device_exists) {
  146. if(empty($_POST['wifi_device'])) {
  147. throw new Exception(_('You have to choose a wifi antenna interface'));
  148. }
  149. throw new Exception(_('The wifi antenna interface seems not exist on the system'));
  150. }
  151. foreach($_POST['ssid'] as $key => $ssid) {
  152. $id = $key + 1;
  153. $ssid['ip6_net'] = empty($ssid['ip6_net']) ? 'none' : $ssid['ip6_net'];
  154. $ssid['ip6_addr'] = 'none';
  155. $ssid['ip6_firewall'] = isset($ssid['ip6_firewall']) ? 1 : 0;
  156. $ssid['wifi_secure'] = isset($ssid['wifi_secure']) ? 1 : 0;
  157. if(!$ssid['wifi_secure']) {
  158. $ssid['wifi_passphrase'] = 'none';
  159. }
  160. if(in_array($ssid['wifi_ssid'], $wifi_ssid_uniqueness)) {
  161. throw new Exception(_('All Wifi names must be unique'));
  162. } else {
  163. array_push($wifi_ssid_uniqueness, $ssid['wifi_ssid']);
  164. }
  165. if(in_array($ssid['ip4_nat_prefix'], $ip4_nat_prefix_uniqueness)) {
  166. throw new Exception(_('All IPv4 NAT prefixes must be unique'));
  167. } else {
  168. array_push($ip4_nat_prefix_uniqueness, $ssid['ip4_nat_prefix']);
  169. }
  170. if($ssid['ip6_net'] != 'none' && in_array($ssid['ip6_net'], $ip6_net_uniqueness)) {
  171. throw new Exception(_('All IPv6 delegated prefixes must be unique'));
  172. } else {
  173. array_push($ip6_net_uniqueness, $ssid['ip6_net']);
  174. }
  175. if(empty($ssid['wifi_ssid']) || empty($ssid['wifi_passphrase'])) {
  176. throw new Exception(_('Your Wifi Hotspot needs a name and a password'));
  177. }
  178. if($ssid['wifi_secure'] && (strlen($ssid['wifi_passphrase']) < 8 || strlen($ssid['wifi_passphrase']) > 63)) {
  179. throw new Exception(_('Your password must from 8 to 63 characters (WPA2 passphrase)'));
  180. }
  181. if($ssid['wifi_secure'] && preg_match('/[^[:print:]]/', $ssid['wifi_passphrase'])) {
  182. $msg = _('Only <LINK:ASCII>printable ASCII characters</LINK:ASCII> are permitted in your password');
  183. $msg = str_replace('<LINK:ASCII>', '<a href="https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/ASCII_full.svg/217px-ASCII_full.svg.png" class="alert-link">', $msg);
  184. $msg = str_replace('</LINK:ASCII>', '</a>', $msg);
  185. throw new Exception($msg);
  186. }
  187. if($ssid['ip6_net'] != 'none') {
  188. $ssid['ip6_net'] = ipv6_expanded($ssid['ip6_net']);
  189. if(empty($ssid['ip6_net'])) {
  190. throw new Exception(_('The IPv6 Delegated Prefix format looks bad'));
  191. }
  192. $ip6_blocs = explode(':', $ssid['ip6_net']);
  193. $ssid['ip6_addr'] = "${ip6_blocs[0]}:${ip6_blocs[1]}:${ip6_blocs[2]}:${ip6_blocs[3]}:${ip6_blocs[4]}:${ip6_blocs[5]}:${ip6_blocs[6]}:42";
  194. $ssid['ip6_net'] = ipv6_compressed($ssid['ip6_net']);
  195. $ssid['ip6_addr'] = ipv6_compressed($ssid['ip6_addr']);
  196. }
  197. if(!empty($ssid['ip6_dns0'])) {
  198. $ssid['ip6_dns0'] = ipv6_expanded($ssid['ip6_dns0']);
  199. if(empty($ssid['ip6_dns0'])) {
  200. throw new Exception(_('The format of the first IPv6 DNS Resolver looks bad'));
  201. }
  202. $ssid['ip6_dns0'] = ipv6_compressed($ssid['ip6_dns0']);
  203. if(!empty($ssid['ip6_dns1'])) {
  204. $ssid['ip6_dns1'] = ipv6_expanded($ssid['ip6_dns1']);
  205. if(empty($ssid['ip6_dns1'])) {
  206. throw new Exception(_('The format of the second IPv6 DNS Resolver looks bad'));
  207. }
  208. $ssid['ip6_dns1'] = ipv6_compressed($ssid['ip6_dns1']);
  209. }
  210. }
  211. if(inet_pton($ssid['ip4_dns0']) === false) {
  212. throw new Exception(_('The format of the first IPv4 DNS Resolver looks bad'));
  213. }
  214. if(inet_pton($ssid['ip4_dns1']) === false) {
  215. throw new Exception(_('The format of the second IPv4 DNS Resolver looks bad'));
  216. }
  217. if(inet_pton("${ssid['ip4_nat_prefix']}.0") === false) {
  218. throw new Exception(_('The format of the IPv4 NAT Prefix (/24) looks bad: x.x.x expected'));
  219. }
  220. if(filter_var("${ssid['ip4_nat_prefix']}.0", FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE) !== false) {
  221. throw new Exception(_('The IPv4 NAT Prefix must be from a private range'));
  222. }
  223. array_push($ssids, $ssid);
  224. }
  225. } catch(Exception $e) {
  226. flash('error', ($id != 0 ? _('Hotspot')." $id: " : '').$e->getMessage().' ('._('configuration not updated').').');
  227. goto redirect;
  228. }
  229. }
  230. stop_service();
  231. ynh_setting_set('service_enabled', $service_enabled);
  232. $settings = array();
  233. if($service_enabled == 1) {
  234. foreach($ssids as $ssid) {
  235. foreach($ssid as $setting => $value) {
  236. $settings[$setting] .= "$value|";
  237. }
  238. }
  239. ynh_setting_set('multissid', count($ssids));
  240. ynh_setting_set('wifi_device', $_POST['wifi_device']);
  241. ynh_setting_set('wifi_channel', $_POST['wifi_channel']);
  242. foreach($settings as $setting => $value) {
  243. ynh_setting_set($setting, preg_replace('/\|$/', '', $value));
  244. }
  245. $retcode = start_service();
  246. if($retcode == 0) {
  247. flash('success', _('Configuration updated and service successfully reloaded'));
  248. } else {
  249. flash('error', _('Configuration updated but service reload failed'));
  250. }
  251. } else {
  252. flash('success', _('Service successfully disabled'));
  253. }
  254. redirect:
  255. redirect_to('/');
  256. });
  257. dispatch('/status', function() {
  258. $status_lines = service_status();
  259. $status_list = '';
  260. foreach($status_lines AS $status_line) {
  261. if(preg_match('/^\[INFO\]/', $status_line)) {
  262. $status_list .= '<li class="status-info">'.htmlspecialchars($status_line).'</li>';
  263. }
  264. elseif(preg_match('/^\[OK\]/', $status_line)) {
  265. $status_list .= '<li class="status-success">'.htmlspecialchars($status_line).'</li>';
  266. }
  267. elseif(preg_match('/^\[WARN\]/', $status_line)) {
  268. $status_list .= '<li class="status-warning">'.htmlspecialchars($status_line).'</li>';
  269. }
  270. elseif(preg_match('/^\[ERR\]/', $status_line)) {
  271. $status_list .= '<li class="status-danger">'.htmlspecialchars($status_line).'</li>';
  272. }
  273. }
  274. echo $status_list;
  275. });
  276. dispatch('/lang/:locale', function($locale = 'en') {
  277. switch($locale) {
  278. case 'fr':
  279. $_SESSION['locale'] = 'fr';
  280. break;
  281. default:
  282. $_SESSION['locale'] = 'en';
  283. }
  284. redirect_to('/');
  285. });