美文网首页程序员
系统数据文件和信息

系统数据文件和信息

作者: 陈伟志 | 来源:发表于2016-07-01 09:06 被阅读0次

    /etc/passwd

    passwd文件保存着用户的初始工作信息, 每一行保存一位用户的信息

    #include <pwd.h>
     struct passwd{
        char * pw_name; /* 用户名*/
        char * pw_passwd; /* 密码 */
        uid_t pw_uid; /* 用户ID */
        gid_t pw_gid; /* 组ID */
        char * pw_gecos;  /* 注释 */
        char * pw_dir; /* 初始工作目录 */
        char * pw_shell; /* 初始shell */
    };  
    //典型的一行信息
    root:x:0:0:root:/root:/bin/bash
    

    可以通过getpwuid或getpwnam来获取指定用户的信息
    struct passwd *getpwuid(uid_t uid); 通过指定uid来获取
    struct passwd *getpwnam(const char *name); 通过指定用户名来获取

    struct passwd *pwd;
    //root的uid为0, 或pwd=getpwnam("root")
    if((pwd=getpwuid(0)) ==NULL){ 
        perror("getpuid error");
        exit(1);
    }else{
        printf("name=%s\t",pwd->pw_name);
        printf("uid=%u\t",pwd->pw_uid);
        printf("gid=%u\n,pwd->pw_gid);
    }
    

    除了一次获取一个用户外, 系统还提供了遍历的方法

    struct passwd *ptr;
    setpwent(); //打开
    while((ptr=getpwent()) !=NULL){ //读取
        ... //do something
    }
    endwent(); //关闭
    

    /etc/shadow

    shadow保存着用户密码的相关信息

    #include <shadow.h>
    struct spwd {
        char *sp_namp;              /* 用户名*/
        char *sp_pwdp;              /* 加密后的用户密码.  */
        long int sp_lstchg;         /* 上次更改密钥的时间.  */
        long int sp_min;          
        long int sp_max;          
        long int sp_warn;        
        long int sp_inact;        
        long int sp_expire;        /* 账户到期天数 */
        unsigned long int sp_flag;  
      };
    

    与上一个的获取方法类似, 只是shadow结构没有uid, 所以少了一个通过uid来获取的方法

    struct spwd *sp;
    if((sp=getspnam("root")) ==NULL){
        perror("getspnam error");
        exit(1);
    }else{
        printf("name=%s\t",sp->sp_name);
        printf("pwdp=%s\n",sp->sp_pwdp);
    }
    
    struct spwd *ptr;
    setspent(); //打开
    while((ptr=getspent()) !=NULL){ //读取
        ... //do something
    }
    endspent(); //关闭
    

    /etc/group

    group文件保存着用户所属组的信息

    #include <grp.h>
    struct group{
        char *gr_name;
        char *gr_passwd;
        int gr_gid;
        char *gr_mem;
    };
    

    获取方法同passwd类似, 函数如下

    struct group *getgrgid(gid_t gid);
    struct group *getgrnam(const char *name);
    
    struct group *setgrent();
    struct group *getgrent();
    struct endgrent();
    

    其它

    set/get/end三个组合函数对下列数据文件均适用


    d9d40181-3bc6-49b5-aeaa-91f741cfc2d6.png

    时间日期函数

    4c8af49a-7863-4b8e-9ea9-60e34eecbc79.png

    ctime/asctime因为没有缓冲大小的设置已经被标记为弃用

    #include <time.h>
    #include <stdio.h>
     
    int main(){
        time_t t;
        struct tm *tmp;
        char buf2[64];
     
        time(&t);
        tmp=localtime(&t);
        if(strftime(buf2,64,"time and date: %r %a %b %d, %Y",tmp)==0)
            printf("strftime failed");
        else
            printf("%s\n",buf2);
        return 0;
    }
    

    相关文章

      网友评论

        本文标题:系统数据文件和信息

        本文链接:https://www.haomeiwen.com/subject/scpfjttx.html