controller.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <?php
  2. /* Wifi Hotspot app for YunoHost
  3. * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. * Contribute at https://github.com/jvaubourg/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 service ynh-hotspot stop');
  27. }
  28. function start_service() {
  29. exec('sudo service ynh-hotspot start', $output, $retcode);
  30. return $retcode;
  31. }
  32. function service_status() {
  33. exec('sudo service ynh-hotspot status', $output);
  34. return $output;
  35. }
  36. function service_faststatus() {
  37. exec('sudo service hostapd status', $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 is_connected_through_hotspot($ip6_net, $ip4_nat_prefix) {
  49. $ip = $_SERVER['REMOTE_ADDR'];
  50. $ip6_regex = '/^'.preg_quote(preg_replace('/::$/', '', $ip6_net)).':/';
  51. $ip4_regex = '/^'.preg_quote($ip4_nat_prefix).'\./';
  52. return (preg_match($ip6_regex, $ip) || preg_match($ip4_regex, $ip));
  53. }
  54. dispatch('/', function() {
  55. exec('sudo iwconfig', $devs);
  56. $wifi_device = moulinette_get('wifi_device');
  57. $devs_list = '';
  58. foreach($devs AS $dev) {
  59. if(preg_match('/802.11/', $dev)) {
  60. $dev = explode(' ', $dev);
  61. $dev = $dev[0];
  62. $active = ($dev == $wifi_device) ? 'class="active"' : '';
  63. $devs_list .= "<li $active><a href='#'>$dev</a></li>\n";
  64. }
  65. }
  66. $ip6_net = moulinette_get('ip6_net');
  67. $ip6_net = ($ip6_net == 'none') ? '' : $ip6_net;
  68. $ip4_nat_prefix = moulinette_get('ip4_nat_prefix');
  69. set('wifi_ssid', moulinette_get('wifi_ssid'));
  70. set('wifi_passphrase', moulinette_get('wifi_passphrase'));
  71. set('wifi_channel', moulinette_get('wifi_channel'));
  72. set('wifi_n', moulinette_get('wifi_n'));
  73. set('wifi_device', $wifi_device);
  74. set('wifi_device_list', $devs_list);
  75. set('ip6_net', $ip6_net);
  76. set('ip6_dns0', moulinette_get('ip6_dns0'));
  77. set('ip6_dns1', moulinette_get('ip6_dns1'));
  78. set('ip4_nat_prefix', $ip4_nat_prefix);
  79. set('ip4_dns0', moulinette_get('ip4_dns0'));
  80. set('ip4_dns1', moulinette_get('ip4_dns1'));
  81. set('faststatus', service_faststatus() == 0);
  82. set('is_connected_through_hotspot', is_connected_through_hotspot($ip6_net, $ip4_nat_prefix));
  83. return render('settings.html.php');
  84. });
  85. dispatch_put('/settings', function() {
  86. exec('ip link show '.escapeshellarg($_POST['wifi_device']), $output, $retcode);
  87. $wifi_device_exists = ($retcode == 0);
  88. $ip6_net = empty($_POST['ip6_net']) ? 'none' : $_POST['ip6_net'];
  89. $ip6_addr = 'none';
  90. try {
  91. if(empty($_POST['wifi_ssid']) || empty($_POST['wifi_passphrase']) || empty($_POST['wifi_channel'])) {
  92. throw new Exception(T_('Your Wifi Hotspot needs a name, a password and a channel'));
  93. }
  94. if(strlen($_POST['wifi_passphrase']) < 8 || strlen($_POST['wifi_passphrase']) > 63) {
  95. throw new Exception(T_('Your password must from 8 to 63 characters (WPA2 passphrase)'));
  96. }
  97. if(preg_match('/[^[:print:]]/', $_POST['wifi_passphrase'])) {
  98. throw new Exception(T_('Only printable ASCII characters are permitted in your password'));
  99. }
  100. if(!$wifi_device_exists) {
  101. throw new Exception(T_('The wifi antenna interface seems not exist on the system'));
  102. }
  103. if($ip6_net != 'none') {
  104. $ip6_net = ipv6_expanded($ip6_net);
  105. if(empty($ip6_net)) {
  106. throw new Exception(T_('The IPv6 Delegated Prefix format looks bad'));
  107. }
  108. $ip6_blocs = explode(':', $ip6_net);
  109. $ip6_addr = "${ip6_blocs[0]}:${ip6_blocs[1]}:${ip6_blocs[2]}:${ip6_blocs[3]}:${ip6_blocs[4]}:${ip6_blocs[5]}:${ip6_blocs[6]}:42";
  110. $ip6_net = ipv6_compressed($ip6_net);
  111. $ip6_addr = ipv6_compressed($ip6_addr);
  112. }
  113. $ip6_dns0 = ipv6_expanded($ip6_dns0);
  114. if(empty($_POST['ip6_dns0'])) {
  115. throw new Exception(T_('The format of the first IPv6 DNS Resolver looks bad'));
  116. }
  117. $ip6_dns0 = ipv6_compressed($ip6_dns0);
  118. $ip6_dns1 = ipv6_expanded($ip6_dns1);
  119. if(empty($_POST['ip6_dns1'])) {
  120. throw new Exception(T_('The format of the second IPv6 DNS Resolver looks bad'));
  121. }
  122. $ip6_dns1 = ipv6_compressed($ip6_dns1);
  123. if(inet_pton($_POST['ip4_dns0']) === false) {
  124. throw new Exception(T_('The format of the first IPv4 DNS Resolver looks bad'));
  125. }
  126. if(inet_pton($_POST['ip4_dns1']) === false) {
  127. throw new Exception(T_('The format of the second IPv4 DNS Resolver looks bad'));
  128. }
  129. if(inet_pton("${_POST['ip4_nat_prefix']}.0") === false) {
  130. throw new Exception(T_('The format of the IPv4 NAT Prefix (/24) looks bad : x.x.x expected)'));
  131. }
  132. if(filter_var("${_POST['ip4_nat_prefix']}.0", FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE) !== false) {
  133. throw new Exception(T_('The IPv4 NAT Prefix must be from a private range'));
  134. }
  135. } catch(Exception $e) {
  136. flash('error', $e->getMessage().' ('.T_('configuration not updated').').');
  137. goto redirect;
  138. }
  139. stop_service();
  140. moulinette_set('wifi_ssid', $_POST['wifi_ssid']);
  141. moulinette_set('wifi_passphrase', $_POST['wifi_passphrase']);
  142. moulinette_set('wifi_channel', $_POST['wifi_channel']);
  143. moulinette_set('wifi_n', isset($_POST['wifi_n']) ? 1 : 0);
  144. moulinette_set('wifi_device', $_POST['wifi_device']);
  145. moulinette_set('ip6_net', $ip6_net);
  146. moulinette_set('ip6_addr', $ip6_addr);
  147. moulinette_set('ip6_dns0', $_POST['ip6_dns0']);
  148. moulinette_set('ip6_dns1', $_POST['ip6_dns1']);
  149. moulinette_set('ip4_nat_prefix', $_POST['ip4_nat_prefix']);
  150. moulinette_set('ip4_dns0', $_POST['ip4_dns0']);
  151. moulinette_set('ip4_dns1', $_POST['ip4_dns1']);
  152. $retcode = start_service();
  153. if($retcode == 0) {
  154. flash('success', T_('Configuration updated and service successfully reloaded'));
  155. } else {
  156. flash('error', T_('Configuration updated but service reload failed'));
  157. }
  158. redirect:
  159. redirect_to('/');
  160. });
  161. dispatch('/status', function() {
  162. $status_lines = service_status();
  163. $status_list = '';
  164. foreach($status_lines AS $status_line) {
  165. if(preg_match('/^\[INFO\]/', $status_line)) {
  166. $status_list .= '<li class="status-info">'.htmlspecialchars($status_line).'</li>';
  167. }
  168. elseif(preg_match('/^\[OK\]/', $status_line)) {
  169. $status_list .= '<li class="status-success">'.htmlspecialchars($status_line).'</li>';
  170. }
  171. elseif(preg_match('/^\[WARN\]/', $status_line)) {
  172. $status_list .= '<li class="status-warning">'.htmlspecialchars($status_line).'</li>';
  173. }
  174. elseif(preg_match('/^\[ERR\]/', $status_line)) {
  175. $status_list .= '<li class="status-danger">'.htmlspecialchars($status_line).'</li>';
  176. }
  177. }
  178. echo $status_list;
  179. });
  180. dispatch('/lang/:locale', function($locale = 'en') {
  181. switch ($locale) {
  182. case 'fr':
  183. $_SESSION['locale'] = 'fr';
  184. break;
  185. default:
  186. $_SESSION['locale'] = 'en';
  187. }
  188. if(!empty($_GET['redirect_to'])) {
  189. redirect_to($_GET['redirect_to']);
  190. } else {
  191. redirect_to('/');
  192. }
  193. });