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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
|
/* mkhomedir_helper - helper for pam_mkhomedir module
Released under the GNU LGPL version 2 or later
Copyright (c) Red Hat, Inc., 2009
Originally written by Jason Gunthorpe <jgg@debian.org> Feb 1999
Structure taken from pam_lastlogin by Andrew Morgan
<morgan@parc.power.net> 1996
*/
#include "config.h"
#include "pam_inline.h"
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <pwd.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <dirent.h>
#include <syslog.h>
#include <security/pam_ext.h>
#include <security/pam_modutil.h>
struct dir_spec {
int fd;
char *path;
};
static unsigned long u_mask = 0022;
static const char *skeldir = "/etc/skel";
static int create_homedir(struct dir_spec *, const struct passwd *, mode_t,
const char *, const char *);
static int
dir_spec_open(struct dir_spec *spec, const char *path)
{
spec->path = strdup(path);
if (spec->path == NULL)
goto fail;
spec->fd = open(spec->path, O_DIRECTORY);
if (spec->fd == -1)
{
free(spec->path);
goto fail;
}
return 0;
fail:
spec->path = NULL;
spec->fd = -1;
return -1;
}
static int
dir_spec_at(struct dir_spec *spec, struct dir_spec *parent, const char *path)
{
if (asprintf(&spec->path, "%s/%s", parent->path, path) < 0)
goto fail;
spec->fd = openat(parent->fd, path, O_DIRECTORY | O_NOFOLLOW);
if (spec->fd == -1)
{
free(spec->path);
goto fail;
}
return 0;
fail:
spec->path = NULL;
spec->fd = -1;
return -1;
}
static void
dir_spec_close(struct dir_spec *spec)
{
if (spec->fd != -1)
close(spec->fd);
free(spec->path);
}
static int
copy_entry(struct dir_spec *parent, const struct passwd *pwd, mode_t dir_mode,
const char *source, struct dirent *dent)
{
char remark[BUFSIZ];
int srcfd = -1, destfd = -1;
int res;
int retval = PAM_SESSION_ERR;
struct stat st;
char *newsource = NULL;
/* Determine what kind of file it is. */
if (asprintf(&newsource, "%s/%s", source, dent->d_name) < 0)
{
pam_syslog(NULL, LOG_CRIT, "asprintf failed for 'newsource'");
retval = PAM_BUF_ERR;
goto go_out;
}
if (lstat(newsource, &st) != 0)
{
retval = PAM_SUCCESS;
goto go_out;
}
/* If it's a directory, recurse. */
if (S_ISDIR(st.st_mode))
{
retval = create_homedir(parent, pwd, dir_mode & (~u_mask), newsource,
dent->d_name);
goto go_out;
}
/* If it's a symlink, create a new link. */
if (S_ISLNK(st.st_mode))
{
char *pointed;
pointed = xreadlink(newsource);
if (pointed)
{
if (symlinkat(pointed, parent->fd, dent->d_name) != 0)
{
retval = errno == EEXIST ? PAM_SUCCESS : PAM_PERM_DENIED;
if (retval != PAM_SUCCESS)
pam_syslog(NULL, LOG_DEBUG, "unable to create link %s/%s: %m",
parent->path, dent->d_name);
free(pointed);
goto go_out;
}
if (fchownat(parent->fd, dent->d_name, pwd->pw_uid, pwd->pw_gid,
AT_SYMLINK_NOFOLLOW) != 0)
{
pam_syslog(NULL, LOG_DEBUG,
"unable to change perms on link %s/%s: %m",
parent->path, dent->d_name);
retval = PAM_PERM_DENIED;
free(pointed);
goto go_out;
}
free(pointed);
}
retval = PAM_SUCCESS;
goto go_out;
}
/* If it's not a regular file, it's probably not a good idea to create
* the new device node, FIFO, or whatever it is. */
if (!S_ISREG(st.st_mode))
{
retval = PAM_SUCCESS;
goto go_out;
}
/* Open the source file */
if ((srcfd = open(newsource, O_RDONLY)) < 0 || fstat(srcfd, &st) != 0)
{
pam_syslog(NULL, LOG_DEBUG,
"unable to open or stat src file %s: %m", newsource);
retval = PAM_PERM_DENIED;
goto go_out;
}
/* Open the dest file */
if ((destfd = openat(parent->fd, dent->d_name,
O_WRONLY | O_CREAT | O_EXCL | O_NOFOLLOW, 0600)) < 0)
{
retval = errno == EEXIST ? PAM_SUCCESS : PAM_PERM_DENIED;
if (retval != PAM_SUCCESS)
pam_syslog(NULL, LOG_DEBUG, "unable to open dest file %s/%s: %m",
parent->path, dent->d_name);
goto go_out;
}
/* Set the proper ownership and permissions for the module. We make
the file a+w and then mask it with the set mask. This preserves
execute bits */
if (fchmod(destfd, (st.st_mode | 0222) & (~u_mask)) != 0 ||
fchown(destfd, pwd->pw_uid, pwd->pw_gid) != 0)
{
pam_syslog(NULL, LOG_DEBUG, "unable to change perms on copy %s/%s: %m",
parent->path, dent->d_name);
retval = PAM_PERM_DENIED;
goto go_out;
}
/* Copy the file */
do
{
res = pam_modutil_read(srcfd, remark, sizeof(remark));
if (res == 0)
continue;
if (res > 0)
{
if (pam_modutil_write(destfd, remark, res) == res)
continue;
}
/* If we get here, pam_modutil_read returned a -1 or
pam_modutil_write returned something unexpected. */
pam_syslog(NULL, LOG_DEBUG, "unable to perform IO: %m");
retval = PAM_PERM_DENIED;
goto go_out;
}
while (res != 0);
retval = PAM_SUCCESS;
go_out:
if (srcfd >= 0)
close(srcfd);
if (destfd >= 0)
close(destfd);
free(newsource);
return retval;
}
/* Do the actual work of creating a home dir */
static int
create_homedir(struct dir_spec *parent, const struct passwd *pwd,
mode_t dir_mode, const char *source, const char *dest)
{
DIR *d = NULL;
struct dirent *dent;
struct dir_spec base;
int retval = PAM_SESSION_ERR;
/* Create the new directory */
if (mkdirat(parent->fd, dest, 0700))
{
if (errno == EEXIST)
return PAM_SUCCESS;
pam_syslog(NULL, LOG_ERR, "unable to create directory %s/%s: %m",
parent->path, dest);
return PAM_PERM_DENIED;
}
if (dir_spec_at(&base, parent, dest) < 0)
{
retval = PAM_PERM_DENIED;
goto go_out;
}
/* See if we need to copy the skel dir over. */
if ((source == NULL) || (strlen(source) == 0))
{
retval = PAM_SUCCESS;
goto go_out;
}
/* Scan the directory */
d = opendir(source);
if (d == NULL)
{
pam_syslog(NULL, LOG_DEBUG, "unable to read directory %s: %m", source);
retval = PAM_PERM_DENIED;
goto go_out;
}
for (dent = readdir(d); dent != NULL; dent = readdir(d))
{
/* Skip some files.. */
if (strcmp(dent->d_name,".") == 0 ||
strcmp(dent->d_name,"..") == 0)
continue;
retval = copy_entry(&base, pwd, dir_mode, source, dent);
if (retval != PAM_SUCCESS)
goto go_out;
}
retval = PAM_SUCCESS;
go_out:
if (d != NULL)
closedir(d);
if (fchmodat(parent->fd, dest, dir_mode, AT_SYMLINK_NOFOLLOW) != 0 ||
fchownat(parent->fd, dest, pwd->pw_uid, pwd->pw_gid,
AT_SYMLINK_NOFOLLOW) != 0)
{
pam_syslog(NULL, LOG_DEBUG,
"unable to change perms on directory %s/%s: %m",
parent->path, dest);
retval = PAM_PERM_DENIED;
}
dir_spec_close(&base);
return retval;
}
static int
create_homedir_helper(const struct passwd *_pwd, mode_t home_mode,
const char *_skeldir, const char *_homedir)
{
int retval = PAM_SESSION_ERR;
struct dir_spec base;
char *cp = strrchr(_homedir, '/');
*cp = '\0';
retval = dir_spec_open(&base, cp == _homedir ? "/" : _homedir);
if (retval < 0)
{
pam_syslog(NULL, LOG_DEBUG,
"unable to open parent of home directory %s: %m", _homedir);
retval = PAM_PERM_DENIED;
goto go_out;
}
*cp = '/';
retval = create_homedir(&base, _pwd, home_mode, _skeldir, cp + 1);
go_out:
dir_spec_close(&base);
return retval;
}
static int
make_parent_dirs(char *dir, int make)
{
int rc = PAM_SUCCESS;
char *cp = strrchr(dir, '/');
struct stat st;
if (!cp)
return rc;
if (cp != dir) {
*cp = '\0';
if (stat(dir, &st) && errno == ENOENT)
rc = make_parent_dirs(dir, 1);
*cp = '/';
if (rc != PAM_SUCCESS)
return rc;
}
if (make && mkdir(dir, 0755) && errno != EEXIST) {
pam_syslog(NULL, LOG_ERR, "unable to create directory %s: %m", dir);
return PAM_PERM_DENIED;
}
return rc;
}
int
main(int argc, char *argv[])
{
struct passwd *pwd;
struct stat st;
char *eptr;
unsigned long home_mode = 0;
if (argc < 2) {
fprintf(stderr, "Usage: %s <username> [<umask> [<skeldir> [<home_mode>]]]\n", argv[0]);
return PAM_SESSION_ERR;
}
pwd = getpwnam(argv[1]);
if (pwd == NULL) {
pam_syslog(NULL, LOG_ERR, "User unknown.");
return PAM_USER_UNKNOWN;
}
if (argc >= 3) {
errno = 0;
u_mask = strtoul(argv[2], &eptr, 0);
if (errno != 0 || *eptr != '\0') {
pam_syslog(NULL, LOG_ERR, "Bogus umask value %s", argv[2]);
return PAM_SESSION_ERR;
}
}
if (argc >= 4) {
skeldir = argv[3];
}
if (argc >= 5) {
errno = 0;
home_mode = strtoul(argv[4], &eptr, 0);
if (errno != 0 || *eptr != '\0') {
pam_syslog(NULL, LOG_ERR, "Bogus home_mode value %s", argv[4]);
return PAM_SESSION_ERR;
}
}
if (home_mode == 0)
home_mode = 0777 & ~u_mask;
if (pwd->pw_dir[0] != '/') {
pam_syslog(NULL, LOG_ERR, "Relative user home directory %s", pwd->pw_dir);
return PAM_SESSION_ERR;
}
/* Stat the home directory, if something exists then we assume it is
correct and return a success */
if (stat(pwd->pw_dir, &st) == 0)
return PAM_SUCCESS;
if (make_parent_dirs(pwd->pw_dir, 0) != PAM_SUCCESS)
return PAM_PERM_DENIED;
return create_homedir_helper(pwd, home_mode, skeldir, pwd->pw_dir);
}
|