Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8516585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T05:28:12+00:00 2026-06-11T05:28:12+00:00

After start up I’d like my Linux program to drop root privileges and switch

  • 0

After start up I’d like my Linux program to drop root privileges and switch to a non-privileged account. I’ve found various examples online but nothing canonical for my requirements, specifically:

  1. this is a permanent drop
  2. both (e)uid and (e)gid should switch to non-root
  3. only Linux support (kernel > 2.6.32)
  4. no need for supplemental groups

The best approach I’ve found is:

uid_t new_uid = ...;
gid_t new_gid = ...;

gid_t rgid, egid, sgid;
if (setresgid(new_gid, new_gid, new_gid) < 0)
{
    perror("setresgid");
    exit(EXIT_FAILURE);
}
if (getresgid(&rgid, &egid, &sgid) < 0)
{
    perror("getresgid");
    exit(EXIT_FAILURE);
}
if (rgid != new_gid || egid != new_gid || sgid != new_gid)
{
    printf("unexpected gid");
    exit(EXIT_FAILURE);
}

if (setgroups(0, 0) != 0)
{
    perror("setgroups");
    exit(EXIT_FAILURE);
}

uid_t ruid, euid, suid;
if (setresuid(new_uid, new_uid, new_uid) < 0)
{
    perror("setresuid");
    exit(EXIT_FAILURE);
}
if (getresuid(&ruid, &euid, &suid) < 0)
{
    perror("getresuid");
    exit(EXIT_FAILURE);
}
if (ruid != new_uid || euid != new_uid || suid != new_uid)
{
    printf("unexpected uid");
    exit(EXIT_FAILURE);
}

I can wrap this in an exe and demonstrate that the uid’s and gid’s appear correct using:

ps -eO user,uid,ruid,suid,group,gid,rgid,sgid

The program can’t bind to a privileged port or manipulate most root-owned files, so that’s all good.

I’ve also found the captest program (included in libcap-ng-utils) which verifies that the process does not have any unexpected capabilities(7).

However, since security is a concern I’d like to be more confident that I’ve dropped all non-essential privileges correctly. How can I be certain?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T05:28:14+00:00Added an answer on June 11, 2026 at 5:28 am

    The “canonical” way to do this was implemented by D.J.Bernstein in his ‘setuidgid’ code, which was originally used into his QMail program, nowadays included in ‘daemontools’.

    The actual code used in GNU coreutils is based on DJB’s description of the procedure, its code is visible here https://github.com/wertarbyte/coreutils/blob/master/src/setuidgid.c

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a receiver that start after phone boot like this: <receiver android:name=.OnBootReceiver >
My process sometimes throws exception like dllnotfound after start. i have a monitor service
Is there an integrated feature that will enable me to auto-start the program after
Possible Duplicate: Eclipse wont start after computer restart Lately I opened my eclipse and
After a successful start of Tomcat and a few REST calls I get this
In my app after user press start button I execute some code in for
I installed LispCabinet and after the first start it tells me: server-ensure-safe-dir: The directory
after successfully building my application the start fails because it relies on config files
After a button is clicked to start a process on my web app, I
After a system upgrade i am no longer able to start my tomcat5 server.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.