Browse Source

running /admin on uhttpd

Danja Vasiliev 9 năm trước cách đây
mục cha
commit
f6f1d57206

+ 21 - 30
openwrt/common/etc/lighttpd/lighttpd.conf

@@ -6,6 +6,7 @@ server.modules = (
  "mod_alias",
  "mod_auth",
  "mod_setenv",
+ "mod_proxy",
 # "mod_status",
 # "mod_debug"
 )
@@ -46,23 +47,6 @@ url.access-deny = ( "~", ".inc", ".htaccess", ".htpasswd", "htpasswd", "/tmp/" )
 
 auth.backend = "htdigest"
 auth.backend.htdigest.userfile = "/opt/lib/htpasswd"
-#auth.require = (
-#  "/admin"  => (
-#    "method"  =>  "digest",
-#    "realm"   =>  "superglue",
-#    "require" =>  "valid-user"
-#  ),
-#  "/log"  => (
-#    "method"  =>  "digest",
-#    "realm"   =>  "superglue",
-#    "require" =>  "valid-user"
-#  ),
-#  "/server-status" => (
-#    "method"  =>  "digest",
-#    "realm"   =>  "superglue",
-#    "require" =>  "valid-user"
-#  )
-#)
 
 $HTTP["url"] =~ "^/admin$|^/admin/(.*)|^/log/(.*)$" {                                                 
   auth.require = ( "" => (    
@@ -73,6 +57,15 @@ $HTTP["url"] =~ "^/admin$|^/admin/(.*)|^/log/(.*)$" {
   )
 }
 
+$HTTP["request-method"] == "POST" {
+  auth.require = ( "" => (    
+    "method"  =>  "digest",
+    "realm"   =>  "superglue",
+    "require" =>  "valid-user"
+    )
+  )
+}
+
 $HTTP["request-method"] == "GET" {
   url.rewrite = (
     "^/resources/(.*)$" =>  "resources/$1",
@@ -84,32 +77,30 @@ $HTTP["request-method"] == "GET" {
     "/resources"  =>  "/opt/lib/resources",
     "/devTools"   =>  "/opt/lib/devTools",
     "/templates"  =>  "/opt/lib/templates",
-    "/admin"      =>  "/opt/lib/cgi/admin2.cgi",
     "/extension"  =>  "/opt/lib/extension"
   )
   ## override content and mime type for dotless files to text/html
   $HTTP["url"] !~ "(\.)" {
-    setenv.add-response-header += (
-      "X-Superglue-Dotless" => "text/html Content-Type was forced",
-      "Content-Type" => "text/html"
-    )
+    $HTTP["url"] !~ "(^/admin)" {
+      setenv.add-response-header += (
+        "X-Superglue-Dotless" => "text/html Content-Type was forced",
+        "Content-Type" => "text/html"
+      )
+    }
   }
 }
 
+$HTTP["url"] =~ "(^/admin)" {   
+  proxy.server  = ( "" => ("admin" => ( "host" => "127.0.0.1", "port" => 81 ))) 
+}
+
 $HTTP["request-method"] == "POST" {
   alias.url = (
-    "/admin"    =>  "/opt/lib/cgi/admin2.cgi",
     ""          =>  "/opt/lib/cgi/post.cgi"
   )
-  auth.require = (
-    "" => (
-      "method"  =>  "digest",
-      "realm"   =>  "superglue",
-      "require" =>  "valid-user"
-    )
-  )
 }
 
+
 ## can use this? per 
 ## https://dev.openwrt.org/browser/packages/net/lighttpd/files/lighttpd.conf?rev=38469
 # include_shell "cat /etc/lighttpd/conf.d/*.conf"

+ 3 - 0
openwrt/common/etc/rc.local

@@ -1,3 +1,6 @@
 ## 
 
+/opt/lib/scripts/sg-data-mount.sh &
+/opt/lib/scripts/sg-data-dirs.sh &
+
 exit 0

+ 1 - 1
openwrt/common/lib/upgrade/common.sh

@@ -129,7 +129,7 @@ kill_remaining() { # [ <signal> ]
 		else 
 			case "$name" in
 				# Skip essential services
-				*dtach*|*fw-upgrade*|*procd*|*ash*|*init*|*watchdog*|*ssh*|*dropbear*|*telnet*|*login*|*hostapd*|*wpa_supplicant*|*nas*) : ;;
+				*dtach*|*procd*|*ash*|*init*|*watchdog*|*ssh*|*dropbear*|*telnet*|*login*|*hostapd*|*wpa_supplicant*|*nas*) : ;;
 
 				# Killable process
 				*)

+ 0 - 788
openwrt/common/opt/lib/cgi/admin2.cgi

@@ -1,788 +0,0 @@
-#!/usr/bin/haserl --shell=/bin/bash  --upload-limit=32768 --upload-dir=/tmp
-<%# upload limit: 32Mb %>
-<%
-
-## SuperGlue project | http://superglue.it | 2014-2015 | GPLv3
-## http://git.superglue.it/superglue/serverfiles
-##
-## admin2.cgi - control panel for Superglue personal server
-## 
-## example POST request:
-## curl --data-urlencode 'key=value' http://host/uri
-##
-## returns: 200 (+ output of operation) on success
-##          406 (+ error message in debug mode) on error
-
-readonly _WWW='/www'
-readonly _PWDFILE="/opt/lib/htpasswd"
-readonly _TMP='/tmp'
-readonly _LOG="${_WWW}/log/admin.log"
-readonly _SCRIPTS='/opt/lib/scripts'
-readonly _DEBUG=1
-readonly _IFS=$IFS
-
-err() {
-  _ERR="$?"
-  [[ "$_ERR" -gt 0 ]] || return 0
-  logThis "$1"
-  headerPrint "${2:='400'}"
-  exit "$_ERR"
-} 
-
-logThis() {
-  [[ "$_DEBUG" -gt 0 ]] || return 0
-  local _TYPE='I:'
-  [[ "$_ERR" -gt 0 ]] && _TYPE='E:'
-  local _TIME; printf -v _TIME '%(%d.%m.%Y %H:%M:%S)T' -1
-  printf '%b\n' "$_TIME  $_TYPE ${@} " >> "$_LOG"
-  [[ "$_DEBUG" -gt 1 ]] && printf '%b\n' "[verbose] $_TYPE ${1}"
-}
-
-headerPrint() {
-  case "$1" in
- 200|'') printf '%b' 'HTTP/1.1 200 OK\r\n';;
-    301) printf '%b' "HTTP/1.1 301 Moved Permanently\r\nLocation: $HTTP_REFERER\r\n";;
-    403) printf '%b' 'HTTP/1.1 403 Forbidden\r\n';;
-    405) printf '%b' 'HTTP/1.1 405 Method Not Allowed\r\n';;
-    406) printf '%b' 'HTTP/1.1 406 Not Acceptable\r\n';;
-      *) printf '%b' 'HTTP/1.1 400 Bad Request\r\n';;
-  esac
-  printf '%b' 'Content-Type: text/html\r\n\r\n';
-}
-
-## faster echo
-_echo() {
-  printf "%b" "${*}"
-}
-
-htDigest() {
-  _USER='admin'
-  _PWD=$1
-  _REALM='superglue'
-  _HASH=$(echo -n "$_USER:$_REALM:$_PWD" | md5sum | cut -b -32)
-  printf "%s" "$_USER:$_REALM:$_HASH"
-}
-
-urlDec() {
-  local value=${*//+/%20}
-  for part in ${value//%/ \\x}; do
-    printf "%b%s" "${part:0:4}" "${part:4}"
-  done
-}
-
-setQueryVars() {
-  _VARS=( ${!POST_*} )
-#  local v
-#  for v in ${_VARS[@]}; do
-  #  echo $v
-#    v=$(urlDec "${v}")
-#    eval "_${v//POST_/}=${!v}"; 
-#  done
-  local v
-  for v in ${_VARS[@]}; do
-    logThis "$v=${!v}"
-  done
-  #echo $POST_lanssid
-  #env
-}
-
-runSuid() {
-  local _SID=$(/usr/bin/ps -p $$ -o sid=)  ## pass session id to the child
-  local _CMD=$@
-  /usr/bin/sudo $_SCRIPTS/suid.sh $_CMD $_SID 2>/dev/null
-}
-
-getQueryFile() {
-  setQueryVars
-  local _UPLD="${HASERL_fwupload_path##*/}"
-  logThis "'multipart': decoding stream"
-  mv "$_TMP/$_UPLD" "$_TMP/fwupload.bin" 2>/dev/null || _ERR=$?
-  if [[ $_ERR -gt 0 ]]; then
-    showMesg 'Firmware upload has failed' '60' 'Reboot your Superglue server and try again'
-  fi
-}
-
-validIp() {
-  local _IP=$1
-  local _RET=1
-  if [[ $_IP =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
-    OIFS=$IFS
-    IFS='.'
-    _IP=($_IP)
-    IFS=$OIFS
-    [[ ${_IP[0]} -le 255 && ${_IP[1]} -le 255 && ${_IP[2]} -le 255 && ${_IP[3]} -le 255 ]]
-    _RET=$?
-  fi
-  return $_RET
-}
-
-pwdChange() {
-  if [[ ! -z "${POST_pwd##$POST_pwdd}" ]]; then 
-    _ERR=1
-    showMesg 'Passwords did not match'
-  fi
-
-  if [[ ${#POST_pwd} -lt 6 ]]; then
-    _ERR=1
-    showMesg 'Password must be at least 6 characters long'
-  fi
-
-  _OUT=$(runSuid "echo -e \"$POST_pwd\n$POST_pwd\" | passwd root 2>&1" &&
-  runSuid "echo $(htDigest $POST_pwd) > $_PWDFILE")
-  _ERR=$?
-
-  if [[ $_ERR -gt 0 ]]; then
-    showMesg 'Password change failed!' '5' "$_OUT -"
-  else
-    showMesg 'Password is changed' '2'
-  fi
-}
-
-lanAddr() {
-  logThis "new LAN addr is: $POST_lanipaddr"
-  validIp $POST_lanipaddr || showMesg 'Not valid network address'
-  doUci set lanipaddr $POST_lanipaddr &&
-  doUci commit network
-  _ERR=$?
-  if [[ $_ERR -gt 0 ]]; then
-    showMesg 'Setting network address failed'
-  else
-    runSuid "dtach -n -zE $_SCRIPTS/net-restart.sh"
-    showMesg 'New network address is set' '30' "Your server is now accessible under <a href='http://superglue.local/admin'>http://superglue.local/admin</a>"
-  fi 
-}
-
-wanSet() {
-  if [[ ! -z $POST_wanifname ]]; then
-    ## eth and wlan wan cases are different!
-    ## eth wan requires:
-    ##   config interface 'wan'
-    ##     option ifname 'eth0'
-    ##
-    ##   config wifi-iface
-    ##     option device 'radio0'
-    ##     option network 'wan'     
-    ##     option disabled '1' (or no 'config wifi-iface' section at all)
-    ##
-    ## wlan wan requires:
-    ##   config interface 'wan'
-    ##     option proto 'dhcp'
-    ##     (without 'option ifname' specified!)
-    ##
-    ##    config wifi-iface 
-    ##      option device 'radio0'
-    ##      option network 'wan'
-    logThis "wan.ifname=$POST_wanifname"
-    if [[ $POST_wanifname == 'eth0' ]]; then
-      doUci set wanifname $POST_wanifname
-      doUci set wanwifacedis '1'
-    elif [[ $POST_wanifname == 'wlan1' ]]; then
-      doUci set wanifname ''
-      doUci set wanwifacedis ''
-    fi
-    if [[ $POST_wanproto == 'dhcp' ]]; then
-      doUci set wanproto dhcp
-      doUci set wanipaddr ''
-      doUci set wanmask ''
-      doUci set wangw ''
-      doUci set wandns ''
-    elif [[ $POST_wanproto == 'static' ]]; then
-      logThis "wan.ipaddr=$POST_wanipaddr"
-      doUci set wanproto static
-      doUci set wanipaddr $POST_wanipaddr
-      doUci set wanmask '255.255.255.0' ## fix me
-      doUci set wangw $POST_wangw
-      doUci set wandns $POST_wandns
-    fi
-    if [[ $POST_wanifname == 'wlan1' ]]; then
-      ssidChange || showMesg 'Wireless configuration failed'
-    fi
-    doUci commit network && doUci commit wireless
-    _ERR=$?
-
-    runSuid "dtach -n -zE $_SCRIPTS/net-restart.sh"
-    if [[ $_ERR -eq 0 ]]; then
-      showMesg 'Internet connection is being configured' '20' 'check your Internet connection on completion - '
-    else
-      showMesg 'Configuring Internet connection failed'
-    fi
-  fi
-}
-
-ssidChange() {
-  ## check for iface
-  [[ ! $POST_iface =~ ^('wan'|'lan')$ ]] && showMesg 'Error changing wireless settings' '30' 'unknown/unconfigured interface'
-  logThis "$POST_iface is being set"
-
-  _p=$POST_iface
-
-  ## default enc for now
-  local _enc='psk2'
-  if [[ $POST_iface == 'wan' ]]; then
-    local _mode='sta'
-    local _ssid="${POST_wanssid}"
-    local _key="${POST_wankey}"
-  else 
-    local _mode='ap'
-    local _ssid="${POST_lanssid}"
-    local _key="${POST_lankey}"
-  fi
-
-  #logThis "ssid: $_ssid [$_mode], key: $_key [$_enc]"
-  #logThis $POST_wanssid
-
-  if [[ ${#_ssid} -lt 4 ]]; then
-   _ERR=1
-   showMesg 'SSID must be at least 4 characters long'
-  fi
-  doUci set $_p'ssid' "${_ssid}"
-  _ERR=$?
-  [[ $_ERR -gt 0 ]] && showMesg 'New SSID is not set'
-
-  if [[ -z $_key ]]; then
-    ## if key is empty set encryption to none and remove key
-    doUci set $_p'key' && doUci set $_p'enc' 'none'
-    _ERR=$?
-  else
-    if [[ ${#_key} -lt 8 ]]; then
-     _ERR=1
-      showMesg 'Passphrase must be at least 8 characters long'
-    fi
-    doUci set $_p'key' "${_key}" && doUci set $_p'enc' "${_enc}"
-    _ERR=$?
-    [[ $_ERR -gt 0 ]] && showMesg 'Passphrase is not set'
-  fi
-  [[ $_ERR -gt 0 ]] && showMesg 'Wireless configuration failed'
-  if [[ $POST_iface == 'lan' ]]; then
-    if [[ "$(doUci get lanipaddr)" !=  "${POST_lanipaddr}" ]]; then
-      logThis 'local IP was changed'
-      lanAddr
-    fi
-  fi
-  doUci commit wireless
-  _ERR=$?
-
-  if [[ $_ERR -gt 0 ]]; then
-    showMesg 'Configuration failed'
-  else
-    runSuid "dtach -n -zE $_SCRIPTS/net-restart.sh"
-  fi
-
-  if [[ $POST_iface == 'lan' ]]; then
-    showMesg 'Local network configuration is progress' '30' 'check your connection on completion - '
-  else
-    ## in this case wanSet() handles success message
-    true
-  fi
-}
-
-#showError() {
-#  headerPrint 406
-#  logThis "$@"
-#  echo "ERROR: $@"
-#  exit 1
-#}
-
-showMesg() {
-  logThis "$@"
-  local _MSG=$1
-  local _TIMEOUT=$2
-  local _SUBMSG=$3
-  _MSG=${_MSG:='Configuration'}
-  _TIMEOUT=${_TIMEOUT:='5'}
-  _SUBMSG="${_SUBMSG} <span id='timeout'>${_TIMEOUT}</span> seconds to get ready.."
-  if [[ $_ERR -gt 0 ]]; then
-    local _TYPE='ERROR: '
-    headerPrint 406
-  else
-    local _TYPE='OK: '
-    headerPrint 200
-  fi
-  htmlHead "<meta http-equiv='refresh' content='${_TIMEOUT};url=http://${HTTP_HOST}/admin'>"
-  _echo "<body>
-  <h1>Superglue control panel</h1>
-  <img src='http://${HTTP_HOST}/resources/img/superglueLogo.png' class='logo'>
-  <hr>
-  <h2 style='display:inline'>$_TYPE $_MSG</h2>
-  <span style='display:block'>$_SUBMSG</span>
-  <hr>
-  </body>
-  <script type='text/javascript'>(function(e){var t=document.getElementById(e);var n=t.innerHTML;var r=setInterval(function(){if(n==0){t.innerHTML='0';clearInterval(r);return}t.innerHTML=n;n--},1e3)})('timeout')
-  </script>
-  </html>"
-  exit 0
-
-#  _echo "<body>
-#<h1>SG</h1>
-#<hr>
-#<h2 style='display:inline'>$_TYPE $_MSG</h2>
-#<span style='display:inline; margin-left: 50px;'>$_SUBMSG</span>
-#<hr>
-#</body></html>"
-#  exit 0
-}
-
-updateFw() {
-  _FWRESET=$POST_fwreset
-  _FWFILE="${_TMP}/fwupload.bin"
-  _OUT="$(/sbin/sysupgrade -T $_FWFILE 2>&1)"
-  _ERR=$?
-  logThis $_ERR
-  [[ $_ERR -gt 0 ]] && showMesg "This is not a firmware!" 10 "$_OUT -"
-  logThis 'updating fw'
-  [[ $_FWRESET == 'on' ]] && logThis 'fw reset requested'
-  ## using dtach to prevent sysupgrade getting killed
-  runSuid "dtach -n -zE $_SCRIPTS/fw-upgrade.sh $_FWFILE $_FWRESET"
-  showMesg 'Firmware upgrade is in progress..' '120' 'Device needs to reboot -'
-}
-
-usbInit() {
-  _OUT="$(runSuid $_SCRIPTS/usb-part.sh)"
-  _ERR=$?
-  [[ $_ERR -gt 0 ]] && showMesg "USB init failed!\n$_OUT"
-  showMesg 'USB storage initialization is completed' '30'
-#  logThis 'usb init..'
-}
-
-rebootNow() {
-  logThis "reboot: now!"
-  runSuid reboot
-  showMesg 'Rebooting..' '60'
-}
-
-upTime() {
-  local _T="$(uptime)"
-  _ERR=$?
-  if [[ $_ERR -gt 0 ]]; then
-    headerPrint 406
-    exit 1
-  else
-    headerPrint 200
-    printf '%b' "$_T\n"
-    exit 0
-  fi
-}
-
-iwScan() {
-  . $_SCRIPTS/iw-scan.sh
-  headerPrint 200
-  iwScanJ
-  exit 0
-}
-
-findUsbstor() {
-  local _P='/sys/block/'
-  local _D _DEV
-  for _D in ${_P}sd*; do
-    _DEV=$(readlink -f ${_D}/device)
-    if [[ ${_DEV/usb} != $_DEV ]]; then
-      _USBDEV="/dev/${_D/$_P}"
-    fi
-  done
-  [[ $_USBDEV ]] || return 1
-}
-
-storageInfo() {
-  if mountpoint -q $_WWW; then
-    IFS=$'\n' _STOR=( $(df -h $_WWW) ) IFS=$_IFS
-    _STOR=( ${_STOR[1]} )
-  else
-    return 1
-  fi
-}
-
-swapInfo() {
-  IFS=$'\n' _SWAP=( $(runSuid swapon -s) ) IFS=$_IFS
-  if [[ ${_SWAP[1]} ]]; then
-    IFS=$'\t' _SWAP=( ${_SWAP[1]} ) IFS=$_IFS
-    ## for the lack of floats add trailing 0
-    ## divide by 1023 and split last digit by a period
-    _SWAP[1]="$((${_SWAP[1]}0/1023))"
-    _SWAP[1]="${_SWAP[1]%?}.${_SWAP[1]/??}M"
-  else
-    unset _SWAP
-    return 1
-  fi
-}
-
-trimSpaces() {
-  local v="$*"
-  v="${v#"${v%%[![:space:]]*}"}"
-  v="${v%"${v##*[![:space:]]}"}"
-  return "$v"
-}
-
-dynDns() {
-  ## curently only http://freedns.afraid.org is supported
-  [[ $POST_dyndnsname && $POST_dyndnsuser && $POST_dyndnspass ]] || showMesg 'All values must be set!'
-  
-  doUci set dyndnsname "$POST_dyndnsname" &&
-  doUci set dyndnsuser "$POST_dyndnsuser" &&
-  doUci set dyndnspass "$POST_dyndnspass" || showMesg 'DynDNS settings failed..'
-
-  ## create sha1 string per http://freedns.afraid.org/api
-  local _DURL
-  local _AFRAID='http://freedns.afraid.org/api/?action=getdyndns&sha='
-  _DURL=$(_echo "$POST_dyndnsuser|$POST_dyndnspass" | sha1sum)
-  _DURL="$_AFRAID${_DURL/ -/}"
-  _DURL="$(wget -q $_DURL -O -)"
-  local _L
-  local _RES
-  for _L in $_DURL
-    do case $_L in 
-      "${POST_dyndnsname}|"*) IFS='|' _RES=( $_L ); break;; 
-      'ERROR'*) _RES=1; break;;
-      *) unset _RES;;
-    esac;
-  done
-  [[ ! $_RES ]] && showMesg 'Domain name is not found' '10' 'Make sure you entered correct domain name -'
-  [[ $_RES -eq 1 ]] && showMesg 'Authentication failed' '10' 'Check your username and password and try again -'
-
-  logThis "${_RES[@]}"
-
-  doUci set dyndnsurl "${_RES[2]}" &&
-  doUci set dyndnsdis '' &&
-
-  doUci commit  
-
-  showMesg 'DynDNS configuration is in progress..' '10' 'After completion, your URL will become available with in 10-15 minutes -'
-
-}
-
-doUci() {
-  local _CMD=''
-  local _ARG=''
-  case $1 in
-    get|set|commit) _CMD=$1;;
-          *) logThis 'bad UCI command'; headerPrint 405; echo 'bad UCI command'; exit 1 ;;
-  esac
-
-  case $2 in
-    lanssid) _ARG='wireless.@wifi-iface[0].ssid';;
-    lanenc) _ARG='wireless.@wifi-iface[0].encryption';;
-    lankey) _ARG='wireless.@wifi-iface[0].key';;
-    lanipaddr) _ARG='network.lan.ipaddr';;
-    wanifname) _ARG='network.wan.ifname';;
-    wanproto) _ARG='network.wan.proto';;
-    wanipaddr) _ARG='network.wan.ipaddr';;
-    wanmask) _ARG='network.wan.netmask';;
-    wangw) _ARG='network.wan.gateway';;
-    wandns) _ARG='network.wan.dns';;
-    wanwifacedis) _ARG='wireless.@wifi-iface[1].disabled';;
-    wanssid) _ARG='wireless.@wifi-iface[1].ssid';;
-    wanenc) _ARG='wireless.@wifi-iface[1].encryption';;
-    wankey) _ARG='wireless.@wifi-iface[1].key';;
-    dyndnsdis) _ARG='superglue.dyndns.disabled';;
-    dyndnsurl) _ARG='superglue.dyndns.updateurl';;
-    dyndnsname) _ARG='superglue.dyndns.domainname';;
-    dyndnsuser) _ARG='superglue.dyndns.username';;
-    dyndnspass) _ARG='superglue.dyndns.password';;
-    *) if [[ $_CMD == 'commit' ]]; then
-        _ARG=$2
-       else 
-        logThis "bad UCI entry: $2"
-        _ERR=1
-        showMesg 'bad UCI entry'
-       fi ;;
-  esac
-
-  if [[ $_CMD == 'get' ]]; then
-    if [ ! -z $_ARG ]; then
-      /sbin/uci -q get $_ARG || return $?
-    fi
-  fi
-
-  if [[ $_CMD == 'set' ]]; then
-    local _VAL=$3
-    if [ -z $_VAL ]; then
-      logThis "empty $_ARG value, removing record"
-      runSuid /sbin/uci delete $_ARG || ( echo "uci delete $_ARG: error"; exit 1; )
-    fi
-
-    if [ ! -z $_ARG ]; then
-      logThis "setting $_ARG value"
-      runSuid /sbin/uci set $_ARG=$_VAL || ( echo "uci set $_ARG: error"; exit 1; )
-    fi
-  fi
-
-  if [[ $_CMD == 'commit' ]]; then
-    runSuid /sbin/uci commit $_ARG || echo "uci commit $_ARG: error"
-#    if [[ "$_ARG" == 'wireless' ]]; then
-#      runSuid /sbin/wifi || echo 'wifi: error'
-#    fi
-#    if [[ "$_ARG" == 'network' ]]; then
-#      runSuid /etc/init.d/dnsmasq reload
-#      runSuid /etc/init.d/network reload
-#    fi
-  fi
-}
-
-
-## call with argument to inject additional lines
-## ie: htmlhead "<meta http-equiv='refresh' content='2;URL=http://${HTTP_REFERER}'>"
-
-htmlHead() {
-_echo "<!-- obnoxious code below, keep your ports tight -->
-<!doctype html>
-<html>
-<head>
-<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
-<meta http-equiv='Cache-Control' content='no-cache, no-store, must-revalidate' />
-<meta http-equiv='Pragma' content='no-cache' />
-<meta http-equiv='Expires' content='0' />
-<link rel='icon' href='http://${HTTP_HOST}/resources/img/favicon.ico' type='image/x-icon' />
-<title>Superglue | Control panel</title>
-<link rel='stylesheet' type='text/css' href='http://${HTTP_HOST}/resources/admin/admin.css' />
-$@
-</head>"
-}
-
-footerBody() {
-_echo "</body>
-<script type='text/javascript' src='http://${HTTP_HOST}/resources/admin/admin.js'></script>
-</html>"
-}
-
-if [[ "${REQUEST_METHOD^^}" == "POST" ]]; then
-  [[ $CONTENT_LENGTH -gt 0 ]] || err 'content length is zero, 301 back to referer' '301'
-  case "${CONTENT_TYPE^^}" in 
-    APPLICATION/X-WWW-FORM-URLENCODED*) setQueryVars;;
-                  MULTIPART/FORM-DATA*) getQueryFile;;
-                                     *) _ERR=1; _OUT='this is not a post';;
-  esac
-
-  case $REQUEST_URI in
-                *pwdchange) pwdChange;;
-               *ssidchange) ssidChange;;
-                  *lanaddr) lanAddr;;
-                 *updatefw) updateFw;;
-                  *usbinit) usbInit;;
-                *rebootnow) rebootNow;;
-                      *wan) wanSet;;
-                   *uptime) upTime;;
-                   *iwscan) iwScan;;
-                   *dyndns) dynDns;;
-                         *) logThis 'bad action'; headerPrint 405; 
-                            echo 'no such thing'; exit 1;;
-  esac
-fi
-
-headerPrint '200'
-htmlHead
-
-read sgver < /etc/superglue_version
-read devmod < /etc/superglue_model
-read openwrt < /etc/openwrt_version
-
-. /opt/lib/scripts/jshn-helper.sh
-
-## this does not work when iface isn't configured
-IFS=","
-wan=( $(ifaceStat wan) )
-IFS=$OFS
-
-wanifname=${wan[3]}
-wanproto=$(doUci get wanproto)
-wanipaddr=${wan[0]}
-wangw=${wan[2]}
-wandns=${wan[5]}
-wanuptime=${wan[4]}
-wanssid=$(doUci get wanssid)
-wankey=$(doUci get wankey)
-
-%>
-
-<body>
-  <h1>Superglue control panel</h1>
-  <img src='http://<% _echo "${HTTP_HOST}" %>/resources/img/superglueLogo.png' class='logo'>
-
-<section class='inert'>
-  <span style='display:block;'><% printf "System version: %s | Device: %s | OpenWRT: %s" "$sgver" "$devmod" "$openwrt" %></span>
-  <span style='display:block;' id='uptime'><% uptime %></span>
-</section>
-
-<section>
-  <h2>Internet connection:</h2>
-  <form method='post' action='/admin/wan' name='wan' class='elem' id='wanconf'>
-  <div style='display:inline-flex'>
-  <div style='display:inline-block;'>
-  <select name='wanifname' id='wanifname' style='display:block'>
-  <option value='eth0' id='eth' <% ( [[ $wanifname =~ ('eth') ]] && _echo 'selected' ) %> >Wired (WAN port)</option>
-  <option value='wlan1' id='wlan' <% ( [[ $wanifname =~ ('wlan') ]] && _echo 'selected' ) %> >Wireless (WiFi)</option>
-  </select>
-  <fieldset id='wanwifi' <% ( [[ $wanifname =~ ('wlan') ]] && _echo "class='show elem'" || _echo "class='hide elem'" ) %>>
-    
-  <select name='wanssid' id='wanssid' class='elem' style='display:block'>
-  <% if [[ -z $wanssid ]]; then
-    _echo "<option id='scan' disabled>select a network..</option>"
-  else
-    _echo "<option id=$wanssid selected>$wanssid</option>"
-  fi %>
-  </select>
-  <input type='password' name='wankey' placeholder='passphrase' value='<% _echo $wankey %>'>
-
-  </fieldset>
-
-  <span class='help'>help</span>
-  </div>
-
-  <div style='display:inline-block;'>
-  <select name='wanproto' id='wanproto' style='display:block'>
-  <option value='dhcp' name='dhcp' id='dhcp' <% ([[ $wanproto == 'dhcp' ]] && _echo 'selected') %>>Automatic (DHCP)</option>
-  <option value='static' name='stat' id='stat' <% ([[ $wanproto == 'static' ]] && _echo 'selected') %>>Manual (Static IP)</option>
-  </select>
-  <fieldset id='wanaddr' class='elem'>
-  <input type='text' name='wanipaddr' id='wanipaddr' value='<% _echo $wanipaddr %>' <% ( [[ $wanproto =~ ('dhcp') ]] && _echo "readonly" ) %> placeholder='ip address'>
-  <input type='text' name='wangw' id='wangw' value='<% _echo $wangw %>' <% ( [[ $wanproto =~ ('dhcp') ]] && _echo "readonly" ) %> placeholder='gateway/router'>
-  <input type='text' name='wandns' id='wandns' value='<% _echo $wandns %>' <% ( [[ $wanproto =~ ('dhcp') ]] && _echo "readonly" ) %> placeholder='dns server'>
-  </fieldset>
-  </div>
-  </div>
-  <input type='hidden' name='iface' value='wan' class='inline'>
-  <input type='submit' id='wansubmit' value='Apply'>
-  </form>
-  <span class='help'>help</span>
-</section>
-
-<section>
-  <h2>Domain name:</h2>
-  <form method='post' action='/admin/dyndns' name='dyndns' id='afraid'>
-  <div style='display:inline-flex'>
-    <div style='display:inline-block;'>
-      <input type='text' name='dyndnsname' id='dyndnsname' value='<% _echo $dyndnsname %>' placeholder='domain name' class='block'>
-    </div>
-    <div style='display:inline-block;'>
-    <input type='text' name='dyndnsuser' id='dyndnsuser' value='<% _echo $dyndnsuser %>' placeholder='dyndns username' class='block'>
-    <input type='password' name='dyndnspass' id='dyndnspass' value='<% _echo $dyndnspass %>' placeholder='dyndns password' class='block'>
-    </div>
-  </div>
-  <input type='hidden' name='dns' value='apply' class='inline'>
-  <input type='submit' value='Apply'>
-  </form>
-
-  <h2>Dynamic DNS:</h2>
-    Register your free domain name (external <a target='_new' href='http://freedns.afraid.org/'>Free DNS</a> service, will open in a new tab)
-    <form target='_new' action='http://freedns.afraid.org/subdomain/edit.php'>
-    <div style='display:inline-flex'>
-      <div style='display:inline-block;'>
-        <input type='text' name='subdomain' placeholder='yourname' class='inline'>
-      </div>
-      <div style='display:inline-block;'>
-        <select name='edit_domain_id' class='inline'>
-        <option value='1035903'>spgl.cc</option>
-        <option value='1035903'>spgl.it</option>
-        </select>
-      </div>
-    </div>
-    <input type='submit' name='submit' value="next &gt;&gt;">
-    <input type='hidden' name='web_panel' value='1'>
-    <input type='hidden' name='ref' value='750930'>
-    </form>
-   
- <span class='help'>help</span>
-</section>
-
-<section>
-<h2>Local wireless network:</h2>
-<form method='post' action='/admin/ssidchange'>
-  <div style='display:inline-flex'>
-  <div style='display:inline-block;'>
-    <input type='text' name='lanssid' value='<% doUci get lanssid %>'>
-    <input type='password' name='lankey' value='<% doUci get lankey %>'>
-  </div>
-  <div style='display:inline-block;'>
-    <input type='text' name='lanipaddr' value='<% doUci get lanipaddr %>'>
-    <input type='hidden' name='iface' value='lan'>
-  </div>
-  </div>
-    <input type='submit' value='Apply' data-wait='Configuring..'>  
-</form>
-  <span class='help'>help</span>
-</section>
-
-<section>
-<h2>Storage:</h2>
-<% if findUsbstor; then %>
-
-  <% if storageInfo; then %>
-    <div>File storage: <% _echo "${_STOR[2]} used, ${_STOR[3]} available" %></div>
-    <div>Swap: <% swapInfo && _echo "${_SWAP[1]}" || _echo '<b>n/a</b>' %></div>
-  <% else %>
-    <div>USB storage device must be initialized</div>
-    <form method='post' action='/admin/usbinit'>
-    <input type='hidden' name='dev' value='<% _echo $_USBDEV %>'>
-    <input type='submit' value='Initialize'>
-    </form>
-  <% fi %>
-
-<% else %>
-
-  <div><h3>USB storage device not found!</h3>Please check and try again</div>
-
-<% fi %>
-
-<span class='help'>help</span>
-</section>
-
-<section>
-<h2>Change password:</h2>
-<form method='post' action='/admin/pwdchange'>
-  <div style='display:inline-flex'>
-  <div style='display:inline-block;'>
-    <input type='text' name='usr' value='admin' readonly>
-  </div>
-  <div style='display:inline-block;'>
-    <input type='password' name='pwd' placeholder='password' value=''>
-    <input type='password' name='pwdd' placeholder='password again' value=''>
-  </div>
-  </div>
-    <input type='submit' value='Apply'>
-</form>
-<span class='help'>help</span>
-</section>
-
-
-<section>
-  <h2>Firmware upgrade:</h2>
-  <form method='post' action='/admin/updatefw' enctype='multipart/form-data'>
-  <div id='uploadbox'>
-    <input id='uploadfile' placeholder='Select a file..' class='elem' disabled='disabled'>
-    <input id='uploadbtn' class='elem' name='fwupload' type='file'>
-  </div>
-  <div style='display:inline-block;'>
-    <input type='checkbox' name='fwreset' id='fw-resetbox' />
-    <label for='fw-resetbox'>Reset all settings</label>
-  </div>
-  <input type='submit' value='Upload' data-wait='Uploading, do NOT interrupt!'>
-  </form>
-  <span class='help'>help</span>
-</section>
-
-<section>
-  <h2></h2>
-  <form action='/admin/rebootnow' method='post' class='inline'>
-    <input type='hidden' name='reboot' value='now' class='inline'>
-    <input type='submit' value='Reboot' class='inline'>
-  </form>
-
-  <form action='http://logout@<% _echo ${HTTP_HOST} %>/admin' method='get' class='inline'>
-    <input type='submit' value='Logout' class='inline'>
-  </form>
-</section>
-
-<div style='height:200px'></div>
-<hr>
-Memory:
-<pre><% free %></pre>
-<hr>
-Storage:
-<pre><% df -h %></pre>
-<hr>
-Environment:
-<pre><% env %></pre>
-<hr>
-
-<%
-footerBody
-exit 0
-%>

+ 5 - 0
openwrt/common/opt/lib/resources/admin/admin.css

@@ -228,6 +228,11 @@ span.help:active::after
   background-color: #ddd;
 } */
 
+span#timeout {
+  display: inline-block;
+  padding-left: 20px;
+}
+
 input[type="text"]:read-only { 
   background-color: #ddd;
   cursor: default;

+ 1 - 14
openwrt/common/opt/lib/scripts/iw-scan.sh

@@ -7,21 +7,8 @@
 
 iwScan() {
   set -o noglob
-  local AP
-  local S
-  while read -r AP; do
-    [[ "${AP//'SSID: '*}" == '' ]] && printf '%b' "${AP/'SSID: '}\n"
-    [[ "${AP//'signal: '*}" == '' ]] && ( S=( ${AP/'signal: '} ); printf '%b' "${S[0]},";)
-    [[ "${AP//'last seen: '*}" == '' ]] && ( S=( ${AP/'last seen: '} ); printf '%b' "${S[0]},";)
-  done <<< "$(runSuid iw wlan0 scan)"
-  set +o noglob
-}
-
-iwScanJ() {
-  set -o noglob
-  local S=$(runSuid "ubus -S call iwinfo scan '{\"device\":\"wlan0\"}'")
+  local S=$(ubus -S call iwinfo scan '{"device":"wlan0"}')
   printf '%b' "$S"
   set +o noglob
 }
 
-#iwScanJ

+ 1 - 1
openwrt/common/opt/lib/scripts/jshn-helper.sh

@@ -3,7 +3,7 @@
 ifaceStat() {
   . /usr/share/libubox/jshn.sh
   local _IFACE=$1
-  local _STATUS="$(runSuid ubus call network.interface.$_IFACE status 2>/dev/null)"
+  local _STATUS="$(ubus call network.interface.$_IFACE status 2>/dev/null)"
   if [[ "$_STATUS" != "" ]]; then
     local State=""
     local Iface=""

+ 1 - 1
openwrt/common/opt/lib/scripts/net-restart.sh

@@ -4,6 +4,6 @@ sleep 2
 
 /sbin/wifi
 /etc/init.d/network reload
-/etc/init.d/dnsmasq reload
+#/etc/init.d/dnsmasq reload
 
 exit 0

+ 42 - 43
openwrt/common/opt/lib/scripts/usb-part.sh

@@ -35,12 +35,14 @@ findMount() {
   [[ $_USBMNT ]] || return 1
 }
 
-## partitions layout for sfdisk
-## /dev/sdx1 64K, fat32
-## TODO: define swap size according to ram
-## /dev/sdx2 32M, swap v1 
-## /dev/sdx3 rest of the disk, linux partition
-_PARTITIONS="unit: sectors
+usbPart() {
+
+  ## partitions layout for sfdisk
+  ## /dev/sdx1 64K, fat32
+  ## TODO: define swap size according to ram
+  ## /dev/sdx2 32M, swap v1 
+  ## /dev/sdx3 rest of the disk, linux partition
+  _PARTITIONS="unit: sectors
 
 ${_DEV}1 : start=     2048, size=      128, Id= b
 ${_DEV}2 : start=     4096, size=    65536, Id=82
@@ -48,8 +50,8 @@ ${_DEV}3 : start=    69632, size=         , Id=83
 ${_DEV}4 : start=        0, size=        0, Id= 0
 "
 
-## base64 encoded gzip'ed image of /dev/sdx1 FAT32 partition
-_FAT_README='H4sICC5ykVQAA3NkYjEuZGQA7d3PaxNpGMDxp1VQI1FxYcWD+FRB8DJp68KCiFBxXAS1tUn8gSC8
+  ## base64 encoded gzip'ed image of /dev/sdx1 FAT32 partition
+  _FAT_README='H4sICC5ykVQAA3NkYjEuZGQA7d3PaxNpGMDxp1VQI1FxYcWD+FRB8DJp68KCiFBxXAS1tUn8gSC8
 7bxtZ5vMhJm3pgVxvSzsSezJi3+BePQmiAevPfof2FNFPHra7DtNo1VUSgWL7veTvDzv+z7zPplM
 YCAE8q6cut+cncqDKeOkf3uf9Ev/XXnXJ6f9Q3bKqrty/N7DQ2+q9bFw/I8L9VD13EhtaFhV9xx+
 duP24yPP3e4rT/Y83SFL+26uvB1+tfTr0sGVf2szca7+maROjU6kqTMTDatRnM8GqmMNa3KrcZLb
@@ -63,45 +65,42 @@ Mk2cTVyRaKSTxtlI00SN5rZlMj/UMy47V1U/cLGL00R6O65X51o2m27MWY2M88e7NDPTVs6O6qXR
 mtaroY6O68iFWjj+ubmBAf16oXKpVC5t6gyLheXSjHOtk5VK3isexI6N3AEAAAAAAAAAAAAAAAAA
 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwJb5D53OGNgAAAEA'
 
-if ! findUsbstor; then
-  echo 'USB device not found'
-  exit 1
-fi
-
-if findMount; then
-  #umount -f ${_USBDEV}[1-9] 2>&1
-  echo 'unmounting'
-  umount -f $_USBMNT 2>&1
-  if [[ $? -gt 0 ]]; then
-    echo 'error unmounting'
+  if ! findUsbstor; then
+    echo 'USB device not found'
     exit 1
   fi
-fi
 
-swapoff -a &>/dev/null
-
-sfdisk -D -f -q $_USBDEV <<< "$_PARTITIONS"
-if [[ $? -gt 0 ]]; then
-  echo 'error making partitions'
-  exit 1
-fi
+  if findMount; then
+    echo 'unmounting'
+    umount -f $_USBMNT 2>&1
+    if [[ $? -gt 0 ]]; then
+      echo 'error unmounting'
+      exit 1
+    fi
+  fi
 
-(echo -n "$_FAT_README" | base64 -d | gunzip -c > ${_USBDEV}1)
-if [[ $? -gt 0 ]]; then
-  echo 'error cloning FAT readme partition'
-  exit 1
-fi
+  swapoff -a &>/dev/null
+  sfdisk -D -f -q $_USBDEV <<< "$_PARTITIONS"
 
-mkswap ${_USBDEV}2
-if [[ $? -gt 0 ]]; then
-  echo 'error making swap'
-  exit 1
-fi
+  if [[ $? -gt 0 ]]; then
+    echo 'error making partitions'
+    exit 1
+  fi
+  (echo -n "$_FAT_README" | base64 -d | gunzip -c > ${_USBDEV}1)
+  if [[ $? -gt 0 ]]; then
+    echo 'error cloning FAT readme partition'
+    exit 1
+  fi
+  mkswap ${_USBDEV}2
+  if [[ $? -gt 0 ]]; then
+    echo 'error making swap'
+    exit 1
+  fi
+  mkfs.btrfs -L sg-data ${_USBDEV}3
+  if [[ $? -gt 0 ]]; then
+    echo 'error making Btrfs'
+    exit 1
+  fi
 
-mkfs.btrfs -L sg-data ${_USBDEV}3
-if [[ $? -gt 0 ]]; then
-  echo 'error making Btrfs'
-  exit 1
-fi
+}
 
-exit 0

+ 3 - 3
openwrt/tools/make_fw.sh

@@ -53,7 +53,7 @@ let _MINOR++
 _OPENWRT_REVISION="$_PWD/openwrt.revision"
 
 ## browser extension (if any)
-_EXT_SRC="$_PWD/../../editor/build/firefox/superglue.xpi"
+_EXT_SRC="$_PWD/../../editor/build/superglue-firefox.xpi"
 
 ## get OpenWRT revision
 _OPENWRT=$(fgrep -m1 'REVISION:=' $_IMAGEBUILDER/include/version.mk || echo 'r00000')
@@ -117,9 +117,9 @@ for _TARGET in $_TARGETS; do
   sleep 2
 
   ## currently unused packages
-  # kmod-fs-vfat kmod-fs-btrfs btrfs-progs kmod-fs-ext4  
+  # kmod-fs-vfat kmod-fs-btrfs btrfs-progs kmod-fs-ext4 sudo 
 
-  make image PROFILE=$_TARGET PACKAGES="bash gawk openssh-sftp-server haserl lighttpd lighttpd-mod-access lighttpd-mod-cgi lighttpd-mod-compress lighttpd-mod-accesslog lighttpd-mod-rewrite lighttpd-mod-auth lighttpd-mod-alias lighttpd-mod-setenv blkid block-mount mini-sendmail kmod-usb-storage kmod-scsi-generic mount-utils kmod-nls-cp437 kmod-nls-iso8859-1 kmod-nls-utf8 kmod-nls-base coreutils-stat mini-httpd-htpasswd wireless-tools avahi-daemon kmod-fs-btrfs btrfs-progs swap-utils sfdisk coreutils-base64 coreutils-sha1sum rpcd-mod-iwinfo dtach sudo procps-ps uhttpd uhttpd-mod-ubus openvpn-openssl" FILES=$_PWD/$_TARGET.tmp BIN_DIR=$_BIN_DIR/openwrt
+  make image PROFILE=$_TARGET PACKAGES="bash gawk openssh-sftp-server haserl lighttpd lighttpd-mod-access lighttpd-mod-cgi lighttpd-mod-compress lighttpd-mod-accesslog lighttpd-mod-rewrite lighttpd-mod-auth lighttpd-mod-alias lighttpd-mod-proxy lighttpd-mod-setenv blkid block-mount mini-sendmail kmod-usb-storage kmod-scsi-generic mount-utils kmod-nls-cp437 kmod-nls-iso8859-1 kmod-nls-utf8 kmod-nls-base coreutils-stat mini-httpd-htpasswd wireless-tools avahi-daemon kmod-fs-btrfs btrfs-progs swap-utils sfdisk coreutils-base64 coreutils-sha1sum rpcd-mod-iwinfo procps-ps uhttpd uhttpd-mod-ubus openvpn-openssl dtach" FILES=$_PWD/$_TARGET.tmp BIN_DIR=$_BIN_DIR/openwrt
   _ERR=$?
   if [[ $_ERR -gt 0 ]]; then
     echo -e "\nFAILED to build $_TARGET image :/ (are we missing packages?) \n"