linux 下获取shadow的密码

man shadow可以查到一下的信息

SHADOW(3)                                                  库函数调用                                                     SHADOW(3)



名
       shadow, getspnam - 加密密码文件工具函数

SYNTAX
       #include 

       struct spwd *getspent();

       struct spwd *getspnam(char *name);

       void setspent();

       void endspent();

       struct spwd *fgetspent(FILE *fp);

       struct spwd *sgetspent(char *cp);

       int putspent(struct spwd *p, FILE *fp);

       int lckpwdf();

       int ulckpwdf();

描
       shadow 处理 shadow 密码文件 /etc/shadow 的内容。#include 文件中的结构是:

           struct spwd {
                 char          *sp_namp; /* user login name */
                 char          *sp_pwdp; /* encrypted password */
                 long int      sp_lstchg; /* last password change */
                 long int      sp_min; /* days until change allowed. */
                 long int      sp_max; /* days before change required */
                 long int      sp_warn; /* days warning for expiration */
                 long int      sp_inact; /* days before account inactive */
                 long int      sp_expire; /* date when account expires */
                 unsigned long int  sp_flag; /* reserved for future use */
           }


       每个字段的含义是:

       ·   sp_namp - 指向以 null 结束的用户名的指针

       ·   sp_pwdp - 指向 null 结束的密码的指针

       ·   sp_lstchg - 最近更改密码的日期(日期计算方法是从1970年1月1日开始的天数)

       ·   sp_min - days before which password may not be changed

       ·   sp_max - days after which password must be changed

       ·   sp_warn - days before password is to expire that user is warned of pending password expiration

       ·   sp_inact - days after password expires that account is considered inactive and disabled

       ·   sp_expire - days since Jan 1, 1970 when account will be disabled

       ·   sp_flag - reserved for future use

描
       getspent, getspname, fgetspent, and sgetspent each return a pointer to a struct spwd.  getspent returns the next entry from the
       file, and fgetspent returns the next entry from the given stream, which is assumed to be a file of the proper format.
       sgetspent returns a pointer to a struct spwd using the provided string as input.  getspnam searches from the current position
       in the file for an entry matching name.

       setspent 和 endspent 分别用来开始和结束对影子密码文件的访问。

       需要使用 lckpwdf 和 ulckpwdf 函数来确保对 /etc/shadow 文件的互斥访问。lckpwdf 使用 pw_lock 来获取一个最长为 15
       秒的锁,然后继续使用 spw_lock 来获取长度为开始的 15 秒时间的剩余量的第二把锁。总计 15 秒之后,无论哪个失败,lckpwdf 都返回
       -1。两把锁都获取成功时,返回 0。

DIAGNOSTICS
       如果没有更多条目了或者处理时出错,此函数返回 NULL。使用 int 类型返回值的函数返回 0 表示成功,-1 表示失败。

CAVEATS
       这些函数只能由超级用户使用,因为对影子密码文件的访问是受限的。

文
       /etc/shadow
           安全用户账户信息。

参
       getpwent(3), shadow(5).


                                                  SHADOW(3)

你可能感兴趣的:(linux 下获取shadow的密码)