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
|
/*
* Use set/get/endpwent calls from two processes to iterate over the
* password database. This checks the multithreaded stuff works.
*/
#include <stdio.h>
#include <pwd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <wait.h>
void dump_pwent(char *id)
{
struct passwd *pw;
char fname[255];
FILE *fptr;
/* Open results file */
sprintf(fname, "/tmp/getpwent_r-%s.out-%d", id, getpid());
if ((fptr = fopen(fname, "w")) < 0) {
fprintf(stderr, "ERROR: could not open file %s: %s\n", fname,
sys_errlist[errno]);
return;
}
/* Dump passwd database */
setpwent();
while((pw = getpwent()) != NULL) {
fprintf(fptr,"%s:%s:%s:%d:%d\n", pw->pw_name, pw->pw_passwd,
pw->pw_gecos, pw->pw_uid, pw->pw_gid);
}
endpwent();
/* Close results file */
fclose(fptr);
}
#define NUM_FORKS 2
int main(int argc, char **argv)
{
pid_t pids[NUM_FORKS];
int i, status;
/* Check args */
if (argc != 2) {
printf("ERROR: must specify output file identifier\n");
return 1;
}
for(i = 0; i < NUM_FORKS; i++) {
/* Fork off lots */
if ((pids[i] = fork()) == -1) {
perror("fork");
return 1;
}
/* Child does tests */
if (pids[i] == 0) {
dump_pwent(argv[1]);
return 0;
}
}
/* Wait for everyone to finish */
for (i = 0; i < NUM_FORKS; i++) {
waitpid(pids[i], &status, 0);
}
printf("PASS: getpwent_r.c\n");
return 0;
}
|