summaryrefslogtreecommitdiff
path: root/src/pwd/getpwent.c
blob: 72e15109ef8701ba34ce906af9b8b8ce10e6cdd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#if 0

#if ((!defined _POSIX_C_SOURCE) || (_POSIX_C_SOURCE < 2))
#undef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 2
#endif

#include <sys/types.h>
#include <pwd.h>
#include <stdlib.h>
#include <stdio.h>
#include <limits.h>
#include <string.h>
#include "_config.h"
#include "_pwd.h"

#ifndef LINE_MAX
#define LINE_MAX _POSIX2_LINE_MAX
#endif

#ifndef _XOPEN_SOURCE
static
#endif

struct passwd * getpwent(void)
{
	static char buf[LINE_MAX + 1];
	char *user, *password, *uid, *gid, *gecos, *home, *shell, *nl;

	/* TODO: attempt first calling _PWD_CMD */

	if (__pwd.db == NULL) {
		__pwd.db = fopen(_PWD_DB, "r");
		if (__pwd.db == NULL) {
			return NULL;
		}
	}

	if (fgets(buf, sizeof(buf), __pwd.db) == NULL) {
		endpwent();
		return NULL;
	}

	user = buf;
	if ((password = strchr(buf, ':')) != NULL) {
		*password = '\0';
		password++;
	} else {
		return NULL;
	}

	if ((uid = strchr(password, ':')) != NULL) {
		*uid = '\0';
		uid++;
	} else {
		return NULL;
	}

	if ((gid = strchr(uid, ':')) != NULL) {
		*gid = '\0';
		gid++;
	} else {
		return NULL;
	}

	if ((gecos = strchr(gid, ':')) != NULL) {
		*gecos = '\0';
		gecos++;
	} else {
		return NULL;
	}

	if ((home = strchr(gecos, ':')) != NULL) {
		*home = '\0';
		home++;
	} else {
		return NULL;
	}

	if ((shell = strchr(home, ':')) != NULL) {
		*shell = '\0';
		shell++;
		if ((nl = strchr(shell, '\n')) != NULL) {
			*nl = '\0';
		}
	} else {
		return NULL;
	}

	__pwd.pwd.pw_name = user;
	__pwd.pwd.pw_uid = strtoul(uid, NULL, 10);
	__pwd.pwd.pw_gid = strtoul(gid, NULL, 10);
	__pwd.pwd.pw_dir = home;
	__pwd.pwd.pw_shell = shell;

	return &__pwd.pwd;
}

/*
XOPEN(400)
*/


#endif