- /*
- * getent_passwd_reader1.c - simply demo howto read cygwin passwd/group entries from (Cygwin) getent
- *
- * Written by Roland Mainz <roland.mainz@nrubsig.org>
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
- #if 1
- typedef unsigned long uid_t;
- typedef unsigned long gid_t;
- #define VAL_LEN 64
- #endif
- int cygwin_getent_passwd(const char *name, char *res_loginname, uid_t *res_uid, gid_t *res_gid)
- {
- char cmdbuff[1024];
- char passwd_line[1024];
- FILE* getent_pipe;
- int res = 1;
- /* fixme: better quoting for |name| needed */
- "C:\\cygwin64\\bin\\getent.exe",
- name);
- if ((getent_pipe = _popen(cmdbuff, "rt")) == NULL)
- {
- return 1;
- }
- {
- struct _cypwent
- {
- char* loginname;
- char* passwd;
- char* uidstr;
- char* gidstr;
- char* comment;
- char* homedir;
- char* shell;
- } pwent = { 0 };
- #define PWENT_ENTRY(var, prevvar) \
- (((var) = strchr((prevvar), ':'))?(*(var)++ = '\0',(var)):(NULL))
- pwent.loginname = passwd_line;
- if (!PWENT_ENTRY(pwent.passwd, pwent.loginname)) goto fail;
- if (!PWENT_ENTRY(pwent.uidstr, pwent.passwd)) goto fail;
- if (!PWENT_ENTRY(pwent.gidstr, pwent.uidstr)) goto fail;
- if (!PWENT_ENTRY(pwent.comment, pwent.gidstr)) goto fail;
- if (!PWENT_ENTRY(pwent.homedir, pwent.comment)) goto fail;
- PWENT_ENTRY(pwent.shell, pwent.homedir);
- unsigned long uid;
- unsigned long gid;
- errno = 0;
- if (errno != 0)
- goto fail;
- errno = 0;
- if (errno != 0)
- goto fail;
- if (res_loginname)
- (void)strcpy_s(res_loginname, VAL_LEN, pwent.loginname);
- *res_uid = uid;
- *res_gid = gid;
- res = 0;
- }
- fail:
- (void)_pclose(getent_pipe);
- return res;
- }
- int cygwin_getent_group(const char* name, char* res_group_name, gid_t* res_gid)
- {
- char cmdbuff[1024];
- char group_line[1024];
- FILE* getent_pipe;
- int res = 1;
- /* fixme: better quoting for |name| needed */
- "C:\\cygwin64\\bin\\getent.exe",
- name);
- if ((getent_pipe = _popen(cmdbuff, "rt")) == NULL)
- {
- return 1;
- }
- {
- struct _cygrent
- {
- char* group_name;
- char* passwd;
- char* gidstr;
- char* userlist;
- } grent = { 0 };
- grent.group_name = group_line;
- if (!PWENT_ENTRY(grent.passwd, grent.group_name)) goto fail;
- if (!PWENT_ENTRY(grent.gidstr, grent.passwd)) goto fail;
- PWENT_ENTRY(grent.userlist, grent.gidstr);
- unsigned long gid;
- errno = 0;
- if (errno != 0)
- goto fail;
- if (res_group_name)
- (void)strcpy_s(res_group_name, VAL_LEN, grent.group_name);
- *res_gid = gid;
- res = 0;
- }
- else
- {
- }
- fail:
- (void)_pclose(getent_pipe);
- return res;
- }
- int main(int ac, char* av)
- {
- char name[VAL_LEN];
- uid_t uid;
- gid_t gid;
- if (!cygwin_getent_passwd("roland_mainz", name, &uid, &gid))
- if (!cygwin_getent_group("SYSTEM", name, &gid))
- return EXIT_SUCCESS;
- }
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
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.