vote up 5 vote down star

I need to set my process to run under 'nobody', I've found os.setuid(), but how do I find uid if I have login?

I've found out that uids are in /etc/passwd, but maybe there is a more pythonic way than scanning /etc/passwd. Anybody?

flag

2 Answers

vote up 10 vote down check

You might want to have a look at the pwd module in the python stdlib, for example:

import pwd
pw = pwd.getpwnam("nobody")
uid = pw.pw_uid

it uses /etc/passwd (well, technically it uses the posix C API, so I suppose it might work on an OS if it didn't use /etc/passwd but exposed the needed functions) but is cleaner than parsing it manually

link|flag
Note that using pwd.getpwnam works correctly even when /etc/passwd points to external mechanisms (think a line with a single "+" in /etc/passwd) like LDAP. – ΤΖΩΤΖΙΟΥ Nov 17 '08 at 10:41
vote up 4 vote down

Never directly scan /etc/passwd.

For instance, on a Linux system I administer, the user accounts are not on /etc/passwd, but on a LDAP server.

The correct way is to use getpwent/getgrent and related C functions (as in @TFKyle's answer), which will get the information on the correct way for each system (on Linux glibc, it reads /etc/nsswitch.conf to know which NSS dynamic libraries to load to get the information).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.