I was trying to find out the solution about how to execute shell script with full permission, but was unable to get the answer. here was the question
So, As an alternative I wrote mkdir. cp, mount command logic in C, and compile a binary. that works fine if i execute that binary from the console. But when i execute that binary from ndk code or Android code. It cant create and directory or copy any file. Even I merged my all C source with Android using ndk still it is not able to do such task. I cross-verified it with all possibilities listed below:
- Changed the permission of the binary a.out
- Changed the console permission in init.rc file
- Tried to call the binary from ndk layer as well as android layer
- Tried with "su -c " command
- merged all C code to Android app and tried to run
Please help..
P.S.
- One more Interesting thing is, if I use system command in C like system ("mkdir -p /test1/test3/") or system ("cp file1 /system/"), It is not able to do so from both application as well as by executing the binary from console.
- Also, when i execute the binary or script it works fine just commands like mount, mkdir, cp are not working. I can see all echos from the script and printfs from the C compiled binary.