summaryrefslogtreecommitdiff
path: root/etc.c
blob: 311f6eb137be48fab1a0000cd215eee49756721e (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/************************************************

  etc.c -

  $Author: matz $
  $Date: 1994/06/17 14:23:49 $
  created at: Tue Mar 22 18:39:19 JST 1994

************************************************/

#include "ruby.h"
#include <pwd.h>
#include <grp.h>

char *getlogin();

static VALUE
Fetc_getlogin(obj)
    VALUE obj;
{
    char *login = getlogin();

    if (login)
	return str_new2(getlogin());
    return Qnil;
}

static VALUE
setup_passwd(pwd)
    struct passwd *pwd;
{
    VALUE pw, name, passwd, gecos, dir, shell;
#ifdef PW_CLASS
    VALUE class;
#endif
#ifdef PW_COMMENT
    VALUE comment;
#endif

    if (pwd == Qnil) rb_sys_fail("/etc/passwd");
    GC_LINK;
    GC_PRO3(pw, str_new2(pwd->pw_name));
    GC_PRO3(passwd, str_new2(pwd->pw_passwd));
    GC_PRO3(gecos, str_new2(pwd->pw_gecos));
    GC_PRO3(dir, str_new2(pwd->pw_dir));
    GC_PRO3(shell, str_new2(pwd->pw_shell));
#ifdef PW_CLASS
    GC_PRO3(class, str_new2(pwd->pw_class));
#endif
#ifdef PW_COMMENT
    GC_PRO3(comment, str_new2(pwd->pw_comment));
#endif

    pw = struct_new("passwd",
		    "name", name,
		    "passwd", passwd,
		    "uid", INT2FIX(pwd->pw_uid),
		    "gid", INT2FIX(pwd->pw_gid),
		    "gecos", gecos,
		    "dir", dir,
		    "shell", shell,
#ifdef PW_CHANGE
		    "change", INT2FIX(pwd->pw_change),
#endif
#ifdef PW_QUOTA
		    "quota", INT2FIX(pwd->pw_quota),
#endif
#ifdef PW_AGE
		    "age", INT2FIX(pwd->pw_age),
#endif
#ifdef PW_CLASS
		    "class", class,
#endif
#ifdef PW_COMMENT
		    "comment", comment,
#endif
#ifdef PW_EXPIRE
		    "expire", INT2FIX(pwd->pw_expire),
#endif
		    Qnil);
    GC_UNLINK;

    return pw;
}

static VALUE
Fetc_getpwuid(obj, args)
    VALUE obj, args;
{
    VALUE id;
    int uid;
    struct passwd *pwd;

    if (rb_scan_args(args, "01", &id) == 1) {
	uid = NUM2INT(id);
    }
    else {
	uid = getuid();
    }
    pwd = getpwuid(uid);
    if (pwd == Qnil) Fail("can't find user for %d", uid);
    return setup_passwd(pwd);
}

static VALUE
Fetc_getpwnam(obj, nam)
    VALUE obj, nam;
{
    struct passwd *pwd;

    Check_Type(nam, T_STRING);
    pwd = getpwnam(RSTRING(nam)->ptr);
    if (pwd == Qnil) Fail("can't find user for %s", RSTRING(nam)->ptr);
    return setup_passwd(pwd);
}

static VALUE
Fetc_passwd(obj)
    VALUE obj;
{
    struct passwd *pw;

    if (iterator_p()) {
	setpwent();
	while (pw = getpwent()) {
	    rb_yield(setup_passwd(pw));
	}
	endpwent();
	return obj;
    }
    pw = getpwent();
    if (pw == Qnil) Fail("can't fetch next -- /etc/passwd");
    return setup_passwd(pw);
}

static VALUE
setup_group(grp)
    struct group *grp;
{
    VALUE mem, obj, name, passwd;
    char **tbl;

    GC_LINK;
    GC_PRO3(mem, ary_new());
    tbl = grp->gr_mem;
    while (*tbl) {
	Fary_push(mem, str_new2(*tbl));
	tbl++;
    }
    GC_PRO3(name, str_new2(grp->gr_name));
    GC_PRO3(passwd, str_new2(grp->gr_passwd));
    obj = struct_new("group",
		     "name", name, 
		     "passwd", passwd,
		     "gid", INT2FIX(grp->gr_gid),
		     "mem", mem,
		     Qnil);
    GC_UNLINK;

    return obj;
}

static VALUE
Fetc_getgrgid(obj, id)
    VALUE obj, id;
{
    int gid;
    struct group *grp;

    gid = NUM2INT(id);
    grp = getgrgid(gid);
    if (grp == Qnil) Fail("can't find group for %d", gid);
    return setup_group(grp);
}

static VALUE
Fetc_getgrnam(obj, nam)
    VALUE obj, nam;
{
    struct group *grp;

    Check_Type(nam, T_STRING);
    grp = getgrnam(RSTRING(nam)->ptr);
    if (grp == Qnil) Fail("can't find group for %s", RSTRING(nam)->ptr);
    return setup_group(grp);
}

static VALUE
Fetc_group(obj)
    VALUE obj;
{
    struct group *grp;

    if (iterator_p()) {
	setgrent();
	while (grp = getgrent()) {
	    rb_yield(setup_group(grp));
	}
	endgrent();
	return obj;
    }
    return setup_group(getgrent());
}

VALUE M_Etc;

Init_Etc()
{
    M_Etc = rb_define_module("Etc");

    rb_define_mfunc(M_Etc, "getlogin", Fetc_getlogin, 0);

    rb_define_mfunc(M_Etc, "getpwuid", Fetc_getpwuid, -2);
    rb_define_mfunc(M_Etc, "getpwnam", Fetc_getpwnam, 1);
    rb_define_mfunc(M_Etc, "passwd", Fetc_passwd, 0);

    rb_define_mfunc(M_Etc, "getgrgid", Fetc_getgrgid, 1);
    rb_define_mfunc(M_Etc, "getgrnam", Fetc_getgrnam, 1);
    rb_define_mfunc(M_Etc, "group", Fetc_group, 0);
}