2016-08-26 10:45:35 +00:00
|
|
|
package com.topjohnwu.magisk;
|
|
|
|
|
2016-09-19 06:46:07 +00:00
|
|
|
import android.app.Activity;
|
2016-09-21 12:39:12 +00:00
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
2016-08-31 21:52:42 +00:00
|
|
|
import android.content.Intent;
|
2016-09-21 12:39:12 +00:00
|
|
|
import android.content.IntentFilter;
|
2016-08-31 21:52:42 +00:00
|
|
|
import android.content.SharedPreferences;
|
2016-09-16 04:46:10 +00:00
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.PorterDuff;
|
2016-08-26 10:45:35 +00:00
|
|
|
import android.os.AsyncTask;
|
|
|
|
import android.os.Bundle;
|
2016-08-31 21:52:42 +00:00
|
|
|
import android.preference.PreferenceManager;
|
2016-08-26 10:45:35 +00:00
|
|
|
import android.support.annotation.Nullable;
|
2016-09-21 21:55:20 +00:00
|
|
|
import android.app.Fragment;
|
2016-09-21 12:39:12 +00:00
|
|
|
import android.support.v4.content.LocalBroadcastManager;
|
2016-09-19 06:46:07 +00:00
|
|
|
import android.util.Log;
|
2016-08-26 10:45:35 +00:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.CompoundButton;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.ProgressBar;
|
|
|
|
import android.widget.Switch;
|
|
|
|
import android.widget.TextView;
|
2016-09-19 06:46:07 +00:00
|
|
|
import android.widget.Toast;
|
2016-08-26 10:45:35 +00:00
|
|
|
|
2016-09-21 12:39:12 +00:00
|
|
|
import com.topjohnwu.magisk.receivers.Receiver;
|
|
|
|
import com.topjohnwu.magisk.receivers.RootFragmentReceiver;
|
2016-09-20 16:36:33 +00:00
|
|
|
import com.topjohnwu.magisk.services.MonitorService;
|
2016-08-26 10:45:35 +00:00
|
|
|
import com.topjohnwu.magisk.utils.Shell;
|
2016-09-16 04:46:10 +00:00
|
|
|
import com.topjohnwu.magisk.utils.Utils;
|
2016-08-26 10:45:35 +00:00
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import butterknife.BindColor;
|
|
|
|
import butterknife.BindView;
|
|
|
|
import butterknife.ButterKnife;
|
|
|
|
|
2016-09-21 12:39:12 +00:00
|
|
|
public class RootFragment extends Fragment implements Receiver{
|
2016-08-26 10:45:35 +00:00
|
|
|
|
2016-08-31 21:52:42 +00:00
|
|
|
public SharedPreferences prefs;
|
|
|
|
@BindView(R.id.progressBar)
|
|
|
|
ProgressBar progressBar;
|
|
|
|
@BindView(R.id.rootSwitchView)
|
|
|
|
View rootToggleView;
|
|
|
|
@BindView(R.id.autoRootSwitchView)
|
|
|
|
View autoRootToggleView;
|
|
|
|
@BindView(R.id.selinuxSwitchView)
|
|
|
|
View selinuxToggleView;
|
|
|
|
@BindView(R.id.rootStatusView)
|
|
|
|
View rootStatusView;
|
|
|
|
@BindView(R.id.safetynetStatusView)
|
|
|
|
View safetynetStatusView;
|
|
|
|
@BindView(R.id.selinuxStatusView)
|
|
|
|
View selinuxStatusView;
|
|
|
|
@BindView(R.id.root_toggle)
|
|
|
|
Switch rootToggle;
|
|
|
|
@BindView(R.id.auto_root_toggle)
|
|
|
|
Switch autoRootToggle;
|
|
|
|
@BindView(R.id.selinux_toggle)
|
|
|
|
Switch selinuxToggle;
|
|
|
|
@BindView(R.id.root_status_container)
|
|
|
|
View rootStatusContainer;
|
|
|
|
@BindView(R.id.root_status_icon)
|
|
|
|
ImageView rootStatusIcon;
|
|
|
|
@BindView(R.id.root_status)
|
|
|
|
TextView rootStatus;
|
|
|
|
@BindView(R.id.selinux_status_container)
|
|
|
|
View selinuxStatusContainer;
|
|
|
|
@BindView(R.id.selinux_status_icon)
|
|
|
|
ImageView selinuxStatusIcon;
|
|
|
|
@BindView(R.id.selinux_status)
|
|
|
|
TextView selinuxStatus;
|
|
|
|
@BindView(R.id.safety_net_status)
|
|
|
|
TextView safetyNetStatus;
|
|
|
|
@BindView(R.id.safety_net_icon)
|
|
|
|
ImageView safetyNetStatusIcon;
|
|
|
|
@BindColor(R.color.red500)
|
|
|
|
int red500;
|
|
|
|
@BindColor(R.color.green500)
|
|
|
|
int green500;
|
|
|
|
@BindColor(R.color.grey500)
|
|
|
|
int grey500;
|
|
|
|
@BindColor(R.color.accent)
|
|
|
|
int accent;
|
2016-08-26 10:45:35 +00:00
|
|
|
int statusOK = R.drawable.ic_check_circle;
|
2016-09-16 04:46:10 +00:00
|
|
|
int statusAuto = R.drawable.ic_autoroot;
|
2016-08-26 10:45:35 +00:00
|
|
|
int statusError = R.drawable.ic_error;
|
|
|
|
int statusUnknown = R.drawable.ic_help;
|
|
|
|
|
2016-09-16 04:46:10 +00:00
|
|
|
private boolean autoRootStatus;
|
|
|
|
|
2016-08-26 10:45:35 +00:00
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
|
|
|
View view = inflater.inflate(R.layout.root_fragment, container, false);
|
|
|
|
ButterKnife.bind(this, view);
|
2016-09-21 21:55:20 +00:00
|
|
|
prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
|
2016-09-19 06:46:07 +00:00
|
|
|
|
2016-09-16 04:46:10 +00:00
|
|
|
if (prefs.contains("autoRootEnable")) {
|
2016-09-20 05:05:41 +00:00
|
|
|
autoRootStatus = prefs.getBoolean("autoRootEnable", false);
|
2016-09-16 04:46:10 +00:00
|
|
|
rootToggle.setEnabled(false);
|
|
|
|
} else {
|
|
|
|
autoRootStatus = false;
|
|
|
|
rootToggle.setEnabled(true);
|
|
|
|
}
|
|
|
|
autoRootToggle.setChecked(autoRootStatus);
|
|
|
|
new updateUI().execute();
|
2016-08-26 10:45:35 +00:00
|
|
|
|
2016-08-27 11:02:41 +00:00
|
|
|
rootToggle.setOnClickListener(toggle -> {
|
2016-09-17 18:32:08 +00:00
|
|
|
Utils.toggleRoot(((CompoundButton) toggle).isChecked());
|
|
|
|
new updateUI().execute();
|
2016-08-31 21:52:42 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
autoRootToggle.setOnClickListener(toggle -> {
|
2016-09-16 04:46:10 +00:00
|
|
|
ToggleAutoRoot(autoRootToggle.isChecked());
|
2016-09-21 12:39:12 +00:00
|
|
|
new updateUI().execute();
|
2016-08-31 21:52:42 +00:00
|
|
|
|
2016-08-26 10:45:35 +00:00
|
|
|
});
|
|
|
|
|
2016-08-27 11:02:41 +00:00
|
|
|
selinuxToggle.setOnClickListener(toggle -> {
|
|
|
|
Shell.su(((CompoundButton) toggle).isChecked() ? "setenforce 1" : "setenforce 0");
|
2016-09-17 18:32:08 +00:00
|
|
|
new updateUI().execute();
|
2016-08-26 10:45:35 +00:00
|
|
|
});
|
|
|
|
|
2016-09-21 21:55:20 +00:00
|
|
|
// LocalBroadcastManager.getInstance(getActivity()).registerReceiver(mYourBroadcastReceiver,
|
|
|
|
// new IntentFilter("com.magisk.UPDATEUI"));
|
2016-09-21 12:39:12 +00:00
|
|
|
|
2016-08-26 10:45:35 +00:00
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
2016-09-21 21:55:20 +00:00
|
|
|
// private final BroadcastReceiver mYourBroadcastReceiver = new RootFragmentReceiver(Re) {
|
|
|
|
// @Override
|
|
|
|
// public void onReceive(Context context, Intent intent) {
|
|
|
|
//
|
|
|
|
// Log.d("Magisk", "RootFragment: UpdateRF called and fired");
|
|
|
|
// new updateUI().execute();
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// };
|
2016-09-21 12:39:12 +00:00
|
|
|
|
2016-09-19 06:46:07 +00:00
|
|
|
@Override
|
|
|
|
public void onActivityResult(int requestCode, int resultCode, Intent data) {
|
|
|
|
// Check which request we're responding to
|
2016-09-20 05:05:41 +00:00
|
|
|
Log.d("Magisk", "Got result: " + requestCode + " and " + resultCode);
|
2016-09-19 06:46:07 +00:00
|
|
|
if (requestCode == 100) {
|
|
|
|
// Make sure the request was successful
|
|
|
|
if (resultCode == Activity.RESULT_OK) {
|
2016-09-20 05:05:41 +00:00
|
|
|
Log.d("Magisk", "Got result code OK for permissions");
|
2016-09-19 06:46:07 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
autoRootToggle.setEnabled(false);
|
2016-09-20 05:05:41 +00:00
|
|
|
Toast.makeText(getActivity(), "Auto-root disabled, permissions required.", Toast.LENGTH_LONG).show();
|
2016-09-19 21:48:13 +00:00
|
|
|
|
2016-09-19 06:46:07 +00:00
|
|
|
}
|
|
|
|
|
2016-09-21 12:39:12 +00:00
|
|
|
} else if (requestCode == 420) {
|
|
|
|
Log.d("Magisk", "Got result code OK for UI update.");
|
|
|
|
new updateUI().execute();
|
2016-09-19 06:46:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-16 04:46:10 +00:00
|
|
|
private void ToggleAutoRoot(boolean toggleState) {
|
2016-09-20 05:05:41 +00:00
|
|
|
autoRootStatus = toggleState;
|
|
|
|
SharedPreferences.Editor editor = prefs.edit();
|
|
|
|
editor.putBoolean("autoRootEnable", (toggleState));
|
|
|
|
editor.apply();
|
|
|
|
if (toggleState) {
|
|
|
|
if (!Utils.hasServicePermission(getActivity())) {
|
|
|
|
Intent intent = new Intent(android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS);
|
|
|
|
startActivityForResult(intent, 100);
|
2016-09-16 04:46:10 +00:00
|
|
|
}
|
2016-09-20 05:05:41 +00:00
|
|
|
Intent myIntent = new Intent(getActivity(), MonitorService.class);
|
|
|
|
getActivity().startService(myIntent);
|
|
|
|
rootToggle.setEnabled(false);
|
|
|
|
boolean boo = Utils.isMyServiceRunning(MonitorService.class, getActivity());
|
|
|
|
if (boo) {
|
|
|
|
Intent myServiceIntent = new Intent(getActivity(), MonitorService.class);
|
|
|
|
getActivity().startService(myServiceIntent);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Intent myIntent = new Intent(getActivity(), MonitorService.class);
|
|
|
|
getActivity().stopService(myIntent);
|
|
|
|
rootToggle.setEnabled(true);
|
|
|
|
}
|
2016-09-19 21:48:13 +00:00
|
|
|
|
2016-09-16 04:46:10 +00:00
|
|
|
}
|
|
|
|
|
2016-08-31 21:52:42 +00:00
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
new updateUI().execute();
|
|
|
|
}
|
|
|
|
|
2016-09-21 12:39:12 +00:00
|
|
|
@Override
|
|
|
|
public void onResult() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-31 21:52:42 +00:00
|
|
|
public class updateUI extends AsyncTask<Void, Void, Void> {
|
2016-08-26 10:45:35 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... voids) {
|
|
|
|
// Make sure static block invoked
|
|
|
|
Shell.rootAccess();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Void v) {
|
|
|
|
super.onPostExecute(v);
|
|
|
|
|
|
|
|
progressBar.setVisibility(View.GONE);
|
|
|
|
|
|
|
|
rootStatusView.setVisibility(View.VISIBLE);
|
|
|
|
safetynetStatusView.setVisibility(View.VISIBLE);
|
|
|
|
selinuxStatusView.setVisibility(View.VISIBLE);
|
|
|
|
|
|
|
|
if (Shell.rootAccess()) {
|
|
|
|
rootToggleView.setVisibility(View.VISIBLE);
|
2016-08-31 21:52:42 +00:00
|
|
|
autoRootToggleView.setVisibility(View.VISIBLE);
|
2016-08-26 10:45:35 +00:00
|
|
|
selinuxToggleView.setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
List<String> selinux = Shell.sh("getenforce");
|
|
|
|
|
|
|
|
if (selinux.isEmpty()) {
|
|
|
|
selinuxStatusContainer.setBackgroundColor(grey500);
|
|
|
|
selinuxStatusIcon.setImageResource(statusUnknown);
|
|
|
|
|
|
|
|
selinuxStatus.setText(R.string.selinux_error_info);
|
|
|
|
selinuxStatus.setTextColor(grey500);
|
|
|
|
selinuxToggle.setChecked(false);
|
|
|
|
} else if (selinux.get(0).equals("Enforcing")) {
|
|
|
|
selinuxStatusContainer.setBackgroundColor(green500);
|
|
|
|
selinuxStatusIcon.setImageResource(statusOK);
|
|
|
|
|
|
|
|
selinuxStatus.setText(R.string.selinux_enforcing_info);
|
|
|
|
selinuxStatus.setTextColor(green500);
|
|
|
|
selinuxToggle.setChecked(true);
|
|
|
|
} else {
|
|
|
|
selinuxStatusContainer.setBackgroundColor(red500);
|
|
|
|
selinuxStatusIcon.setImageResource(statusError);
|
|
|
|
|
|
|
|
selinuxStatus.setText(R.string.selinux_permissive_info);
|
|
|
|
selinuxStatus.setTextColor(red500);
|
|
|
|
selinuxToggle.setChecked(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new File("/system/framework/twframework.jar").exists()) {
|
|
|
|
selinuxStatus.append("\n" + getString(R.string.selinux_samsung_info));
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (Shell.rootStatus) {
|
|
|
|
case -1:
|
|
|
|
// Root Error
|
|
|
|
rootStatusContainer.setBackgroundColor(grey500);
|
|
|
|
rootStatusIcon.setImageResource(statusUnknown);
|
|
|
|
rootStatus.setTextColor(grey500);
|
|
|
|
rootStatus.setText(R.string.root_error);
|
|
|
|
rootToggle.setChecked(false);
|
|
|
|
safetyNetStatusIcon.setImageResource(statusUnknown);
|
|
|
|
safetyNetStatus.setText(R.string.root_error_info);
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
// Not rooted
|
|
|
|
rootStatusContainer.setBackgroundColor(green500);
|
|
|
|
rootStatusIcon.setImageResource(statusOK);
|
|
|
|
rootStatus.setTextColor(green500);
|
|
|
|
rootStatus.setText(R.string.root_none);
|
|
|
|
rootToggle.setChecked(false);
|
|
|
|
safetyNetStatusIcon.setImageResource(statusOK);
|
|
|
|
safetyNetStatus.setText(R.string.root_none_info);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
// Proper root
|
2016-09-20 05:05:41 +00:00
|
|
|
if (autoRootStatus) {
|
2016-08-26 10:45:35 +00:00
|
|
|
rootStatusContainer.setBackgroundColor(green500);
|
2016-09-20 05:05:41 +00:00
|
|
|
rootStatusIcon.setImageResource(statusAuto);
|
|
|
|
rootStatusIcon.setColorFilter(Color.WHITE, PorterDuff.Mode.SRC_ATOP);
|
2016-08-26 10:45:35 +00:00
|
|
|
rootStatus.setTextColor(green500);
|
2016-09-20 05:05:41 +00:00
|
|
|
rootStatus.setText(R.string.root_auto_unmounted);
|
|
|
|
rootToggle.setEnabled(false);
|
2016-08-26 10:45:35 +00:00
|
|
|
safetyNetStatusIcon.setImageResource(statusOK);
|
2016-09-20 05:05:41 +00:00
|
|
|
safetyNetStatus.setText(R.string.root_auto_unmounted_info);
|
2016-08-26 10:45:35 +00:00
|
|
|
break;
|
2016-09-20 05:05:41 +00:00
|
|
|
} else {
|
|
|
|
rootToggle.setEnabled(true);
|
|
|
|
if (Utils.rootEnabled()) {
|
|
|
|
// Mounted
|
|
|
|
rootStatusContainer.setBackgroundColor(accent);
|
|
|
|
rootStatusIcon.setImageResource(statusError);
|
|
|
|
rootStatus.setTextColor(accent);
|
|
|
|
rootStatus.setText(R.string.root_enabled);
|
|
|
|
rootToggle.setChecked(true);
|
|
|
|
safetyNetStatusIcon.setImageResource(statusError);
|
|
|
|
safetyNetStatus.setText(R.string.root_enabled_info);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
// Disabled
|
|
|
|
rootStatusContainer.setBackgroundColor(green500);
|
|
|
|
rootStatusIcon.setImageResource(statusOK);
|
|
|
|
rootStatus.setTextColor(green500);
|
|
|
|
rootStatus.setText(R.string.root_disabled);
|
|
|
|
rootToggle.setChecked(false);
|
|
|
|
safetyNetStatusIcon.setImageResource(statusOK);
|
|
|
|
safetyNetStatus.setText(R.string.root_disabled_info);
|
|
|
|
break;
|
|
|
|
}
|
2016-08-26 10:45:35 +00:00
|
|
|
}
|
|
|
|
case 2:
|
|
|
|
// Improper root
|
|
|
|
rootStatusContainer.setBackgroundColor(red500);
|
|
|
|
rootStatusIcon.setImageResource(statusError);
|
|
|
|
rootStatus.setTextColor(red500);
|
|
|
|
rootStatus.setText(R.string.root_system);
|
|
|
|
rootToggle.setChecked(true);
|
|
|
|
safetyNetStatusIcon.setImageResource(statusError);
|
|
|
|
safetyNetStatus.setText(R.string.root_system_info);
|
2016-08-31 21:52:42 +00:00
|
|
|
autoRootToggleView.setVisibility(View.GONE);
|
2016-08-26 10:45:35 +00:00
|
|
|
rootToggleView.setVisibility(View.GONE);
|
|
|
|
selinuxToggleView.setVisibility(View.GONE);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-21 12:39:12 +00:00
|
|
|
|
2016-08-26 10:45:35 +00:00
|
|
|
}
|