pastebin - collaborative debugging tool
rovema.kpaste.net RSS


getent_passwd_reader1.c - simply demo howto read cygwin passwd/group entries from (Cygwin) getent
Posted by Anonymous on Sat 16th Sep 2023 10:53
raw | new post

  1.  
  2. /*
  3.  * getent_passwd_reader1.c - simply demo howto read cygwin passwd/group entries from (Cygwin) getent
  4.  *
  5.  * Written by Roland Mainz <roland.mainz@nrubsig.org>
  6.  */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #include <errno.h>
  11.  
  12. #if 1
  13. typedef unsigned long uid_t;
  14. typedef unsigned long gid_t;
  15.  
  16. #define VAL_LEN 64
  17. #endif
  18.  
  19. int cygwin_getent_passwd(const char *name, char *res_loginname, uid_t *res_uid, gid_t *res_gid)
  20. {
  21.     char cmdbuff[1024];
  22.     char passwd_line[1024];
  23.     FILE* getent_pipe;
  24.     int res = 1;
  25.  
  26.     /* fixme: better quoting for |name| needed */
  27.     (void)snprintf(cmdbuff, sizeof(cmdbuff), "%s passwd \"%s\"",
  28.         "C:\\cygwin64\\bin\\getent.exe",
  29.         name);
  30.     if ((getent_pipe = _popen(cmdbuff, "rt")) == NULL)
  31.     {
  32.         (void)perror("getent failed");
  33.         return 1;
  34.     }
  35.  
  36.     if (fgets(passwd_line, sizeof(passwd_line), getent_pipe))
  37.     {
  38.         struct _cypwent
  39.         {
  40.             char* loginname;
  41.             char* passwd;
  42.             char* uidstr;
  43.             char* gidstr;
  44.             char* comment;
  45.             char* homedir;
  46.             char* shell;
  47.         } pwent = { 0 };
  48. #define PWENT_ENTRY(var, prevvar) \
  49.             (((var) = strchr((prevvar), ':'))?(*(var)++ = '\0',(var)):(NULL))
  50.  
  51.         pwent.loginname = passwd_line;
  52.         if (!PWENT_ENTRY(pwent.passwd, pwent.loginname)) goto fail;
  53.         if (!PWENT_ENTRY(pwent.uidstr, pwent.passwd)) goto fail;
  54.         if (!PWENT_ENTRY(pwent.gidstr, pwent.uidstr)) goto fail;
  55.         if (!PWENT_ENTRY(pwent.comment, pwent.gidstr)) goto fail;
  56.         if (!PWENT_ENTRY(pwent.homedir, pwent.comment)) goto fail;
  57.         PWENT_ENTRY(pwent.shell, pwent.homedir);
  58.    
  59.         unsigned long uid;
  60.         unsigned long gid;
  61.  
  62.         errno = 0;
  63.         uid = strtol(pwent.uidstr, NULL, 10);
  64.         if (errno != 0)
  65.             goto fail;
  66.  
  67.         errno = 0;
  68.         gid = strtol(pwent.gidstr, NULL, 10);
  69.         if (errno != 0)
  70.             goto fail;
  71.  
  72.         (void)printf("loginname\t=%s\n", pwent.loginname);
  73.         (void)printf("passwd\t=%s\n", pwent.passwd);
  74.         (void)printf("uidstr\t=%s (%lu)\n", pwent.uidstr, (unsigned long)uid);
  75.         (void)printf("gidstr\t=%s (%lu)\n", pwent.gidstr, (unsigned long)gid);
  76.         (void)printf("comment\t=%s\n", pwent.comment);
  77.         (void)printf("homedir\t=%s\n", pwent.homedir);
  78.         (void)printf("shell\t=%s\n", pwent.shell);
  79.  
  80.         if (res_loginname)
  81.             (void)strcpy_s(res_loginname, VAL_LEN, pwent.loginname);
  82.         *res_uid = uid;
  83.         *res_gid = gid;
  84.         res = 0;
  85.     }
  86.  
  87. fail:
  88.     (void)_pclose(getent_pipe);
  89.  
  90.     return res;
  91. }
  92.  
  93. int cygwin_getent_group(const char* name, char* res_group_name, gid_t* res_gid)
  94. {
  95.     char cmdbuff[1024];
  96.     char group_line[1024];
  97.     FILE* getent_pipe;
  98.     int res = 1;
  99.  
  100.     /* fixme: better quoting for |name| needed */
  101.     (void)snprintf(cmdbuff, sizeof(cmdbuff), "%s group \"%s\"",
  102.         "C:\\cygwin64\\bin\\getent.exe",
  103.         name);
  104.     if ((getent_pipe = _popen(cmdbuff, "rt")) == NULL)
  105.     {
  106.         (void)perror("getent failed");
  107.         return 1;
  108.     }
  109.  
  110.     if (fgets(group_line, sizeof(group_line), getent_pipe))
  111.     {
  112.         struct _cygrent
  113.         {
  114.             char* group_name;
  115.             char* passwd;
  116.             char* gidstr;
  117.             char* userlist;
  118.         } grent = { 0 };
  119.  
  120.         grent.group_name = group_line;
  121.         if (!PWENT_ENTRY(grent.passwd, grent.group_name)) goto fail;
  122.         if (!PWENT_ENTRY(grent.gidstr, grent.passwd)) goto fail;
  123.         PWENT_ENTRY(grent.userlist, grent.gidstr);
  124.  
  125.         unsigned long gid;
  126.  
  127.         errno = 0;
  128.         gid = strtol(grent.gidstr, NULL, 10);
  129.         if (errno != 0)
  130.             goto fail;
  131.  
  132.         (void)printf("group_name\t=%s\n", grent.group_name);
  133.         (void)printf("passwd\t=%s\n", grent.passwd);
  134.         (void)printf("gidstr\t=%s (%lu)\n", grent.gidstr, (unsigned long)gid);
  135.         (void)printf("userlist\t=%s\n", grent.userlist);
  136.  
  137.         if (res_group_name)
  138.             (void)strcpy_s(res_group_name, VAL_LEN, grent.group_name);
  139.         *res_gid = gid;
  140.         res = 0;
  141.     }
  142.     else
  143.     {
  144.         (void)puts("no match for group");
  145.     }
  146.  
  147. fail:
  148.     (void)_pclose(getent_pipe);
  149.  
  150.     return res;
  151. }
  152.  
  153. int main(int ac, char* av)
  154. {
  155.     char name[VAL_LEN];
  156.     uid_t uid;
  157.     gid_t gid;
  158.  
  159.     if (!cygwin_getent_passwd("roland_mainz", name, &uid, &gid))
  160.         (void)printf("# roland_mainz returned %s, uid=%d, gid=%d\n", name, (int)uid, (int)gid);
  161.  
  162.     if (!cygwin_getent_group("SYSTEM", name, &gid))
  163.         (void)printf("# SYSTEM returned %s, gid=%d\n", name, (int)gid);
  164.  
  165.     return EXIT_SUCCESS;
  166. }

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at