controller.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  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 moulinette_get($var) {
  20. return htmlspecialchars(exec('sudo yunohost app setting hotspot '.escapeshellarg($var)));
  21. }
  22. function moulinette_set($var, $value) {
  23. return exec('sudo yunohost app setting hotspot '.escapeshellarg($var).' -v '.escapeshellarg($value));
  24. }
  25. function stop_service() {
  26. exec('sudo systemctl stop ynh-hotspot');
  27. }
  28. function start_service() {
  29. exec('sudo systemctl start ynh-hotspot', $output, $retcode);
  30. return $retcode;
  31. }
  32. function service_status() {
  33. exec('sudo ynh-hotspot status', $output);
  34. return $output;
  35. }
  36. function service_faststatus() {
  37. exec('sudo systemctl is-active hostapd', $output, $retcode);
  38. return $retcode;
  39. }
  40. function ipv6_expanded($ip) {
  41. exec('ipv6_expanded '.escapeshellarg($ip), $output);
  42. return $output[0];
  43. }
  44. function ipv6_compressed($ip) {
  45. exec('ipv6_compressed '.escapeshellarg($ip), $output);
  46. return $output[0];
  47. }
  48. function iw_multissid($nic) {
  49. exec('sudo iw_multissid '.escapeshellarg($nic), $output);
  50. return $output[0];
  51. }
  52. function iw_devices() {
  53. exec('sudo iw_devices', $output);
  54. return getArray($output[0]);
  55. }
  56. function getArray($str) {
  57. return explode('|', $str);
  58. }
  59. function noneValue($str) {
  60. return ($str == 'none') ? '' : $str;
  61. }
  62. function is_connected_through_hotspot($ip6_net, $ip4_nat_prefix) {
  63. $ip = $_SERVER['REMOTE_ADDR'];
  64. foreach($ip6_net as $net) {
  65. $ip6_regex = '/^'.preg_quote(preg_replace('/::$/', '', $net)).':/';
  66. if(preg_match($ip6_regex, $ip)) {
  67. return true;
  68. }
  69. }
  70. foreach($ip4_nat_prefix as $prefix) {
  71. $ip4_regex = '/^'.preg_quote($prefix).'\./';
  72. if(preg_match($ip4_regex, $ip)) {
  73. return true;
  74. }
  75. }
  76. return false;
  77. }
  78. dispatch('/', function() {
  79. $ssids = array();
  80. $devs = iw_devices();
  81. $devs_list = '';
  82. $wifi_device = moulinette_get('wifi_device');
  83. $multissid = moulinette_get('multissid');
  84. $wifi_channel = moulinette_get('wifi_channel');
  85. foreach($devs AS $dev) {
  86. $dev_multissid = iw_multissid($dev);
  87. $active = ($dev == $wifi_device) ? 'class="active"' : '';
  88. $devs_list .= "<li $active data-multissid='$dev_multissid'><a href='#'>$dev</a></li>\n";
  89. }
  90. $wifi_ssid = getArray(moulinette_get('wifi_ssid'));
  91. $wifi_secure = getArray(moulinette_get('wifi_secure'));
  92. $wifi_passphrase = getArray(moulinette_get('wifi_passphrase'));
  93. $ip6_net = getArray(moulinette_get('ip6_net'));
  94. $ip6_dns0 = getArray(moulinette_get('ip6_dns0'));
  95. $ip6_dns1 = getArray(moulinette_get('ip6_dns1'));
  96. $ip4_nat_prefix = getArray(moulinette_get('ip4_nat_prefix'));
  97. $ip4_dns0 = getArray(moulinette_get('ip4_dns0'));
  98. $ip4_dns1 = getArray(moulinette_get('ip4_dns1'));
  99. for($i = 0; $i < $multissid; $i++) {
  100. $ssid = [
  101. 'id' => $i,
  102. 'wifi_ssid' => noneValue($wifi_ssid[$i]),
  103. 'wifi_secure' => noneValue($wifi_secure[$i]),
  104. 'wifi_passphrase' => noneValue($wifi_passphrase[$i]),
  105. 'ip6_net' => noneValue($ip6_net[$i]),
  106. 'ip6_dns0' => noneValue($ip6_dns0[$i]),
  107. 'ip6_dns1' => noneValue($ip6_dns1[$i]),
  108. 'ip4_nat_prefix' => noneValue($ip4_nat_prefix[$i]),
  109. 'ip4_dns0' => noneValue($ip4_dns0[$i]),
  110. 'ip4_dns1' => noneValue($ip4_dns1[$i]),
  111. ];
  112. array_push($ssids, $ssid);
  113. }
  114. $ip6_net = moulinette_get('ip6_net');
  115. $ip6_net = ($ip6_net == 'none') ? '' : getArray($ip6_net);
  116. $ip4_nat_prefix = getArray(moulinette_get('ip4_nat_prefix'));
  117. set('service_enabled', moulinette_get('service_enabled'));
  118. set('ssids', $ssids);
  119. set('wifi_device', $wifi_device);
  120. set('wifi_channel', $wifi_channel);
  121. set('wifi_device_list', $devs_list);
  122. set('faststatus', service_faststatus() == 0);
  123. set('is_connected_through_hotspot', is_connected_through_hotspot($ip6_net, $ip4_nat_prefix));
  124. return render('settings.html.php');
  125. });
  126. dispatch_put('/settings', function() {
  127. exec('ip link show '.escapeshellarg($_POST['wifi_device']), $output, $retcode);
  128. $wifi_device_exists = ($retcode == 0);
  129. $service_enabled = isset($_POST['service_enabled']) ? 1 : 0;
  130. $wifi_ssid_uniqueness = array();
  131. $ip4_nat_prefix_uniqueness = array();
  132. $ip6_net_uniqueness = array();
  133. $ssids = array();
  134. $id = 0;
  135. if($service_enabled == 1) {
  136. try {
  137. foreach($_POST['ssid'] as $key => $ssid) {
  138. $id = $key + 1;
  139. $ssid['ip6_net'] = empty($ssid['ip6_net']) ? 'none' : $ssid['ip6_net'];
  140. $ssid['ip6_addr'] = 'none';
  141. $ssid['wifi_secure'] = isset($ssid['wifi_secure']) ? 1 : 0;
  142. if(!$ssid['wifi_secure']) {
  143. $ssid['wifi_passphrase'] = 'none';
  144. }
  145. if(in_array($ssid['wifi_ssid'], $wifi_ssid_uniqueness)) {
  146. throw new Exception(_('All Wifi names must be unique'));
  147. } else {
  148. array_push($wifi_ssid_uniqueness, $ssid['wifi_ssid']);
  149. }
  150. if(in_array($ssid['ip4_nat_prefix'], $ip4_nat_prefix_uniqueness)) {
  151. throw new Exception(_('All IPv4 NAT prefixes must be unique'));
  152. } else {
  153. array_push($ip4_nat_prefix_uniqueness, $ssid['ip4_nat_prefix']);
  154. }
  155. if($ssid['ip6_net'] != 'none' && in_array($ssid['ip6_net'], $ip6_net_uniqueness)) {
  156. throw new Exception(_('All IPv6 delegated prefixes must be unique'));
  157. } else {
  158. array_push($ip6_net_uniqueness, $ssid['ip6_net']);
  159. }
  160. if(empty($ssid['wifi_ssid']) || empty($ssid['wifi_passphrase'])) {
  161. throw new Exception(_('Your Wifi Hotspot needs a name and a password'));
  162. }
  163. if($ssid['wifi_secure'] && (strlen($ssid['wifi_passphrase']) < 8 || strlen($ssid['wifi_passphrase']) > 63)) {
  164. throw new Exception(_('Your password must from 8 to 63 characters (WPA2 passphrase)'));
  165. }
  166. if($ssid['wifi_secure'] && preg_match('/[^[:print:]]/', $ssid['wifi_passphrase'])) {
  167. throw new Exception(_('Only printable ASCII characters are permitted in your password'));
  168. }
  169. if(!$wifi_device_exists) {
  170. throw new Exception(_('The wifi antenna interface seems not exist on the system'));
  171. }
  172. if($ssid['ip6_net'] != 'none') {
  173. $ssid['ip6_net'] = ipv6_expanded($ssid['ip6_net']);
  174. if(empty($ssid['ip6_net'])) {
  175. throw new Exception(_('The IPv6 Delegated Prefix format looks bad'));
  176. }
  177. $ip6_blocs = explode(':', $ssid['ip6_net']);
  178. $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";
  179. $ssid['ip6_net'] = ipv6_compressed($ssid['ip6_net']);
  180. $ssid['ip6_addr'] = ipv6_compressed($ssid['ip6_addr']);
  181. }
  182. if(!empty($ssid['ip6_dns0'])) {
  183. $ssid['ip6_dns0'] = ipv6_expanded($ssid['ip6_dns0']);
  184. if(empty($ssid['ip6_dns0'])) {
  185. throw new Exception(_('The format of the first IPv6 DNS Resolver looks bad'));
  186. }
  187. $ssid['ip6_dns0'] = ipv6_compressed($ssid['ip6_dns0']);
  188. if(!empty($ssid['ip6_dns1'])) {
  189. $ssid['ip6_dns1'] = ipv6_expanded($ssid['ip6_dns1']);
  190. if(empty($ssid['ip6_dns1'])) {
  191. throw new Exception(_('The format of the second IPv6 DNS Resolver looks bad'));
  192. }
  193. $ssid['ip6_dns1'] = ipv6_compressed($ssid['ip6_dns1']);
  194. }
  195. }
  196. if(inet_pton($ssid['ip4_dns0']) === false) {
  197. throw new Exception(_('The format of the first IPv4 DNS Resolver looks bad'));
  198. }
  199. if(inet_pton($ssid['ip4_dns1']) === false) {
  200. throw new Exception(_('The format of the second IPv4 DNS Resolver looks bad'));
  201. }
  202. if(inet_pton("${ssid['ip4_nat_prefix']}.0") === false) {
  203. throw new Exception(_('The format of the IPv4 NAT Prefix (/24) looks bad : x.x.x expected)'));
  204. }
  205. if(filter_var("${ssid['ip4_nat_prefix']}.0", FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE) !== false) {
  206. throw new Exception(_('The IPv4 NAT Prefix must be from a private range'));
  207. }
  208. array_push($ssids, $ssid);
  209. }
  210. } catch(Exception $e) {
  211. flash('error', _('Hotspot')." $id: ".$e->getMessage().' ('._('configuration not updated').').');
  212. goto redirect;
  213. }
  214. }
  215. stop_service();
  216. moulinette_set('service_enabled', $service_enabled);
  217. $settings = array();
  218. if($service_enabled == 1) {
  219. foreach($ssids as $ssid) {
  220. foreach($ssid as $setting => $value) {
  221. $settings[$setting] .= "$value|";
  222. }
  223. }
  224. moulinette_set('multissid', count($ssids));
  225. moulinette_set('wifi_device', $_POST['wifi_device']);
  226. moulinette_set('wifi_channel', $_POST['wifi_channel']);
  227. foreach($settings as $setting => $value) {
  228. moulinette_set($setting, preg_replace('/\|$/', '', $value));
  229. }
  230. $retcode = start_service();
  231. if($retcode == 0) {
  232. flash('success', _('Configuration updated and service successfully reloaded'));
  233. } else {
  234. flash('error', _('Configuration updated but service reload failed'));
  235. }
  236. } else {
  237. flash('success', _('Service successfully disabled'));
  238. }
  239. redirect:
  240. redirect_to('/');
  241. });
  242. dispatch('/status', function() {
  243. $status_lines = service_status();
  244. $status_list = '';
  245. foreach($status_lines AS $status_line) {
  246. if(preg_match('/^\[INFO\]/', $status_line)) {
  247. $status_list .= '<li class="status-info">'.htmlspecialchars($status_line).'</li>';
  248. }
  249. elseif(preg_match('/^\[OK\]/', $status_line)) {
  250. $status_list .= '<li class="status-success">'.htmlspecialchars($status_line).'</li>';
  251. }
  252. elseif(preg_match('/^\[WARN\]/', $status_line)) {
  253. $status_list .= '<li class="status-warning">'.htmlspecialchars($status_line).'</li>';
  254. }
  255. elseif(preg_match('/^\[ERR\]/', $status_line)) {
  256. $status_list .= '<li class="status-danger">'.htmlspecialchars($status_line).'</li>';
  257. }
  258. }
  259. echo $status_list;
  260. });
  261. dispatch('/lang/:locale', function($locale = 'en') {
  262. switch($locale) {
  263. case 'fr':
  264. $_SESSION['locale'] = 'fr';
  265. break;
  266. default:
  267. $_SESSION['locale'] = 'en';
  268. }
  269. redirect_to('/');
  270. });