maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [Announce] easyroot -- an even better way of becoming root (https://talk.maemo.org/showthread.php?t=14583)

ag2 2008-01-07 12:21

[Announce] easyroot -- an even better way of becoming root
 
This is a simple utility for gaining root access. It is similar to (and inspired by) becomeroot, but better in a number of ways:

* sources .bashrc and other startup scripts when turning on root mode
* correctly sets the home directory for user root
* doesn't force the built-in shell onto the user

In addition, there is now a shortcut for entering root mode - "root".

-----
Edit: newer version of easyroot is backward compatible with 'sudo gainroot'. The features above (e.g. sourcing of .bashrc) are only activated by typing 'root'. Thanks to fanoush for this suggestion.
-----

Sample session

[user@nokia ~]$ root
[root@nokia ~]$

Download easyroot here:

http://maemostuff.com

(PS This works for me, but it may not work for you. Backup your files just in case :))

Zuber 2008-01-07 12:39

Re: [Announce] easyroot -- an even better way of becoming root
 
I'm all for the easy option.
Will try it.

Thanks.

Zuber

fanoush 2008-01-07 14:44

Re: [Announce] easyroot -- an even better way of becoming root
 
Quote:

Originally Posted by ag2 (Post 122408)
This is a simple utility for gaining root access. It is similar to (and inspired by) becomeroot, but better in a number of ways

Even if it is better, it should stay 100% compatible with 'sudo gainroot'. Looks like you tried but still I would suggest to drop '-' after su from /usr/sbin/gainroot to make it more compatible with original version. You can add it to your new root script so it is still 'easy'. So root script would become "sudo gainroot -" and in original gainroot use something like "exec su $@". Using exec will avoid one sh process in calling stack (=save some memory). Same could be done in your new root script so together you will save two waiting shells (try it with ps, top or htop from SDK repository).

ag2 2008-01-07 20:59

Re: [Announce] easyroot -- an even better way of becoming root
 
Quote:

Originally Posted by fanoush (Post 122464)
Even if it is better, it should stay 100% compatible with 'sudo gainroot'. Looks like you tried but still I would suggest to drop '-' after su from /usr/sbin/gainroot to make it more compatible with original version. You can add it to your new root script so it is still 'easy'. So root script would become "sudo gainroot -" and in original gainroot use something like "exec su $@". Using exec will avoid one sh process in calling stack (=save some memory). Same could be done in your new root script so together you will save two waiting shells (try it with ps, top or htop from SDK repository).

Hi fanoush,

I am not sure what you mean by 100% compatible with 'sudo gainroot'. The original 'sudo gainroot' had serious problems, so deviating from it was a design goal. Let me elaborate a bit more on what I think is wrong with the current 'sudo gainroot':

- (this seems to be a bug with busybox) After 'sudo gainroot', "~" still resolves to /home/user instead of /root. Similarly, if you type 'cd' with no arguments, you end up in /home/user.

- with /bin/sh, none of the startup scripts (.bashrc, .profile, etc) are sourced. So if you want to have a custom prompt for root, you can't.

- 'sudo gainroot' always starts in busybox's sorry-*** shell, even if I become root from bash.

- I wasn't very happy with tons of logging (7 lines?) when switching to root. If I need to copy-paste something, the extra logging pushes the interesting stuff above the fold.

'su -' in my version works around all of the above problems.

Also, please note that typing 'sudo gainroot' still works. 'root' is just a convenient shortcut. You can add 'alias root="sudo gainroot"' to your .bashrc to avoid the extra shell instance, though in practice I think the overhead of an extra shell is negligible.

I am not sure about your 'exec' suggestions. I would think a new shell would be started anyway for 'sudo gainroot' regardless of what I put in 'root', because it is 'gainroot' that starts a new shell (with #!/bin/sh). No?

Finally, the original 'sudo gainroot' starts a new shell too, so this script is no worse than the original if you invoke it with 'sudo gainroot'.

Thanks.

fanoush 2008-01-07 21:41

Re: [Announce] easyroot -- an even better way of becoming root
 
'sudo gainroot' does not change current directory, does not read .<whatever>rc (and thus does not mess environment variables in unknown way) etc. and is here for more than 2 years. If you want something better/easier/incompatible with this, you (IMO) should put it to your 'root' shortcut so the old way (=running sudo gainroot) still works in same way. Especially if you force people to chose either becomeroot or your package. Design goal of breaking compatibility doesn't look like good goal to me.

One example of compatibility is launching sudo gainroot from scripts to relaunch itself as root like this
Code:

#!/bin/sh
if [ `id -u` != 0 ] ; then
#if not already root, call itself as root
        exec sudo gainroot <<EOF
exec $0 $*
EOF
        exit $?
fi
#real script follows
echo "I am `id`"
echo "current dir is `pwd`"

I am using it a lot in my scripts and over time lot of people may use it too for various quick hacks. It is simple way that allows you to run code as root from scripts without touching /etc/sudoers. Your change of /usr/sbin/gainroot may break such scripts that don't expect things like current working directory or other variables to change.

as for using exec - this is really small thing but as I said try to see with htop what happens when you launch your 'root' script an how many different processes (mainly shells) are spawned, kept in memory and wait for its child to exit. Exec call replaces current process so this does not happen.

penguinbait 2008-01-07 21:48

Re: [Announce] easyroot -- an even better way of becoming root
 
I just use GNU tar and or add ALL=ALL to user in /etc/sudoers

ag2 2008-01-07 22:16

Re: [Announce] easyroot -- an even better way of becoming root
 
fanoush -- I see your point. I will try the suggestions in your original post. If they work, I will update the script. Thanks once again for your feedback.

fanoush 2008-01-07 22:32

Re: [Announce] easyroot -- an even better way of becoming root
 
Quote:

Originally Posted by ag2 (Post 122775)
fanoush -- I see your point. I will try the suggestions in your original post. If they work, I will update the script. Thanks once again for your feedback.

Thanks for considering it :-)

BruceL 2008-01-07 22:37

Re: [Announce] easyroot -- an even better way of becoming root
 
Thanks for your work ag2. I must say that several of my scripts use Fanoush's gainroot trick and it would be a problem if it broke. However, it would be great to have .bashrc working.

ag2 2008-01-07 22:56

Re: [Announce] easyroot -- an even better way of becoming root
 
Changing su - to su helps only a little bit:

- .bashrc is still sourced
- the value of ~ changes to /root

The only difference is that the current directory doesn't change

I suppose I can put an if statement in gainroot so that it calls su when called from root and continues to call /bin/sh otherwise. Would this be acceptable? Can you think of other workarounds?

fanoush 2008-01-07 23:44

Re: [Announce] easyroot -- an even better way of becoming root
 
Well, you can join the club and use same trick as above in your root script if you wish. Just modify gainroot as becomeroot does, possibly leaving out the echo, useless test for MODE etc, and launch su - from your root script via sudo gainroot like above. Would that be acceptable?

ag2 2008-01-08 01:26

Re: [Announce] easyroot -- an even better way of becoming root
 
I've made the changes suggested by fanoush. Version 1.0-2 should now be backward-compatible with 'sudo gainroot', plus I use exec whenever possible. Please give it a try.

BruceL 2008-01-08 04:36

Re: [Announce] easyroot -- an even better way of becoming root
 
Seems to work! Thanks!
EDIT: Oops that was premature. See next post.

BruceL 2008-01-08 04:50

Re: [Announce] easyroot -- an even better way of becoming root
 
Oops. No it doesn't work...
I do get root, but no sourcing of .profile or .bashrc and I still get the 7 lines of output.

ag2 2008-01-08 05:04

Re: [Announce] easyroot -- an even better way of becoming root
 
Are you typing 'root'?

Regarding 7 lines output, I realized that my package only saves 1 line. If you want to eliminate logging entirely, install bash from a parallel thread.

BruceL 2008-01-08 05:30

Re: [Announce] easyroot -- an even better way of becoming root
 
Yes I typed 'root' and it did take me to root. I tried rebooting. I tried both .profile and .bashrc. I could source them manually of course.

Thanks for the tip about bash.

fanoush 2008-01-08 08:42

Re: [Announce] easyroot -- an even better way of becoming root
 
Yes, '-' is missing after running su from /usr/sbin/gainroot in this version.
BTW the $@ expands to all arguments so you may get unexpected arguments inside [ ], try running it like "sudo gainroot 1 2 3". Maybe something easier like
Code:

if [ "$1" = "--use-su" ] ; then
or maybe even
Code:

[ "$1" = "--use-su" ] && exec su -
could do the trick.

ag2 2008-01-08 09:14

Re: [Announce] easyroot -- an even better way of becoming root
 
Quote:

Originally Posted by BruceL (Post 123044)
Yes I typed 'root' and it did take me to root. I tried rebooting. I tried both .profile and .bashrc. I could source them manually of course.

Thanks for the tip about bash.

I see. This works fine in bash, but not in busybox. I will switch back to 'su -' then. Thanks for reporting this.

ag2 2008-01-08 09:40

Re: [Announce] easyroot -- an even better way of becoming root
 
Quote:

Originally Posted by ag2 (Post 123101)
I see. This works fine in bash, but not in busybox. I will switch back to 'su -' then. Thanks for reporting this.

Should work better now. Please give it another try.

fanoush - thanks for the tip about $@.

|tbb| 2008-01-08 11:55

Re: [Announce] easyroot -- an even better way of becoming root
 
for those who will use becomeroot anyway and dont want to type sudo gainroot anytime, just make an alias like i do and save it under /home/user/.profile
file contains
alias sg="sudo gainroot"

from now u only have to type sg to "becomeroot"

fanoush 2008-01-08 14:37

Re: [Announce] easyroot -- an even better way of becoming root
 
Quote:

Originally Posted by ag2 (Post 123111)
Should work better now. Please give it another try.

Sorry to bother again but == is bash-ism that may not work in standard /bin/sh. Looks like recent busybox shells can cope with this but this may not be valid for all versions. Just tried the 1.4.1 in OS2007 and it works but the 1.01 one in OS2006 fails
Code:

[ "x" == "x" ] && echo hi
[: ==: unknown operand


ag2 2008-01-09 03:42

Re: [Announce] easyroot -- an even better way of becoming root
 
Quote:

Originally Posted by fanoush (Post 123229)
Sorry to bother again but == is bash-ism that may not work in standard /bin/sh. Looks like recent busybox shells can cope with this but this may not be valid for all versions. Just tried the 1.4.1 in OS2007 and it works but the 1.01 one in OS2006 fails
Code:

[ "x" == "x" ] && echo hi
[: ==: unknown operand


Thanks for the heads up. Replaced == with =.

TheGogmagog 2008-05-30 19:55

Re: [Announce] easyroot -- an even better way of becoming root
 
FYI. I tried this with penguinbait's (built on from fanoush's I think) Install-Tools. Something failed, had to uninstall easyroot and install becomeroot. Unfortunatly I just finished rewriting a bunch of scripts to use root to gian root, all the commands had full command paths so it's just a pita to fix.


All times are GMT. The time now is 21:10.

vBulletin® Version 3.8.8