vote up 2 vote down star
1

I know about passwd(1) and crypt(3). What I'm looking for is a C API to call which will set the user's password in the passwd/shadow files, without having to programatically walk the files and overwrite the entry for the user in question. Application runs as root.

Does such an API exist?

EDIT: Guess I should specify, the password is being synced between different systems, so we cannot simply call system("passwd") and allow the user to enter whatever password they want when passwd prompts them. We need to know the password so we can programatically update the other systems with the same password.

flag

I would just exec passwd with the proper arguments... – Tom Ritter Apr 28 at 18:46
What parameters would that be? passwd does not have a parameter for specifying the password -- only the username. :( – Stéphane Apr 28 at 18:53
1  
Maybe this helps? stackoverflow.com/questions/714915/… – 8jean Apr 28 at 20:12

7 Answers

vote up 0 vote down check

As 8jean commented above, looks like /usr/sbin/chpasswd might be the easiest way. Otherwise I'd have gone with noha's comment of using functions like fgetpwent() -- or fgetspent() for dealing with the shadow file -- to walk the list of users and modify the record(s) I need to change. Thanks, everyone!

link|flag
vote up 4 vote down

This would most likely vary depending on what mechanism the system in question uses...

...which brings me to another suggestion, use existing tools to have the different systems authenticate users against a common store instead - like LDAP or whatever directory or master system is available at your site. Or set one up. Preferably not NIS+ ^^

Do not reinvent the wheel, as they supposedly say.

Where would you get the clear text password from to begin with? If it's out there, why even bother having passwords? (Yeah, I know I'm a prick when it comes to these things, sorry - let the downvotes begin ;)

link|flag
vote up 1 vote down

Maybe the putpwent call is what you are looking for. Try man putpwent. On a quicks search I find a page with some examples. It might help.

http://linux.omnipotent.net/article.php?article_id=10935

Check getpwnam for looking up than changing the entry and utilizing putpwent.

link|flag
vote up 2 vote down

Using /etc/passwd and /etc/shadow for password storage? Are the UIDs in sync between systems? You could simply copy/overwrite the line in the /etc/shadow file for the particular user.

And the "don't do it" answer would be to use a NIS server and change the password only once.

link|flag
vote up 0 vote down

You could have a look at passwd source, but I'd first try an easier and lazier way: I'd just strace passwd and see what happens.

link|flag
strace wouldn't help too much, it is too low level. At best it would show open on both /etc/shadow and /etc/passwd and write being called on those file handles. – Evan Teran Apr 28 at 19:17
vote up 0 vote down

Perhaps you want PAM? Not sure, but most distributions use it...

Added: It looks like Mac OS X uses openssl to manage it's password hashing. It may be possible to do something similar under linux, but for your needs you have to be compatible with the authentication layer used by the OS.

link|flag
vote up -2 vote down

The best bet is to exec the passwd command with the appropriate arguments and let it worry about the file handling, crypt, and file locking issues. At some level, something is going to have to "programmatically walk the files" no matter what. Unless you really have a big performance problem with this, you're better off relying on the existing code and experience rather than trying to duplicate the existing code.

link|flag
1  
Passwd command does not allow password to be specified as a command-line argument. – Stéphane Apr 28 at 18:55
1  
Could pipe commands to passwd. – Joey Robert Apr 28 at 19:50

Your Answer

Get an OpenID
or

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