私は最初のAndroid
アプリケーションを開発しています。特権Shell
コマンドを実行するための「標準的な」方法があるかどうか興味があります。 su
を実行し、stdin
プロセスのsu
にコマンドを追加することで、1つの方法しか見つけることができませんでした。
DataOutputStream pOut = new DataOutputStream(p.getOutputStream());
DataInputStream pIn = new DataInputStream(p.getInputStream());
String rv = "";
// su must exit before its output can be read
pOut.writeBytes(cmd + "\nexit\n");
pOut.flush();
p.waitFor();
while (pIn.available() > 0)
rv += pIn.readLine() + "\n";
superuser
での特権(JNI
)呼び出しのラップについて読みました。これは可能ですか?もしそうなら、どのようにそれを達成しようとしますか?それ以外に、Java
から特権命令を呼び出す他の方法はありますか?
私の知る限り、root権限を使用してのみコマンドラインコマンドを実行できます。コードでルートアクセスをラップする、この汎用クラスを使用できます。 http://muzikant-Android.blogspot.com/2011/02/how-to-get-root-access-and-execute .html
必要なのは、このクラスを拡張し、getCommandsToExecute
メソッドをオーバーライドして、ルートとして実行するコマンドを返すことだけです。
public abstract class ExecuteAsRootBase
{
public static boolean canRunRootCommands()
{
boolean retval = false;
Process suProcess;
try
{
suProcess = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(suProcess.getOutputStream());
DataInputStream osRes = new DataInputStream(suProcess.getInputStream());
if (null != os && null != osRes)
{
// Getting the id of the current user to check if this is root
os.writeBytes("id\n");
os.flush();
String currUid = osRes.readLine();
boolean exitSu = false;
if (null == currUid)
{
retval = false;
exitSu = false;
Log.d("ROOT", "Can't get root access or denied by user");
}
else if (true == currUid.contains("uid=0"))
{
retval = true;
exitSu = true;
Log.d("ROOT", "Root access granted");
}
else
{
retval = false;
exitSu = true;
Log.d("ROOT", "Root access rejected: " + currUid);
}
if (exitSu)
{
os.writeBytes("exit\n");
os.flush();
}
}
}
catch (Exception e)
{
// Can't get root !
// Probably broken pipe exception on trying to write to output stream (os) after su failed, meaning that the device is not rooted
retval = false;
Log.d("ROOT", "Root access rejected [" + e.getClass().getName() + "] : " + e.getMessage());
}
return retval;
}
public final boolean execute()
{
boolean retval = false;
try
{
ArrayList<String> commands = getCommandsToExecute();
if (null != commands && commands.size() > 0)
{
Process suProcess = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(suProcess.getOutputStream());
// Execute commands that require root access
for (String currCommand : commands)
{
os.writeBytes(currCommand + "\n");
os.flush();
}
os.writeBytes("exit\n");
os.flush();
try
{
int suProcessRetval = suProcess.waitFor();
if (255 != suProcessRetval)
{
// Root access granted
retval = true;
}
else
{
// Root access denied
retval = false;
}
}
catch (Exception ex)
{
Log.e("ROOT", "Error executing root action", ex);
}
}
}
catch (IOException ex)
{
Log.w("ROOT", "Can't get root access", ex);
}
catch (SecurityException ex)
{
Log.w("ROOT", "Can't get root access", ex);
}
catch (Exception ex)
{
Log.w("ROOT", "Error executing internal operation", ex);
}
return retval;
}
protected abstract ArrayList<String> getCommandsToExecute();
}
私が知っている可能な解決策は、システムとしてアプリケーションに署名することです。これは、私が知っている限り、rootとまったく同じではありません: システム署名でAndroidアプリに署名する方法? 。しかし、これはあなたが望んでいたものではないと思います。
別のことは、必要なことを実行するネイティブアプリケーションを作成し、それを外部プロセスとして実行することです。ただし、パーティションがnosuidではない場合、このネイティブアプリケーションに必要な特権とsuidビットを付与する必要があります。しかし、これはあなたが必要とするものではありません。
JNIを介して呼び出されるCコードには、同じプロセスでの生活と同じ制限が適用されるはずです。
Suバイナリを使用できる場合は、JavaからRuntime.getRuntime().exec("su -c reboot")
などのコマンドを実行できます。
他の方法は覚えていません。