How do I change a user password in C using Linux system calls?

China☆狼群 提交于 2019-12-08 05:28:29

问题


I'm trying to write a C program to change a user password using Linux system calls. I have tryed to use the /etc/passwd and /etc/shadow files but I'm having problems because the password is encrypted, can you help me to solve this?

void main (int argc, char **argv) {

uid_t uid;

struct passwd *pw;

uid = getuid();

if (argc > 1)
    pw = getpwnam(argv[1]);
else
    pw = getpwuid(uid);
//system("passwd");
//printf("%i",execl("/usr/bin/passwd","passwd",pw->pw_name)); //here I tried to use execl but it returns error

}

I used system("passwd") but I don't think my teacher will accept that. On the rest of it I was just trying to understand the getpw... stuff, it's not important.


回答1:


You can try to use putpwent for this. As Jonathan Leffler said in the comments, you need putspent if you want to update the shadow file.

But the easiest and probably the most portable way to do this would be to just call passwd via system(3) or popen(3).




回答2:


The first thing I learned when I started writing software on Linux after coming from a background in Windows and OS X development is that command line utilities are to be embraced, not shunned. Even for things that have the option of using a C api or a command line utility, it's often smarter and more reliable to fork and exec (do NOT popen unless you don't care to check whether or not the return code is 0!) than to use the C api.

In fact, calling a command line utility is no different than calling a C api unless you need to eke out every last bit of performance in your application. It's practically an API where the function name is the utility name and the parameters are the command line arguments.

So in answer to your question: try exec passwd and it'll take care of all your issues.



来源:https://stackoverflow.com/questions/9978892/how-do-i-change-a-user-password-in-c-using-linux-system-calls

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!