-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgroup_2_getgrent_setgrent.c
66 lines (56 loc) · 2.03 KB
/
group_2_getgrent_setgrent.c
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
#define _DEFAULT_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <grp.h>
/*
Le funzioni setgrent(), getgrent(), endgrent() consentono di scandire il file
dei gruppi, che solitamente e' collocato in /etc/group, implementato
grazie alla struttura 'group' definita in <grp.h>.
HEADER : <grp.h>
PROTOTYPE : struct group *getgrent(void);
void setgrent(void);
void endgrent(void);
SEMANTICS : La funzione getgrent() consente di ottenere il prossimo campo del
file dei gruppi /etc/group;
la funzione setgrent() riavvolge il file dei gruppi, ossia
punta al primo record;
la funzione endgrent() chiude tutti i file ad operazioni avvenute.
RETURNS : La funzione getgrent() ritorna un puntatore alla struttura group
in caso di successo, NULL in caso di errore.
--------------------------------------------------------------------------------
Per compilare il programma con le funzioni getgrent(), setgrent(), endgrent()
e' necessario definire una "feature test macros , nel caso specifico si e'
optato per _DEFAULT_SOURCE. */
int main(int argc, char *argv[]) {
struct group *grp;
char *user_name;
if (argc < 2) {
fprintf(stderr, "Usage: %s <user>\n\n"
"find a <user> in the system.\n", argv[0]);
exit(EXIT_FAILURE);
}
user_name = argv[1];
// Lista completa di utente e UID
while ((grp = getgrent()) != NULL) {
printf("%6d : %s : %1s : ", grp->gr_gid, grp->gr_name, grp->gr_passwd);
int i = 0;
while (grp->gr_mem[i]) {
printf("%s, ", grp->gr_mem[i]);
i++;
}
printf("\n");
}
// Per ricominciare la scanning dall'inizio del file
setgrent();
// Verifica la presenza di 'user_name' nel file /etc/group
while ((grp = getgrent()) != NULL) {
if (strcmp(user_name, grp->gr_name) == 0) {
printf("\ngroup \'%s\' is in the system.\n", argv[1]);
break;
}
}
endgrent();
return(EXIT_SUCCESS);
}