2019-04-14 21:29:56 +00:00
#!/bin/bash
2019-06-23 00:30:59 +00:00
2019-06-23 07:43:47 +00:00
# Collect IIAB diagnostic info into 1 file for easy online/offline circulation!
2019-10-12 23:21:57 +00:00
# PLEASE SEE /opt/iiab/iiab/scripts/iiab-diagnostics.README.md OR ONLINE HERE:
# https://github.com/iiab/iiab/blob/master/scripts/iiab-diagnostics.README.md
2019-04-14 21:29:56 +00:00
2019-06-23 07:43:47 +00:00
IIAB_RELEASE=`cat /etc/iiab/iiab.env | grep IIAB_RELEASE | cut -d'=' -f2`
2019-06-23 00:30:59 +00:00
OS_VER=`cat /etc/iiab/iiab.env | grep OS_VER | cut -d'=' -f2`
2019-06-23 07:43:47 +00:00
#HASH=`cd /opt/iiab/iiab; git log --pretty=format:'%h' -n 1`
2019-06-23 00:30:59 +00:00
HASH1=`cd /opt/iiab/iiab; git log --pretty=format:'%H' -n 1`
HASH2=`cd /opt/iiab/iiab-admin-console; git log --pretty=format:'%H' -n 1`
YMDT=$(date +%F_%T_%Z)
2019-10-12 23:06:08 +00:00
echo -e "\nGathers IIAB diagnostics into 1 file, to accelerate troubleshooting. USAGE:"
echo
echo -e " iiab-diagnostics"
echo -e " sudo iiab-diagnostics # USE 'sudo' FOR MORE"
echo -e " sudo iiab-diagnostics PATH/FILE1 PATH/FILE2 ... # COMPLETE RESULTS !!"
echo
echo -ne "Can you provide a \e[1mshort public nickname:\e[0m (no spaces!) "
2019-06-23 07:43:47 +00:00
read nickname < /dev/tty
2019-06-23 00:30:59 +00:00
if [ -z "$nickname" ]; then
nickname="NONAME"
2019-04-14 21:29:56 +00:00
fi
2019-06-23 07:43:47 +00:00
# Build up a meaningful shared filename for DEV / IMPLEM / LEARNING team(s)
outfile=/etc/iiab/diag/${IIAB_RELEASE}_${OS_VER}_${YMDT}_$nickname
2019-10-12 23:06:08 +00:00
# System "snapshots" (time-stamped output from this 'iiab-diagnostics' command)
# will be stored in globally-writable directory /etc/iiab/diag as created by
# roles/0-init/tasks/main.yml. A bit like system logs, but only on request.
2019-04-14 21:29:56 +00:00
2019-06-23 07:43:47 +00:00
function cat_file_raw() { # $1 = path/filename; $2 = # of lines, for tail
2020-12-09 17:17:51 +00:00
if [ -f "$1" ]; then
ls -l "$1" >> $outfile
if [ ! -s "$1" ]; then
2019-06-23 07:43:47 +00:00
echo >> $outfile
echo "FILE EXISTS BUT IS EMPTY!" >> $outfile
elif [ $# -eq 1 ]; then
2019-06-23 00:30:59 +00:00
echo >> $outfile
2020-10-24 20:55:17 +00:00
# Redact most passwords from /etc/iiab/local_vars.yml, /etc/hostapd/hostapd.conf, /etc/wpa_supplicant/wpa_supplicant.conf, /etc/netplan/*, /etc/network/interfaces, /etc/network/interfaces.d/* ETC -- not much to worry about in /etc/iiab/iiab.ini (' = ')
2020-12-09 17:17:51 +00:00
cat "$1" | sed 's/^\(\s*[[:alnum:]_-]*\(psk\|passphrase\|password\):\).*/\1 [REDACTED]/; s/^\(\s*[[:alnum:]_-]*\(psk\|passphrase\|password\)[= \t]\).*/\1[REDACTED]/' | iconv -t UTF-8//IGNORE >> $outfile
2019-06-23 07:43:47 +00:00
else # e.g. last 100 lines, maximum
echo " ...ITS LAST $2 LINES FOLLOW..." >> $outfile
2019-06-23 00:30:59 +00:00
echo >> $outfile
2020-12-09 17:35:26 +00:00
tail -$2 "$1" | sed 's/^\(\s*[[:alnum:]_-]*\(psk\|passphrase\|password\):\).*/\1 [REDACTED]/; s/^\(\s*[[:alnum:]_-]*\(psk\|passphrase\|password\)[= \t]\).*/\1[REDACTED]/' | iconv -t UTF-8//IGNORE >> $outfile
2019-06-23 00:30:59 +00:00
fi
echo >> $outfile
2020-12-09 17:17:51 +00:00
elif [ -h "$1" ]; then
ls -l "$1" >> $outfile
2019-06-23 09:00:59 +00:00
echo >> $outfile
echo "SYMLINK DOES NOT LEAD TO A REGULAR FILE!" >> $outfile
echo >> $outfile
2020-12-09 17:17:51 +00:00
elif [ -d "$1" ]; then
ls -ld "$1" >> $outfile
2019-06-23 09:00:59 +00:00
echo >> $outfile
echo "THIS IS A DIRECTORY NOT A FILE!" >> $outfile
echo >> $outfile
2019-06-23 00:30:59 +00:00
else
2019-06-23 09:00:59 +00:00
echo "FILE DOES NOT EXIST: $1" >> $outfile
2019-06-23 00:30:59 +00:00
fi
}
2019-06-23 07:43:47 +00:00
function cat_file() {
echo " $1"
echo "=IIAB==========================================================================" >> $outfile
2020-12-09 17:17:51 +00:00
cat_file_raw "$1"
2019-06-23 07:43:47 +00:00
}
2019-04-14 21:29:56 +00:00
2019-06-22 20:50:49 +00:00
function cat_dir() {
2019-06-23 07:43:47 +00:00
echo " $1"
echo "=IIAB==========================================================================" >> $outfile
2019-06-22 20:50:49 +00:00
if [ -d "$1" ]; then
2019-06-23 07:43:47 +00:00
echo "DIRECTORY $1 FILES WILL FOLLOW...IF THEY EXIST" >> $outfile
2020-12-09 17:32:20 +00:00
shopt -s nullglob # To avoid looping over empty directories
2020-12-09 17:17:51 +00:00
for f in "$1"/*; do
2019-06-23 07:43:47 +00:00
echo "-IIAB--------------------------------------------------------------------------" >> $outfile
2020-12-09 17:17:51 +00:00
cat_file_raw "$f" 100
2019-06-23 07:43:47 +00:00
done
2019-06-22 20:50:49 +00:00
else
2019-06-23 07:43:47 +00:00
echo "DIRECTORY DOES NOT EXIST: $1" >> $outfile
2019-06-22 20:50:49 +00:00
fi
2019-04-14 21:29:56 +00:00
}
2019-10-13 14:31:58 +00:00
function cat_cmd() { # $1 = command + params, $2 = explanation
echo " $1 # $2"
echo "=IIAB==========================================================================" >> $outfile
2020-12-09 17:17:51 +00:00
cmd=$(echo "$1" | sed 's/\s.*$//') # Keep command on left; Drop params on right
2019-10-13 14:31:58 +00:00
pth=$(which $cmd | sed 's/[^/]*$//') # Keep only path on left; Drop command on right
echo "COMMAND: $pth$1 # $2" >> $outfile
echo >> $outfile
2020-04-09 14:27:34 +00:00
if [ -z "$pth" ]; then
echo "COMMAND NOT FOUND: $1" >> $outfile
else
2020-04-09 16:16:27 +00:00
$(echo "eval $1") >> $outfile # eval is nec within backticks, so | (pipes) work: https://stackoverflow.com/a/7184782
2020-04-09 14:27:34 +00:00
fi
2019-10-13 14:31:58 +00:00
echo >> $outfile
}
2019-06-23 07:43:47 +00:00
function cat_tail() { # $1 = path/filename; $2 = # of lines, for tail
echo " $1"
echo "=IIAB==========================================================================" >> $outfile
2020-12-09 17:17:51 +00:00
cat_file_raw "$1" $2 # e.g. last 100 lines, maximum
2019-06-23 07:43:47 +00:00
}
# START BUILDING UP THE FILE THAT'LL CONTAIN THE DIAGNOSTICS!
echo -e "\nCompiling diagnostics..."
2019-10-13 16:45:44 +00:00
echo -e "\n 0. Filename Header + Git Hashes + Raspberry Pi Model + OS"
2019-06-23 07:43:47 +00:00
echo "This is: $outfile" >> $outfile
echo >> $outfile
2019-10-13 16:45:44 +00:00
echo -e "\n\n\n\n0. GIT HASHES + RASPBERRY PI MODEL + OS" >> $outfile
2019-10-13 16:20:39 +00:00
echo >> $outfile
2019-06-23 07:43:47 +00:00
echo "iiab commit: $HASH1" >> $outfile
2019-06-23 00:30:59 +00:00
echo "iiab-admin-console commit: $HASH2" >> $outfile
echo >> $outfile
2020-11-02 20:11:38 +00:00
cat_file /etc/iiab/pr-list-pulled
2019-10-13 16:45:44 +00:00
cat_file /sys/firmware/devicetree/base/model
2019-10-13 16:20:39 +00:00
cat_file /etc/rpi-issue
2019-10-13 16:45:44 +00:00
echo "-IIAB-EXPLANATION-OF-THE-ABOVE-------------------------------------------------" >> $outfile
2019-10-13 16:20:39 +00:00
echo >> $outfile
2019-06-22 20:50:49 +00:00
if [ -f /etc/rpi-issue ]; then
2020-08-22 13:07:16 +00:00
echo "stage2 = Raspberry Pi OS Lite" >> $outfile
echo "stage4 = Raspberry Pi OS with desktop" >> $outfile
echo "stage5 = Raspberry Pi OS with desktop + recommended software" >> $outfile
2019-06-23 07:43:47 +00:00
echo >> $outfile
2019-10-13 16:20:39 +00:00
echo "SEE https://github.com/RPi-Distro/pi-gen#stage-anatomy" >> $outfile
2019-04-15 18:05:24 +00:00
else
2020-08-22 13:07:16 +00:00
echo "(This is NOT Raspberry Pi OS!)" >> $outfile
2019-04-15 18:05:24 +00:00
fi
2019-06-23 07:43:47 +00:00
echo >> $outfile
2019-10-13 16:45:44 +00:00
cat_file /etc/issue.net
cat_file /etc/debian_version
2019-06-23 07:43:47 +00:00
2019-10-13 16:54:22 +00:00
echo -e '\n\n 1. Files Specially Requested: (from "iiab-diagnostics PATH/FILE1 PATH/FILE2")\n'
echo -e '\n\n\n\n1. FILES SPECIALLY REQUESTED (FROM "iiab-diagnostics PATH/FILE1 PATH/FILE2")\n' >> $outfile
2019-06-23 07:43:47 +00:00
for f in "$@"; do
cat_file $f
done
2019-06-21 14:12:57 +00:00
2019-06-23 07:43:47 +00:00
if [ $# -eq 0 ]; then
echo -e " 2. Regular Files:\n"
else
echo -e "\n 2. Regular Files:\n"
fi
2019-10-13 16:20:39 +00:00
echo -e "\n\n\n\n2. REGULAR FILES\n" >> $outfile
2019-06-23 07:43:47 +00:00
#cat_file /dev/sda # Device "file" test
#cat_file /nonsense # Non-existence test
#cat_file /opt/iiab/iiab # Directory test
#cat_file /tmp/empty-file # Empty file test
#cat_file /usr/bin/iiab-support-on # Symlink test
cat_file /etc/iiab/openvpn_handle
cat_file /.iiab-image
2019-06-23 00:30:59 +00:00
cat_file /etc/iiab/iiab.env
cat_file /etc/iiab/iiab.ini
2020-04-14 17:55:07 +00:00
cat_file /etc/iiab/local_vars.yml # Redacts most passwords above
2019-11-19 18:45:11 +00:00
cat_file /etc/iiab/iiab_state.yml
2020-04-14 17:55:07 +00:00
#cat_file /etc/iiab/config_vars.yml # No longer common
2019-06-23 00:30:59 +00:00
cat_file /etc/resolv.conf
cat_file /etc/network/interfaces
2020-04-14 17:55:07 +00:00
cat_file /etc/hostapd/hostapd.conf # Redacts most passwords above
cat_file /etc/wpa_supplicant/wpa_supplicant.conf # Redacts most passwords above
2020-06-06 17:54:37 +00:00
cat_file /library/www/html/home/menu.json
2019-06-23 00:30:59 +00:00
2019-06-23 07:43:47 +00:00
# Record all Ansible variables: SLOW! OUTPUT TOO LARGE?
#pushd /opt/iiab/iiab > /dev/null
#./runrole all-vars /tmp/all-ansible-vars
#popd > /dev/null
2019-06-23 16:40:27 +00:00
#cat_file /tmp/all-ansible-vars
2019-06-23 07:43:47 +00:00
2019-10-13 16:20:39 +00:00
echo -e "\n 3. Content of Directories: (1-level deep)\n"
echo -e "\n\n\n\n3. CONTENT OF DIRECTORIES (1-LEVEL DEEP)\n" >> $outfile
2019-10-13 14:21:04 +00:00
cat_dir /etc/network/interfaces.d
cat_dir /etc/systemd/network
cat_dir /etc/NetworkManager/system-connections
2020-04-14 17:55:07 +00:00
cat_dir /etc/netplan # Redacts most passwords above
#cat_dir /etc/sysconfig/network-scripts/if-cfg* # No longer common
2019-10-13 14:21:04 +00:00
#cat_dir /etc/network # Above file /etc/network/interfaces suffices
echo -e "\n 4. Output of Commands:\n"
2019-10-13 16:20:39 +00:00
echo -e "\n\n\n\n\n4. OUTPUT OF COMMANDS\n" >> $outfile
2019-06-23 07:43:47 +00:00
cat_cmd 'uname -a' 'Linux kernel'
cat_cmd 'free' 'RAM memory'
cat_cmd 'lscpu' 'CPU details'
cat_cmd 'df -h' 'Disk usage'
cat_cmd 'lsblk' 'Partition mount points'
cat_cmd 'blkid' 'Mount point details'
cat_cmd 'ip addr' 'Network interfaces'
cat_cmd 'ifconfig' 'Network interfaces (old view)'
2020-04-09 14:27:34 +00:00
cat_cmd 'ip route' 'Routing table'
2020-04-09 16:20:10 +00:00
cat_cmd 'netstat -rn' 'Routing table (old view)'
2020-04-09 14:56:48 +00:00
cat_cmd 'brctl show' 'Bridge for LAN side'
2019-10-13 13:55:27 +00:00
cat_cmd 'sudo netstat -natp' 'Ports/Services in use'
2020-04-14 17:55:07 +00:00
cat_cmd 'systemctl status dnsmasq' 'Is dnsmasq running?'
2020-04-09 14:27:34 +00:00
cat_cmd 'sudo journalctl -b 0 -u dnsmasq' 'dnsmasq log'
cat_cmd 'networkctl' 'systemd-networkd status'
cat_cmd 'nmcli d' 'NetworkManager status'
cat_cmd 'sudo journalctl -b 0 -u networkd-dispatcher' 'networkd-dispatcher log'
2020-11-05 17:35:21 +00:00
cat_cmd 'iw reg get' 'Detected WiFi country code / legal frequencies'
2020-04-09 16:20:10 +00:00
cat_cmd 'iw dev' 'List wireless interfaces'
2020-10-24 20:25:29 +00:00
cat_cmd 'iw list' 'List capabilities of all wireless devices'
2020-04-14 17:55:07 +00:00
cat_cmd 'systemctl status hostapd' 'Downstream Wi-Fi: Is hostapd running?'
cat_cmd 'ls -l /etc/wpa_supplicant' 'Upstream Wi-Fi'
2020-04-09 16:20:10 +00:00
cat_cmd 'ps -AH' 'Process hierarchy: staging of hostapd & wpa_supplicant?'
2020-04-14 17:55:07 +00:00
cat_cmd 'dmesg | grep brcm' 'Diagnostic messages: RPi Wi-Fi firmware'
2020-04-09 14:49:19 +00:00
cat_cmd 'env' 'Environment variables'
#cat_cmd 'ansible localhost -m setup 2>/dev/null' 'All Ansible facts' # For cleaner scraping of Ansible vars, consider "./runrole all-vars /tmp/all-ansible-vars" 27-31 lines above?
2019-06-23 07:43:47 +00:00
2019-10-13 14:21:04 +00:00
echo -e "\n 5. Firewall Rules:\n"
2019-10-13 16:20:39 +00:00
echo -e "\n\n\n\n5. FIREWALL RULES\n" >> $outfile
2019-10-13 14:21:04 +00:00
cat_file /usr/bin/iiab-gen-iptables
cat_cmd 'sudo iptables-save' 'Firewall rules'
2019-10-13 13:39:29 +00:00
2019-10-13 14:21:04 +00:00
echo -e "\n 6. Log Files: (last 100 lines of each)\n"
2019-10-13 16:20:39 +00:00
echo -e "\n\n\n\n6. LOG FILES (LAST 100 LINES OF EACH)\n" >> $outfile
2019-06-23 07:43:47 +00:00
cat_tail /opt/iiab/iiab/iiab-install.log 100
2020-09-24 00:11:37 +00:00
cat_tail /opt/iiab/iiab/iiab-configure.log 100
2019-06-23 07:43:47 +00:00
cat_tail /opt/iiab/iiab/iiab-debug.log 100
2020-09-24 00:11:37 +00:00
cat_tail /opt/iiab/iiab/iiab-network.log 100
2019-06-23 07:43:47 +00:00
cat_tail /opt/iiab/iiab-admin-console/admin-install.log 100
2020-04-08 21:26:56 +00:00
cat_tail /var/log/messages 100
cat_tail /var/log/syslog 100
2019-06-23 07:43:47 +00:00
linecount=$(wc -l $outfile | sed 's/\s.*$//')
sizecount=$(du -h $outfile | sed 's/\s.*$//')
2019-10-12 23:06:08 +00:00
echo -e "\n\e[32m\e[1mCOMPLETE! Your diagnostics file ($sizecount, $linecount lines) is:"
echo
echo -e " $outfile\e[0m"
#if [ "$1" == "-y" ]; then
# ans="y" # if user ran "iiab-diganostics -y" to avoid interactive prompt
#else
echo
echo -ne "\e[42;1mPublish it to a web pastebin? [Y/n]\e[0m "
read ans < /dev/tty
#fi
echo -e "\e[1m"
if [ "$ans" == "" ] || [ "$ans" == "y" ] || [ "$ans" == "Y" ]; then
echo -ne "PUBLISHING TO URL... "
2020-08-05 20:22:09 +00:00
#pastebinit -b dpaste.com < $outfile
pastebinit -b sprunge.us < $outfile # Run 'pastebinit -l' to list other possible pastebin site URLs
2019-10-12 23:06:08 +00:00
else
echo -e "If you later decide to publish it, run:"
echo
2020-08-05 20:22:09 +00:00
echo -e " pastebinit -b sprunge.us < $outfile"
2019-10-12 23:06:08 +00:00
fi
echo -e "\e[0m"