2020-05-24 17:43:40 +00:00
#!/usr/bin/env bash
2020-04-06 16:39:53 +00:00
2020-05-24 17:43:40 +00:00
version = "0.1.0"
2020-04-06 17:10:12 +00:00
helpmsg = "Need further help? You can either join the Wii Mini Hacking Discord server (recommended) at https://discord.gg/6ryxnkS, the RiiConnect24 Discord server at https://discord.gg/b4Y7jfD or you can send an e-mail to support@riiconnect24.net and we'll try to assist. "
2020-04-06 16:39:53 +00:00
2020-05-24 17:43:40 +00:00
# set variable $sudo if the user is not root, so sudo is only used if absolutely needed
[ [ $USER != "root" ] ] && sudo0 = "sudo"
sc( ) {
clear
unset answer
printf " \033[1mBlueBomb Helper\033[0m v $version \n\tStage: $1 - $2 \n " | fold -s -w $( tput cols)
printf -- "=%.0s" $( seq $( tput cols) ) && printf "\n\n"
}
2020-04-06 16:39:53 +00:00
# clear and greet
2020-05-24 17:43:40 +00:00
sc 0 "Welcome"
2020-04-06 16:39:53 +00:00
printf " Hello $USER , and welcome to the BlueBomb helper script.\n\nThis script will automatically check you have an environment capable of utilizing BlueBomb, download required files, and automate things as much as possible to make it easier for you, the end user, to perform the BlueBomb exploit on your Wii or Wii Mini console.\n\n " | fold -s -w $( tput cols)
# error handling
error( ) {
2020-05-24 17:43:40 +00:00
sc 0 "Error"
printf " \033[1;91mAn error has occurred.\033[0m\n\nERROR DETAILS:\n\t* Task: $task \n\t* Command: $BASH_COMMAND \n\t* Line: $1 \n\t* Exit code: $2 \n\n " | fold -s -w $( tput cols)
2020-04-06 16:39:53 +00:00
2020-05-24 17:43:40 +00:00
case $task in
2020-04-08 13:08:27 +00:00
"Checking prerequisites - Internet connection" | "Download and extract BlueBomb" ) printf "* NOTE:\n\t* Please ensure that your PC has an active internet connection capable of reaching github.com.\n\n" | fold -s -w $( tput cols) ; ;
"Execute BlueBomb" ) printf "* TROUBLESHOOTING NOTES:\n\t* If you get an error about the address/socket being already in use, try manually disabling the Bluetooth service on your PC. For systemd users, you would run 'sudo systemctl disable --now bluetooth.service', and for OpenRC users, you would run 'sudo rc-service bluetooth stop'.\n\t* If you get an error about the device failing to be powered on, try running the script as root.\n\n" | fold -s -w $( tput cols) ; ;
2020-04-06 16:39:53 +00:00
esac
2020-05-24 17:43:40 +00:00
[ [ -n $output ] ] && printf " COMMAND OUTPUT:\n\t ${ output } \n\n " || true
2020-04-06 16:39:53 +00:00
printf " $helpmsg \n " | fold -s -w $( tput cols)
exit
}
trap 'error $LINENO $?' ERR
set -o pipefail
set -o errtrace
2020-04-06 17:10:12 +00:00
credit( ) {
2020-05-24 17:21:16 +00:00
#clear
2020-05-24 17:43:40 +00:00
sc 0 "Credits"
printf " CREDITS:\n
2020-04-08 13:08:27 +00:00
* Fullmetal5\t \t \t BlueBomb exploit
* urmum_69\t \t \t \t Script author
* twosecslater\t \t \t Script author
* Commandblock6417\t \t \t Contributor
* Terry A. Davis\t \t \t Motivation\n \n Have fun running homebrew on your console!\n " | fold -s -w $( tput cols)
2020-04-06 17:10:12 +00:00
exit
}
2020-04-08 13:08:27 +00:00
ex( ) {
printf " $1 " && exit
}
2020-04-06 16:39:53 +00:00
# receive parameters given on command line
while [ [ " $1 " = ~ ^- && ! " $1 " = = "--" ] ] ; do case $1 in
-v | --version ) printf " BlueBomb helper script\nVersion: $version \n " && exit ; ;
-r | --region ) shift; regionIn = $1 ; ;
-t | --console ) shift; consoleIn = $1 ; ;
-s | --sysmenu ) shift; sysmenuIn = $1 ; ;
2020-04-06 17:10:12 +00:00
-c | --credits ) credit; exit ; ;
2020-04-06 16:39:53 +00:00
-h | --help ) printf " \nUsage: $0 [options...]\n
* -v --version\t \t \t Displays the current version of the script.
* -r --region <REGION>\t \t Allows you to select a region without needing to interact with the script.
* -t --console <CONSOLE TYPE>\t Allows you to select a console type without needing to interact with the script.
2020-04-06 17:10:12 +00:00
* -s --sysmenu <SYSMENU VERSION>\t Allows you to select a system menu version without needing to interact with the script.
2020-04-08 13:08:27 +00:00
* -c --credits\t \t \t Displays the credits for this script.
2020-04-06 17:10:12 +00:00
* -h --help\t \t \t \t Displays this help message.\n \n $helpmsg \n " | fold -s -w $( tput cols) ; exit ;;
2020-04-06 16:39:53 +00:00
esac ; shift; done
if [ [ " $1 " = = '--' ] ] ; then shift; fi
# check prerequisites
task = "Checking prerequisites - Dependencies"
## detect non-linux kernel users. itoddlers btfo.
[ [ -z " $( uname -s | grep 'Linux' ) " ] ] && printf "\n\nThis script does not work on systems that don't use the Linux kernel.\n\n" && exit
## detect architecture
if [ [ -n " $( uname -m | grep 'arm*\|aarch*' ) " ] ] ; then
arch = "arm"
elif [ [ -n " $( uname -m | grep 'x86_64' ) " ] ] ; then
arch = "x64"
elif [ [ -n " $( uname -m | grep 'i686' ) " ] ] ; then
arch = "x86"
else
printf " Unable to use your architecture ( $( uname -m) ).\n $helpmsg \n "
exit
fi
printf " * Detected architecture: $arch \n\n "
2020-04-06 17:10:12 +00:00
## detect package manager
dependencies = ( "unzip" "bluetoothctl" "wget" )
2020-04-06 16:39:53 +00:00
2020-04-08 13:08:27 +00:00
printf "Checking dependencies...\n"
2020-05-24 17:43:40 +00:00
[ [ -x " $( command -v pacman) " ] ] && pm = "pacman -S" # Arch, etc.
[ [ -x " $( command -v apt) " ] ] && pm = "apt install" # Debian, etc.
[ [ -x " $( command -v brew) " ] ] && pm = "brew install" # literally who uses brew on anything but macos, but doesn't hurt to include support anywho
[ [ -x " $( command -v apk) " ] ] && pm = "apk add" # Alpine, etc.
[ [ -x " $( command -v xbps-install) " ] ] && pm = "xbps-install -S" # Void, etc.
[ [ -x " $( command -v emerge) " ] ] && pm = "emerge -aqv" # Gentoo, etc.
[ [ -x " $( command -v zypper) " ] ] && pm = "zypper install" # openSUSE, etc.
[ [ -x " $( command -v dnf) " ] ] && pm = "dnf install" # Fedora, etc.
2020-04-08 13:08:27 +00:00
2020-04-06 16:39:53 +00:00
for i in " ${ dependencies [@] } " ; do
2020-04-08 13:08:27 +00:00
[ [ -z " $( command -v $i ) " ] ] && missing += " $i "
2020-04-06 16:39:53 +00:00
done
2020-04-08 13:08:27 +00:00
for i in " ${ missing [@] } " ; do
2020-05-24 17:43:40 +00:00
[ [ -n $pm ] ] && printf " \n* $i is missing! Attempting to install using detected package manager (you may be prompted for your password)...\n " | fold -s -w $( tput cols) && $sudo0 $pm $i || ex " \n* $i is missing! Please install it using your preferred package manager.\n\n $helpmsg \n "
done ; unset i
2020-04-06 16:39:53 +00:00
## detect init system
if [ [ -e " $( command -v systemctl) " ] ] ; then
init = "systemd"
elif [ [ -e " $( command -v openrc) " ] ] ; then
init = "openrc"
else
printf " Unable to detect your init system.\n $helpmsg \n "
exit
fi
printf " * Detected init system: $init \n\n "
download( ) {
2020-05-24 17:43:40 +00:00
sc 1 "Prerequisites"
2020-04-08 13:08:27 +00:00
[ [ -e ./bluebomb/bluebomb-$arch ] ] && printf "BlueBomb executable exists. Not downloading.\n" && cd bluebomb && return
2020-04-06 16:39:53 +00:00
task = "Checking Prerequisites - Internet connection"
printf "* Checking internet connection... "
ping -c 3 github.com > /dev/null
printf "Success!\n\n* Downloading BlueBomb... "
task = "Download and extract BlueBomb"
## download zip from github
mkdir -p bluebomb && cd bluebomb
2020-04-06 17:10:12 +00:00
wget -q --secure-protocol= TLSv1_2 "https://github.com/Fullmetal5/bluebomb/releases/download/1.5/bluebomb1.5.zip" -O bluebomb.zip
2020-04-06 16:39:53 +00:00
printf "Success!\n\n* Unpacking BlueBomb... "
unzip -q bluebomb.zip
rm bluebomb.zip
printf "Success!\n\n"
}
findinfos( ) {
2020-05-24 17:43:40 +00:00
sc 2 "Collecting information - Console type"
2020-04-06 16:39:53 +00:00
task = "Get console information from user"
if [ [ -z $consoleIn ] ] ; then
2020-05-24 17:43:40 +00:00
printf "What is the console type?\n"
ask 0 "Wii" "Wii mini"
else answer = $consoleIn ; unset consoleIn; fi
case ${ answer ^^ } in
1 | "WII" ) arg1 = "WII_SM" ; ;
2 | "WII MINI" ) arg1 = "MINI_SM_" ; ;
* ) printf "Invalid selection.\n" ; sleep 2; findinfos ; ;
2020-04-06 16:39:53 +00:00
esac
if [ [ $arg1 = = "MINI_SM_" ] ] ; then
if [ [ -z $regionIn ] ] ; then
2020-05-24 17:43:40 +00:00
sc 2 "Collecting information - Console region"
printf "What is the region of your Wii Mini console?\n"
ask 0 "USA" "PAL"
else answer = $regionIn ; unset regionIn; fi
case ${ answer ^^ } in
1 | "NTSC" ) arg2 = "NTSC" ; ;
2 | "PAL" ) arg2 = "PAL" ; ;
* ) printf "Invalid selection.\n" ; sleep 2; findinfos ; ;
2020-04-06 16:39:53 +00:00
esac
else
if [ [ -z $sysmenuIn ] ] ; then
2020-05-24 17:43:40 +00:00
sc 2 "Collecting information - Sysmenu version"
printf "What is the system menu version of your Wii Console?\n\nIf you're not sure where to find this, follow the following instructions:\n\nFrom the Wii Menu, launch Wii Options (round button in the bottom left), and then launch Wii Settings. On the first page of the Wii Settings at the upper right corner, you should see 'Ver X.YZ'. Where 'X' and 'Y' are numbers, and 'Z' is a letter. An example is '4.3E'. This is your system menu version.\n\nPlease enter the system menu version and then press ENTER: " | fold -s -w $( tput cols)
2020-04-06 16:39:53 +00:00
read -r sysmenuIn
fi
2020-04-06 17:10:12 +00:00
if [ [ ! ${# sysmenuIn } = = 4 ] ] ; then printf "Invalid selection.\n" && unset sysmenuIn && findinfos;
2020-04-06 16:39:53 +00:00
fi
sysmenuVersions = ( "2_0E" "2_0J" "2_0U" "2_1E" "2_2E" "2_2J" "2_2U" "3_0E" "3_0J" "3_0U" "3_1E" "3_1J" "3_1U" "3_2E" "3_2J" "3_2U" "3_3E" "3_3J" "3_3U" "3_4E" "3_4J" "3_4U" "3_5K" "4_0E" "4_0J" "4_0U" "4_1E" "4_1J" "4_1K" "4_1U" "4_2E" "4_2J" "4_2K" "4_2U" "4_3E" "4_3J" "4_3K" "4_3U" )
2020-04-06 17:10:12 +00:00
arg2 = ${ sysmenuIn //./_ }
arg2 = ${ arg2 ^^ }
2020-04-06 16:39:53 +00:00
if [ [ ! " ${ sysmenuVersions [@] } " = ~ " ${ arg2 } " ] ] ; then printf "Invalid version.\n" && unset sysmenuIn && findinfos; fi
fi
2020-04-06 17:10:12 +00:00
confirm
}
confirm( ) {
2020-05-24 17:43:40 +00:00
sc 3 "Confirmation"
printf "Alrighty, so here's what's about to go down:\n\n* Target console type:\t\t\t\033[1;96m"
2020-04-06 17:10:12 +00:00
case " $arg1 " in
2020-05-24 17:43:40 +00:00
"WII_SM" ) printf "Wii\033[0m\n" ; ;
"MINI_SM_" ) printf "Wii mini\033[0m\n" ; ;
2020-04-06 17:10:12 +00:00
esac
2020-05-24 17:43:40 +00:00
[ [ " $arg1 " = = "WII_SM" ] ] && printf " * Target console sysmenu version:\t\033[1;96m ${ arg2 //_/. } \033[0m\n " || printf " * Target console region:\t\t\033[1;96m $arg2 \033[0m\n "
printf "\nBlueBomb will be executed with the above, user-provided information.\n"
ask 1 "Do you wish to proceed?"
case $response in
0 ) execute ; ;
1 ) unset sysmenuIn; unset consoleIn; unset regionIn; unset arg1; unset arg2; findinfos ; ;
2020-04-06 17:10:12 +00:00
esac
2020-04-06 16:39:53 +00:00
}
execute( ) {
2020-05-24 17:43:40 +00:00
sc 4 "Execute BlueBomb"
task = " Stop Bluetooth service for $init "
2020-04-06 17:10:12 +00:00
printf "* Stopping the Bluetooth service... (you may be prompted for your password)\n"
2020-05-24 17:43:40 +00:00
case $init in
2020-04-06 16:39:53 +00:00
"systemd" ) $sudo0 systemctl disable --now bluetooth.service ; ;
"openrc" ) $sudo0 rc-service bluetooth stop ; ;
esac
task = "Execute BlueBomb"
2020-04-06 17:10:12 +00:00
printf "\n* Executing BlueBomb...\n"
2020-04-06 16:39:53 +00:00
printf " $sudo0 ./bluebomb- $arch ./stage0/ $arg1 $arg2 .bin stage1.bin\n "
$sudo0 ./bluebomb-$arch ./stage0/$arg1 $arg2 .bin stage1.bin
2020-05-24 17:43:40 +00:00
printf "\n\nIf BlueBomb failed to run, say \033[1mno\033[0m to the following question, and run the script again. Be persistent, it may take multiple attempts to get working.\n\n" | fold -s -w $( tput cols)
ask 1 "Do you wish to re-enable the Bluetooth service?"
case $response in
0 ) task = " Enable Bluetooth service for $init "
case $init in
"systemd" ) $sudo0 systemctl enable --now bluetooth.service ; ;
"openrc" ) $sudo0 rc-service bluetooth start ; ;
esac ; ;
esac
printf "\n\nExiting in 3 seconds..." ; sleep 3
2020-04-06 17:10:12 +00:00
credit
2020-04-06 16:39:53 +00:00
}
2020-05-24 17:43:40 +00:00
ask( ) {
case $1 in
0 ) unset answer; shift; printf "\nOPTIONS:\n" ; for o in " $@ " ; do
( ( i++) ) || true
printf " \t[\033[1m $i \033[0m]: \033[1m $o \033[0m\n " | fold -s -w $( tput cols)
done ; unset i; unset o
printf "\nPlease type your selection and then press ENTER: " | fold -s -w $( tput cols)
read -r answer
; ;
1 ) unset response; shift; printf " \n\033[1m $1 \033[0m [\033[1;32myes\033[0m/\033[1;31mno\033[0m]: "
read -r answer
case ${ answer ^^ } in
"Y" | "YES" ) response = 0; return ; ;
"N" | "NO" ) response = 1; return ; ;
* ) printf " Invalid answer \" $answer \". Treating as no.\n " ; sleep 2; response = 1; return ; ; # I'm lazy.
esac
; ;
esac
}
2020-04-06 16:39:53 +00:00
download
findinfos