Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add and show error descriptions #19

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Taurine/app/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class ViewController: UIViewController, ElectraUI {
DispatchQueue.main.async {
self.jailbreakButton.setProgress(1.0, animated: true)
if err != .ERR_NOERR {
self.showAlert("Oh no", "\(String(describing: err))", sync: false, callback: {
self.showAlert("Error occured", err.description, sync: false, callback: {
UIApplication.shared.beginBackgroundTask {
print("odd. this should never be called.")
}
Expand Down
28 changes: 26 additions & 2 deletions Taurine/post-exploit/electra.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@

import Foundation

enum JAILBREAK_RETURN_STATUS {
enum JAILBREAK_RETURN_STATUS: CustomStringConvertible {
case ERR_NOERR
case ERR_VERSION
case ERR_EXPLOIT
case ERR_UNSUPPORED
case ERR_KERNRW
Expand All @@ -20,6 +19,31 @@ enum JAILBREAK_RETURN_STATUS {
case ERR_SNAPSHOT
case ERR_JAILBREAK
case ERR_CONFLICT

var description: String {
switch self {
case .ERR_NOERR:
return "No error encountered"
case .ERR_EXPLOIT:
return "Exploit failed - reboot and try again!"
case .ERR_UNSUPPORED:
return "Device or version unsupported"
case .ERR_KERNRW:
return "Explpot failed - reboot and try again"
case .ERR_ALREADY_JAILBROKEN:
return "Jailbreak Process was interrupted - Please reboot and try again!"
case .ERR_ROOTFS_RESTORE:
return "Error occured while trying to restore-rootfs, reboot and try again!"
case .ERR_REMOUNT:
return "Error occured while re-mounting /"
case .ERR_SNAPSHOT:
return "Error occured while creating snapshot of root filesystem"
case .ERR_JAILBREAK:
return "Unknown error has occured while trying to jailbreak"
case .ERR_CONFLICT:
return "Conflict error occured - please restore rootfs first then try to jailbreak."
}
}
}

protocol ElectraUI {
Expand Down