File: subprocess_authtest.c

package info (click to toggle)
tinyssh 20230101-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,244 kB
  • sloc: ansic: 12,106; sh: 1,168; python: 479; makefile: 42
file content (501 lines) | stat: -rw-r--r-- 18,881 bytes parent folder | download | duplicates (4)
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
/*
20140321
Jan Mojzis
Public domain.
*/

#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <unistd.h>
#include <pwd.h>
#include "fail.h"
#include "dropuidgid.h"
#include "savesync.h"
#include "open.h"
#include "global.h"
#include "byte.h"
#include "str.h"
#include "log.h"
#include "subprocess.h"

static int readall(int fd, unsigned char *x, long long xlen) {

    long long r;
    long long len = 0;

    while (xlen > 0) {
        r = read(fd, x, xlen);
        if (r == 0) break;
        if (r <= 0) return -1;
        x += r;
        len += r;
        xlen -= r;
    }
    return len;
}

static unsigned char logbuf[1024];
static char globalpath[4096];
static long long globalpathlen;

static void run(void (*op)(void), const char *exp) {

    pid_t pid;
    int status, fromchild[2];
    long long r, i;

    if (pipe(fromchild) == -1) fail("pipe() failure");
    pid = fork();
    if (pid == -1) fail("fork() failure");
    if (pid == 0) {
        close(fromchild[0]);
        if (dup2(fromchild[1], 2) == -1) _exit(111);
        op();
        _exit(0);
    }
    close(fromchild[1]);
    r = readall(fromchild[0], logbuf, sizeof logbuf);
    if (r == -1) fail("read() failure");

    for (i = 0; i < r; ++i) if (logbuf[i] == '\n') break;
    r = i;
    for (i = 0; i < r; ++i) if (logbuf[i] == '/') break;
    r -= i;
    byte_copy(logbuf, r, logbuf + i);

    /* fprintf(stderr, "xxx: %s\n", logbuf); fflush(stderr); */

    if (r < globalpathlen + 1) fail("log error");
    if (!byte_isequal(globalpath, globalpathlen, logbuf)) fail("log error");
    r -= globalpathlen + 1;
    byte_copy(logbuf, r, logbuf + globalpathlen + 1);

    for (i = 0; i < r; ++i) if (logbuf[i] == '{') break;
    r = i;
    logbuf[r] = 0;

    while (waitpid(pid, &status, 0) != pid) {};
    if (!WIFEXITED(status)) fail("process killed");
    if (WEXITSTATUS(status)) fail("process exited with status != 0");

    i = str_len(exp);
    if (r != i) fail("failed");
    if (!byte_isequal(logbuf, i, exp)) fail("failed");
}

static int run2(void (*op)(void)) {

    pid_t pid;
    int status;

    pid = fork();
    if (pid == -1) return -1;
    if (pid == 0) {
        close(2);
        op();
        _exit(0);
    }

    while (waitpid(pid, &status, 0) != pid) {};
    if (!WIFEXITED(status)) return -1;
    return WEXITSTATUS(status);
}



static void test_usernotexist(void) {

    const char *account = "21ecdfcc00506bc138d004a0c04139442e24b02ac456bf05601f1e8f645baa2";
    const char *keyname = "ssh-ed25519";
    const char *key = "key1";

    if (subprocess_auth(account, keyname, key) == 0) fail("subprocess_auth() failure");
}

static void test_usertoolong(void) {

    const char *account = "21ecdfcc00506bc138d004a0c04139442e24b02ac456bf05601f1e8f645baa25";
    const char *keyname = "ssh-ed25519";
    const char *key = "key1";

    if (subprocess_auth(account, keyname, key) == 0) fail("subprocess_auth() failure");
}

static void test_keytooshort(void) {

    const char *account = "21ecdfcc00506bc138d004a0c04139442e24b02ac456bf05601f1e8f645baa2";
    const char *keyname = "ssh-ed25519";
    const char *key = "AAAAC3NzaC1lZDI1NTE5AAAAICj44ZR+OCpjuLbOwqys2MKHroSvAWGgEE1o7yq+UVe";

    if (subprocess_auth(account, keyname, key) == 0) fail("subprocess_auth() failure");
}


static struct passwd *pw;

static void droproot(void) {

    uid_t uid;

    uid = geteuid();
    if (uid == 0) {
        pw = getpwnam("nobody");
        if (!pw) fail("getpwnam() failure")
        if (!dropuidgid(pw->pw_name, pw->pw_uid, pw->pw_gid)) fail("dropuidgid() failure");
    }
    else {
        pw = getpwuid(uid);
        if (!pw) fail("getpwuid() failure")
    }
    if (geteuid() == 0) fail("dropuidgid() failure");
}

static void test_root(void) {

    const char *account = "root";
    const char *keyname = "ssh-ed25519";
    const char *key = "key1";

    if (subprocess_auth(account, keyname, key) == 0) fail("subprocess_auth() failure");
}

#define path global_bspace2 /* reusing global buffer */
#define buf global_bspace1 /* reusing global buffer */

static void test_path_authorizedkeys_ne(void) {

    umask(000);
    if (mkdir("d1", 0755) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}

static void test_path_authorizedkeys_fifo(void) {

    umask(000);
    if (mkdir("d1", 0755) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (mkfifo("authorized_keys", 0644) == -1) fail("mkfifo() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}

static void test_path_authorizedkeys_perm1(void) {

    umask(000);
    if (mkdir("d1", 0755) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (chmod("authorized_keys", 0777) == -1) fail("chmod() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}
static void test_path_authorizedkeys_perm2(void) {

    umask(000);
    if (mkdir("d1", 0755) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (chmod("authorized_keys", 0775) == -1) fail("chmod() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}
static void test_path_authorizedkeys_perm3(void) {

    umask(000);
    if (mkdir("d1", 0755) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (chmod("authorized_keys", 0757) == -1) fail("chmod() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}


static void test_path_dir_perm1(void) {

    umask(000);
    if (mkdir("d1", 0775) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}
static void test_path_dir_perm2(void) {

    umask(000);
    if (mkdir("d1", 0777) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}
static void test_path_dir_perm3(void) {

    umask(000);
    if (mkdir("d1", 0757) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}

static void test_path_dir2_perm1(void) {

    umask(000);
    if (mkdir("d1", 0777) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (mkdir("d2", 0777) == -1) fail("mkdir() failure");
    if (chdir("d2") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d2") == -1) fail("rmdir() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}
static void test_path_dir2_perm2(void) {

    umask(000);
    if (mkdir("d1", 0777) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (mkdir("d2", 0775) == -1) fail("mkdir() failure");
    if (chdir("d2") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d2") == -1) fail("rmdir() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}
static void test_path_dir2_perm3(void) {

    umask(000);
    if (mkdir("d1", 0777) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (mkdir("d2", 0757) == -1) fail("mkdir() failure");
    if (chdir("d2") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d2") == -1) fail("rmdir() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}

static void test_path_dir3_perm1(void) {

    umask(000);
    if (mkdir("d1", 0777) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (mkdir("d2", 0755) == -1) fail("mkdir() failure");
    if (chdir("d2") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d2") == -1) fail("rmdir() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}
static void test_path_dir3_perm2(void) {

    umask(000);
    if (mkdir("d1", 0775) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (mkdir("d2", 0755) == -1) fail("mkdir() failure");
    if (chdir("d2") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d2") == -1) fail("rmdir() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}
static void test_path_dir3_perm3(void) {

    umask(000);
    if (mkdir("d1", 0757) == -1) fail("mkdir() failure");
    if (chdir("d1") == -1) fail("chdir() failure");
    if (mkdir("d2", 0755) == -1) fail("mkdir() failure");
    if (chdir("d2") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d2") == -1) fail("rmdir() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}

static void test_path_dir_symlink(void) {

    umask(000);
    if (mkdir("d1", 0775) == -1) fail("mkdir() failure");
    if (symlink("d1", "d2") == -1) fail("symlink() failure");
    if (chdir("d2") == -1) fail("chdir() failure");
    if (savesync("authorized_keys", "", 0) == -1) fail("savesync() failure");
    if (subprocess_auth_checkpath_((char *)path, sizeof path, geteuid())) fail("subprocess_auth_checkpath_() failure");
    if (unlink("authorized_keys") == -1) fail("unlink() failure");
    if (chdir("..") == -1) fail("chdir() failure");
    if (unlink("d2") == -1) fail("rmdir() failure");
    if (rmdir("d1") == -1) fail("rmdir() failure");
}

static void test_authorizedkeys_ne(void) {

    const char *keyname = "";
    const char *key = "";
    if (!getcwd((char *)path, sizeof path)) fail("getcwd() failure");

    if (subprocess_auth_authorizedkeys_((char *)keyname, (char *)key, (char *)path, (char *)buf, sizeof buf))
        fail("subprocess_auth_authorizedkeys_() failure");
}

#define AUTHORIZED_KEYS "\
\n\
\n\
###\n\
\n\
\n\
\n\
\n\
ssh-rsa AAAAB3Nza...LiPk== user@example.net\n\
from=\"*.sales.example.net,!pc.sales.example.net\" ssh-rsa AAAAB2...19Q== john@example.net\n\
command=\"dump /home\",no-pty,no-port-forwarding ssh-dss AAAAC3...51R== example.net\n\
permitopen=\"192.0.2.1:80\",permitopen=\"192.0.2.2:25\" ssh-dss AAAAB5...21S==\n\
tunnel=\"0\",command=\"sh /etc/netstart tun0\" ssh-rsa AAAA...== jane@example.net\n\
ecdsa-sha2-nistp256 ecdsakey1 apache@apache\n\
\n\
\n\
 ssh-ed25519 badkey1 note - extra ' ' before keyname\n\
ssh-ed25519 badkey2. note - '.' as separator\n\
ssh-ed255191 badkey3\n\
ssh-ed25519\tbadkey4\n\
ssh-ed25519  badkey5\n\
\n\
\n\
ssh-ed25519 key1\n\
ssh-ed25519 key2\r\n\
ssh-ed25519 key3 note - ' ' as separator\n\
ssh-ed25519 key4\0note - '\0' as separator\n\
ssh-ed25519 key5 note - last line"


static void authorizedkeys(void) {
    if (savesync("authorized_keys", AUTHORIZED_KEYS, sizeof(AUTHORIZED_KEYS) - 1) == -1) fail("savesync() failure");

}

static void test_authorizedkeys_ok(void) {

    const char *keyname, *key;

    if (!getcwd((char *)path, sizeof path)) fail("getcwd() failure");

    keyname = "ssh-ed25519"; key = "key1";
    if (!subprocess_auth_authorizedkeys_((char *)keyname, (char *)key, (char *)path, (char *)buf, sizeof buf))
        fail("subprocess_auth_authorizedkeys_() failure");

    keyname = "ssh-ed25519"; key = "key2";
    if (!subprocess_auth_authorizedkeys_((char *)keyname, (char *)key, (char *)path, (char *)buf, sizeof buf))
        fail("subprocess_auth_authorizedkeys_() failure");

    keyname = "ssh-ed25519"; key = "key3";
    if (!subprocess_auth_authorizedkeys_((char *)keyname, (char *)key, (char *)path, (char *)buf, sizeof buf))
        fail("subprocess_auth_authorizedkeys_() failure");

    keyname = "ssh-ed25519"; key = "key4";
    if (!subprocess_auth_authorizedkeys_((char *)keyname, (char *)key, (char *)path, (char *)buf, sizeof buf))
        fail("subprocess_auth_authorizedkeys_() failure");

    keyname = "ssh-ed25519"; key = "key5";
    if (!subprocess_auth_authorizedkeys_((char *)keyname, (char *)key, (char *)path, (char *)buf, sizeof buf))
        fail("subprocess_auth_authorizedkeys_() failure");
}

static void test_authorizedkeys_bad(void) {

    const char *keyname, *key;

    if (!getcwd((char *)path, sizeof path)) fail("getcwd() failure");

    keyname = "ssh-ed25519"; key = "badkey1";
    if (subprocess_auth_authorizedkeys_((char *)keyname, (char *)key, (char *)path, (char *)buf, sizeof buf))
        fail("subprocess_auth_authorizedkeys_() failure");

    keyname = "ssh-ed25519"; key = "badkey2";
    if (subprocess_auth_authorizedkeys_((char *)keyname, (char *)key, (char *)path, (char *)buf, sizeof buf))
        fail("subprocess_auth_authorizedkeys_() failure");

    keyname = "ssh-ed25519"; key = "badkey3";
    if (subprocess_auth_authorizedkeys_((char *)keyname, (char *)key, (char *)path, (char *)buf, sizeof buf))
        fail("subprocess_auth_authorizedkeys_() failure");

    keyname = "ssh-ed25519"; key = "badkey4";
    if (subprocess_auth_authorizedkeys_((char *)keyname, (char *)key, (char *)path, (char *)buf, sizeof buf))
        fail("subprocess_auth_authorizedkeys_() failure");

    keyname = "ssh-ed25519"; key = "badkey5";
    if (subprocess_auth_authorizedkeys_((char *)keyname, (char *)key, (char *)path, (char *)buf, sizeof buf))
        fail("subprocess_auth_authorizedkeys_() failure");
}



int main(void) {

    if (!getcwd(globalpath, sizeof globalpath)) fail("getcwd() failure");
    globalpathlen = str_len(globalpath);

    log_init(2, "xxx", 1, 0);
    run(test_path_authorizedkeys_ne, "d1/authorized_keys (file does not exist)");
    run(test_path_authorizedkeys_fifo, "d1/authorized_keys (access denied)");
    run(test_path_authorizedkeys_perm1, "d1/authorized_keys (access denied)");
    run(test_path_authorizedkeys_perm2, "d1/authorized_keys (access denied)");
    run(test_path_authorizedkeys_perm3, "d1/authorized_keys (access denied)");
    run(test_path_dir_perm1, "d1/ (access denied)");
    run(test_path_dir_perm2, "d1/ (access denied)");
    run(test_path_dir_perm3, "d1/ (access denied)");
    run(test_path_dir2_perm1, "d1/d2/ (access denied)");
    run(test_path_dir2_perm2, "d1/d2/ (access denied)");
    run(test_path_dir2_perm3, "d1/d2/ (access denied)");
    run(test_path_dir3_perm1, "d1/ (access denied)");
    run(test_path_dir3_perm2, "d1/ (access denied)");
    run(test_path_dir3_perm3, "d1/ (access denied)");
    run(test_path_dir_symlink, "d1/ (access denied)");

    log_init(-1, "xxx", 1, 0);
    test_authorizedkeys_ne();
    authorizedkeys();
    test_authorizedkeys_ok();
    test_authorizedkeys_bad();

    droproot();
    run2(test_usernotexist);
    run2(test_usertoolong);
    run2(test_keytooshort);
    run2(test_root);
    _exit(0);
}