Results 1 to 9 of 9

Thread: sticky bit to copy files owned by root

  1. #1
    Join Date
    Jan 2008
    Beans
    7
    Distro
    Ubuntu 8.04 Hardy Heron

    sticky bit to copy files owned by root

    I've read and re-read discussions on the sticky bit - but I still seem to be using it wrong.

    I'm managing a server where several team members are working on a project together. Without giving root access to this team members, I'd like to allow them to copy over a directory of files owned by root, permission are 700 on that directory.

    our group is "stowdev"

    my script is as follows:

    Code:
    #!/bin/bash
    cp -r /path/to/rootowned .
    I called it cp_rootowned and set permissions as follows:

    Code:
    -rwsr-xr-- 1 root    stowdev   58 2008-05-01 09:35 cp_rootowned
    this doesn't work, it just says permission denied. If I add a whoami to that script it prints my username... I thought that sticky bit meant it would run as root?

    Also, once I get the script to copy the files, I'll have to make the files owned by whoever ran the script - any tips?

    thx!

  2. #2
    Join Date
    Feb 2008
    Beans
    606
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: sticky bit to copy files owned by root

    Setuid is generally disabled by default for shell scripts. I'm not sure how to enabled it if you must do that.

  3. #3
    Join Date
    Nov 2007
    Location
    London, England
    Beans
    7,699

    Re: sticky bit to copy files owned by root

    You can set the setuid bit on scripts, it's just that the kernel doesn't honour it. Security reasons, allegedly. It will honour it for comiled code though. A C program with a system() call will do the trick.

    I thought the setuid bit and sticky bits were different. I'm not certain though.

  4. #4
    Join Date
    Jan 2008
    Beans
    7
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: sticky bit to copy files owned by root

    thx for the replies. I'll just skip it for now, it's not a must-have. Just trying to explore and learn a little. I could well be wrong in calling it sticky bit...

  5. #5
    Join Date
    Feb 2008
    Beans
    606
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: sticky bit to copy files owned by root

    Quote Originally Posted by The Cog View Post
    I thought the setuid bit and sticky bits were different. I'm not certain though.
    Yes. One is an 's' and the other is a 't' .

    The sticky bit on executables used to keep them in memory to reduce startup time the next time they're run; I've no idea what it does these days.

  6. #6
    Join Date
    Nov 2006
    Location
    Wisconsin, USA
    Beans
    920
    Distro
    Ubuntu 13.04 Raring Ringtail

    Re: sticky bit to copy files owned by root

    This is a job for sudo

  7. #7
    Join Date
    Jan 2008
    Beans
    7
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: sticky bit to copy files owned by root

    oh.. right of course, I can give the user sudo rights for just that script... shoulda thought of that

  8. #8
    Join Date
    Nov 2007
    Location
    London, England
    Beans
    7,699

    Re: sticky bit to copy files owned by root

    Quote Originally Posted by movieman View Post
    Yes. One is an 's' and the other is a 't' .

    The sticky bit on executables used to keep them in memory to reduce startup time the next time they're run; I've no idea what it does these days.
    I seem to remember that on a shared folder, it makes the contents files only delete-able by the owner even though the directory is world writeable. /tmp is an example.

  9. #9
    Join Date
    Sep 2007
    Beans
    68
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: sticky bit to copy files owned by root

    Quote Originally Posted by thnn View Post
    oh.. right of course, I can give the user sudo rights for just that script... shoulda thought of that
    If you allow them to be able to sudo the script, make sure they can't edit (write to) it-- otherwise they can add whatever command they want in the script and it will run as root........the same may be true if they can delete the file and replace it with one of their choosing....
    Sean T Murray

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •