File: class.c

package info (click to toggle)
proftpd-dfsg 1.3.8.c%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 56,576 kB
  • sloc: perl: 286,353; ansic: 241,458; sh: 16,680; php: 11,586; makefile: 1,092; xml: 93
file content (557 lines) | stat: -rw-r--r-- 18,351 bytes parent folder | download | duplicates (2)
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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
/*
 * ProFTPD - FTP server testsuite
 * Copyright (c) 2008-2017 The ProFTPD Project team
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
 *
 * As a special exemption, The ProFTPD Project team and other respective
 * copyright holders give permission to link this program with OpenSSL, and
 * distribute the resulting executable, without including the source code for
 * OpenSSL in the source distribution.
 */

/* Class API tests */

#include "tests.h"

static pool *p = NULL;

/* Fixtures */

static void set_up(void) {
  if (p == NULL) {
    p = permanent_pool = make_sub_pool(NULL);
  }

  main_server = pcalloc(p, sizeof(server_rec));
  main_server->pool = p;

  init_class();
  init_netaddr();
}

static void tear_down(void) {
  if (p) {
    destroy_pool(p);
    p = NULL;
    permanent_pool = NULL;
  } 
}

/* Tests */

START_TEST (class_open_test) {
  int res;
  const char *name;

  res = pr_class_open(NULL, NULL);
  ck_assert_msg(res == -1, "Failed to handle NULL arguments");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  res = pr_class_open(p, NULL);
  ck_assert_msg(res == -1, "Failed to handle NULL name argument");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  name = "foo";
  res = pr_class_open(NULL, name);
  ck_assert_msg(res == -1, "Failed to handle NULL pool argument");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  res = pr_class_open(p, name);
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));
  ck_assert_msg(main_server->config_type == CONF_CLASS,
    "Expected config_type of %d, got %d", CONF_CLASS, main_server->config_type);
}
END_TEST

START_TEST (class_add_acl_test) {
  pr_netacl_t *acl;
  int res;

  res = pr_class_add_acl(NULL);
  ck_assert_msg(res == -1, "Failed to handle NULL argument");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  acl = pr_netacl_create(p, "all");
  ck_assert_msg(acl != NULL, "Failed to handle ACL string 'all': %s",
    strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == -1, "Failed to handle unopened class");
  ck_assert_msg(errno == EPERM, "Failed to set errno to EPERM");

  res = pr_class_open(p, "foo");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL: %s", strerror(errno));
}
END_TEST

START_TEST (class_add_note_test) {
  const char *k = NULL;
  void *v = NULL;
  size_t vsz = 0;
  int res;

  res = pr_class_add_note(k, v, vsz);
  ck_assert_msg(res == -1, "Failed to handle NULL argument");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  k = "KEY";
  v = "VALUE";
  vsz = 6;

  res = pr_class_add_note(k, v, vsz);
  ck_assert_msg(res == -1, "Failed to handle unopened class");
  ck_assert_msg(errno == EPERM, "Failed to set errno to EPERM");

  res = pr_class_open(p, "foo");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  res = pr_class_add_note(k, v, vsz);
  ck_assert_msg(res == 0, "Failed to add note: %s", strerror(errno));
}
END_TEST

START_TEST (class_close_test) {
  pr_netacl_t *acl;
  int res;

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close nonexistent current class: %s",
    strerror(errno));

  res = pr_class_open(p, "foo");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == -1, "Failed to close empty class");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");
  ck_assert_msg(main_server->config_type == CONF_ROOT,
    "Expected config_type of %d, got %d", CONF_ROOT, main_server->config_type);

  res = pr_class_open(p, "foo");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "all");
  ck_assert_msg(acl != NULL, "Failed to handle ACL string 'all': %s",
    strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));
  ck_assert_msg(main_server->config_type == CONF_ROOT,
    "Expected config_type of %d, got %d", CONF_ROOT, main_server->config_type);
}
END_TEST

START_TEST (class_set_satisfy_test) {
  int res;

  res = pr_class_set_satisfy(PR_CLASS_SATISFY_ANY);
  ck_assert_msg(res == -1, "Failed to handle nonexistent current class");
  ck_assert_msg(errno == EPERM, "Failed to set errno to EPERM");

  res = pr_class_open(p, "foo");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  res = pr_class_set_satisfy(PR_CLASS_SATISFY_ANY);
  ck_assert_msg(res == 0, "Failed to set SATISFY_ANY: %s", strerror(errno));

  res = pr_class_set_satisfy(PR_CLASS_SATISFY_ALL);
  ck_assert_msg(res == 0, "Failed to set SATISFY_ALL: %s", strerror(errno));

  res = pr_class_set_satisfy(-1);
  ck_assert_msg(res == -1, "Failed to handle bad satisfy value");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");
}
END_TEST

START_TEST (class_get_test) {
  const pr_class_t *class;
  int res;
  pr_netacl_t *acl;

  class = pr_class_get(NULL);
  ck_assert_msg(class == NULL, "Failed to handle empty class list");

  acl = pr_netacl_create(p, "all");
  ck_assert_msg(acl != NULL, "Failed to handle ACL string 'all': %s",
    strerror(errno));

  res = pr_class_open(p, "foo");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL: %s", strerror(errno));

  class = pr_class_get(NULL);
  ck_assert_msg(class == NULL, "Failed to handle unclosed class in list");

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  class = pr_class_get(NULL);
  ck_assert_msg(class != NULL, "Failed to get class in list: %s",
    strerror(errno));
  ck_assert_msg(strcmp(class->cls_name, "foo") == 0,
    "Expected '%s', got '%s'", "foo", class->cls_name);

  class = pr_class_get(class);
  ck_assert_msg(class == NULL, "Failed to return NULL for end-of-list");
}
END_TEST

START_TEST (class_find_test) {
  const pr_class_t *class;
  pr_netacl_t *acl;
  int res;

  class = pr_class_find(NULL);
  ck_assert_msg(class == NULL, "Failed to handle NULL argument");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  class = pr_class_find("foo");
  ck_assert_msg(class == NULL, "Failed to handle empty list");
  ck_assert_msg(errno == ENOENT, "Failed to set errno to ENOENT");

  acl = pr_netacl_create(p, "all");
  ck_assert_msg(acl != NULL, "Failed to handle ACL string 'all': %s",
    strerror(errno));

  res = pr_class_open(p, "foo");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL: %s", strerror(errno));

  class = pr_class_find("foo");
  ck_assert_msg(class == NULL, "Failed to handle empty list");
  ck_assert_msg(errno == ENOENT, "Failed to set errno to ENOENT");

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  class = pr_class_find("foo");
  ck_assert_msg(class != NULL, "Failed to handle class 'foo': %s",
    strerror(errno));

  class = pr_class_find("bar");
  ck_assert_msg(class == NULL, "Failed to handle nonexistent class");
  ck_assert_msg(errno == ENOENT, "Failed to set errno to ENOENT");
}
END_TEST

START_TEST (class_satisfied_test) {
  const pr_netaddr_t *addr;
  const pr_class_t *cls;
  pr_netacl_t *acl;
  int res;

  /* Reset the class list. */
  init_class();

  mark_point();
  res = pr_class_satisfied(p, NULL, NULL);
  ck_assert_msg(res < 0, "Failed to handle null class");
  ck_assert_msg(errno == EINVAL, "Expected EINVAL (%d), got %s (%d)", EINVAL,
    strerror(errno), errno);

  res = pr_class_open(p, "localhost");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  cls = pr_class_find("localhost");
  ck_assert_msg(cls != NULL, "Failed to find class 'localhost': %s",
    strerror(errno));

  mark_point();
  res = pr_class_satisfied(p, cls, NULL);
  ck_assert_msg(res < 0, "Failed to handle null addr");
  ck_assert_msg(errno == EINVAL, "Expected EINVAL (%d), got %s (%d)", EINVAL,
    strerror(errno), errno);

  addr = pr_netaddr_get_addr(p, "localhost", FALSE);
  ck_assert_msg(addr != NULL, "Failed to get addr: %s", strerror(errno));

  mark_point();
  res = pr_class_satisfied(p, cls, addr);
  ck_assert_msg(res == TRUE, "Class not satisfied by address: %s",
    strerror(errno));

  res = pr_class_open(p, "!localhost");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "!127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  cls = pr_class_find("!localhost");
  ck_assert_msg(cls != NULL, "Failed to find class '!localhost': %s",
    strerror(errno));

  mark_point();
  res = pr_class_satisfied(p, cls, addr);
  ck_assert_msg(res == FALSE, "Class satisfied unexpectedly by address");
}
END_TEST

START_TEST (class_match_addr_test) {
  const pr_netaddr_t *addr;
  const pr_class_t *class;
  pr_netacl_t *acl;
  int res;

  /* Reset the class list. */
  init_class();

  mark_point();
  class = pr_class_match_addr(NULL);
  ck_assert_msg(class == NULL, "Failed to handle NULL argument");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  addr = pr_netaddr_get_addr(p, "localhost", FALSE);
  ck_assert_msg(addr != NULL, "Failed to get addr: %s", strerror(errno));

  class = pr_class_match_addr(addr);
  ck_assert_msg(class == NULL, "Failed to handle empty class list");
  ck_assert_msg(errno == ENOENT, "Failed to set errno to ENOENT");

  res = pr_class_open(p, "localhost");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  res = pr_class_open(p, "!localhost");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "!127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  class = pr_class_match_addr(addr);
  ck_assert_msg(class != NULL, "Failed to match class for addr: %s",
    strerror(errno));
  ck_assert_msg(strcmp(class->cls_name, "localhost") == 0,
    "Expected '%s', got '%s'", "localhost", class->cls_name);

  /* Reset the class list, add classes in a different order, and try again. */
  init_class();

  res = pr_class_open(p, "!localhost");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "!127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  res = pr_class_open(p, "localhost");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  class = pr_class_match_addr(addr);
  ck_assert_msg(class != NULL, "Failed to match class for addr: %s",
    strerror(errno));
  ck_assert_msg(strcmp(class->cls_name, "localhost") == 0,
    "Expected '%s', got '%s'", "localhost", class->cls_name);

  /* Reset the class list, and see what happens when we try to match
   * the addr against an impossible set of rules.
   */
  init_class();

  res = pr_class_open(p, "impossible");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "!127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  acl = pr_netacl_create(p, "127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_set_satisfy(PR_CLASS_SATISFY_ALL);
  ck_assert_msg(res == 0, "Failed to set satisfy value: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  class = pr_class_match_addr(addr);
  ck_assert_msg(class == NULL, "Unexpectedly matched class for addr");
  ck_assert_msg(errno == ENOENT, "Failed to set errno to ENOENT");

  /* Reset the class list, add two classes with identical rules, and
   * verify that the first matching class wins.
   */
  init_class();

  res = pr_class_open(p, "first");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  res = pr_class_open(p, "second");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  class = pr_class_match_addr(addr);
  ck_assert_msg(class != NULL, "Failed to match class for addr: %s",
    strerror(errno));
  ck_assert_msg(strcmp(class->cls_name, "first") == 0,
    "Expected '%s', got '%s'", "first", class->cls_name);

  init_class();

  res = pr_class_open(p, "second");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  res = pr_class_open(p, "first");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  class = pr_class_match_addr(addr);
  ck_assert_msg(class != NULL, "Failed to match class for addr: %s",
    strerror(errno));
  ck_assert_msg(strcmp(class->cls_name, "second") == 0,
    "Expected '%s', got '%s'", "second", class->cls_name);

  init_class();

  res = pr_class_open(p, "match");
  ck_assert_msg(res == 0, "Failed to open class: %s", strerror(errno));

  acl = pr_netacl_create(p, "127.0.0.1");
  ck_assert_msg(acl != NULL, "Failed to create ACL: %s", strerror(errno));

  res = pr_class_add_acl(acl);
  ck_assert_msg(res == 0, "Failed to add ACL to class: %s", strerror(errno));

  res = pr_class_set_satisfy(PR_CLASS_SATISFY_ALL);
  ck_assert_msg(res == 0, "Failed to set satisfy value: %s", strerror(errno));

  res = pr_class_close();
  ck_assert_msg(res == 0, "Failed to close class: %s", strerror(errno));

  class = pr_class_match_addr(addr);
  ck_assert_msg(class != NULL, "Failed to match class for addr: %s",
    strerror(errno));
  ck_assert_msg(strcmp(class->cls_name, "match") == 0,
    "Expected '%s', got '%s'", "match", class->cls_name);

}
END_TEST

Suite *tests_get_class_suite(void) {
  Suite *suite;
  TCase *testcase;

  suite = suite_create("class");

  testcase = tcase_create("base");

  tcase_add_checked_fixture(testcase, set_up, tear_down);

  tcase_add_test(testcase, class_open_test);
  tcase_add_test(testcase, class_add_acl_test);
  tcase_add_test(testcase, class_add_note_test);
  tcase_add_test(testcase, class_close_test);
  tcase_add_test(testcase, class_set_satisfy_test);
  tcase_add_test(testcase, class_get_test);
  tcase_add_test(testcase, class_find_test);
  tcase_add_test(testcase, class_satisfied_test);
  tcase_add_test(testcase, class_match_addr_test);

  suite_add_tcase(suite, testcase);

  return suite;
}