From f08edb736d8b5c04e78cd8b17d11a311424906b1 Mon Sep 17 00:00:00 2001 From: Adrian Malacoda Date: Sun, 24 Jun 2018 19:43:30 -0500 Subject: [PATCH] Swap out rootfw for libsu. THis compiles but I haven't yet tested it. It won't get merged back in until I test it fully. --- app/build.gradle | 3 +- .../fileeditorpro/activity/MainActivity.java | 12 +- .../activity/SelectFileActivity.java | 34 +- .../fileeditorpro/application/MyApp.java | 9 +- .../fileeditorpro/task/SaveFileTask.java | 37 +- build.gradle | 1 + libraries/sharedCode/.gitignore | 1 - libraries/sharedCode/build.gradle | 55 - libraries/sharedCode/proguard-rules.pro | 17 - .../turboeditor/ApplicationTest.java | 32 - .../sharedCode/src/main/AndroidManifest.xml | 23 - .../java/com/spazedog/lib/rootfw4/Common.java | 119 -- .../java/com/spazedog/lib/rootfw4/RootFW.java | 348 ---- .../java/com/spazedog/lib/rootfw4/Shell.java | 789 -------- .../com/spazedog/lib/rootfw4/ShellStream.java | 363 ---- .../rootfw4/containers/BasicContainer.java | 35 - .../spazedog/lib/rootfw4/containers/Data.java | 414 ---- .../spazedog/lib/rootfw4/utils/Device.java | 444 ----- .../com/spazedog/lib/rootfw4/utils/File.java | 1734 ----------------- .../lib/rootfw4/utils/Filesystem.java | 693 ------- .../spazedog/lib/rootfw4/utils/Memory.java | 686 ------- .../lib/rootfw4/utils/io/FileReader.java | 174 -- .../lib/rootfw4/utils/io/FileWriter.java | 150 -- settings.gradle | 2 +- 24 files changed, 35 insertions(+), 6140 deletions(-) delete mode 100644 libraries/sharedCode/.gitignore delete mode 100644 libraries/sharedCode/build.gradle delete mode 100644 libraries/sharedCode/proguard-rules.pro delete mode 100644 libraries/sharedCode/src/androidTest/java/sharedcode/turboeditor/ApplicationTest.java delete mode 100644 libraries/sharedCode/src/main/AndroidManifest.xml delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/Common.java delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/RootFW.java delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/Shell.java delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/ShellStream.java delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/containers/BasicContainer.java delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/containers/Data.java delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Device.java delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/File.java delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Filesystem.java delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Memory.java delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/io/FileReader.java delete mode 100644 libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/io/FileWriter.java diff --git a/app/build.gradle b/app/build.gradle index 3abef9e..e8d79a5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -58,8 +58,7 @@ android { } dependencies { - compile project(':libraries:sharedCode') - //compile 'com.spazedog.lib:rootfw_gen4:+@aar' + compile 'com.github.topjohnwu:libsu:1.2.0' compile project(':libraries:FloatingActionButton') compile 'org.apache.commons:commons-lang3:+' compile 'com.googlecode.juniversalchardet:juniversalchardet:1.0.3' diff --git a/app/src/main/java/com/maskyn/fileeditorpro/activity/MainActivity.java b/app/src/main/java/com/maskyn/fileeditorpro/activity/MainActivity.java index 994d294..ce14727 100644 --- a/app/src/main/java/com/maskyn/fileeditorpro/activity/MainActivity.java +++ b/app/src/main/java/com/maskyn/fileeditorpro/activity/MainActivity.java @@ -68,8 +68,7 @@ import android.widget.ListView; import android.widget.Toast; import com.faizmalkani.floatingactionbutton.FloatingActionButton; -import com.spazedog.lib.rootfw4.RootFW; -import com.spazedog.lib.rootfw4.utils.io.FileReader; +import com.topjohnwu.superuser.io.SuFileInputStream; import org.apache.commons.io.FilenameUtils; import org.apache.commons.lang3.ArrayUtils; @@ -978,10 +977,8 @@ public abstract class MainActivity extends ActionBarActivity implements IHomeAct encoding = "UTF-8"; // Connect the shared connection - if (RootFW.connect()) { - FileReader reader = RootFW.getFileReader(path); - buffer = new BufferedReader(reader); - } + InputStreamReader reader = new InputStreamReader(new SuFileInputStream(path)); + buffer = new BufferedReader(reader); } else { boolean autoencoding = PreferenceHelper.getAutoEncoding(MainActivity.this); @@ -1008,9 +1005,6 @@ public abstract class MainActivity extends ActionBarActivity implements IHomeAct buffer.close(); fileText = stringBuilder.toString(); } - - if (isRootRequired) - RootFW.disconnect(); } @Override diff --git a/app/src/main/java/com/maskyn/fileeditorpro/activity/SelectFileActivity.java b/app/src/main/java/com/maskyn/fileeditorpro/activity/SelectFileActivity.java index e6c4267..200f04c 100644 --- a/app/src/main/java/com/maskyn/fileeditorpro/activity/SelectFileActivity.java +++ b/app/src/main/java/com/maskyn/fileeditorpro/activity/SelectFileActivity.java @@ -39,7 +39,7 @@ import android.widget.TextView; import android.widget.Toast; import com.faizmalkani.floatingactionbutton.FloatingActionButton; -import com.spazedog.lib.rootfw4.RootFW; +import com.topjohnwu.superuser.io.SuFile; import org.apache.commons.io.FileUtils; import org.apache.commons.io.FilenameUtils; @@ -383,24 +383,22 @@ public class SelectFileActivity extends ActionBarActivity implements SearchView. currentFolder = tempFolder.getAbsolutePath(); if (!tempFolder.canRead()) { - if (RootFW.connect()) { - com.spazedog.lib.rootfw4.utils.File folder = RootFW.getFile(currentFolder); - com.spazedog.lib.rootfw4.utils.File.FileStat[] stats = folder.getDetailedList(); + SuFile folder = new SuFile(currentFolder); + SuFile[] files = folder.listFiles(); - if (stats != null) { - for (com.spazedog.lib.rootfw4.utils.File.FileStat stat : stats) { - if (stat.type().equals("d")) { - folderDetails.add(new AdapterDetailedList.FileDetail(stat.name(), - getString(R.string.folder), - "")); - } else if (!FilenameUtils.isExtension(stat.name().toLowerCase(), unopenableExtensions) - && stat.size() <= Build.MAX_FILE_SIZE * FileUtils.ONE_KB) { - final long fileSize = stat.size(); - //SimpleDateFormat format = new SimpleDateFormat("MMM dd, yyyy hh:mm a"); - //String date = format.format(""); - fileDetails.add(new AdapterDetailedList.FileDetail(stat.name(), - FileUtils.byteCountToDisplaySize(fileSize), "")); - } + if (files != null) { + for (SuFile file : files) { + if (file.isDirectory()) { + folderDetails.add(new AdapterDetailedList.FileDetail(file.getName(), + getString(R.string.folder), + "")); + } else if (!FilenameUtils.isExtension(file.getName().toLowerCase(), unopenableExtensions) + && file.length() <= Build.MAX_FILE_SIZE * FileUtils.ONE_KB) { + final long fileSize = file.length(); + //SimpleDateFormat format = new SimpleDateFormat("MMM dd, yyyy hh:mm a"); + //String date = format.format(""); + fileDetails.add(new AdapterDetailedList.FileDetail(file.getName(), + FileUtils.byteCountToDisplaySize(fileSize), "")); } } } diff --git a/app/src/main/java/com/maskyn/fileeditorpro/application/MyApp.java b/app/src/main/java/com/maskyn/fileeditorpro/application/MyApp.java index cd07de0..3ab377a 100644 --- a/app/src/main/java/com/maskyn/fileeditorpro/application/MyApp.java +++ b/app/src/main/java/com/maskyn/fileeditorpro/application/MyApp.java @@ -24,11 +24,18 @@ import android.view.ViewConfiguration; import java.lang.reflect.Field; -public class MyApp extends Application { +import com.topjohnwu.superuser.Shell; + +public class MyApp extends Shell.ContainerApp { @Override public void onCreate() { super.onCreate(); + + // Shell initialization + Shell.setFlags(Shell.FLAG_REDIRECT_STDERR); + Shell.verboseLogging(true); + // force to sow the overflow menu icon try { ViewConfiguration config = ViewConfiguration.get(this); diff --git a/app/src/main/java/com/maskyn/fileeditorpro/task/SaveFileTask.java b/app/src/main/java/com/maskyn/fileeditorpro/task/SaveFileTask.java index 629e5ca..2731d1b 100644 --- a/app/src/main/java/com/maskyn/fileeditorpro/task/SaveFileTask.java +++ b/app/src/main/java/com/maskyn/fileeditorpro/task/SaveFileTask.java @@ -25,12 +25,9 @@ import android.os.ParcelFileDescriptor; import android.text.TextUtils; import android.widget.Toast; -import com.spazedog.lib.rootfw4.RootFW; -import com.spazedog.lib.rootfw4.Shell; -import com.spazedog.lib.rootfw4.utils.File; -import com.spazedog.lib.rootfw4.utils.Filesystem; - +import com.topjohnwu.superuser.io.SuFileOutputStream; import org.apache.commons.io.FileUtils; +import org.apache.commons.io.IOUtils; import java.io.FileOutputStream; import java.io.IOException; @@ -73,7 +70,6 @@ public class SaveFileTask extends AsyncTask { protected Void doInBackground(final Void... voids) { boolean isRootNeeded = false; - Shell.Result resultRoot = null; try { String filePath = uri.getFilePath(); @@ -93,34 +89,11 @@ public class SaveFileTask extends AsyncTask { } // if we can read the file associated with the uri else { - - if (RootFW.connect()) { - Filesystem.Disk systemPart = RootFW.getDisk(uri.getParentFolder()); - systemPart.mount(new String[]{"rw"}); - - File file = RootFW.getFile(uri.getFilePath()); - resultRoot = file.writeResult(newContent); - - RootFW.disconnect(); - } - + IOUtils.write(newContent, new SuFileOutputStream(uri.getFilePath()), encoding); } - } - - if (isRootNeeded) { - if (resultRoot != null && resultRoot.wasSuccessful()) { - message = positiveMessage; - } - else if (resultRoot != null) { - message = negativeMessage + " command number: " + resultRoot.getCommandNumber() + " result code: " + resultRoot.getResultCode() + " error lines: " + resultRoot.getString(); - } - else - message = negativeMessage; - } - else - message = positiveMessage; + message = positiveMessage; } catch (Exception e) { e.printStackTrace(); message = e.getMessage(); @@ -155,4 +128,4 @@ public class SaveFileTask extends AsyncTask { public interface SaveFileInterface { void fileSaved(Boolean success); } -} \ No newline at end of file +} diff --git a/build.gradle b/build.gradle index b5312ee..e9626dc 100644 --- a/build.gradle +++ b/build.gradle @@ -36,5 +36,6 @@ allprojects { repositories { jcenter() google() + maven { url 'https://jitpack.io' } } } diff --git a/libraries/sharedCode/.gitignore b/libraries/sharedCode/.gitignore deleted file mode 100644 index 3543521..0000000 --- a/libraries/sharedCode/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build diff --git a/libraries/sharedCode/build.gradle b/libraries/sharedCode/build.gradle deleted file mode 100644 index 7f2353c..0000000 --- a/libraries/sharedCode/build.gradle +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright (C) 2016 Adrian Malacoda - * Copyright (C) 2014 Vlad Mihalachi - * - * This file is part of Text Editor 8000. - * - * Text Editor 8000 is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Text Editor 8000 is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - - - -apply plugin: 'com.android.library' - -android { - compileSdkVersion 22 - buildToolsVersion '22.0.1' - - defaultConfig { - minSdkVersion 11 - targetSdkVersion 22 - versionCode 1 - versionName "1.0" - } - - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_7 - targetCompatibility JavaVersion.VERSION_1_7 - } - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' - } - } - - lintOptions { - abortOnError false - } - - packagingOptions { - exclude 'META-INF/LICENSE.txt' - exclude 'META-INF/NOTICE.txt' - } -} diff --git a/libraries/sharedCode/proguard-rules.pro b/libraries/sharedCode/proguard-rules.pro deleted file mode 100644 index a946ab9..0000000 --- a/libraries/sharedCode/proguard-rules.pro +++ /dev/null @@ -1,17 +0,0 @@ -# Add project specific ProGuard rules here. -# By default, the flags in this file are appended to flags specified -# in C:/Users/Vlad/AppData/Local/Android/android-sdk/tools/proguard/proguard-android.txt -# You can edit the include path and order by changing the proguardFiles -# directive in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# Add any project specific keep options here: - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} diff --git a/libraries/sharedCode/src/androidTest/java/sharedcode/turboeditor/ApplicationTest.java b/libraries/sharedCode/src/androidTest/java/sharedcode/turboeditor/ApplicationTest.java deleted file mode 100644 index 21d4314..0000000 --- a/libraries/sharedCode/src/androidTest/java/sharedcode/turboeditor/ApplicationTest.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (C) 2014 Vlad Mihalachi - * - * This file is part of Text Editor 8000. - * - * Text Editor 8000 is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Text Editor 8000 is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package sharedcode.turboeditor; - -import android.app.Application; -import android.test.ApplicationTestCase; - -/** - * Testing Fundamentals - */ -public class ApplicationTest extends ApplicationTestCase { - public ApplicationTest() { - super(Application.class); - } -} \ No newline at end of file diff --git a/libraries/sharedCode/src/main/AndroidManifest.xml b/libraries/sharedCode/src/main/AndroidManifest.xml deleted file mode 100644 index 0a3f8be..0000000 --- a/libraries/sharedCode/src/main/AndroidManifest.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/Common.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/Common.java deleted file mode 100644 index a791f07..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/Common.java +++ /dev/null @@ -1,119 +0,0 @@ -/* - * This file is part of the RootFW Project: https://github.com/spazedog/rootfw - * - * Copyright (c) 2015 Daniel Bergløv - * - * RootFW is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - - * RootFW is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General Public License - * along with RootFW. If not, see - */ - -package com.spazedog.lib.rootfw4; - -import java.util.HashMap; -import java.util.Map; -import java.util.Map.Entry; - -import android.os.Build; -import android.os.Process; - -public class Common { - private static Boolean oEmulator = false; - - public static final String TAG = Common.class.getPackage().getName(); - public static Boolean DEBUG = true; - public static String[] BINARIES = new String[]{null, "busybox", "toolbox"}; - public static Map UIDS = new HashMap(); - public static Map UNAMES = new HashMap(); - - static { - UIDS.put("root", 0); - UIDS.put("system", 1000); - UIDS.put("radio", 1001); - UIDS.put("bluetooth", 1002); - UIDS.put("graphics", 1003); - UIDS.put("input", 1004); - UIDS.put("audio", 1005); - UIDS.put("camera", 1006); - UIDS.put("log", 1007); - UIDS.put("compass", 1008); - UIDS.put("mount", 1009); - UIDS.put("wifi", 1010); - UIDS.put("adb", 1011); - UIDS.put("install", 1012); - UIDS.put("media", 1013); - UIDS.put("dhcp", 1014); - UIDS.put("shell", 2000); - UIDS.put("cache", 2001); - UIDS.put("diag", 2002); - UIDS.put("net_bt_admin", 3001); - UIDS.put("net_bt", 3002); - UIDS.put("inet", 3003); - UIDS.put("net_raw", 3004); - UIDS.put("misc", 9998); - UIDS.put("nobody", 9999); - - for (Entry entry : UIDS.entrySet()) { - UNAMES.put(entry.getValue(), entry.getKey()); - } - - oEmulator = Build.BRAND.equalsIgnoreCase("generic") || - Build.MODEL.contains("google_sdk") || - Build.MODEL.contains("Emulator") || - Build.MODEL.contains("Android SDK"); - } - - /** - * Check if the current device is an emulator - */ - public static Boolean isEmulator() { - return oEmulator; - } - - public static Integer getUID(String name) { - if (name != null) { - if (name.matches("^[0-9]+$")) { - return Integer.parseInt(name); - } - - if (UIDS.containsKey(name)) { - return UIDS.get(name); - - } else if (name.startsWith("u")) { - Integer sep = name.indexOf("_"); - - if (sep > 0) { - Integer uid = Integer.parseInt( name.substring(1, sep) ); - Integer gid = Integer.parseInt( name.substring(sep+2) ); - - return uid * 100000 + ((Process.FIRST_APPLICATION_UID + gid) % 100000); - } - } - } - - return -10000; - } - - public static String getUIDName(Integer id) { - if (UNAMES.containsKey(id)) { - return UNAMES.get(id); - - } else if (id >= 10000) { - Integer uid = id / 100000; - Integer gid = id % Process.FIRST_APPLICATION_UID; - - return "u" + uid + "_a" + gid + ""; - } - - return null; - } -} diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/RootFW.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/RootFW.java deleted file mode 100644 index a59d837..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/RootFW.java +++ /dev/null @@ -1,348 +0,0 @@ -/* - * This file is part of the RootFW Project: https://github.com/spazedog/rootfw - * - * Copyright (c) 2015 Daniel Bergløv - * - * RootFW is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - - * RootFW is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General Public License - * along with RootFW. If not, see - */ - -package com.spazedog.lib.rootfw4; - -import java.util.HashSet; -import java.util.Set; - -import com.spazedog.lib.rootfw4.Shell.Attempts; -import com.spazedog.lib.rootfw4.Shell.OnShellConnectionListener; -import com.spazedog.lib.rootfw4.Shell.OnShellResultListener; -import com.spazedog.lib.rootfw4.Shell.OnShellValidateListener; -import com.spazedog.lib.rootfw4.Shell.Result; -import com.spazedog.lib.rootfw4.utils.Device; -import com.spazedog.lib.rootfw4.utils.Device.Process; -import com.spazedog.lib.rootfw4.utils.File; -import com.spazedog.lib.rootfw4.utils.Filesystem; -import com.spazedog.lib.rootfw4.utils.Memory; -import com.spazedog.lib.rootfw4.utils.Filesystem.Disk; -import com.spazedog.lib.rootfw4.utils.Memory.CompCache; -import com.spazedog.lib.rootfw4.utils.Memory.Swap; -import com.spazedog.lib.rootfw4.utils.io.FileReader; -import com.spazedog.lib.rootfw4.utils.io.FileWriter; - -/** - * This is a global static front-end to {@link Shell}. It allows one global shell connection to be - * easily shared across classes and threads without having to create multiple connections. - */ -public class RootFW { - - protected static volatile Shell mShell; - protected static volatile Integer mLockCount = 0; - protected static final Object mLock = new Object(); - - protected static Set mListeners = new HashSet(); - - /** - * An interface that can be used to monitor the current state of the global connection. - * - * @see #addConnectionListener(OnConnectionListener) - */ - public static interface OnConnectionListener extends OnShellConnectionListener { - /** - * Invoked when the shell has been connected - */ - public void onShellConnect(); - } - - /** - * Create a new connection to the global shell.

- * - * Note that this method will fallback on a normal user shell if root could not be obtained. - * Therefore it is always a good idea to check the state of root using {@link #isRoot()} - * - * @return - * True if the shell was connected successfully - */ - public static Boolean connect() { - synchronized(mLock) { - if (mShell == null || !mShell.isConnected()) { - mLockCount = 0; - mShell = new Shell(true); - - /* - * Fallback to a regular user shell - */ - if (!mShell.isConnected()) { - mShell = new Shell(false); - } - - mShell.addShellConnectionListener(new OnShellConnectionListener(){ - @Override - public void onShellDisconnect() { - for (OnConnectionListener listener : mListeners) { - listener.onShellDisconnect(); - } - } - }); - - for (OnConnectionListener listener : mListeners) { - listener.onShellConnect(); - } - } - - return mShell.isConnected(); - } - } - - /** - * @see #disconnect(Boolean) - */ - public static void disconnect() { - disconnect(false); - } - - /** - * Destroy the connection to the global shell.

- * - * The connection will only be destroyed if there is no current locks on this connecton. - * - * @see #lock() - */ - public static void disconnect(Boolean force) { - synchronized(mLock) { - if (mLockCount == 0 || force) { - mLockCount = 0; - mShell.destroy(); - mShell = null; - } - } - } - - /** - * Add a new lock on this connection. Each call to this method will add an additional lock. - * As long as there are 1 or more locks on this connection, it cannot be destroyed using {@link #disconnect()} - * - * @see #unlock() - */ - public static void lock() { - synchronized(mLock) { - mLockCount += 1; - } - } - - /** - * Removes one lock from this connection. Each call will remove 1 lock as long as there are 1 or more locks attached. - * - * @see #lock() - */ - public static void unlock() { - synchronized(mLock) { - if (mLockCount > 0) { - mLockCount -= 1; - - } else { - mLockCount = 0; - } - } - } - - /** - * Checks if there are any active locks on the connection. - */ - public static Boolean isLocked() { - synchronized(mLock) { - return mLockCount == 0; - } - } - - /** - * Add a new {@link OnConnectionListener} to the global shell - * - * @see #removeConnectionListener(OnConnectionListener) - */ - public static void addConnectionListener(OnConnectionListener listener) { - synchronized(mLock) { - mListeners.add(listener); - } - } - - /** - * Remove a {@link OnConnectionListener} from the global shell - * - * @see #addConnectionListener(OnConnectionListener) - */ - public static void removeConnectionListener(OnConnectionListener listener) { - synchronized(mLock) { - mListeners.remove(listener); - } - } - - /** - * @see Shell#execute(String) - */ - public static Result execute(String command) { - return mShell.execute(command); - } - - /** - * @see Shell#execute(String[]) - */ - public static Result execute(String[] commands) { - return mShell.execute(commands); - } - - /** - * @see Shell#execute(String[], Integer[], OnShellValidateListener) - */ - public static Result execute(String[] commands, Integer[] resultCodes, OnShellValidateListener validater) { - return mShell.execute(commands, resultCodes, validater); - } - - /** - * @see Shell#executeAsync(String, OnShellResultListener) - */ - public static void executeAsync(String command, OnShellResultListener listener) { - mShell.executeAsync(command, listener); - } - - /** - * @see Shell#executeAsync(String[], OnShellResultListener) - */ - public static void executeAsync(String[] commands, OnShellResultListener listener) { - mShell.executeAsync(commands, listener); - } - - /** - * @see Shell#executeAsync(String[], Integer[], OnShellValidateListener, OnShellResultListener) - */ - public static void executeAsync(String[] commands, Integer[] resultCodes, OnShellValidateListener validater, OnShellResultListener listener) { - mShell.executeAsync(commands, resultCodes, validater, listener); - } - - /** - * @see Shell#isRoot() - */ - public static Boolean isRoot() { - return mShell.isRoot(); - } - - /** - * @see Shell#isConnected() - */ - public static Boolean isConnected() { - return mShell != null && mShell.isConnected(); - } - - /** - * @see Shell#getTimeout() - */ - public static Integer getTimeout() { - return mShell.getTimeout(); - } - - /** - * @see Shell#setTimeout(Integer) - */ - public static void setTimeout(Integer timeout) { - mShell.setTimeout(timeout); - } - - /** - * @see Shell#getBinary(String) - */ - public static String findCommand(String bin) { - return mShell.findCommand(bin); - } - - /** - * @see Shell#createAttempts(String) - */ - public static Attempts createAttempts(String command) { - return mShell.createAttempts(command); - } - - /** - * @see Shell#getFileReader(String) - */ - public static FileReader getFileReader(String file) { - return mShell.getFileReader(file); - } - - /** - * @see Shell#getFileWriter(String, Boolean) - */ - public static FileWriter getFileWriter(String file, Boolean append) { - return mShell.getFileWriter(file, append); - } - - /** - * @see Shell#getFile(String) - */ - public static File getFile(String file) { - return mShell.getFile(file); - } - - /** - * @see Shell#getFilesystem() - */ - public static Filesystem getFilesystem() { - return mShell.getFilesystem(); - } - - /** - * @see Shell#getDisk(String) - */ - public static Disk getDisk(String disk) { - return mShell.getDisk(disk); - } - - /** - * @see Shell#getDevice() - */ - public static Device getDevice() { - return mShell.getDevice(); - } - - /** - * @see Shell#getProcess(String) - */ - public static Process getProcess(String process) { - return mShell.getProcess(process); - } - - /** - * @see Shell#getProcess(Integer) - */ - public static Process getProcess(Integer pid) { - return mShell.getProcess(pid); - } - - /** - * @see Shell#getMemory() - */ - public static Memory getMemory() { - return mShell.getMemory(); - } - - /** - * @see Shell#getCompCache() - */ - public static CompCache getCompCache() { - return mShell.getCompCache(); - } - - /** - * @see Shell#getSwap(String device) - */ - public static Swap getSwap(String device) { - return mShell.getSwap(device); - } -} diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/Shell.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/Shell.java deleted file mode 100644 index f9354e4..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/Shell.java +++ /dev/null @@ -1,789 +0,0 @@ -/* - * Copyright (C) 2014 Vlad Mihalachi - * - * This file is part of Text Editor 8000. - * - * Text Editor 8000 is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Text Editor 8000 is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package com.spazedog.lib.rootfw4; - -import java.io.FileNotFoundException; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.WeakHashMap; - -import android.os.Bundle; -import android.util.Log; - -import com.spazedog.lib.rootfw4.ShellStream.OnStreamListener; -import com.spazedog.lib.rootfw4.containers.Data; -import com.spazedog.lib.rootfw4.utils.Device; -import com.spazedog.lib.rootfw4.utils.Device.Process; -import com.spazedog.lib.rootfw4.utils.File; -import com.spazedog.lib.rootfw4.utils.Filesystem; -import com.spazedog.lib.rootfw4.utils.Filesystem.Disk; -import com.spazedog.lib.rootfw4.utils.Memory; -import com.spazedog.lib.rootfw4.utils.Memory.CompCache; -import com.spazedog.lib.rootfw4.utils.Memory.Swap; -import com.spazedog.lib.rootfw4.utils.io.FileReader; -import com.spazedog.lib.rootfw4.utils.io.FileWriter; - -/** - * This class is a front-end to {@link ShellStream} which makes it easier to work - * with normal shell executions. If you need to execute a consistent command (one that never ends), - * you should work with {@link ShellStream} directly. - */ -public class Shell { - public static final String TAG = Common.TAG + ".Shell"; - - protected static Set mInstances = Collections.newSetFromMap(new WeakHashMap()); - protected static Map mBinaries = new HashMap(); - - protected Set mBroadcastRecievers = Collections.newSetFromMap(new WeakHashMap()); - protected Set mConnectionRecievers = new HashSet(); - - protected Object mLock = new Object(); - protected ShellStream mStream; - protected Boolean mIsConnected = false; - protected Boolean mIsRoot = false; - protected List mOutput = null; - protected Integer mResultCode = 0; - protected Integer mShellTimeout = 15000; - protected Set mResultCodes = new HashSet(); - - /** - * This interface is used internally across utility classes. - */ - public static interface OnShellBroadcastListener { - public void onShellBroadcast(String key, Bundle data); - } - - /** - * This interface is for use with {@link Shell#executeAsync(String[], OnShellResultListener)}. - */ - public static interface OnShellResultListener { - /** - * Called when an asynchronous execution has finished. - * - * @param result - * The result from the asynchronous execution - */ - public void onShellResult(Result result); - } - - /** - * This interface is for use with the execute methods. It can be used to validate an attempt command, if that command - * cannot be validated by result code alone. - */ - public static interface OnShellValidateListener { - /** - * Called at the end of each attempt in order to validate it. If this method returns false, then the next attempt will be executed. - * - * @param command - * The command that was executed during this attempt - * - * @param result - * The result code from this attempt - * - * @param output - * The output from this attempt - * - * @param resultCodes - * All of the result codes that has been added as successful ones - * - * @return - * False to continue to the next attempts, or True to stop the current execution - */ - public Boolean onShellValidate(String command, Integer result, List output, Set resultCodes); - } - - /** - * This interface is used to get information about connection changes. - */ - public static interface OnShellConnectionListener { - /** - * Called when the connection to the shell is lost. - */ - public void onShellDisconnect(); - } - - /** - * This class is used to store the result from shell executions. - * It extends the {@link Data} class. - */ - public static class Result extends Data { - private Integer mResultCode; - private Integer[] mValidResults; - private Integer mCommandNumber; - - public Result(String[] lines, Integer result, Integer[] validResults, Integer commandNumber) { - super(lines); - - mResultCode = result; - mValidResults = validResults; - mCommandNumber = commandNumber; - } - - /** - * Get the result code from the shell execution. - */ - public Integer getResultCode() { - return mResultCode; - } - - /** - * Compare the result code with {@link Shell#addResultCode(Integer)} to determine - * whether or not the execution was a success. - */ - public Boolean wasSuccessful() { - for (int i=0; i < mValidResults.length; i++) { - if ((int) mValidResults[i] == (int) mResultCode) { - return true; - } - } - - return false; - } - - /** - * Get the command number that produced a successful result. - */ - public Integer getCommandNumber() { - return mCommandNumber; - } - } - - /** - * A class containing automatically created shell attempts and links to both {@link Shell#executeAsync(String[], Integer[], OnShellResultListener)} and {@link Shell#execute(String[], Integer[])}

- * - * All attempts are created based on {@link Common#BINARIES}.

- * - * Example: String("ls") would become String["ls", "busybox ls", "toolbox ls"] if {@link Common#BINARIES} equals String[null, "busybox", "toolbox"].

- * - * You can also apply the keyword %binary if you need to apply the binaries to more than the beginning of a command.

- * - * Example: String("(%binary test -d '%binary pwd') || exit 1") would become String["(test -d 'pwd') || exit 1", "(busybox test -d 'busybox pwd') || exit 1", "(toolbox test -d 'toolbox pwd') || exit 1"] - * - * @see Shell#createAttempts(String) - */ - public class Attempts { - protected String[] mAttempts; - protected Integer[] mResultCodes; - protected OnShellValidateListener mValidateListener; - protected OnShellResultListener mResultListener; - - protected Attempts(String command) { - if (command != null) { - Integer pos = 0; - mAttempts = new String[ Common.BINARIES.length ]; - - for (String binary : Common.BINARIES) { - if (command.contains("%binary ")) { - mAttempts[pos] = command.replaceAll("%binary ", (binary != null && binary.length() > 0 ? binary + " " : "")); - - } else { - mAttempts[pos] = (binary != null && binary.length() > 0 ? binary + " " : "") + command; - } - - pos += 1; - } - } - } - - public Attempts setValidateListener(OnShellValidateListener listener) { - mValidateListener = listener; return this; - } - - public Attempts setResultListener(OnShellResultListener listener) { - mResultListener = listener; return this; - } - - public Attempts setResultCodes(Integer... resultCodes) { - mResultCodes = resultCodes; return this; - } - - public Result execute(OnShellValidateListener listener) { - return setValidateListener(listener).execute(); - } - - public Result execute() { - return Shell.this.execute(mAttempts, mResultCodes, mValidateListener); - } - - public void executeAsync(OnShellResultListener listener) { - setResultListener(listener).executeAsync(); - } - - public void executeAsync() { - Shell.this.executeAsync(mAttempts, mResultCodes, mValidateListener, mResultListener); - } - } - - /** - * Establish a {@link ShellStream} connection. - * - * @param requestRoot - * Whether or not to request root privileges for the shell connection - */ - public Shell(Boolean requestRoot) { - mResultCodes.add(0); - mIsRoot = requestRoot; - - /* - * Kutch superuser daemon mode sometimes has problems connecting the first time. - * So we will give it two tries before giving up. - */ - for (int i=0; i < 2; i++) { - if(Common.DEBUG)Log.d(TAG, "Construct: Running connection attempt number " + (i+1)); - - mStream = new ShellStream(requestRoot, new OnStreamListener() { - @Override - public void onStreamStart() { - if(Common.DEBUG)Log.d(TAG, "onStreamStart: ..."); - - mOutput = new ArrayList(); - } - - @Override - public void onStreamInput(String outputLine) { - if(Common.DEBUG)Log.d(TAG, "onStreamInput: " + (outputLine != null ? (outputLine.length() > 50 ? outputLine.substring(0, 50) + " ..." : outputLine) : "NULL")); - - mOutput.add(outputLine); - } - - @Override - public void onStreamStop(Integer resultCode) { - if(Common.DEBUG)Log.d(TAG, "onStreamStop: " + resultCode); - - mResultCode = resultCode; - } - - @Override - public void onStreamDied() { - if(Common.DEBUG)Log.d(TAG, "onStreamDied: The stream has been closed"); - - if (mIsConnected) { - if(Common.DEBUG)Log.d(TAG, "onStreamDied: The stream seams to have died, reconnecting"); - - mStream = new ShellStream(mIsRoot, this); - - if (mStream.isActive()) { - Result result = execute("echo connected"); - - mIsConnected = result != null && "connected".equals(result.getLine()); - - } else { - if(Common.DEBUG)Log.d(TAG, "onStreamDied: Could not reconnect"); - - mIsConnected = false; - } - } - - if (!mIsConnected) { - for (OnShellConnectionListener reciever : mConnectionRecievers) { - reciever.onShellDisconnect(); - } - } - } - }); - - if (mStream.isActive()) { - Result result = execute("echo connected"); - - mIsConnected = result != null && "connected".equals(result.getLine()); - - if (mIsConnected) { - if(Common.DEBUG)Log.d(TAG, "Construct: Connection has been established"); - - mInstances.add(this); break; - } - } - } - } - - /** - * Execute a shell command. - * - * @see Shell#execute(String[], Integer[]) - * - * @param command - * The command to execute - */ - public Result execute(String command) { - return execute(new String[]{command}, null, null); - } - - /** - * Execute a range of commands until one is successful. - * - * @see Shell#execute(String[], Integer[]) - * - * @param commands - * The commands to try - */ - public Result execute(String[] commands) { - return execute(commands, null, null); - } - - /** - * Execute a range of commands until one is successful.

- * - * Android shells differs a lot from one another, which makes it difficult to program shell scripts for. - * This method can help with that by trying different commands until one works.

- * - * Shell.execute( new String(){"cat file", "toolbox cat file", "busybox cat file"} );

- * - * Whether or not a command was successful, depends on {@link Shell#addResultCode(Integer)} which by default only contains '0'. - * The command number that was successful can be checked using {@link Result#getCommandNumber()}. - * - * @param commands - * The commands to try - * - * @param resultCodes - * Result Codes representing successful execution. These will be temp. merged with {@link Shell#addResultCode(Integer)}. - * - * @param validater - * A {@link OnShellValidateListener} instance or NULL - */ - public Result execute(String[] commands, Integer[] resultCodes, OnShellValidateListener validater) { - synchronized(mLock) { - if (mStream.waitFor(mShellTimeout)) { - Integer cmdCount = 0; - Set codes = new HashSet(mResultCodes); - - if (resultCodes != null) { - Collections.addAll(codes, resultCodes); - } - - for (String command : commands) { - if(Common.DEBUG)Log.d(TAG, "execute: Executing the command '" + command + "'"); - - mStream.execute(command); - - if(!mStream.waitFor(mShellTimeout)) { - /* - * Something is wrong, reconnect to the shell. - */ - mStream.destroy(); - - return null; - } - - if(Common.DEBUG)Log.d(TAG, "execute: The command finished with the result code '" + mResultCode + "'"); - - if ((validater != null && validater.onShellValidate(command, mResultCode, mOutput, codes)) || codes.contains(mResultCode)) { - /* - * If a validater excepts this, then add the result code to the list of successful codes - */ - codes.add(mResultCode); break; - } - - cmdCount += 1; - } - - if (mOutput != null) { - return new Result(mOutput.toArray(new String[mOutput.size()]), mResultCode, codes.toArray(new Integer[codes.size()]), cmdCount); - } - } - - return null; - } - } - - /** - * Execute a shell command asynchronous. - * - * @see Shell#executeAsync(String[], Integer[], OnShellResultListener) - * - * @param command - * The command to execute - * - * @param listener - * A {@link OnShellResultListener} callback instance - */ - public void executeAsync(String command, OnShellResultListener listener) { - executeAsync(new String[]{command}, null, null, listener); - } - - /** - * Execute a range of commands asynchronous until one is successful. - * - * @see Shell#executeAsync(String[], Integer[], OnShellResultListener) - * - * @param commands - * The commands to try - * - * @param listener - * A {@link OnShellResultListener} callback instance - */ - public void executeAsync(String[] commands, OnShellResultListener listener) { - executeAsync(commands, null, null, listener); - } - - /** - * Execute a range of commands asynchronous until one is successful. - * - * @see Shell#execute(String[], Integer[]) - * - * @param commands - * The commands to try - * - * @param resultCodes - * Result Codes representing successful execution. These will be temp. merged with {@link Shell#addResultCode(Integer)}. - * - * @param validater - * A {@link OnShellValidateListener} instance or NULL - * - * @param listener - * A {@link OnShellResultListener} callback instance - */ - public synchronized void executeAsync(final String[] commands, final Integer[] resultCodes, final OnShellValidateListener validater, final OnShellResultListener listener) { - if(Common.DEBUG)Log.d(TAG, "executeAsync: Starting an async shell execution"); - - /* - * If someone execute more than one async task after another, and use the same listener, - * we could end up getting the result in the wrong order. We need to make sure that each Thread is started in the correct order. - */ - final Object lock = new Object(); - - new Thread() { - @Override - public void run() { - Result result = null; - - synchronized (lock) { - lock.notifyAll(); - } - - synchronized(mLock) { - result = Shell.this.execute(commands, resultCodes, validater); - } - - listener.onShellResult(result); - } - - }.start(); - - /* - * Do not exit this method, until the Thread is started. - */ - synchronized (lock) { - try { - lock.wait(); - - } catch (InterruptedException e) {} - } - } - - /** - * For internal usage - */ - public static void sendBroadcast(String key, Bundle data) { - for (Shell instance : mInstances) { - instance.broadcastReciever(key, data); - } - } - - /** - * For internal usage - */ - protected void broadcastReciever(String key, Bundle data) { - for (OnShellBroadcastListener recievers : mBroadcastRecievers) { - recievers.onShellBroadcast(key, data); - } - } - - /** - * For internal usage - */ - public void addBroadcastListener(OnShellBroadcastListener listener) { - mBroadcastRecievers.add(listener); - } - - /** - * Add a shell connection listener. This callback will be invoked whenever the connection to - * the shell changes. - * - * @param listener - * A {@link OnShellConnectionListener} callback instance - */ - public void addShellConnectionListener(OnShellConnectionListener listener) { - mConnectionRecievers.add(listener); - } - - /** - * Remove a shell connection listener from the stack. - * - * @param listener - * A {@link OnShellConnectionListener} callback instance - */ - public void removeShellConnectionListener(OnShellConnectionListener listener) { - mConnectionRecievers.remove(listener); - } - - /** - * Check whether or not root was requested for this shell. - */ - public Boolean isRoot() { - return mIsRoot; - } - - /** - * Check whether or not a shell connection was established. - */ - public Boolean isConnected() { - return mIsConnected; - } - - /** - * Get the current shell execution timeout. - * This is the time in milliseconds from which an execution is killed in case it has stalled. - */ - public Integer getTimeout() { - return mShellTimeout; - } - - /** - * Change the shell execution timeout. This should be in milliseconds. - * If this is set to '0', there will be no timeout. - */ - public void setTimeout(Integer timeout) { - if (timeout >= 0) { - mShellTimeout = timeout; - } - } - /** - * Add another result code that represent a successful execution. By default only '0' is used, since - * most shell commands uses '0' for success and '1' for error. But some commands uses different values, like 'cat' - * that uses '130' as success when piping content. - * - * @param resultCode - * The result code to add to the stack - */ - public void addResultCode(Integer resultCode) { - mResultCodes.add(resultCode); - } - - /** - * Remove a result code from the stack. - * - * @see Shell#addResultCode(Integer) - * - * @param resultCode - * The result code to remove from the stack - */ - public void removeResultCode(Integer resultCode) { - mResultCodes.remove(resultCode); - } - - /** - * Reset the stack containing result codes and set it back to default only containing '0'. - * - * @see Shell#addResultCode(Integer) - */ - public void resetResultCodes() { - mResultCodes.clear(); - mResultCodes.add(0); - } - - /** - * Close the shell connection using 'exit 0' if possible, or by force and release all data stored in this instance. - */ - public void destroy() { - if (mStream != null) { - mIsConnected = false; - - if (mStream.isRunning() || !mStream.isActive()) { - if(Common.DEBUG)Log.d(TAG, "destroy: Destroying the stream"); - - mStream.destroy(); - - } else { - if(Common.DEBUG)Log.d(TAG, "destroy: Making a clean exit on the stream"); - - execute("exit 0"); - } - - mStream = null; - mInstances.remove(this); - mBroadcastRecievers.clear(); - } - } - - /** - * Locate whichever toolbox in {@value Common#BINARIES} that supports a specific command.

- * - * Example: String("cat") might return String("busybox cat") or String("toolbox cat") - * - * @param bin - * The command to check - */ - public String findCommand(String bin) { - if (!mBinaries.containsKey(bin)) { - for (String toolbox : Common.BINARIES) { - String cmd = toolbox != null && toolbox.length() > 0 ? toolbox + " " + bin : bin; - Result result = execute( cmd + " -h" ); - - if (result != null) { - String line = result.getLine(); - - if (!line.endsWith("not found") && !line.endsWith("such tool")) { - mBinaries.put(bin, cmd); break; - } - } - } - } - - return mBinaries.get(bin); - } - - /** - * Create a new instance of {@link Attempts} - * - * @param command - * The command to convert into multiple attempts - */ - public Attempts createAttempts(String command) { - if (command != null) { - return new Attempts(command); - } - - return null; - } - - /** - * Open a new RootFW {@link FileReader}. This is the same as {@link FileReader#FileReader(Shell, String)}. - * - * @param file - * Path to the file - * - * @return - * NULL if the file could not be opened - */ - public FileReader getFileReader(String file) { - try { - return new FileReader(this, file); - - } catch (FileNotFoundException e) { - return null; - } - } - - /** - * Open a new RootFW {@link FileWriter}. This is the same as {@link FileWriter#FileWriter(Shell, String, boolean)}. - * - * @param file - * Path to the file - * - * @param append - * Whether or not to append new content to existing content - * - * @return - * NULL if the file could not be opened - */ - public FileWriter getFileWriter(String file, Boolean append) { - try { - return new FileWriter(this, file, append); - - } catch (IOException e) { - return null; - } - } - - /** - * Get a new {@link File} instance. - * - * @param file - * Path to the file or directory - */ - public File getFile(String file) { - return new File(this, file); - } - - /** - * Get a new {@link Filesystem} instance. - */ - public Filesystem getFilesystem() { - return new Filesystem(this); - } - - /** - * Get a new {@link Disk} instance. - * - * @param disk - * Path to a disk, partition or a mount point - */ - public Disk getDisk(String disk) { - return new Disk(this, disk); - } - - - /** - * Get a new {@link Device} instance. - */ - public Device getDevice() { - return new Device(this); - } - - /** - * Get a new {@link Process} instance. - * - * @param process - * The name of the process - */ - public Process getProcess(String process) { - return new Process(this, process); - } - - /** - * Get a new {@link Process} instance. - * - * @param pid - * The process id - */ - public Process getProcess(Integer pid) { - return new Process(this, pid); - } - - /** - * Get a new {@link Memory} instance. - */ - public Memory getMemory() { - return new Memory(this); - } - - /** - * Get a new {@link CompCache} instance. - */ - public CompCache getCompCache() { - return new CompCache(this); - } - - /** - * Get a new {@link Swap} instance. - * - * @param device - * The /dev/ swap device - */ - public Swap getSwap(String device) { - return new Swap(this, device); - } -} diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/ShellStream.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/ShellStream.java deleted file mode 100644 index a6c19ed..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/ShellStream.java +++ /dev/null @@ -1,363 +0,0 @@ -/* - * Copyright (C) 2014 Vlad Mihalachi - * - * This file is part of Text Editor 8000. - * - * Text Editor 8000 is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Text Editor 8000 is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package com.spazedog.lib.rootfw4; - -import java.io.BufferedReader; -import java.io.DataOutputStream; -import java.io.IOException; -import java.io.InputStreamReader; -import java.util.ArrayList; -import java.util.List; - -import android.util.Log; - -/** - * This class opens a connection to the shell and creates a consistent output stream - * that can be read using the {@link OnStreamListener} interface. It also - * contains an input stream that can be used to execute shell commands. - */ -public class ShellStream { - public static final String TAG = Common.TAG + ".ShellStream"; - - protected Process mConnection; - - protected DataOutputStream mStdInput; - protected BufferedReader mStdOutput; - - protected Thread mStdOutputWorker; - - protected OnStreamListener mListener; - - protected final Counter mCounter = new Counter(); - protected final Object mLock = new Object(); - protected Boolean mIsActive = false; - protected Boolean mIsRoot = false; - - protected String mCommandEnd = "EOL:a00c38d8:EOL"; - - protected static class Counter { - private volatile Integer mCount = 0; - private volatile Object mLock = new Object(); - - public Integer size() { - synchronized(mLock) { - return mCount; - } - } - - public Integer encrease() { - synchronized(mLock) { - return (mCount += 1); - } - } - - public Integer decrease() { - synchronized(mLock) { - return mCount > 0 ? (mCount -= 1) : (mCount = 0); - } - } - - public void reset() { - synchronized(mLock) { - mCount = 0; - } - } - } - - /** - * This interface is used to read the input from the shell. - */ - public static interface OnStreamListener { - /** - * This is called before a command is sent to the shell output stream. - */ - public void onStreamStart(); - - /** - * This is called on each line from the shell input stream. - * - * @param inputLine - * The current shell input line that is being processed - */ - public void onStreamInput(String outputLine); - - /** - * This is called after all shell input has been processed. - * - * @param exitCode - * The exit code returned by the shell - */ - public void onStreamStop(Integer resultCode); - - /** - * This is called when the shell connection dies. - * This can either be because a command executed 'exit', or if the method {@link ShellStream#destroy()} was called. - */ - public void onStreamDied(); - } - - /** - * Connect to a shell and create a consistent I/O stream. - */ - public ShellStream(Boolean requestRoot, OnStreamListener listener) { - try { - if(Common.DEBUG)Log.d(TAG, "Construct: Establishing a new shell stream"); - - ProcessBuilder builder = new ProcessBuilder(requestRoot ? "su" : "sh"); - builder.redirectErrorStream(true); - - mIsRoot = requestRoot; - mIsActive = true; - mListener = listener; - mConnection = builder.start(); - mStdInput = new DataOutputStream(mConnection.getOutputStream()); - mStdOutput = new BufferedReader(new InputStreamReader(mConnection.getInputStream())); - - mStdOutputWorker = new Thread() { - @Override - public void run() { - String output = null; - - try { - while (mIsActive && (output = mStdOutput.readLine()) != null) { - if (mListener != null && mCounter.size() > 0) { - if (output.contains(mCommandEnd)) { - Integer result = 0; - - try { - if (output.startsWith(mCommandEnd)) { - result = Integer.parseInt(output.substring(mCommandEnd.length()+1)); - - } else { - result = 1; - } - - } catch (Throwable e) { - Log.w(TAG, e.getMessage(), e); - } - - mListener.onStreamStop(result); - mCounter.decrease(); - - synchronized(mLock) { - mLock.notifyAll(); - } - - } else { - mListener.onStreamInput(output); - } - } - } - - } catch (IOException e) { - Log.w(TAG, e.getMessage(), e); output = null; - } - - if (output == null) { - ShellStream.this.destroy(); - } - } - }; - - mStdOutputWorker.start(); - - } catch (IOException e) { - Log.w(TAG, e.getMessage(), e); mIsActive = false; - } - } - - /** - * Send a command to the shell input stream.

- * - * This method is executed asynchronous. If you need to wait until the command finishes, - * then use {@link ShellStream#waitFor()}. - * - * @param command - * The command to send to the shell - */ - public synchronized void execute(final String command) { - final Object lock = new Object(); - - new Thread() { - @Override - public void run() { - mCounter.encrease(); - - synchronized(lock) { - lock.notifyAll(); - } - - synchronized(mLock) { - if (waitFor(0, -1)) { - mListener.onStreamStart(); - - String input = command + "\n"; - input += " echo " + mCommandEnd + " $?\n"; - - try { - mStdInput.write( input.getBytes() ); - - /* - * Things often get written to the shell without flush(). - * This breaks when using exit, as it some times get destroyed before reaching here. - */ - if (mStdInput != null) { - mStdInput.flush(); - } - - } catch (IOException e) { - Log.w(TAG, e.getMessage(), e); - } - } - } - } - - }.start(); - - synchronized (lock) { - try { - lock.wait(); - - } catch (InterruptedException e) {} - } - } - - /** - * Sleeps until the shell is done with a current command and ready for new input. - * - * @see {@link ShellStream#waitFor(Integer)} - * - * @return - * True if the shell connection is OK or false on connection error - */ - public Boolean waitFor() { - return waitFor(0, 0); - } - - /** - * Sleeps until the shell is done with a current command and ready for new input, - * or until the specified timeout has expired.

- * - * Note that this method keeps track of the order of executions. This means that - * the shell might not be ready, just because this lock was cleared. There might have been - * added more locks after this one was set. - * - * @param timeout - * Timeout in milliseconds - * - * @return - * True if the shell connection is OK or false on connection error - */ - public Boolean waitFor(Integer timeout) { - return waitFor(timeout, 0); - } - - /** - * This is an internal method, which is used to change which object to add a lock to. - */ - protected Boolean waitFor(Integer timeout, Integer index) { - Integer counter = mCounter.size()+index; - - if (counter > 0) { - Long timeoutMilis = timeout > 0 ? System.currentTimeMillis() + timeout : 0L; - - synchronized(mLock) { - while (mCounter.size() > 0 && mIsActive) { - try { - counter -= 1; - - mLock.wait(timeout.longValue()); - - if (timeout > 0 && System.currentTimeMillis() >= timeoutMilis) { - return mCounter.size() == 0 && mIsActive; - - } else if (counter <= 0) { - return mIsActive; - } - - } catch (InterruptedException e) { - Log.w(TAG, e.getMessage(), e); - } - } - } - } - - return mIsActive; - } - - /** - * Check whether there is a connection to the shell. - * - * @return - * True if there is a connection or False if not - */ - public Boolean isActive() { - return mIsActive; - } - - /** - * Check whether the shell is currently busy processing a command. - * - * @return - * True if the shell is busy or False otherwise - */ - public Boolean isRunning() { - return mCounter.size() > 0; - } - - /** - * Check whether or not root was requested for this instance. - */ - public Boolean isRoot() { - return mIsRoot; - } - - /** - * Close the shell connection.

- * - * This will force close the connection. Use this only when running a consistent command (if {@link ShellStream#isRunning()} returns true). - * When possible, sending the 'exit' command to the shell is a better choice.

- * - * This method is executed asynchronous. - */ - public synchronized void destroy() { - if (mStdInput != null) { - mIsActive = false; - - mCounter.reset(); - - try { - mStdInput.close(); - mStdInput = null; - - } catch (IOException e) {} - - mStdOutputWorker.interrupt(); - mStdOutputWorker = null; - - synchronized (mLock) { - mLock.notifyAll(); - } - - mListener.onStreamDied(); - mListener = null; - } - } -} diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/containers/BasicContainer.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/containers/BasicContainer.java deleted file mode 100644 index 636d16d..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/containers/BasicContainer.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * This file is part of the RootFW Project: https://github.com/spazedog/rootfw - * - * Copyright (c) 2015 Daniel Bergløv - * - * RootFW is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - - * RootFW is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General Public License - * along with RootFW. If not, see - */ - -package com.spazedog.lib.rootfw4.containers; - -import java.util.HashMap; -import java.util.Map; - -public abstract class BasicContainer { - private Map mObjects = new HashMap(); - - public void putObject(String name, Object object) { - mObjects.put(name, object); - } - - public Object getObject(String name) { - return mObjects.get(name); - } -} diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/containers/Data.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/containers/Data.java deleted file mode 100644 index c4b3221..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/containers/Data.java +++ /dev/null @@ -1,414 +0,0 @@ -/* - * This file is part of the RootFW Project: https://github.com/spazedog/rootfw - * - * Copyright (c) 2015 Daniel Bergløv - * - * RootFW is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - - * RootFW is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General Public License - * along with RootFW. If not, see - */ - -package com.spazedog.lib.rootfw4.containers; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; - -import android.text.TextUtils; - -/** - * This container is used to store any kind of data. All of the data is located within a String Array, where each index is considered a line. - */ -@SuppressWarnings("unchecked") -public class Data> extends BasicContainer { - protected String[] mLines; - - /** - * This interface is used as the argument for the sort() and assort() methods. It can be used to create custom sorting of the data array. - */ - public static interface DataSorting { - /** - * The method which checks the line and determines whether or not it should be added or removed from the array. - *
- * Note that the sort() method will remove the line upon false, whereas assort() will remove it upon true. - * - * @param input - * One line of the data array - */ - public Boolean test(String input); - } - - /** - * This interface is used as the argument for the replace() method. It can be used to replace or alter lines in the output. - */ - public static interface DataReplace { - /** - * This method is used to alter the lines in the data array. Each line is parsed to this method, and whatever is returned will replace the current line. - * - * @param input - * One line of the data array - */ - public String replace(String input); - } - - /** - * Create a new Data instance. - * - * @param lines - * An array representing the lines of the data - */ - public Data(String[] lines) { - mLines = lines; - } - - /** - * This can be used to replace part of a line, or the whole line. It uses the replace() method in the DataSorting interface where custom replacement of a line can be done. It parses the original line as an argument, and requires the new line to be returned. - * - * @param DataSorting - * An instance of the DataSorting class which should handle the line replacement - * - * @return - * This instance - */ - public DATATYPE replace(DataReplace dataReplace) { - if (size() > 0) { - List list = new ArrayList(); - - for (int i=0; i < mLines.length; i++) { - list.add( dataReplace.replace(mLines[i]) ); - } - } - - return (DATATYPE) this; - } - - /** - * This can be used to replace whole lines based on a contained pattern. - * - * @param contains - * The pattern which the line should contain - * - * @param newLine - * The new line that should be used as a replacement - * - * @return - * This instance - */ - public DATATYPE replace(final String contains, final String newLine) { - return (DATATYPE) replace(new DataReplace() { - @Override - public String replace(String input) { - return input != null && input.contains(contains) ? newLine : input; - } - }); - } - - /** - * This is used to determine whether or not to remove lines from the data array. Each line will be parsed to the custom DataSorting instance and then removed upon a true return. - * - * @param DataSorting - * An instance of the DataSorting class which should determine whether or not to remove the line - * - * @return - * This instance - */ - public DATATYPE assort(DataSorting test) { - if (size() > 0) { - List list = new ArrayList(); - - for (int i=0; i < mLines.length; i++) { - if (!test.test(mLines[i])) { - list.add(mLines[i]); - } - } - - mLines = list.toArray( new String[list.size()] ); - } - - return (DATATYPE) this; - } - - /** - * This is used to determine whether or not to remove lines from the data array. Each line will be compared to the argument. If the line contains anything from the argument, it will be removed from the data array. - * - * @param contains - * A string to locate within each line to determine whether or not to remove the line - * - * @return - * This instance - */ - public DATATYPE assort(final String contains) { - return (DATATYPE) assort(new DataSorting() { - @Override - public Boolean test(String input) { - return input.contains( contains ); - } - }); - } - - /** - * This is used to determine whether or not to keep lines in the data array. Each line will be parsed to the custom DataSorting instance and then removed upon a false return. - * - * @param DataSorting - * An instance of the DataSorting interface which should determine whether or not to keep the line - * - * @return - * This instance - */ - public DATATYPE sort(DataSorting test) { - if (size() > 0) { - List list = new ArrayList(); - - for (int i=0; i < mLines.length; i++) { - if (test.test(mLines[i])) { - list.add(mLines[i]); - } - } - - mLines = list.toArray( new String[list.size()] ); - } - - return (DATATYPE) this; - } - - /** - * This is used to determine whether or not to keep lines in the data array. Each line will be compared to the argument. If the line contains anything from the argument, it will not be removed from the data array. - * - * @param contains - * A string to locate within each line to determine whether or not to remove the line - * - * @return - * This instance - */ - public DATATYPE sort(final String contains) { - return (DATATYPE) sort(new DataSorting() { - public Boolean test(String input) { - return input.contains( contains ); - } - }); - } - - /** - * @see Data#sort(Integer, Integer) - */ - public DATATYPE sort(Integer start) { - return (DATATYPE) sort(start, mLines.length); - } - - /** - * This is used to determine whether or not to keep lines in the data array. The method will keep each index within the start and stop indexes parsed via the arguments. - *
- * Note that the method will also except negative values. - * - *
- *
Example 1:
- *
Remove the first and last index in the array
- *
sort(1, -1)
- *
- * - *
- *
Example 2:
- *
Only keep the first and last index in the array
- *
sort(-1, 1)
- *
- * - * @param start - * Where to start - * - * @param stop - * Where to stop - * - * @return - * This instance - */ - public DATATYPE sort(Integer start, Integer stop) { - if (size() > 0) { - List list = new ArrayList(); - Integer begin = start < 0 ? (mLines.length + start) : start; - Integer end = stop < 0 ? (mLines.length + stop) : stop; - - Integer[] min = null, max = null; - - if (begin > end) { - if (end == 0) { - min = new Integer[]{ begin }; - max = new Integer[]{ mLines.length }; - - } else { - min = new Integer[]{ 0, begin }; - max = new Integer[]{ end, mLines.length }; - } - - } else { - min = new Integer[]{ begin }; - max = new Integer[]{ end }; - } - - for (int i=0; i < min.length; i++) { - for (int x=min[i]; x < max[i]; x++) { - list.add(mLines[x]); - } - } - - mLines = list.toArray( new String[list.size()] ); - } - - return (DATATYPE) this; - } - - /** - * This is used to determine whether or not to remove lines from the data array. The method will remove each index within the start and stop indexes parsed via the arguments. - *
- * Note that the method will also except negative values. - * - *
- *
Example 1:
- *
Remove the first and last index in the array
- *
sort(-1, 1)
- *
- * - *
- *
Example 2:
- *
Only keep the first and last index in the array
- *
sort(1, -1)
- *
- * - * @param start - * Where to start - * - * @param stop - * Where to stop - * - * @return - * This instance - */ - public DATATYPE assort(Integer start, Integer stop) { - return (DATATYPE) sort(stop, start); - } - - /** - * @see Data#assort(Integer, Integer) - */ - public DATATYPE assort(Integer start) { - return (DATATYPE) assort(mLines.length, start); - } - - /** - * This method will remove all of the empty lines from the data array - * - * @return - * This instance - */ - public DATATYPE trim() { - if (size() > 0) { - List list = new ArrayList(); - - for (int i=0; i < mLines.length; i++) { - if (mLines[i].trim().length() > 0) { - list.add(mLines[i]); - } - } - - mLines = list.toArray( new String[list.size()] ); - } - - return (DATATYPE) this; - } - - /** - * This will return the data array - * - * @return - * The data array - */ - public String[] getArray() { - return mLines; - } - - /** - * This will return a string of the data array with added line breakers - * - * @return - * The data array as a string - */ - public String getString() { - return getString("\n"); - } - - /** - * This will return a string of the data array with custom characters used as line breakers - * - * @param start - * A separator character used to separate each line - * - * @return - * The data array as a string - */ - public String getString(String separater) { - return mLines == null ? null : TextUtils.join(separater, Arrays.asList(mLines)); - } - - /** - * @return - * The last non-empty line of the data array - */ - public String getLine() { - return getLine(-1, true); - } - - /** - * @see Data#getLine(Integer, Boolean) - */ - public String getLine(Integer aLineNumber) { - return getLine(aLineNumber, false); - } - - /** - * This will return one specified line of the data array. - *
- * Note that this also takes negative number to get a line from the end and up - * - * @param aLineNumber - * The line number to return - * - * @param aSkipEmpty - * Whether or not to include empty lines - * - * @return - * The specified line - */ - public String getLine(Integer aLineNumber, Boolean aSkipEmpty) { - if (size() > 0) { - Integer count = aLineNumber < 0 ? (mLines.length + aLineNumber) : aLineNumber; - - while(count >= 0 && count < mLines.length) { - if (!aSkipEmpty || mLines[count].trim().length() > 0) { - return mLines[count].trim(); - } - - count = aLineNumber < 0 ? (count - 1) : (count + 1); - } - } - - return null; - } - - /** - * Count the lines in the data array - * - * @return - * The number of lines - */ - public Integer size() { - return mLines == null ? 0 : mLines.length; - } -} diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Device.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Device.java deleted file mode 100644 index 552b70a..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Device.java +++ /dev/null @@ -1,444 +0,0 @@ -/* - * This file is part of the RootFW Project: https://github.com/spazedog/rootfw - * - * Copyright (c) 2015 Daniel Bergløv - * - * RootFW is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - - * RootFW is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General Public License - * along with RootFW. If not, see - */ - -package com.spazedog.lib.rootfw4.utils; - -import java.util.ArrayList; -import java.util.List; -import java.util.regex.Pattern; - -import android.content.Context; -import android.os.PowerManager; -import android.util.Log; - -import com.spazedog.lib.rootfw4.Common; -import com.spazedog.lib.rootfw4.Shell; -import com.spazedog.lib.rootfw4.Shell.Result; -import com.spazedog.lib.rootfw4.containers.BasicContainer; - -public class Device { - public static final String TAG = Common.TAG + ".Device"; - - protected final static Pattern oPatternPidMatch = Pattern.compile("^[0-9]+$"); - protected final static Pattern oPatternSpaceSearch = Pattern.compile("[ \t]+"); - - protected Shell mShell; - - /** - * This is a container class used to store information about a process. - */ - public static class ProcessInfo extends BasicContainer { - private String mPath; - private String mProcess; - private Integer mProcessId; - - /** - * @return - * The process path (Could be NULL) as not all processes has a path assigned - */ - public String path() { - return mPath; - } - - /** - * @return - * The name of the process - */ - public String name() { - return mProcess; - } - - /** - * @return - * The pid of the process - */ - public Integer pid() { - return mProcessId; - } - } - - public Device(Shell shell) { - mShell = shell; - } - - /** - * Return a list of all active processes. - */ - public ProcessInfo[] getProcessList() { - return getProcessList(null); - } - - /** - * Return a list of all active processes which names matches 'pattern'. - * Note that this does not provide an advanced search, it just checks whether or not 'pattern' exists in the process name. - * - * @param pattern - * The pattern to search for - */ - public ProcessInfo[] getProcessList(String pattern) { - String[] files = mShell.getFile("/proc").getList(); - - if (files != null) { - List processes = new ArrayList(); - String process = null; - String path = null; - - for (int i=0; i < files.length; i++) { - if (oPatternPidMatch.matcher(files[i]).matches()) { - if ((process = mShell.getFile("/proc/" + files[i] + "/cmdline").readOneLine()) == null) { - if ((process = mShell.getFile("/proc/" + files[i] + "/stat").readOneLine()) != null) { - try { - if (pattern == null || process.contains(pattern)) { - process = oPatternSpaceSearch.split(process.trim())[1]; - process = process.substring(1, process.length()-1); - - } else { - continue; - } - - } catch(Throwable e) { process = null; } - } - - } else if (pattern == null || process.contains(pattern)) { - if (process.contains("/")) { - try { - path = process.substring(process.indexOf("/"), process.contains("-") ? process.indexOf("-", process.lastIndexOf("/", process.indexOf("-"))) : process.length()); - } catch (Throwable e) { path = null; } - - if (!process.startsWith("/")) { - process = process.substring(0, process.indexOf("/")); - - } else { - try { - process = process.substring(process.lastIndexOf("/", process.contains("-") ? process.indexOf("-") : process.length())+1, process.contains("-") ? process.indexOf("-", process.lastIndexOf("/", process.indexOf("-"))) : process.length()); - - } catch (Throwable e) { process = null; } - } - - } else if (process.contains("-")) { - process = process.substring(0, process.indexOf("-")); - } - - } else { - continue; - } - - if (pattern == null || (process != null && process.contains(pattern))) { - ProcessInfo stat = new ProcessInfo(); - stat.mPath = path; - stat.mProcess = process; - stat.mProcessId = Integer.parseInt(files[i]); - - processes.add(stat); - } - } - } - - return processes.toArray( new ProcessInfo[ processes.size() ] ); - } - - return null; - } - - /** - * Reboots the device into the recovery.

- * - * This method first tries using the {@link PowerManager}, if that fails it fallbacks on using the reboot command from toolbox.

- * - * Note that using the {@link PowerManager} requires your app to optain the 'REBOOT' permission. If you don't want this, just parse NULL as {@link Context} - * and the method will use the fallback. This however is more likely to fail, as many toolbox versions does not support the reboot command. - * And since only the kernel can write to the CBC, we need a native caller to invoke this. So there is no fallback for missing toolbox support when it comes - * to rebooting into the recovery. - * - * @param context - * A {@link Context} or NULL to skip using the {@link PowerManager} - */ - public Boolean rebootRecovery(Context context) { - if (context != null) { - try { - PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE); - pm.reboot(null); - - /* - * This will never be reached if the reboot is successful - */ - return false; - - } catch (Throwable e) {} - } - - Result result = mShell.execute("toolbox reboot recovery"); - - return result != null && result.wasSuccessful(); - } - - /** - * Invokes a soft reboot on the device (Restart all services) by using a sysrq trigger. - */ - public Boolean rebootSoft() { - Result result = mShell.execute("echo 1 > /proc/sys/kernel/sysrq && echo s > /proc/sysrq-trigger && echo e > /proc/sysrq-trigger"); - - return result != null && result.wasSuccessful(); - } - - /** - * Reboots the device.

- * - * This method first tries using the reboot command from toolbox. - * But since some toolbox versions does not have this, it further fallbacks on using a sysrq trigger. - */ - public Boolean reboot() { - Result result = mShell.execute("toolbox reboot"); - - if (result == null || !result.wasSuccessful()) { - result = mShell.execute("echo 1 > /proc/sys/kernel/sysrq && echo s > /proc/sysrq-trigger && echo b > /proc/sysrq-trigger"); - } - - return result != null && result.wasSuccessful(); - } - - /** - * Shuts down the device.

- * - * This method first tries using the reboot command from toolbox. - * But since some toolbox versions does not have this, it further fallbacks on using a sysrq trigger. - */ - public Boolean shutdown() { - Result result = mShell.execute("toolbox reboot -p"); - - if (result == null || !result.wasSuccessful()) { - result = mShell.execute("echo 1 > /proc/sys/kernel/sysrq && echo s > /proc/sysrq-trigger && echo o > /proc/sysrq-trigger"); - } - - return result != null && result.wasSuccessful(); - } - - /** - * Get a new {@link Process} instance - * - * @param process - * The name of the process - */ - public Process getProcess(String process) { - return new Process(mShell, process); - } - - /** - * Get a new {@link Process} instance - * - * @param pid - * The process id - */ - public Process getProcess(Integer pid) { - return new Process(mShell, pid); - } - - public static class Process extends Device { - - protected Integer mPid; - protected String mProcess; - - public Process(Shell shell, String process) { - super(shell); - - if (oPatternPidMatch.matcher(process).matches()) { - mPid = Integer.parseInt(process); - - } else { - mProcess = process; - } - } - - public Process(Shell shell, Integer pid) { - super(shell); - - mPid = pid; - } - - /** - * Get the pid of the current process. - * If you initialized this object using a process id, this method will return that id. - * Otherwise it will return the first found pid in /proc. - */ - public Integer getPid() { - /* - * A process might have more than one pid. So we never cache a search. If mPid is not null, - * then a specific pid was chosen for this instance, and this is what we should work with. - * But if a process name was chosen, we should never cache the pid as we might one the next one if we kill this process or it dies or reboots. - */ - if (mPid != null) { - return mPid; - } - - /* - * Busybox returns 1 both when pidof is not supported and if the process does not exist. - * We need to check if we have some kind of pidof support from either busybox, toolbox or another registered binary. - * If not, we fallback on a /proc search. - */ - String cmd = mShell.findCommand("pidof"); - - if (cmd != null) { - Result result = mShell.execute(cmd + " '" + mProcess + "'"); - - String pids = result.getLine(); - - if (pids != null) { - try { - return Integer.parseInt(oPatternSpaceSearch.split(pids.trim())[0]); - - } catch (Throwable e) { - Log.w(TAG, e.getMessage(), e); - } - } - - } else { - ProcessInfo[] processes = getProcessList(); - - if (processes != null) { - for (int i=0; i < processes.length; i++) { - if (mProcess.equals(processes[i].name())) { - return processes[i].pid(); - } - } - } - } - - return 0; - } - - /** - * Get a list of all pid's for this process name. - */ - public Integer[] getPids() { - String name = getName(); - String cmd = mShell.findCommand("pidof"); - - if (cmd != null) { - Result result = mShell.createAttempts(cmd + " '" + name + "'").execute(); - - if (result != null && result.wasSuccessful()) { - String pids = result.getLine(); - - if (pids != null) { - String[] parts = oPatternSpaceSearch.split(pids.trim()); - Integer[] values = new Integer[ parts.length ]; - - for (int i=0; i < parts.length; i++) { - try { - values[i] = Integer.parseInt(parts[i]); - - } catch(Throwable e) {} - } - - return values; - } - } - - } else { - ProcessInfo[] processes = getProcessList(); - - if (name != null && processes != null && processes.length > 0) { - List list = new ArrayList(); - - for (int i=0; i < processes.length; i++) { - if (name.equals(processes[i].name())) { - list.add(processes[i].pid()); - } - } - - return list.toArray( new Integer[ list.size() ] ); - } - } - - return null; - } - - /** - * Get the process name of the current process. - * If you initialized this object using a process name, this method will return that name. - * Otherwise it will locate it in /proc based on the pid. - */ - public String getName() { - if (mProcess != null) { - return mProcess; - } - - String process = null; - - if ((process = mShell.getFile("/proc/" + mPid + "/cmdline").readOneLine()) == null) { - if ((process = mShell.getFile("/proc/" + mPid + "/stat").readOneLine()) != null) { - try { - process = oPatternSpaceSearch.split(process.trim())[1]; - process = process.substring(1, process.length()-1); - - } catch(Throwable e) { process = null; } - } - - } else if (process.contains("/")) { - if (!process.startsWith("/")) { - process = process.substring(0, process.indexOf("/")); - - } else { - try { - process = process.substring(process.lastIndexOf("/", process.contains("-") ? process.indexOf("-") : process.length())+1, process.contains("-") ? process.indexOf("-", process.lastIndexOf("/", process.indexOf("-"))) : process.length()); - - } catch (Throwable e) { process = null; } - } - - } else if (process.contains("-")) { - process = process.substring(0, process.indexOf("-")); - } - - return process; - } - - /** - * Kill this process. - * If you initialized this object using a pid, only this single process will be killed. - * If you used a process name, all processes with this process name will be killed. - */ - public Boolean kill() { - Result result = null; - - if (mPid != null) { - result = mShell.createAttempts("kill -9 '" + mPid + "'").execute(); - - } else { - result = mShell.createAttempts("killall '" + mProcess + "'").execute(); - - /* - * Toolbox does not support killall - */ - if (result == null || !result.wasSuccessful()) { - Integer[] pids = getPids(); - - for (Integer pid : pids) { - result = mShell.createAttempts("kill -9 '" + pid + "'").execute(); - - if (result == null || !result.wasSuccessful()) { - return false; - } - } - } - } - - return result != null && result.wasSuccessful(); - } - } -} diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/File.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/File.java deleted file mode 100644 index 007b545..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/File.java +++ /dev/null @@ -1,1734 +0,0 @@ -/* - * This file is part of the RootFW Project: https://github.com/spazedog/rootfw - * - * Copyright (c) 2015 Daniel Bergløv - * - * RootFW is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - - * RootFW is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General Public License - * along with RootFW. If not, see - */ - -package com.spazedog.lib.rootfw4.utils; - -import java.io.BufferedReader; -import java.io.BufferedWriter; -import java.io.FileInputStream; -import java.io.FileOutputStream; -import java.io.InputStream; -import java.io.OutputStream; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.regex.Pattern; - -import android.content.Context; -import android.os.Bundle; -import android.text.TextUtils; -import android.util.Log; - -import com.spazedog.lib.rootfw4.Common; -import com.spazedog.lib.rootfw4.Shell; -import com.spazedog.lib.rootfw4.Shell.Attempts; -import com.spazedog.lib.rootfw4.Shell.OnShellBroadcastListener; -import com.spazedog.lib.rootfw4.Shell.OnShellResultListener; -import com.spazedog.lib.rootfw4.Shell.OnShellValidateListener; -import com.spazedog.lib.rootfw4.Shell.Result; -import com.spazedog.lib.rootfw4.containers.BasicContainer; -import com.spazedog.lib.rootfw4.containers.Data; -import com.spazedog.lib.rootfw4.containers.Data.DataSorting; -import com.spazedog.lib.rootfw4.utils.Filesystem.DiskStat; -import com.spazedog.lib.rootfw4.utils.Filesystem.MountStat; -import com.spazedog.lib.rootfw4.utils.io.FileReader; -import com.spazedog.lib.rootfw4.utils.io.FileWriter; - -public class File { - public static final String TAG = Common.TAG + ".File"; - - protected final static Pattern oPatternEscape = Pattern.compile("([\"\'`\\\\])"); - protected final static Pattern oPatternColumnSearch = Pattern.compile("[ ]{2,}"); - protected final static Pattern oPatternSpaceSearch = Pattern.compile("[ \t]+"); - protected final static Pattern oPatternStatSplitter = Pattern.compile("\\|"); - protected final static Pattern oPatternStatSearch = Pattern.compile("^([a-z-]+)(?:[ \t]+([0-9]+))?[ \t]+([0-9a-z_]+)[ \t]+([0-9a-z_]+)(?:[ \t]+(?:([0-9]+),[ \t]+)?([0-9]+))?[ \t]+([A-Za-z]+[ \t]+[0-9]+[ \t]+[0-9:]+|[0-9-/]+[ \t]+[0-9:]+)[ \t]+(?:(.*) -> )?(.*)$"); - - protected final static Map oOctals = new HashMap(); - static { - oOctals.put("1:r", 400); - oOctals.put("2:w", 200); - oOctals.put("3:x", 100); - oOctals.put("3:s", 4100); - oOctals.put("3:S", 4000); - oOctals.put("4:r", 40); - oOctals.put("5:w", 20); - oOctals.put("6:x", 10); - oOctals.put("6:s", 2010); - oOctals.put("6:S", 2000); - oOctals.put("7:r", 4); - oOctals.put("8:w", 2); - oOctals.put("9:x", 1); - oOctals.put("9:t", 1001); - oOctals.put("9:T", 1000); - } - - protected java.io.File mFile; - protected Shell mShell; - protected final Object mLock = new Object(); - - protected Integer mExistsLevel = -1; - protected Integer mFolderLevel = -1; - protected Integer mLinkLevel = -1; - - /** - * This class is extended from the Data class. As for now, there is nothing custom added to this class. But it might differ from the Data class at some point. - */ - public static class FileData extends Data { - public FileData(String[] lines) { - super(lines); - } - } - - /** - * This class is a container which is used by {@link FileExtender#getDetails()} and {@link FileExtender#getDetailedList(Integer)} - */ - public static class FileStat extends BasicContainer { - private String mName; - private String mLink; - private String mType; - private Integer mUser; - private Integer mGroup; - private String mAccess; - private Integer mPermission; - private String mMM; - private Long mSize; - - /** - * @return - * The filename - */ - public String name() { - return mName; - } - - /** - * @return - * The path to the original file if this is a symbolic link - */ - public String link() { - return mLink; - } - - /** - * @return - * The file type ('d'=>Directory, 'f'=>File, 'b'=>Block Device, 'c'=>Character Device, 'l'=>Symbolic Link) - */ - public String type() { - return mType; - } - - /** - * @return - * The owners user id - */ - public Integer user() { - return mUser; - } - - /** - * @return - * The owners group id - */ - public Integer group() { - return mGroup; - } - - /** - * @return - * The files access string like (drwxrwxr-x) - */ - public String access() { - return mAccess; - } - - /** - * @return - * The file permissions like (0755) - */ - public Integer permission() { - return mPermission; - } - - /** - * @return - * The file Major:Minor number (If this is a Block or Character device file) - */ - public String mm() { - return mMM; - } - - /** - * @return - * The file size in bytes - */ - public Long size() { - return mSize; - } - } - - public File(Shell shell, String file) { - mFile = new java.io.File(file); - mShell = shell; - - /* - * This broadcast listener lets us update information about files in other instances of this class. - * Some information uses a lot of resources to gather and are quite persistent, and by using this mechanism, we can cache those information - * and still have them updated when needed. - */ - mShell.addBroadcastListener(new OnShellBroadcastListener() { - @Override - public void onShellBroadcast(String key, Bundle data) { - if ("file".equals(key)) { - String action = data.getString("action"); - String location = data.getString("location"); - - if ("exists".equals(action) && (getAbsolutePath().equals(location) || getAbsolutePath().startsWith(location + "/"))) { - mExistsLevel = -1; - mFolderLevel = -1; - mLinkLevel = -1; - - } else if ("moved".equals(action) && getAbsolutePath().equals(location)) { - mFile = new java.io.File(data.getString("destination")); - } - } - } - }); - } - - /** - * Get information about this file or folder. This will return information like - * size (on files), path to linked file (on links), permissions, group, user etc. - * - * @return - * A new {@link FileStat} object with all the file information - */ - public FileStat getDetails() { - synchronized (mLock) { - if (exists()) { - FileStat[] stat = getDetailedList(1); - - if (stat != null && stat.length > 0) { - String name = mFile.getName(); - - if (stat[0].name().equals(".")) { - stat[0].mName = name; - - return stat[0]; - - } else if (stat[0].name().equals(name)) { - return stat[0]; - - } else { - /* On devices without busybox, we could end up using limited toolbox versions - * that does not support the "-a" argument in it's "ls" command. In this case, - * we need to do a more manual search for folders. - */ - stat = getParentFile().getDetailedList(); - - if (stat != null && stat.length > 0) { - for (int i=0; i < stat.length; i++) { - if (stat[i].name().equals(name)) { - return stat[i]; - } - } - } - } - } - } - - return null; - } - } - - /** - * @see #getDetailedList(Integer) - */ - public FileStat[] getDetailedList() { - return getDetailedList(0); - } - - /** - * This is the same as {@link #getDetails()}, only this will provide a whole list - * with information about each item in a directory. - * - * @param maxLines - * The max amount of lines to return. This also excepts negative numbers. 0 equals all lines. - * - * @return - * An array of {@link FileStat} object - */ - public FileStat[] getDetailedList(Integer maxLines) { - synchronized (mLock) { - if (exists()) { - String path = getAbsolutePath(); - String[] attemptCommands = new String[]{"ls -lna '" + path + "'", "ls -la '" + path + "'", "ls -ln '" + path + "'", "ls -l '" + path + "'"}; - - for (String command : attemptCommands) { - Result result = mShell.createAttempts(command).execute(); - - if (result.wasSuccessful()) { - List list = new ArrayList(); - String[] lines = result.trim().getArray(); - Integer maxIndex = (maxLines == null || maxLines == 0 ? lines.length : (maxLines < 0 ? lines.length + maxLines : maxLines)); - - for (int i=0,indexCount=1; i < lines.length && indexCount <= maxIndex; i++) { - /* There are a lot of different output from the ls command, depending on the arguments supported, whether we used busybox or toolbox and the versions of the binaries. - * We need some serious regexp help to sort through all of the different output options. - */ - String[] parts = oPatternStatSplitter.split( oPatternStatSearch.matcher(lines[i]).replaceAll("$1|$3|$4|$5|$6|$8|$9") ); - - if (parts.length == 7) { - FileStat stat = new FileStat(); - - stat.mType = parts[0].substring(0, 1).equals("-") ? "f" : parts[0].substring(0, 1); - stat.mAccess = parts[0]; - stat.mUser = Common.getUID(parts[1]); - stat.mGroup = Common.getUID(parts[2]); - stat.mSize = parts[4].equals("null") || !parts[3].equals("null") ? 0L : Long.parseLong(parts[4]); - stat.mMM = parts[3].equals("null") ? null : parts[3] + ":" + parts[4]; - stat.mName = parts[5].equals("null") ? parts[6].substring( parts[6].lastIndexOf("/") + 1 ) : parts[5].substring( parts[5].lastIndexOf("/") + 1 ); - stat.mLink = parts[5].equals("null") ? null : parts[6]; - stat.mPermission = 0; - - for (int x=1; x < stat.mAccess.length(); x++) { - Character ch = stat.mAccess.charAt(x); - Integer number = oOctals.get(x + ":" + ch); - - if (number != null) { - stat.mPermission += number; - } - } - - if (stat.mName.contains("/")) { - stat.mName = stat.mName.substring( stat.mName.lastIndexOf("/")+1 ); - } - - list.add(stat); - - indexCount++; - } - } - - return list.toArray( new FileStat[ list.size() ] ); - } - } - } - - return null; - } - } - - /** - * This will provide a simple listing of a directory. - * For a more detailed listing, use {@link #getDetailedList()} instead. - * - * @return - * An array with the names of all the items in the directory - */ - public String[] getList() { - synchronized (mLock) { - if (isDirectory()) { - String[] list = mFile.list(); - - if (list == null) { - String path = getAbsolutePath(); - String[] commands = new String[]{"ls -a1 '" + path + "'", "ls -a '" + path + "'", "ls '" + path + "'"}; - - for (int i=0; i < commands.length; i++) { - Result result = mShell.createAttempts(commands[i]).execute(); - - if (result != null && result.wasSuccessful()) { - if (i == 0) { - result.sort(new DataSorting(){ - @Override - public Boolean test(String input) { - return !".".equals(input) && !"..".equals(input); - } - }); - - return result.getArray(); - - } else { - /* - * Most toolbox versions supports very few flags, and 'ls -a' on toolbox might return - * a list, whereas busybox mostly returns columns. So we need to be able to handle both types of output. - * Some toolbox versions does not support any flags at all, and they differ from each version about what kind of output - * they return. - */ - String[] lines = oPatternColumnSearch.split( result.trim().getString(" ").trim() ); - List output = new ArrayList(); - - for (String line : lines) { - if (!".".equals(line) && !"..".equals(line)) { - output.add(line); - } - } - - return output.toArray(new String[output.size()]); - } - } - } - } - - return list; - } - - return null; - } - } - - /** - * Extract the first line of the file. - * - * @return - * The first line of the file as a string - */ - public String readOneLine() { - synchronized (mLock) { - if (isFile()) { - try { - BufferedReader reader = new BufferedReader(new java.io.FileReader(mFile)); - String line = reader.readLine(); - reader.close(); - - return line; - - } catch (Throwable e) { - String[] attemptCommands = new String[]{"sed -n '1p' '" + getAbsolutePath() + "' 2> /dev/null", "cat '" + getAbsolutePath() + "' 2> /dev/null"}; - - for (String command : attemptCommands) { - Result result = mShell.createAttempts(command).execute(); - - if (result != null && result.wasSuccessful()) { - return result.getLine(0); - } - } - } - } - - return null; - } - } - - /** - * Extract the content from the file and return it. - * - * @return - * The entire file content wrapped in a {@link FileData} object - */ - public FileData read() { - synchronized (mLock) { - if (isFile()) { - try { - BufferedReader reader = new BufferedReader(new java.io.FileReader(mFile)); - List content = new ArrayList(); - String line; - - while ((line = reader.readLine()) != null) { - content.add(line); - } - - reader.close(); - - return new FileData( content.toArray( new String[ content.size() ] ) ); - - } catch(Throwable e) { - Result result = mShell.createAttempts("cat '" + getAbsolutePath() + "' 2> /dev/null").execute(); - - if (result != null && result.wasSuccessful()) { - return new FileData( result.getArray() ); - } - } - } - - return null; - } - } - - /** - * Search the file line by line to find a match for a specific word or sentence and return all of the matched lines or the ones not matching. - * - * @param match - * Word or sentence to match - * - * @param invert - * Whether or not to return the non-matching lines instead - * - * @return - * All of the matched or non-matched lines wrapped in a {@link FileData} object - */ - public FileData readMatch(final String match, final Boolean invert) { - synchronized (mLock) { - if (isFile()) { - try { - BufferedReader reader = new BufferedReader(new java.io.FileReader(mFile)); - List content = new ArrayList(); - String line; - - while ((line = reader.readLine()) != null) { - if (invert != line.contains(match)) { - content.add(line); - } - } - - reader.close(); - - return new FileData( content.toArray( new String[ content.size() ] ) ); - - } catch (Throwable e) { - String escapedMatch = oPatternEscape.matcher(match).replaceAll("\\\\$1"); - - /* - * 'grep' returns failed on 0 matches, which will normally make the shell continue it's attempts. - * So we use a validate listener to check the output. If there is no real errors, then we will have no output. - */ - Result result = mShell.createAttempts("grep " + (invert ? "-v " : "") + "'" + escapedMatch + "' '" + getAbsolutePath() + "'").execute(new OnShellValidateListener(){ - @Override - public Boolean onShellValidate(String command, Integer result, List output, Set resultCodes) { - return result.equals(0) || output.size() == 0; - } - }); - - if (result.wasSuccessful()) { - return new FileData( result.getArray() ); - - } else { - result = mShell.createAttempts("cat '" + getAbsolutePath() + "' 2> /dev/null").execute(); - - if (result != null && result.wasSuccessful()) { - result.sort(new DataSorting() { - @Override - public Boolean test(String input) { - return invert != input.contains(match); - } - }); - - return new FileData( result.getArray() ); - } - } - } - } - - return null; - } - } - - /** - * @see #write(String[], Boolean) - */ - public Boolean write(String input) { - return write(input.trim().split("\n"), false); - } - - /** - * @see #write(String[], Boolean) - */ - public Boolean write(String input, Boolean append) { - return write(input.trim().split("\n"), append); - } - - /** - * @see #write(String[], Boolean) - */ - public Boolean write(String[] input) { - return write(input, false); - } - - /** - * Write data to the file. The data should be an array where each index is a line that should be written to the file. - *
- * If the file does not already exist, it will be created. - * - * @param input - * The data that should be written to the file - * - * @param append - * Whether or not to append the data to the existing content in the file - * - * @return - * True if the data was successfully written to the file, False otherwise - */ - public Boolean write(String[] input, Boolean append) { - synchronized (mLock) { - Boolean status = false; - - if (input != null && !isDirectory()) { - try { - BufferedWriter output = new BufferedWriter(new java.io.FileWriter(mFile, append)); - - for (String line : input) { - output.write(line); - output.newLine(); - } - - output.close(); - status = true; - - } catch(Throwable e) { - String redirect = append ? ">>" : ">"; - String path = getAbsolutePath(); - - for (String line : input) { - String escapedInput = oPatternEscape.matcher(line).replaceAll("\\\\$1"); - Attempts attempts = mShell.createAttempts("echo '" + escapedInput + "' " + redirect + " '" + path + "' 2> /dev/null"); - Result result = attempts.execute(); - - if (result != null && !(status = result.wasSuccessful())) { - break; - } - - redirect = ">>"; - } - } - - /* - * Alert other instances using this file, that the state might have changed. - */ - if (status) { - Bundle bundle = new Bundle(); - bundle.putString("action", "exists"); - bundle.putString("location", getAbsolutePath()); - - Shell.sendBroadcast("file", bundle); - } - } - - return status; - } - } - - /** - * @see #write(String[], Boolean) - */ - public Result writeResult(String input) { - return writeResult(input.trim().split("\n"), false); - } - - public Result writeResult(String[] input, Boolean append) { - synchronized (mLock) { - Boolean status = false; - Result result = null; - - if (input != null && !isDirectory()) { - try { - BufferedWriter output = new BufferedWriter(new java.io.FileWriter(mFile, append)); - - for (String line : input) { - output.write(line); - output.newLine(); - } - - output.close(); - status = true; - - } catch(Throwable e) { - String redirect = append ? ">>" : ">"; - String path = getAbsolutePath(); - - for (String line : input) { - String escapedInput = oPatternEscape.matcher(line).replaceAll("\\\\$1"); - Attempts attempts = mShell.createAttempts("echo '" + escapedInput + "' " + redirect + " '" + path + "' 2> /dev/null"); - result = attempts.execute(); - - if (result != null && !(status = result.wasSuccessful())) { - break; - } - - redirect = ">>"; - } - } - - /* - * Alert other instances using this file, that the state might have changed. - */ - if (status) { - Bundle bundle = new Bundle(); - bundle.putString("action", "exists"); - bundle.putString("location", getAbsolutePath()); - - Shell.sendBroadcast("file", bundle); - } - } - - return result; - } - } - - /** - * Remove the file. - * Folders will be recursively cleaned before deleting. - * - * @return - * True if the file was deleted, False otherwise - */ - public Boolean remove() { - synchronized (mLock) { - Boolean status = false; - - if (exists()) { - String[] fileList = getList(); - String path = getAbsolutePath(); - - if (fileList != null) { - for (String intry : fileList) { - if(!getFile(path + "/" + intry).remove()) { - return false; - } - } - } - - if (!(status = mFile.delete())) { - String rmCommand = isFile() || isLink() ? "unlink" : "rmdir"; - String[] commands = new String[]{"rm -rf '" + path + "' 2> /dev/null", rmCommand + " '" + path + "' 2> /dev/null"}; - - for (String command : commands) { - Result result = mShell.createAttempts(command).execute(); - - if (result != null && (status = result.wasSuccessful())) { - break; - } - } - } - - /* - * Alert other instances using this file, that the state might have changed. - */ - if (status) { - Bundle bundle = new Bundle(); - bundle.putString("action", "exists"); - bundle.putString("location", path); - - Shell.sendBroadcast("file", bundle); - } - - } else { - status = true; - } - - return status; - } - } - - /** - * Create a new directory based on the path from this file object. - * - * @see #createDirectories() - * - * @return - * True if the directory was created successfully or if it existed to begin with, False oherwise - */ - public Boolean createDirectory() { - synchronized (mLock) { - Boolean status = false; - - if (!exists()) { - if (!(status = mFile.mkdir())) { - Result result = mShell.createAttempts("mkdir '" + getAbsolutePath() + "' 2> /dev/null").execute(); - - if (result == null || !(status = result.wasSuccessful())) { - return false; - } - } - - /* - * Alert other instances using this directory, that the state might have changed. - */ - if (status) { - Bundle bundle = new Bundle(); - bundle.putString("action", "exists"); - bundle.putString("location", getAbsolutePath()); - - Shell.sendBroadcast("file", bundle); - } - - } else { - status = isDirectory(); - } - - return status; - } - } - - /** - * Create a new directory based on the path from this file object. - * The method will also create any missing parent directories. - * - * @see #createDirectory() - * - * @return - * True if the directory was created successfully - */ - public Boolean createDirectories() { - synchronized (mLock) { - Boolean status = false; - - if (!exists()) { - if (!(status = mFile.mkdirs())) { - Result result = mShell.createAttempts("mkdir -p '" + getAbsolutePath() + "' 2> /dev/null").execute(); - - if (result == null || !(status = result.wasSuccessful())) { - /* - * Some toolbox version does not support the '-p' flag in 'mkdir' - */ - String[] dirs = getAbsolutePath().substring(1).split("/"); - String path = ""; - - for (String dir : dirs) { - path = path + "/" + dir; - - if (!(status = getFile(path).createDirectory())) { - return false; - } - } - } - } - - /* - * Alert other instances using this directory, that the state might have changed. - */ - if (status) { - Bundle bundle = new Bundle(); - bundle.putString("action", "exists"); - bundle.putString("location", getAbsolutePath()); - - Shell.sendBroadcast("file", bundle); - } - - } else { - status = isDirectory(); - } - - return status; - } - } - - /** - * Create a link to this file. - * - * @param linkPath - * Path (Including name) to the link which should be created - * - * @return - * True on success, False otherwise - */ - public Boolean createLink(String linkPath) { - synchronized (mLock) { - File linkFile = getFile(linkPath); - Boolean status = false; - - if (exists() && !linkFile.exists()) { - Result result = mShell.createAttempts("ln -s '" + getAbsolutePath() + "' '" + linkFile.getAbsolutePath() + "' 2> /dev/null").execute(); - - if (result == null || !(status = result.wasSuccessful())) { - return false; - } - - /* - * Alert other instances using this directory, that the state might have changed. - */ - if (status) { - Bundle bundle = new Bundle(); - bundle.putString("action", "exists"); - bundle.putString("location", linkFile.getAbsolutePath()); - - Shell.sendBroadcast("file", bundle); - } - - } else if (exists() && linkFile.isLink()) { - status = getAbsolutePath().equals(linkFile.getCanonicalPath()); - } - - return status; - } - } - - /** - * Create a reference from this path to another (This will become the link) - * - * @param linkPath - * Path (Including name) to the original location - * - * @return - * True on success, False otherwise - */ - public Boolean createAsLink(String originalPath) { - return getFile(originalPath).createLink(getAbsolutePath()); - } - - /** - * @see #move(String, Boolean) - */ - public Boolean move(String dstPath) { - return move(dstPath, false); - } - - /** - * Move the file to another location. - * - * @param dstPath - * The destination path including the file name - * - * @return - * True on success, False otherwise - */ - public Boolean move(String dstPath, Boolean overwrite) { - synchronized (mLock) { - Boolean status = false; - - if (exists()) { - File dstFile = getFile(dstPath); - - if (!dstFile.exists() || (overwrite && dstFile.remove())) { - if (!(status = mFile.renameTo(dstFile.mFile))) { - Result result = mShell.createAttempts("mv '" + getAbsolutePath() + "' '" + dstFile.getAbsolutePath() + "'").execute(); - - if (result == null || !(status = result.wasSuccessful())) { - return false; - } - } - } - - /* - * Alert other instances using this file, that it has been moved. - */ - if (status) { - Bundle bundle = new Bundle(); - bundle.putString("action", "exists"); - bundle.putString("location", dstFile.getAbsolutePath()); - Shell.sendBroadcast("file", bundle); - - bundle.putString("action", "moved"); - bundle.putString("location", getAbsolutePath()); - bundle.putString("destination", dstFile.getAbsolutePath()); - - mFile = dstFile.mFile; - Shell.sendBroadcast("file", bundle); - } - } - - return status; - } - } - - /** - * Rename the file. - * - * @param name - * The new name to use - * - * @return - * True on success, False otherwise - */ - public Boolean rename(String name) { - return move( (getParentPath() == null ? "" : getParentPath()) + "/" + name, false ); - } - - /** - * @see #copy(String, Boolean, Boolean) - */ - public Boolean copy(String dstPath) { - return copy(dstPath, false, false); - } - - /** - * @see #copy(String, Boolean, Boolean) - */ - public Boolean copy(String dstPath, Boolean overwrite) { - return copy(dstPath, overwrite, false); - } - - /** - * Copy the file to another location. - * - * @param dstPath - * The destination path - * - * @param overwrite - * Overwrite any existing files. If false, then folders will be merged if a destination folder exist. - * - * @param preservePerms - * Preserve permissions - * - * @return - * True on success, False otherwise - */ - public Boolean copy(String dstPath, Boolean overwrite, Boolean preservePerms) { - synchronized (mLock) { - Boolean status = false; - - if (exists()) { - File dstFile = getFile(dstPath); - FileStat stat = null; - - /* - * On overwrite, delete the destination if it exists, and make sure that we are able to recreate - * destination directory, if the source is one. - * - * On non-overwrite, skip files if they exists, or merge if source and destination are directories. - */ - if (isLink()) { - if (!dstFile.exists() || (overwrite && dstFile.remove())) { - stat = getDetails(); - - if (stat == null || stat.link() == null || !(status = dstFile.createAsLink(stat.link()))) { - return false; - } - } - - } else if (isDirectory() && (!overwrite || (!dstFile.exists() || dstFile.remove())) && ((!dstFile.exists() && dstFile.createDirectories()) || dstFile.isDirectory())) { - String[] list = getList(); - - if (list != null) { - status = true; - String srcAbsPath = getAbsolutePath(); - String dstAbsPath = dstFile.getAbsolutePath(); - - for (String entry : list) { - File entryFile = getFile(srcAbsPath + "/" + entry); - - if (!(status = entryFile.copy(dstAbsPath + "/" + entry, overwrite, preservePerms))) { - if (entryFile.isDirectory() || overwrite == entryFile.exists()) { - return false; - - } else { - status = true; - } - } - } - } - - } else if (!isDirectory() && (!dstFile.exists() || (overwrite && dstFile.remove()))) { - try { - InputStream input = new FileInputStream(mFile); - OutputStream output = new FileOutputStream(dstFile.mFile); - - byte[] buffer = new byte[1024]; - Integer length; - - while ((length = input.read(buffer)) > 0) { - output.write(buffer, 0, length); - } - - input.close(); - output.close(); - - status = true; - - } catch (Throwable e) { - Result result = mShell.createAttempts("cat '" + getAbsolutePath() + "' > '" + dstFile.getAbsolutePath() + "' 2> /dev/null").execute(); - - if (result == null || !(status = result.wasSuccessful())) { - return false; - } - } - } - - if (status) { - Bundle bundle = new Bundle(); - bundle.putString("action", "exists"); - bundle.putString("location", dstFile.getAbsolutePath()); - - Shell.sendBroadcast("file", bundle); - - if (preservePerms) { - if (stat == null) { - stat = getDetails(); - } - - dstFile.changeAccess(stat.user(), stat.group(), stat.permission(), false); - } - } - } - - return status; - } - } - - /** - * @see #changeAccess(String, String, Integer, Boolean) - */ - public Boolean changeAccess(String user, String group, Integer mod) { - return changeAccess(Common.getUID(user), Common.getUID(group), mod, false); - } - - /** - * @see #changeAccess(Integer, Integer, Integer, Boolean) - */ - public Boolean changeAccess(Integer user, Integer group, Integer mod) { - return changeAccess(user, group, mod, false); - } - - /** - * Change ownership (user and group) and permissions on a file or directory.

- * - * Never use octal numbers for the permissions like '0775'. Always write it as '775', otherwise it will be converted - * and your permissions will not be changed to the expected value. The reason why this argument is an Integer, is to avoid - * things like 'a+x', '+x' and such. While this is supported in Linux normally, few Android binaries supports it as they have been - * stripped down to the bare minimum. - * - * @param user - * The user name or NULL if this should not be changed - * - * @param group - * The group name or NULL if this should not be changed - * - * @param mod - * The octal permissions or -1 if this should not be changed - * - * @param recursive - * Change the access recursively - */ - public Boolean changeAccess(String user, String group, Integer mod, Boolean recursive) { - return changeAccess(Common.getUID(user), Common.getUID(group), mod, recursive); - } - - /** - * Change ownership (user and group) and permissions on a file or directory.

- * - * Never use octal numbers for the permissions like '0775'. Always write it as '775', otherwise it will be converted - * and your permissions will not be changed to the expected value. The reason why this argument is an Integer, is to avoid - * things like 'a+x', '+x' and such. While this is supported in Linux normally, few Android binaries supports it as they have been - * stripped down to the bare minimum. - * - * @param user - * The uid or -1 if this should not be changed - * - * @param group - * The gid or -1 if this should not be changed - * - * @param mod - * The octal permissions or -1 if this should not be changed - * - * @param recursive - * Change the access recursively - */ - public Boolean changeAccess(Integer user, Integer group, Integer mod, Boolean recursive) { - synchronized (mLock) { - StringBuilder builder = new StringBuilder(); - - if ((user != null && user >= 0) || (group != null && group >= 0)) { - builder.append("%binary chown "); - - if (recursive) - builder.append("-R "); - - if (user != null && user >= 0) - builder.append("" + user); - - if (group != null && group >= 0) - builder.append("." + user); - } - - if (mod != null && mod > 0) { - if (builder.length() > 0) - builder.append(" && "); - - builder.append("%binary chmod "); - - if (recursive) - builder.append("-R "); - - builder.append((mod <= 777 ? "0" : "") + mod); - } - - if (builder.length() > 0) { - builder.append(" '" + getAbsolutePath() + "'"); - - Result result = mShell.createAttempts(builder.toString()).execute(); - - if (result != null && result.wasSuccessful()) { - return true; - } - } - } - - return false; - } - - /** - * Calculates the size of a file or folder.

- * - * Note that on directories with a lot of sub-folders and files, - * this can be a slow operation. - * - * @return - * 0 if the file does not exist, or if it is actually 0 in size of course. - */ - public Long size() { - synchronized (mLock) { - Long size = 0L; - - if (exists()) { - if (isDirectory()) { - String[] list = getList(); - - if (list != null) { - String path = getAbsolutePath(); - - for (String entry : list) { - size += getFile(path + "/" + entry).size(); - } - } - - } else if ((size = mFile.length()) == 0) { - String path = getAbsolutePath(); - String[] commands = new String[]{"wc -c < '" + path + "' 2> /dev/null", "wc < '" + path + "' 2> /dev/null"}; - Result result = null; - - for (int i=0; i < commands.length; i++) { - result = mShell.createAttempts(commands[i]).execute(); - - if (result != null && result.wasSuccessful()) { - try { - size = Long.parseLong( (i > 0 ? oPatternSpaceSearch.split(result.getLine().trim())[2] : result.getLine()) ); - - } catch (Throwable e) { - result = null; - } - - break; - } - } - - if (result == null || !result.wasSuccessful()) { - FileStat stat = getDetails(); - - if (stat != null) { - size = stat.size(); - } - } - } - } - - return size; - } - } - - /** - * Make this file executable and run it in the shell. - */ - public Result runInShell() { - synchronized(mLock) { - if (isFile() && changeAccess(-1, -1, 777)) { - return mShell.execute(getAbsolutePath()); - } - - return null; - } - } - - /** - * Make this file executable and run it asynchronized in the shell. - * - * @param listener - * An {@link OnShellResultListener} which will receive the output - */ - public void runInShell(OnShellResultListener listener) { - synchronized(mLock) { - if (isFile() && changeAccess(-1, -1, 777)) { - mShell.executeAsync(getAbsolutePath(), listener); - } - } - } - - /** - * Reboot into recovery and run this file/package - *
- * This method will add a command file in /cache/recovery which will tell the recovery the location of this - * package. The recovery will then run the package and then automatically reboot back into Android. - *
- * Note that this will also work on ROM's that changes the cache location or device. The method will - * locate the real internal cache partition, and it will also mount it at a second location - * if it is not already mounted. - * - * @param context - * A {@link Context} that can be used together with the Android REBOOT permission - * to use the PowerManager to reboot into recovery. This can be set to NULL - * if you want to just use the toolbox reboot command, however do note that not all - * toolbox versions support this command. - * - * @param args - * Arguments which will be parsed to the recovery package. - * Each argument equels one prop line. - *
- * Each prop line is added to /cache/recovery/rootfw.prop and named (argument[argument number] = [value]). - * For an example, if first argument is "test", it will be written to rootfw.prop as (argument1 = test). - * - * @return - * False if it failed - */ - public Boolean runInRecovery(Context context, String... args) { - if (isFile()) { - String cacheLocation = "/cache"; - MountStat mountStat = mShell.getDisk(cacheLocation).getFsDetails(); - - if (mountStat != null) { - DiskStat diskStat = mShell.getDisk( mountStat.device() ).getDiskDetails(); - - if (diskStat == null || !cacheLocation.equals(diskStat.location())) { - if (diskStat == null) { - mShell.getDisk("/").mount(new String[]{"rw"}); - cacheLocation = "/cache-int"; - - if (!getFile(cacheLocation).createDirectory()) { - return false; - - } else if (!mShell.getDisk(mountStat.device()).mount(cacheLocation)) { - return false; - } - - mShell.getDisk("/").mount(new String[]{"ro"}); - - } else { - cacheLocation = diskStat.location(); - } - } - } - - if (getFile(cacheLocation + "/recovery").createDirectory()) { - if (getFile(cacheLocation + "/recovery/command").write("--update_package=" + getResolvedPath())) { - if (args != null && args.length > 0) { - String[] lines = new String[ args.length ]; - - for (int i=0; i < args.length; i++) { - lines[i] = "argument" + (i+1) + "=" + args[i]; - } - - if (!getFile(cacheLocation + "/recovery/rootfw.prop").write(lines)) { - getFile(cacheLocation + "/recovery/command").remove(); - - return false; - } - } - - if (mShell.getDevice().rebootRecovery(context)) { - return true; - } - - getFile(cacheLocation + "/recovery/command").remove(); - } - } - } - - return false; - } - - /** - * Extract data from an Android Assets Path (files located in /assets/) and add it to the current file location. - * If the file already exist, it will be overwritten. Otherwise the file will be created. - * - * @param context - * An android Context object - * - * @param asset - * The assets path - * - * @return - * True on success, False otherwise - */ - public Boolean extractResource(Context context, String asset) { - try { - InputStream input = context.getAssets().open(asset); - Boolean status = extractResource(input); - input.close(); - - return status; - - } catch(Throwable e) { return false; } - } - - /** - * Extract data from an Android resource id (files located in /res/) and add it to the current file location. - * If the file already exist, it will be overwritten. Otherwise the file will be created. - * - * @param context - * An android Context object - * - * @param resourceid - * The InputStream to read from - * - * @return - * True on success, False otherwise - */ - public Boolean extractResource(Context context, Integer resourceid) { - try { - InputStream input = context.getResources().openRawResource(resourceid); - Boolean status = extractResource(input); - input.close(); - - return status; - - } catch(Throwable e) { return false; } - } - - /** - * Extract data from an InputStream and add it to the current file location. - * If the file already exist, it will be overwritten. Otherwise the file will be created. - * - * @param resource - * The InputStream to read from - * - * @return - * True on success, False otherwise - */ - public Boolean extractResource(InputStream resource) { - synchronized(mLock) { - if (!isDirectory()) { - try { - FileWriter writer = getFileWriter(); - - if (writer != null) { - byte[] buffer = new byte[1024]; - int loc = 0; - - while ((loc = resource.read(buffer)) > 0) { - writer.write(buffer, 0, loc); - } - - writer.close(); - } - - } catch (Throwable e) { - Log.e(TAG, e.getMessage(), e); - } - } - - return false; - } - } - - /** - * Get a {@link FileWriter} pointing at this file - */ - public FileWriter getFileWriter() { - if (isFile()) { - try { - return new FileWriter(mShell, getAbsolutePath(), false); - - } catch (Throwable e) { - Log.e(TAG, e.getMessage(), e); - } - } - - return null; - } - - /** - * Get a {@link FileReader} pointing at this file - */ - public FileReader getFileReader() { - if (isFile()) { - try { - return new FileReader(mShell, getAbsolutePath()); - - } catch (Throwable e) { - Log.e(TAG, e.getMessage(), e); - } - } - - return null; - } - - /** - * @return - * True if the file exists, False otherwise - */ - public Boolean exists() { - synchronized(mLock) { - if (mExistsLevel < 0) { - mExistsLevel = 0; - - /* - * We cannot trust a false value, since restricted files will return false. - * But we can trust a true value, so we only do a shell check on false return. - */ - if (!mFile.exists()) { - Attempts attempts = mShell.createAttempts("( %binary test -e '" + getAbsolutePath() + "' && echo true ) || ( %binary test ! -e '" + getAbsolutePath() + "' && echo false )"); - Result result = attempts.execute(); - - if (result != null && result.wasSuccessful()) { - mExistsLevel = "true".equals(result.getLine()) ? 1 : 0; - - } else { - /* - * Some toolsbox version does not have the 'test' command. - * Instead we try 'ls' on the file and check for errors, not pretty but affective. - */ - result = mShell.createAttempts("ls '" + getAbsolutePath() + "' > /dev/null 2>&1").execute(); - - if (result != null && result.wasSuccessful()) { - mExistsLevel = 1; - } - } - - } else { - mExistsLevel = 1; - } - } - - return mExistsLevel > 0; - } - } - - /** - * @return - * True if the file exists and if it is an folder, False otherwise - */ - public Boolean isDirectory() { - synchronized (mLock) { - if (mFolderLevel < 0) { - mFolderLevel = 0; - - if (exists()) { - /* - * If it exists, but is neither a file nor a directory, then we better do a shell check - */ - if (!mFile.isDirectory() && !mFile.isFile()) { - Attempts attempts = mShell.createAttempts("( %binary test -d '" + getAbsolutePath() + "' && echo true ) || ( %binary test ! -d '" + getAbsolutePath() + "' && echo false )"); - Result result = attempts.execute(); - - if (result != null && result.wasSuccessful()) { - mFolderLevel = "true".equals(result.getLine()) ? 1 : 0; - - } else { - /* - * A few toolbox versions does not include the 'test' command - */ - FileStat stat = getCanonicalFile().getDetails(); - - if (stat != null) { - mFolderLevel = "d".equals(stat.type()) ? 1 : 0; - } - } - - } else { - mFolderLevel = mFile.isDirectory() ? 1 : 0; - } - } - } - - return mFolderLevel > 0; - } - } - - /** - * @return - * True if the file is a link, False otherwise - */ - public Boolean isLink() { - synchronized (mLock) { - if (mLinkLevel < 0) { - mLinkLevel = 0; - - if (exists()) { - Attempts attempts = mShell.createAttempts("( %binary test -L '" + getAbsolutePath() + "' && echo true ) || ( %binary test ! -L '" + getAbsolutePath() + "' && echo false )"); - Result result = attempts.execute(); - - if (result != null && result.wasSuccessful()) { - mLinkLevel = "true".equals(result.getLine()) ? 1 : 0; - - } else { - /* - * A few toolbox versions does not include the 'test' command - */ - FileStat stat = getDetails(); - - if (stat != null) { - mLinkLevel = "l".equals(stat.type()) ? 1 : 0; - } - } - } - } - - return mLinkLevel > 0; - } - } - - - /** - * @return - * True if the item exists and if it is an file, False otherwise - */ - public Boolean isFile() { - synchronized (mLock) { - return exists() && !isDirectory(); - } - } - - /** - * Returns the absolute path. An absolute path is a path that starts at a root of the file system. - * - * @return - * The absolute path - */ - public String getAbsolutePath() { - return mFile.getAbsolutePath(); - } - - /** - * Returns the path used to create this object. - * - * @return - * The parsed path - */ - public String getPath() { - return mFile.getPath(); - } - - /** - * Returns the parent path. Note that on folders, this means the parent folder. - * However, on files, it will return the folder path that the file resides in. - * - * @return - * The parent path - */ - public String getParentPath() { - return mFile.getParent(); - } - - /** - * Get a real absolute path.

- * - * Java's getAbsolutePath is not a fully resolved path. Something like ./file could be returned as /folder/folder2/.././file or simular. - * This method however will resolve a path and return a fully absolute path /folder/file. It is a bit slower, so only use it when this is a must. - */ - public String getResolvedPath() { - synchronized (mLock) { - String path = getAbsolutePath(); - - if (path.contains(".")) { - String[] directories = ("/".equals(path) ? path : path.endsWith("/") ? path.substring(1, path.length() - 1) : path.substring(1)).split("/"); - List resolved = new ArrayList(); - - for (int i=0; i < directories.length; i++) { - if (directories[i].equals("..")) { - if (resolved.size() > 0) { - resolved.remove( resolved.size()-1 ); - } - - } else if (!directories[i].equals(".")) { - resolved.add(directories[i]); - } - } - - path = resolved.size() > 0 ? "/" + TextUtils.join("/", resolved) : "/"; - } - - return path; - } - } - - /** - * Get the canonical path of this file or folder. - * This means that if this is a link, you will get the path to the target, no matter how many links are in between. - * It also means that things like /folder1/../folder2 will be resolved to /folder2. - * - * @return - * The canonical path - */ - public String getCanonicalPath() { - synchronized (mLock) { - if (exists()) { - try { - /* - * First let's try using the native tools - */ - String canonical = mFile.getCanonicalPath(); - - if (canonical != null) { - return canonical; - } - - } catch(Throwable e) {} - - /* - * Second we try using readlink, if the first failed. - */ - Result result = mShell.createAttempts("readlink -f '" + getAbsolutePath() + "' 2> /dev/null").execute(); - - if (result.wasSuccessful()) { - return result.getLine(); - - } else { - /* - * And third we fallback to a slower but affective method - */ - FileStat stat = getDetails(); - - if (stat != null && stat.link() != null) { - String realPath = stat.link(); - - while ((stat = getFile(realPath).getDetails()) != null && stat.link() != null) { - realPath = stat.link(); - } - - return realPath; - } - - return getAbsolutePath(); - } - } - - return null; - } - } - - /** - * Open a new {@link File} object pointed at another file. - * - * @param fileName - * The file to point at - * - * @return - * A new instance of this class representing another file - */ - public File getFile(String file) { - return new File(mShell, file); - } - - /** - * Open a new {@link File} object with the parent of this file. - * - * @return - * A new instance of this class representing the parent directory - */ - public File getParentFile() { - return new File(mShell, getParentPath()); - } - - /** - * If this is a link, this method will return a new {@link File} object with the real path attached. - * - * @return - * A new instance of this class representing the real path of a possible link - */ - public File getCanonicalFile() { - return new File(mShell, getCanonicalPath()); - } - - /** - * @return - * The name of the file - */ - public String getName() { - return mFile.getName(); - } -} diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Filesystem.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Filesystem.java deleted file mode 100644 index 38c8a57..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Filesystem.java +++ /dev/null @@ -1,693 +0,0 @@ -/* - * This file is part of the RootFW Project: https://github.com/spazedog/rootfw - * - * Copyright (c) 2015 Daniel Bergløv - * - * RootFW is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - - * RootFW is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General Public License - * along with RootFW. If not, see - */ - -package com.spazedog.lib.rootfw4.utils; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashSet; -import java.util.List; -import java.util.Locale; -import java.util.Set; -import java.util.regex.Pattern; - -import android.text.TextUtils; - -import com.spazedog.lib.rootfw4.Common; -import com.spazedog.lib.rootfw4.Shell; -import com.spazedog.lib.rootfw4.Shell.Result; -import com.spazedog.lib.rootfw4.containers.BasicContainer; -import com.spazedog.lib.rootfw4.utils.File.FileData; - -public class Filesystem { - public static final String TAG = Common.TAG + ".Filesystem"; - - protected final static Pattern oPatternSpaceSearch = Pattern.compile("[ \t]+"); - protected final static Pattern oPatternSeparatorSearch = Pattern.compile(","); - protected final static Pattern oPatternPrefixSearch = Pattern.compile("^.*[A-Za-z]$"); - - protected static MountStat[] oFstabList; - protected static final Object oFstabLock = new Object(); - - protected Shell mShell; - protected Object mLock = new Object(); - - /** - * This is a container used to store disk information. - */ - public static class DiskStat extends BasicContainer { - private String mDevice; - private String mLocation; - private Long mSize; - private Long mUsage; - private Long mAvailable; - private Integer mPercentage; - - /** - * @return - * Device path - */ - public String device() { - return mDevice; - } - - /** - * @return - * Mount location - */ - public String location() { - return mLocation; - } - - /** - * @return - * Disk size in bytes - */ - public Long size() { - return mSize; - } - - /** - * @return - * Disk usage size in bytes - */ - public Long usage() { - return mUsage; - } - - /** - * @return - * Disk available size in bytes - */ - public Long available() { - return mAvailable; - } - - /** - * @return - * Disk usage percentage - */ - public Integer percentage() { - return mPercentage; - } - } - - /** - * This is a container used to store mount information. - */ - public static class MountStat extends BasicContainer { - private String mDevice; - private String mLocation; - private String mFstype; - private String[] mOptions; - - /** - * @return - * The device path - */ - public String device() { - return mDevice; - } - - /** - * @return - * The mount location - */ - public String location() { - return mLocation; - } - - /** - * @return - * The device file system type - */ - public String fstype() { - return mFstype; - } - - /** - * @return - * The options used at mount time - */ - public String[] options() { - return mOptions; - } - } - - public Filesystem(Shell shell) { - mShell = shell; - } - - /** - * Just like {@link #getMountList} this will provide a list of mount points and disks. The difference is that this list will not be of - * all the currently mounted partitions, but a list of all defined mount point in each fstab and init.*.rc file on the device. - *

- * It can be useful in situations where a file system might have been moved by a script, and you need the original defined location. - * Or perhaps you need the original device of a specific mount location. - * - * @return - * An array of {@link MountStat} objects - */ - public MountStat[] getFsList() { - synchronized(oFstabLock) { - if (oFstabList == null) { - Result result = mShell.execute("for DIR in /fstab.* /fstab /init.*.rc /init.rc; do echo $DIR; done"); - - if (result != null && result.wasSuccessful()) { - Set cache = new HashSet(); - List list = new ArrayList(); - String[] dirs = result.trim().getArray(); - - for (int i=0; i < dirs.length; i++) { - if (!Common.isEmulator() && dirs[i].contains("goldfish")) { - continue; - } - - Boolean isFstab = dirs[i].contains("fstab"); - FileData data = mShell.getFile(dirs[i]).readMatch( (isFstab ? "/dev/" : "mount "), false ); - - if (data != null) { - String[] lines = data.assort("#").getArray(); - - if (lines != null) { - for (int x=0; x < lines.length; x++) { - try { - String[] parts = oPatternSpaceSearch.split(lines[x].trim(), 5); - String options = isFstab || parts.length > 4 ? parts[ isFstab ? 3 : 4 ].replaceAll(",", " ") : ""; - - if (parts.length > 3 && !cache.contains(parts[ isFstab ? 1 : 3 ])) { - if (!isFstab && parts[2].contains("mtd@")) { - - FileData mtd = mShell.getFile("/proc/mtd").readMatch( ("\"" + parts[2].substring(4) + "\""), false ); - - if (mtd != null && mtd.size() > 0) { - parts[2] = "/dev/block/mtdblock" + mtd.getLine().substring(3, mtd.getLine().indexOf(":")); - } - - } else if (!isFstab && parts[2].contains("loop@")) { - parts[2] = parts[2].substring(5); - options += " loop"; - } - - MountStat stat = new MountStat(); - - stat.mDevice = parts[ isFstab ? 0 : 2 ]; - stat.mFstype = parts[ isFstab ? 2 : 1 ]; - stat.mLocation = parts[ isFstab ? 1 : 3 ]; - stat.mOptions = oPatternSpaceSearch.split(options); - - list.add(stat); - cache.add(parts[ isFstab ? 1 : 3 ]); - } - - } catch(Throwable e) {} - } - } - } - } - - oFstabList = list.toArray( new MountStat[ list.size() ] ); - } - } - - return oFstabList; - } - } - - /** - * This will return a list of all currently mounted file systems, with information like - * device path, mount location, file system type and mount options. - * - * @return - * An array of {@link MountStat} objects - */ - public MountStat[] getMountList() { - FileData data = mShell.getFile("/proc/mounts").read(); - - if (data != null) { - String[] lines = data.trim().getArray(); - MountStat[] list = new MountStat[ lines.length ]; - - for (int i=0; i < lines.length; i++) { - try { - String[] parts = oPatternSpaceSearch.split(lines[i].trim()); - - list[i] = new MountStat(); - list[i].mDevice = parts[0]; - list[i].mFstype = parts[2]; - list[i].mLocation = parts[1]; - list[i].mOptions = oPatternSeparatorSearch.split(parts[3]); - - } catch(Throwable e) {} - } - - return list; - } - - return null; - } - - /** - * Get an instance of the {@link Disk} class. - * - * @param disk - * The location to the disk, partition or folder - */ - public Disk getDisk(String disk) { - return new Disk(mShell, disk); - } - - public static class Disk extends Filesystem { - - protected File mFile; - - public Disk(Shell shell, String disk) { - super(shell); - - mFile = shell.getFile(disk); - } - - /** - * This is a short method for adding additional options to a mount location or device. - * For an example, parsing remount instructions. - * - * @see #mount(String, String, String[]) - * - * @param options - * A string array containing all of the mount options to parse - * - * @return - * True on success, False otherwise - */ - public Boolean mount(String[] options) { - return mount(null, null, options); - } - - /** - * This is a short method for attaching a device or folder to a location, without any options or file system type specifics. - * - * @see #mount(String, String, String[]) - * - * @param location - * The location where the device or folder should be attached to - * - * @return - * True on success, False otherwise - */ - public Boolean mount(String location) { - return mount(location, null, null); - } - - /** - * This is a short method for attaching a device or folder to a location, without any file system type specifics. - * - * @see #mount(String, String, String[]) - * - * @param location - * The location where the device or folder should be attached to - * - * @param options - * A string array containing all of the mount options to parse - * - * @return - * True on success, False otherwise - */ - public Boolean mount(String location, String[] options) { - return mount(location, null, options); - } - - /** - * This is a short method for attaching a device or folder to a location, without any options. - * - * @see #mount(String, String, String[]) - * - * @param location - * The location where the device or folder should be attached to - * - * @param type - * The file system type to mount a device as - * - * @return - * True on success, False otherwise - */ - public Boolean mount(String location, String type) { - return mount(location, type, null); - } - - /** - * This is used for attaching a device or folder to a location, - * or to change any mount options on a current mounted file system. - *
- * Note that if the device parsed to the constructor {@link #Disk(Shell, String)} - * is a folder, this method will use the --bind option to attach it to the location. Also note that when attaching folders to a location, - * the type and options arguments will not be used and should just be parsed as NULL. - * - * @param location - * The location where the device or folder should be attached to - * - * @param type - * The file system type to mount a device as - * - * @param options - * A string array containing all of the mount options to parse - * - * @return - * True on success, False otherwise - */ - public Boolean mount(String location, String type, String[] options) { - String cmd = location != null && mFile.isDirectory() ? - "mount --bind '" + mFile.getAbsolutePath() + "' '" + location + "'" : - "mount" + (type != null ? " -t '" + type + "'" : "") + (options != null ? " -o '" + (location == null ? "remount," : "") + TextUtils.join(",", Arrays.asList(options)) + "'" : "") + " '" + mFile.getAbsolutePath() + "'" + (location != null ? " '" + location + "'" : ""); - - /* - * On some devices, some partitions has been made read-only by writing to the block device ioctls. - * This means that even mounting them as read/write will not work by itself, we need to change the ioctls as well. - */ - if (options != null && !"/".equals(mFile.getAbsolutePath())) { - for (String option : options) { - if ("rw".equals(option)) { - String blockdevice = null; - - if (mFile.isDirectory()) { - MountStat stat = getMountDetails(); - - if (stat != null) { - blockdevice = stat.device(); - - } else if ((stat = getFsDetails()) != null) { - blockdevice = stat.device(); - } - - } else { - blockdevice = mFile.getAbsolutePath(); - } - - if (blockdevice != null && blockdevice.startsWith("/dev/")) { - mShell.createAttempts("blockdev --setrw '" + blockdevice + "' 2> /dev/null").execute(); - } - - break; - } - } - } - - Result result = mShell.createAttempts(cmd).execute(); - - return result != null && result.wasSuccessful(); - } - - /** - * This method is used to remove an attachment of a device or folder (unmount). - * - * @return - * True on success, False otherwise - */ - public Boolean unmount() { - String[] commands = new String[]{"umount '" + mFile.getAbsolutePath() + "'", "umount -f '" + mFile.getAbsolutePath() + "'"}; - - for (String command : commands) { - Result result = mShell.createAttempts(command).execute(); - - if (result != null && result.wasSuccessful()) { - return true; - } - } - - return false; - } - - /** - * This method is used to move a mount location to another location. - * - * @return - * True on success, False otherwise - */ - public Boolean move(String destination) { - Result result = mShell.createAttempts("mount --move '" + mFile.getAbsolutePath() + "' '" + destination + "'").execute(); - - if (result == null || !result.wasSuccessful()) { - /* - * Not all toolbox versions support moving mount points. - * So in these cases, we fallback to a manual unmount/remount. - */ - MountStat stat = getMountDetails(); - - if (stat != null && unmount()) { - return getDisk(stat.device()).mount(stat.location(), stat.fstype(), stat.options()); - } - } - - return result != null && result.wasSuccessful(); - } - - /** - * This is used to check whether the current device or folder is attached to a location (Mounted). - * - * @return - * True if mounted, False otherwise - */ - public Boolean isMounted() { - return getMountDetails() != null; - } - - /** - * This is used to check if a mounted file system was mounted with a specific mount option. - * Note that options like mode=xxxx can also be checked by just parsing mode as the argument. - * - * @param option - * The name of the option to find - * - * @return - * True if the options was used to attach the device, False otherwise - */ - public Boolean hasOption(String option) { - MountStat stat = getMountDetails(); - - if (stat != null) { - String[] options = stat.options(); - - if (options != null && options.length > 0) { - for (int i=0; i < options.length; i++) { - if (options[i].equals(option) || options[i].startsWith(option + "=")) { - return true; - } - } - } - } - - return false; - } - - /** - * This can be used to get the value of a specific mount option that was used to attach the file system. - * Note that options like noexec, nosuid and nodev does not have any values and will return NULL. - * This method is used to get values from options like gid=xxxx, mode=xxxx and size=xxxx where xxxx is the value. - * - * @param option - * The name of the option to find - * - * @return - * True if the options was used to attach the device, False otherwise - */ - public String getOption(String option) { - MountStat stat = getMountDetails(); - - if (stat != null) { - String[] options = stat.options(); - - if (options != null && options.length > 0) { - for (int i=0; i < options.length; i++) { - if (options[i].startsWith(option + "=")) { - return options[i].substring( options[i].indexOf("=")+1 ); - } - } - } - } - - return null; - } - - /** - * This is the same as {@link #getMountList()}, - * only this method will just return the mount information for this specific device or mount location. - * - * @return - * A single {@link MountStat} object - */ - public MountStat getMountDetails() { - MountStat[] list = getMountList(); - - if (list != null) { - String path = mFile.getAbsolutePath(); - - if (!mFile.isDirectory()) { - for (int i=0; i < list.length; i++) { - if (list[i].device().equals(path)) { - return list[i]; - } - } - - } else { - do { - for (int i=0; i < list.length; i++) { - if (list[i].location().equals(path)) { - return list[i]; - } - } - - } while (path.lastIndexOf("/") > 0 && !(path = path.substring(0, path.lastIndexOf("/"))).equals("")); - } - } - - return null; - } - - /** - * This is the same as {@link #getFsList()}, - * only this method will just return the mount information for this specific device or mount location. - * - * @return - * A single {@link MountStat} object - */ - public MountStat getFsDetails() { - MountStat[] list = getFsList(); - - if (list != null) { - String path = mFile.getAbsolutePath(); - - if (!mFile.isDirectory()) { - for (int i=0; i < list.length; i++) { - if (list[i].device().equals(path)) { - return list[i]; - } - } - - } else { - do { - for (int i=0; i < list.length; i++) { - if (list[i].location().equals(path)) { - return list[i]; - } - } - - } while (path.lastIndexOf("/") > 0 && !(path = path.substring(0, path.lastIndexOf("/"))).equals("")); - } - } - - return null; - } - - /** - * Like with {@link #getMountList()}, this will also return information like device path and mount location. - * However, it will not return information like file system type or mount options, but instead - * information about the disk size, remaining bytes, used bytes and usage percentage. - * - * @return - * A single {@link DiskStat} object - */ - public DiskStat getDiskDetails() { - String[] commands = new String[]{"df -k '" + mFile.getAbsolutePath() + "'", "df '" + mFile.getAbsolutePath() + "'"}; - - for (String command : commands) { - Result result = mShell.createAttempts(command).execute(); - - if (result != null && result.wasSuccessful() && result.size() > 1) { - /* Depending on how long the line is, the df command some times breaks a line into two */ - String[] parts = oPatternSpaceSearch.split(result.sort(1).trim().getString(" ").trim()); - - /* - * Any 'df' output, no mater which toolbox or busybox version, should contain at least - * 'device or mount location', 'size', 'used' and 'available' - */ - if (parts.length > 3) { - String pDevice=null, pLocation=null, prefix, prefixList[] = {"k", "m", "g", "t"}; - Integer pPercentage=null; - Long pUsage, pSize, pRemaining; - Double[] pUsageSections = new Double[3]; - - if (parts.length > 5) { - /* Busybox output */ - - pDevice = parts[0]; - pLocation = parts[5]; - pPercentage = Integer.parseInt(parts[4].substring(0, parts[4].length()-1)); - - } else { - /* Toolbox output */ - - /* Depending on Toolbox version, index 0 can be both the device or the mount location */ - MountStat stat = getMountDetails(); - - if (stat != null) { - pDevice = stat.device(); - pLocation = stat.location(); - } - } - - /* Make sure that the sizes of usage, capacity etc does not have a prefix. Not all toolbox and busybox versions supports the '-k' argument, - * and some does not produce an error when parsed */ - for (int i=1; i < 4; i++) { - if (i < parts.length) { - if (oPatternPrefixSearch.matcher(parts[i]).matches()) { - pUsageSections[i-1] = Double.parseDouble( parts[i].substring(0, parts[i].length()-1) ); - prefix = parts[i].substring(parts[i].length()-1).toLowerCase(Locale.US); - - for (int x=0; x < prefixList.length; x++) { - pUsageSections[i-1] = pUsageSections[i-1] * 1024D; - - if (prefixList[x].equals(prefix)) { - break; - } - } - - } else { - pUsageSections[i-1] = Double.parseDouble(parts[i]) * 1024D; - } - - } else { - pUsageSections[i-1] = 0D; - } - } - - pSize = pUsageSections[0].longValue(); - pUsage = pUsageSections[1].longValue(); - pRemaining = pUsageSections[2].longValue(); - - if (pPercentage == null) { - /* You cannot divide by zero */ - pPercentage = pSize != 0 ? ((Long) ((pUsage * 100L) / pSize)).intValue() : 0; - } - - DiskStat info = new DiskStat(); - info.mDevice = pDevice; - info.mLocation = pLocation; - info.mSize = pSize; - info.mUsage = pUsage; - info.mAvailable = pRemaining; - info.mPercentage = pPercentage; - - return info; - } - } - } - - return null; - } - } -} diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Memory.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Memory.java deleted file mode 100644 index 2195a46..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/Memory.java +++ /dev/null @@ -1,686 +0,0 @@ -/* - * This file is part of the RootFW Project: https://github.com/spazedog/rootfw - * - * Copyright (c) 2015 Daniel Bergløv - * - * RootFW is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - - * RootFW is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General Public License - * along with RootFW. If not, see - */ - -package com.spazedog.lib.rootfw4.utils; - -import java.util.ArrayList; -import java.util.List; -import java.util.regex.Pattern; - -import com.spazedog.lib.rootfw4.Common; -import com.spazedog.lib.rootfw4.Shell; -import com.spazedog.lib.rootfw4.Shell.Result; -import com.spazedog.lib.rootfw4.containers.BasicContainer; -import com.spazedog.lib.rootfw4.utils.File.FileData; - -/** - * This class is used to get information about the device memory. - * It can provide information about total memory and swap space, free memory and swap etc. - * It can also be used to check the device support for CompCache/ZRam and Swap along with - * providing a list of active Swap and CompCache/ZRam devices. - */ -public class Memory { - public static final String TAG = Common.TAG + ".Memory"; - - protected final static Pattern oPatternSpaceSearch = Pattern.compile("[ \t]+"); - - protected static Boolean oCompCacheSupport; - protected static Boolean oSwapSupport; - - protected Shell mShell; - - /** - * This is a container which is used to store information about a SWAP device - */ - public static class SwapStat extends BasicContainer { - private String mDevice; - private Long mSize; - private Long mUsage; - - /** - * @return - * Path to the SWAP device - */ - public String device() { - return mDevice; - } - - /** - * @return - * SWAP size in bytes - */ - public Long size() { - return mSize; - } - - /** - * @return - * SWAP usage in bytes - */ - public Long usage() { - return mUsage; - } - } - - /** - * This container is used to store all memory information from /proc/meminfo. - */ - public static class MemStat extends BasicContainer { - private Long mMemTotal = 0L; - private Long mMemFree = 0L; - private Long mMemCached = 0L; - private Long mSwapTotal = 0L; - private Long mSwapFree = 0L; - private Long mSwapCached = 0L; - - /** - * @return - * Total amount of memory in bytes, including SWAP space - */ - public Long total() { - return mMemTotal + mSwapTotal; - } - - /** - * @return - * Free amount of memory in bytes, including SWAP space and cached memory - */ - public Long free() { - return mMemFree + mSwapFree + (mMemCached + mSwapCached); - } - - /** - * @return - * Amount of cached memory including SWAP space - */ - public Long cached() { - return mMemCached + mSwapCached; - } - - /** - * @return - * Amount of used memory including SWAP (Cached memory not included) - */ - public Long usage() { - return total() - free(); - } - - /** - * @return - * Memory usage in percentage, including SWAP space (Cached memory not included) - */ - public Integer percentage() { - return ((Long) ((usage() * 100L) / total())).intValue(); - } - - /** - * @return - * Total amount of memory in bytes - */ - public Long memTotal() { - return mMemTotal; - } - - /** - * @return - * Free amount of memory in bytes, including cached memory - */ - public Long memFree() { - return mMemFree + mMemCached; - } - - /** - * @return - * Amount of cached memory - */ - public Long memCached() { - return mMemCached; - } - - /** - * @return - * Amount of used memory (Cached memory not included) - */ - public Long memUsage() { - return memTotal() - memFree(); - } - - /** - * @return - * Memory usage in percentage (Cached memory not included) - */ - public Integer memPercentage() { - try { - return ((Long) ((memUsage() * 100L) / memTotal())).intValue(); - - } catch (Throwable e) { - return 0; - } - } - - /** - * @return - * Total amount of SWAP space in bytes - */ - public Long swapTotal() { - return mSwapTotal; - } - - /** - * @return - * Free amount of SWAP space in bytes, including cached memory - */ - public Long swapFree() { - return mSwapFree + mSwapCached; - } - - /** - * @return - * Amount of cached SWAP space - */ - public Long swapCached() { - return mSwapCached; - } - - /** - * @return - * Amount of used SWAP space (Cached memory not included) - */ - public Long swapUsage() { - return swapTotal() - swapFree(); - } - - /** - * @return - * SWAP space usage in percentage (Cached memory not included) - */ - public Integer swapPercentage() { - try { - return ((Long) ((swapUsage() * 100L) / swapTotal())).intValue(); - - } catch (Throwable e) { - return 0; - } - } - } - - public Memory(Shell shell) { - mShell = shell; - } - - /** - * Get memory information like ram usage, ram total, cached memory, swap total etc. - */ - public MemStat getUsage() { - FileData data = mShell.getFile("/proc/meminfo").read(); - - if (data != null && data.size() > 0) { - String[] lines = data.getArray(); - MemStat stat = new MemStat(); - - for (int i=0; i < lines.length; i++) { - String[] parts = oPatternSpaceSearch.split(lines[i]); - - if (parts[0].equals("MemTotal:")) { - stat.mMemTotal = Long.parseLong(parts[1]) * 1024L; - - } else if (parts[0].equals("MemFree:")) { - stat.mMemFree = Long.parseLong(parts[1]) * 1024L; - - } else if (parts[0].equals("Cached:")) { - stat.mMemCached = Long.parseLong(parts[1]) * 1024L; - - } else if (parts[0].equals("SwapTotal:")) { - stat.mSwapTotal = Long.parseLong(parts[1]) * 1024L; - - } else if (parts[0].equals("SwapFree:")) { - stat.mSwapFree = Long.parseLong(parts[1]) * 1024L; - - } else if (parts[0].equals("SwapCached:")) { - stat.mSwapCached = Long.parseLong(parts[1]) * 1024L; - - } - } - - return stat; - } - - return null; - } - - /** - * Get a list of all active SWAP devices. - * - * @return - * An SwapStat array of all active SWAP devices - */ - public SwapStat[] getSwapList() { - File file = mShell.getFile("/proc/swaps"); - - if (file.exists()) { - String[] data = file.readMatch("/dev/", false).trim().getArray(); - List statList = new ArrayList(); - - if (data != null && data.length > 0) { - for (int i=0; i < data.length; i++) { - try { - String[] sections = oPatternSpaceSearch.split(data[i].trim()); - - SwapStat stat = new SwapStat(); - stat.mDevice = sections[0]; - stat.mSize = Long.parseLong(sections[2]) * 1024L; - stat.mUsage = Long.parseLong(sections[3]) * 1024L; - - statList.add(stat); - - } catch(Throwable e) {} - } - - return statList.size() > 0 ? statList.toArray( new SwapStat[ statList.size() ] ) : null; - } - } - - return null; - } - - /** - * Check whether or not CompCache/ZRam is supported by the kernel. - * This also checks for Swap support. If this returns FALSE, then none of them is supported. - */ - public Boolean hasCompCacheSupport() { - if (oCompCacheSupport == null) { - oCompCacheSupport = false; - - if (hasSwapSupport()) { - String[] files = new String[]{"/dev/block/ramzswap0", "/dev/block/zram0", "/system/lib/modules/ramzswap.ko", "/system/lib/modules/zram.ko"}; - - for (String file : files) { - if (mShell.getFile(file).exists()) { - oCompCacheSupport = true; break; - } - } - } - } - - return oCompCacheSupport; - } - - /** - * Check whether or not Swap is supported by the kernel. - */ - public Boolean hasSwapSupport() { - if (oSwapSupport == null) { - oSwapSupport = mShell.getFile("/proc/swaps").exists(); - } - - return oSwapSupport; - } - - /** - * Get a new instance of {@link Swap} - * - * @param device - * The Swap block device - */ - public Swap getSwap(String device) { - return new Swap(mShell, device); - } - - /** - * Get a new instance of {@link CompCache} - */ - public CompCache getCompCache() { - return new CompCache(mShell); - } - - /** - * Change the swappiness level.

- * - * The level should be between 0 for low swap usage and 100 for high swap usage. - * - * @param level - * The swappiness level - */ - public Boolean setSwappiness(Integer level) { - Result result = null; - - if (level >= 0 && level <= 100 && hasSwapSupport()) { - result = mShell.execute("echo '" + level + "' > /proc/sys/vm/swappiness"); - } - - return result != null && result.wasSuccessful(); - } - - /** - * Get the current swappiness level. - */ - public Integer getSwappiness() { - if (hasSwapSupport()) { - String output = mShell.getFile("/proc/sys/vm/swappiness").readOneLine(); - - if (output != null) { - try { - return Integer.parseInt(output); - - } catch (Throwable e) {} - } - } - - return 0; - } - - /** - * This class is an extension of the {@link Memory} class. - * This can be used to get information about-, and handle swap and CompCache/ZRam devices. - */ - public static class Swap extends Memory { - - protected File mSwapDevice; - - /** - * Create a new instance of this class. - * - * @param shell - * An instance of the {@link Shell} class - * - * @param device - * The swap/zram block device - */ - public Swap(Shell shell, String device) { - super(shell); - - if (device != null) { - mSwapDevice = mShell.getFile(device); - - if (!mSwapDevice.getAbsolutePath().startsWith("/dev/")) { - mSwapDevice = null; - } - } - } - - /** - * Get information like size and usage of a specific SWAP device. This method will return null if the device does not exist, or if it has not been activated. - * - * @param device - * The specific SWAP device path to get infomation about - * - * @return - * An SwapStat object containing information about the requested SWAP device - */ - public SwapStat getSwapDetails() { - if (exists()) { - File file = mShell.getFile("/proc/swaps"); - - if (file.exists()) { - String data = file.readMatch(mSwapDevice.getAbsolutePath(), false).getLine(); - - if (data != null && data.length() > 0) { - try { - String[] sections = oPatternSpaceSearch.split(data); - - SwapStat stat = new SwapStat(); - stat.mDevice = sections[0]; - stat.mSize = Long.parseLong(sections[2]) * 1024L; - stat.mUsage = Long.parseLong(sections[3]) * 1024L; - - return stat; - - } catch(Throwable e) {} - } - } - } - - return null; - } - - /** - * Check whether or not this block device exists. - * This will also return FALSE if this is not a /dev/ device. - */ - public Boolean exists() { - return mSwapDevice != null && mSwapDevice.exists(); - } - - /** - * Check whether or not this Swap device is currently active. - */ - public Boolean isActive() { - return getSwapDetails() != null; - } - - /** - * Get the path to the Swap block device. - */ - public String getPath() { - return mSwapDevice != null ? mSwapDevice.getResolvedPath() : null; - } - - /** - * @see #setSwapOn(Integer) - */ - public Boolean setSwapOn() { - return setSwapOn(0); - } - - /** - * Enable this Swap device. - * - * @param priority - * Priority (Highest number is used first) or use '0' for auto - */ - public Boolean setSwapOn(Integer priority) { - if (exists()) { - Boolean status = isActive(); - - if (!status) { - String[] commands = null; - - if (priority > 0) { - commands = new String[]{"swapon -p '" + priority + "' '" + mSwapDevice.getAbsolutePath() + "'", "swapon '" + mSwapDevice.getAbsolutePath() + "'"}; - - } else { - commands = new String[]{"swapon '" + mSwapDevice.getAbsolutePath() + "'"}; - } - - for (String command : commands) { - Result result = mShell.createAttempts(command).execute(); - - if (result != null && result.wasSuccessful()) { - return true; - } - } - } - - return status; - } - - return false; - } - - /** - * Disable this Swap device. - */ - public Boolean setSwapOff() { - if (exists()) { - Boolean status = isActive(); - - if (status) { - Result result = mShell.createAttempts("swapoff '" + mSwapDevice.getAbsolutePath() + "'").execute(); - - return result != null && result.wasSuccessful(); - } - - return status; - } - - return true; - } - } - - /** - * This is an extension of the {@link Swap} class. It's job is more CompCache/ZRam orientated. - * Unlike it's parent, this class can not only switch a CompCache/ZRam device on and off, it can also - * locate the proper supported type and load it's kernel module if not already done during boot.

- * - * It is advised to use this when working with CompCache/ZRam specifically. - */ - public static class CompCache extends Swap { - - protected static String oCachedDevice; - - /** - * Create a new instance of this class.

- * - * This constructor will automatically look for the CompCache/ZRam block device, and - * enable the feature (loading modules) if not already done by the kernel during boot. - * - * @param shell - * An instance of the {@link Shell} class - */ - public CompCache(Shell shell) { - super(shell, oCachedDevice); - - if (oCachedDevice == null) { - String[] blockDevices = new String[]{"/dev/block/ramzswap0", "/dev/block/zram0"}; - String[] libraries = new String[]{"/system/lib/modules/ramzswap.ko", "/system/lib/modules/zram.ko"}; - - for (int i=0; i < blockDevices.length; i++) { - if (mShell.getFile(blockDevices[i]).exists()) { - oCachedDevice = blockDevices[i]; break; - - } else if (mShell.getFile(libraries[i]).exists()) { - Result result = mShell.createAttempts("insmod '" + libraries[i] + "'").execute(); - - if (result != null && result.wasSuccessful()) { - oCachedDevice = blockDevices[i]; break; - } - } - } - - if (oCachedDevice != null) { - mSwapDevice = mShell.getFile(oCachedDevice); - } - } - } - - /** - * Enable this Swap device.

- * - * This overwrites {@link Swap#setSwapOn()} to enable to feature of - * setting a cache size for the CompCache/ZRam. This method sets the size to 18% of the total device memory.

- * - * If you are sure that CompCache/ZRam is loaded and the device has been setup with size and swap partition and you don't want to change this, - * then use {@link Swap#setSwapOn()} instead. But if nothing has been setup yet, it could fail as it does nothing else but try to activate the device as Swap. - * - * @see #setSwapOn(Integer) - */ - @Override - public Boolean setSwapOn(Integer priority) { - return setSwapOn(priority, 18); - } - - /** - * Enable this Swap device.

- * - * The total CompCache/ZRam size will be the chosen percentage - * of the total device memory, although max 35%. If a greater value is chosen, 35 will be used. - * - * @param cacheSize - * The percentage value of the total device memory - */ - public Boolean setSwapOn(Integer priority, Integer cacheSize) { - cacheSize = cacheSize > 35 ? 35 : (cacheSize <= 0 ? 18 : cacheSize); - - if (exists()) { - Boolean status = isActive(); - - if (!status) { - Result result = null; - MemStat stat = getUsage(); - - if (stat != null) { - if (oCachedDevice.endsWith("/zram0")) { - result = mShell.createAttempts( - "echo 1 > /sys/block/zram0/reset && " + - "echo '" + ((stat.memTotal() * cacheSize) / 100) + "' > /sys/block/zram0/disksize && " + - "%binary mkswap '" + mSwapDevice.getAbsolutePath() + "'" - - ).execute(); - - } else { - result = mShell.execute("rzscontrol '" + mSwapDevice.getAbsolutePath() + "' --disksize_kb='" + (((stat.memTotal() * cacheSize) / 100) * 1024) + "' --init"); - } - - if (result != null && result.wasSuccessful()) { - String[] commands = null; - - if (priority > 0) { - commands = new String[]{"swapon -p '" + priority + "' '" + mSwapDevice.getAbsolutePath() + "'", "swapon '" + mSwapDevice.getAbsolutePath() + "'"}; - - } else { - commands = new String[]{"swapon '" + mSwapDevice.getAbsolutePath() + "'"}; - } - - for (String command : commands) { - result = mShell.createAttempts(command).execute(); - - if (result != null && result.wasSuccessful()) { - return true; - } - } - } - } - } - - return status; - } - - return false; - } - - /** - * Disable this Swap device.

- * - * This overwrites {@link Swap#setSwapOff()} as this will also release the CompCache/ZRam from memory. - */ - @Override - public Boolean setSwapOff() { - if (exists()) { - Boolean status = isActive(); - - if (status) { - Result result = null; - - if (oCachedDevice.endsWith("/zram0")) { - result = mShell.createAttempts("swapoff '" + mSwapDevice.getAbsolutePath() + "' && echo 1 > /sys/block/zram0/reset").execute(); - - } else { - result = mShell.createAttempts("swapoff '" + mSwapDevice.getAbsolutePath() + "' && rzscontrol '" + mSwapDevice.getAbsolutePath() + "' --reset").execute(); - } - - return result != null && result.wasSuccessful(); - } - - return status; - } - - return true; - } - } -} diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/io/FileReader.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/io/FileReader.java deleted file mode 100644 index 24ecbd6..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/io/FileReader.java +++ /dev/null @@ -1,174 +0,0 @@ -/* - * This file is part of the RootFW Project: https://github.com/spazedog/rootfw - * - * Copyright (c) 2015 Daniel Bergløv - * - * RootFW is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - - * RootFW is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General Public License - * along with RootFW. If not, see - */ - -package com.spazedog.lib.rootfw4.utils.io; - -import java.io.BufferedReader; -import java.io.DataOutputStream; -import java.io.File; -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.IOException; -import java.io.InputStreamReader; -import java.io.Reader; -import java.nio.CharBuffer; - -import com.spazedog.lib.rootfw4.Common; -import com.spazedog.lib.rootfw4.Shell; -import com.spazedog.lib.rootfw4.ShellStream; - -/** - * This class allows you to open a file as root, if needed. - * Files that are not protected will be handled by a regular {@link java.io.FileReader} while protected files - * will use a shell streamer instead. Both of which will act as a normal reader that can be used together with other classes like {@link BufferedReader} and such.

- * - * Note that this should not be used for unending streams. This is only meant for regular files. If you need unending streams, like /dev/input/event*, - * you should use {@link ShellStream} instead. - */ -public class FileReader extends Reader { - public static final String TAG = Common.TAG + ".FileReader"; - - protected InputStreamReader mStream; - - /** - * Create a new {@link InputStreamReader}. However {@link FileReader#FileReader(Shell, String)} is a better option. - */ - public FileReader(String file) throws FileNotFoundException { - this(null, file); - } - - /** - * Create a new {@link InputStreamReader}. If shell is not NULL, then - * the best match for cat will be located whenever a SuperUser connection is needed. This will be the best - * option for multiple environments. - */ - public FileReader(Shell shell, String file) throws FileNotFoundException { - String filePath = new File(file).getAbsolutePath(); - - try { - mStream = new InputStreamReader(new FileInputStream(filePath)); - - } catch (FileNotFoundException e) { - String binary = shell != null ? shell.findCommand("cat") : "toolbox cat"; - - try { - ProcessBuilder builder = new ProcessBuilder("su"); - builder.redirectErrorStream(true); - - Process process = builder.start(); - mStream = new InputStreamReader(process.getInputStream()); - - DataOutputStream stdIn = new DataOutputStream(process.getOutputStream()); - stdIn.write( (binary + " '" + filePath + "'\n").getBytes() ); - stdIn.write( ("exit $?\n").getBytes() ); - stdIn.flush(); - stdIn.close(); - - Integer resultCode = process.waitFor(); - - if (!resultCode.equals(0)) { - throw new FileNotFoundException(e.getMessage()); - } - - } catch (Throwable te) { - throw new FileNotFoundException(te.getMessage()); - } - } - } - - /** - * {@inheritDoc} - */ - @Override - public void mark(int readLimit) throws IOException { - mStream.mark(readLimit); - } - - /** - * {@inheritDoc} - */ - @Override - public boolean markSupported() { - return mStream.markSupported(); - } - - /** - * {@inheritDoc} - */ - @Override - public void close() throws IOException { - mStream.close(); - } - - /** - * {@inheritDoc} - */ - @Override - public int read(char[] buffer, int offset, int count) throws IOException { - return mStream.read(buffer, offset, count); - } - - /** - * {@inheritDoc} - */ - @Override - public int read(CharBuffer target) throws IOException { - return mStream.read(target); - } - - /** - * {@inheritDoc} - */ - @Override - public int read(char[] buffer) throws IOException { - return mStream.read(buffer); - } - - /** - * {@inheritDoc} - */ - @Override - public int read() throws IOException { - return mStream.read(); - } - - /** - * {@inheritDoc} - */ - @Override - public long skip(long charCount) throws IOException { - return mStream.skip(charCount); - } - - /** - * {@inheritDoc} - */ - @Override - public void reset() throws IOException { - mStream.reset(); - } - - /** - * {@inheritDoc} - */ - @Override - public boolean ready() throws IOException { - return mStream.ready(); - } -} diff --git a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/io/FileWriter.java b/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/io/FileWriter.java deleted file mode 100644 index bda8913..0000000 --- a/libraries/sharedCode/src/main/java/com/spazedog/lib/rootfw4/utils/io/FileWriter.java +++ /dev/null @@ -1,150 +0,0 @@ -/* - * This file is part of the RootFW Project: https://github.com/spazedog/rootfw - * - * Copyright (c) 2015 Daniel Bergløv - * - * RootFW is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - - * RootFW is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - - * You should have received a copy of the GNU Lesser General Public License - * along with RootFW. If not, see - */ - -package com.spazedog.lib.rootfw4.utils.io; - -import java.io.DataOutputStream; -import java.io.File; -import java.io.FileOutputStream; -import java.io.IOException; -import java.io.Writer; - -import android.os.Bundle; - -import com.spazedog.lib.rootfw4.Common; -import com.spazedog.lib.rootfw4.Shell; - -/** - * This class is used to write to a file. Unlike {@link java.io.FileWriter}, this class - * will fallback on a SuperUser shell stream whenever a write action is not allowed by the application. - */ -public class FileWriter extends Writer { - public static final String TAG = Common.TAG + ".FileReader"; - - protected DataOutputStream mStream; - protected Process mProcess; - - public FileWriter(String file) throws IOException { - this(null, file, false); - } - - public FileWriter(String file, boolean append) throws IOException { - this(null, file, append); - } - - public FileWriter(Shell shell, String file, boolean append) throws IOException { - super(); - - String filePath = new File(file).getAbsolutePath(); - - try { - mStream = new DataOutputStream(new FileOutputStream(filePath, append)); - - } catch (IOException e) { - String binary = shell != null ? shell.findCommand("cat") : "toolbox cat"; - - try { - mProcess = new ProcessBuilder("su").start(); - mStream = new DataOutputStream(mProcess.getOutputStream()); - - mStream.write( (binary + (append ? " >> " : " > ") + "'" + filePath + "' || exit 1\n").getBytes() ); - mStream.flush(); - - try { - synchronized(mStream) { - /* - * The only way to check for errors, is by giving the shell a bit of time to fail. - * This can either be an error caused by a missing binary for 'cat', or caused by something - * like writing to a read-only fileystem. - */ - mStream.wait(100); - } - - } catch (Throwable ignore) {} - - try { - if (mProcess.exitValue() == 1) { - throw new IOException(e.getMessage()); - } - - } catch (IllegalThreadStateException ignore) {} - - } catch (Throwable te) { - throw new IOException(te.getMessage()); - } - } - - Bundle bundle = new Bundle(); - bundle.putString("action", "exists"); - bundle.putString("location", filePath); - - Shell.sendBroadcast("file", bundle); - } - - /** - * {@inheritDoc} - */ - @Override - public void close() throws IOException { - mStream.flush(); - mStream.close(); - mStream = null; - - if (mProcess != null) { - mProcess.destroy(); - mProcess = null; - } - } - - /** - * {@inheritDoc} - */ - @Override - public void flush() throws IOException { - mStream.flush(); - } - - /** - * {@inheritDoc} - */ - @Override - public void write(char[] buf, int offset, int count) throws IOException { - synchronized(lock) { - byte[] bytes = new byte[buf.length]; - - for (int i=0; i < bytes.length; i++) { - bytes[i] = (byte) buf[i]; - } - - mStream.write(bytes, offset, count); - } - } - - public void write(byte[] buf, int offset, int count) throws IOException { - synchronized(lock) { - mStream.write(buf, offset, count); - } - } - - public void write(byte[] buf) throws IOException { - synchronized(lock) { - mStream.write(buf); - } - } -} diff --git a/settings.gradle b/settings.gradle index 37329e9..f4fd36a 100644 --- a/settings.gradle +++ b/settings.gradle @@ -17,4 +17,4 @@ * along with this program. If not, see . */ -include ':libraries:FloatingActionButton', ':libraries:sharedCode', ':app' +include ':libraries:FloatingActionButton', ':app'