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 558 559 560 561 562 563 564 565 566 567
|
/*
* mockpf.c
* Evil testing shim that captures pf ioctls and emulates
* the /dev/pf interface.
*
* Author: Landon Fuller <landonf@threerings.net>
*
* Portions of the validation code were taken from the pf kernel
* implementation.
*
* Copyright (c) 2002 Cedric Berger
* Copyright (c) 2006 Three Rings Design, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <config.h>
#ifdef HAVE_PF
#include <dlfcn.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdarg.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <net/if.h>
#include <net/pfvar.h>
/*
* This code serves as a shim to allow the unit testing of /dev/pf
* ioctl commands without providing root access or modifying the state
* of the running system. Our functions tend towards assert() rather
* than returning an error -- the point is to implode exactly where
* an error is detected, allowing a client implementator to quickly find
* the bug in their code.
*
* open() is hooked, and its path argument is matched against "/dev/pf".
* If the path matches, /dev/null is instead opened, and the resultant
* fd is saved as pffd. All future calls to open("/dev/pf",) will
* reference this file descriptor. A reference count is maintained,
* and close() is also hooked -- the file descriptor is actually closed
* when the reference count reaches 0.
*
* Lastly, we hook ioctl(), and check for our pffd. If it's a pf(4) ioctl
* command, we interpret the ioctl arguments directly -- implementing
* a mock pf ioctl() interface.
*/
/* Retain a single (reference counted) file descriptor that will be used for
* all pf(4) ioctls */
static int pffd = -1;
static unsigned int pfRefCount = 0;
/* Real function references */
static int (*_real_open)(const char *, int, ...) = NULL;
static int (*_real_close)(int) = NULL;
static int (*_real_ioctl)(int, unsigned long, ...) = NULL;
/* Static example tables */
static struct pfr_table artist_table = {
.pfrt_anchor = { '\0' },
.pfrt_name = "ips_artist",
.pfrt_flags = 0,
.pfrt_fback = 0
};
static struct pfr_table dev_table = {
.pfrt_anchor = { '\0' },
.pfrt_name = "ips_developer",
.pfrt_flags = 0,
.pfrt_fback = 0
};
/*! Generic structure definition for either list type. */
typedef struct PFNode {
struct PFNode *prev;
struct PFNode *next;
} PFNode;
/*! Generic list structure. */
typedef struct PFList {
unsigned int nodeCount;
PFNode *firstNode;
} PFList;
/*! Double linked list of addresses. */
typedef struct PFAddressNode {
struct PFAddressNode *prev;
struct PFAddressNode *next;
struct pfr_addr addr;
} PFAddressNode;
/*! Double linked list of tables. */
typedef struct PFTableNode {
struct PFTableNode *prev;
struct PFTableNode *next;
struct pfr_table table;
PFList addrs;
} PFTableNode;
static PFList *pf_tables;
/*! Initialize a new list. */
static void init_pflist(PFList *list) {
list->firstNode = NULL;
list->nodeCount = 0;
}
/*! Initialize a new node. */
static void init_pfnode(PFNode *node) {
node->prev = NULL;
node->next = NULL;
}
/* Insert a node into the list */
static void insert_pfnode(PFList *list, PFNode *new, PFNode *position) {
list->nodeCount++;
/* Empty list */
if (!list->firstNode) {
list->firstNode = new;
return;
}
/* Top of list? */
if (!position)
position = list->firstNode;
new->prev = position->prev;
new->next = position;
if (position->prev)
position->prev->next = new;
else
list->firstNode = new;
position->prev = new;
}
/* Remove a node from a list */
static void remove_pfnode(PFList *list, PFNode *node) {
list->nodeCount--;
/* Last remaining node */
if (!node->prev && !node->next) {
free(node);
list->firstNode = NULL;
return;
}
if (node->prev)
node->prev->next = node->next;
else
list->firstNode = node->next;
if (node->next)
node->next->prev = node->prev;
free(node);
}
/* Set up pf ioctl emulator */
void mockpf_setup(void) {
PFTableNode *tableNode;
pf_tables = malloc(sizeof(PFList));
init_pflist(pf_tables);
/* Add our artist table */
tableNode = malloc(sizeof(PFTableNode));
init_pfnode((PFNode *) tableNode);
init_pflist(&tableNode->addrs);
tableNode->table = artist_table;
insert_pfnode(pf_tables, (PFNode *) tableNode, NULL);
/* Add our dev table */
tableNode = malloc(sizeof(PFTableNode));
init_pfnode((PFNode *) tableNode);
tableNode->table = dev_table;
init_pflist(&tableNode->addrs);
insert_pfnode(pf_tables, (PFNode *) tableNode, NULL);
}
/* Tear down ioctl emulator */
void mockpf_teardown(void) {
while (pf_tables->firstNode) {
PFTableNode *tableNode = (PFTableNode *) pf_tables->firstNode;
/* Clear out the address list */
while (tableNode->addrs.firstNode)
remove_pfnode(&tableNode->addrs, tableNode->addrs.firstNode);
remove_pfnode(pf_tables, pf_tables->firstNode);
}
free(pf_tables);
}
int open(const char *path, int flags, ...) {
mode_t mode;
va_list ap;
/* Grab the real symbol if necessary */
if (!_real_open)
_real_open = dlsym(RTLD_NEXT, "open");
/* Are we opening /dev/pf ? */
if(strcmp(path, PF_DEV_PATH) == 0) {
/* Does a 'pf' reference already exist? */
if (pffd != -1) {
pfRefCount++;
return pffd;
} else {
pffd = _real_open("/dev/null", O_RDWR);
/* Only increment the refcount if the open succeeded */
if (pffd != -1)
pfRefCount++;
return pffd;
}
}
/* Call the real open */
if (flags & O_CREAT) {
va_start(ap, flags);
mode = va_arg(ap, int);
va_end(ap);
return _real_open(path, flags, mode);
} else {
return _real_open(path, flags);
}
}
int close(int d) {
int ret;
/* Grab the real symbol if necessary */
if (!_real_close)
_real_close = dlsym(RTLD_NEXT, "close");
if (d == pffd) {
if (pfRefCount == 1) {
ret = _real_close(pffd);
/* Failure here is highly unlikely, but
* we account for it anyway */
if (ret == -1) {
return ret;
} else {
pfRefCount--;
pffd = -1;
}
}
}
/* Call the real close */
return _real_close(d);
}
/*!
* Rewrite anchors referenced by tables to remove slashes and check for
* validity.
* Taken from FreeBSD: src/sys/contrib/pf/net/pf_table.c,v 1.7
*/
int pfr_fix_anchor(char *anchor) {
size_t siz = sizeof(((struct pfr_table *) NULL)->pfrt_anchor);
int i;
if (anchor[0] == '/') {
char *path;
int off;
path = anchor;
off = 1;
while (*++path == '/')
off++;
bcopy(path, anchor, siz - off);
memset(anchor + siz - off, 0, off);
}
assert(anchor[siz - 1] == 0);
for (i = strlen(anchor); i < siz; i++)
assert(!anchor[i]);
return (0);
}
/*!
* Validate a table structure.
* Taken from FreeBSD: src/sys/contrib/pf/net/pf_table.c,v 1.7
*/
int pfr_validate_table(struct pfr_table *tbl) {
int i;
assert(tbl->pfrt_name[0]);
assert(!tbl->pfrt_name[PF_TABLE_NAME_SIZE-1]);
for (i = strlen(tbl->pfrt_name); i < PF_TABLE_NAME_SIZE; i++)
assert(!tbl->pfrt_name[i]);
assert(pfr_fix_anchor(tbl->pfrt_anchor) == 0);
assert(tbl->pfrt_flags == 0);
return (1);
}
/*!
* Validate an address structure.
* Taken from FreeBSD: src/sys/contrib/pf/net/pf_table.c,v 1.7
*/
int pfr_validate_addr(struct pfr_addr *ad) {
int i;
assert(ad->pfra_af == AF_INET || ad->pfra_af == AF_INET6);
switch (ad->pfra_af) {
case AF_INET:
assert(ad->pfra_net <= 32);
break;
case AF_INET6:
assert(ad->pfra_net <= 128);
break;
default:
/* Unreachable */
break;
}
if (ad->pfra_net < 128)
assert(!(((caddr_t)ad)[ad->pfra_net/8] & (0xFF >> (ad->pfra_net%8))));
for (i = (ad->pfra_net+7)/8; i < sizeof(ad->pfra_u); i++)
assert(!((caddr_t)ad)[i]);
if (ad->pfra_not)
assert(ad->pfra_not == 1);
assert(!ad->pfra_fback);
return (1);
}
int ioctl(int d, unsigned long request, ...) {
va_list ap;
caddr_t argp;
/* Grab the real symbol if necessary */
if (!_real_ioctl)
_real_ioctl = dlsym(RTLD_NEXT, "ioctl");
/* Fish out the argument */
va_start(ap, request);
argp = va_arg(ap, caddr_t);
va_end(ap);
if (d == pffd) {
switch (request) {
struct pfioc_table *iot;
struct pfr_table *table;
struct pfr_addr *address;
PFTableNode *tableNode;
PFAddressNode *addressNode;
int size;
case DIOCRGETTABLES:
iot = (struct pfioc_table *) argp;
/* Verify structure initialization */
assert(iot->pfrio_esize == sizeof(struct pfr_table));
/* Check our caller's buffer size */
size = sizeof(struct pfr_table) * pf_tables->nodeCount;
if (iot->pfrio_size < size) {
iot->pfrio_size = size;
return 0;
} else {
iot->pfrio_size = size;
}
table = iot->pfrio_buffer;
for (tableNode = (PFTableNode *) pf_tables->firstNode; tableNode != NULL; tableNode = tableNode->next) {
memcpy(table, &tableNode->table, sizeof(struct pfr_table));
table++;
}
return 0;
case DIOCRCLRADDRS:
iot = (struct pfioc_table *) argp;
/* Verify structure initialization */
assert(iot->pfrio_esize == 0);
/* Find the table */
size = 0; /* Number of addresses cleared */
for (tableNode = (PFTableNode *) pf_tables->firstNode; tableNode != NULL; tableNode = tableNode->next) {
/* Check the name */
if (strcmp(iot->pfrio_table.pfrt_name, tableNode->table.pfrt_name) == 0) {
/* Matched. Clear out the address list */
while (tableNode->addrs.firstNode) {
remove_pfnode(&tableNode->addrs, tableNode->addrs.firstNode);
size++;
}
iot->pfrio_ndel = size;
return 0;
}
}
/* If we fall through the table wasn't found */
errno = ESRCH;
return -1;
case DIOCRADDADDRS:
iot = (struct pfioc_table *) argp;
/* Verify structure initialization */
assert(iot->pfrio_esize == sizeof(struct pfr_addr));
/* Validate table */
assert(pfr_validate_table (&iot->pfrio_table));
/* Find the table */
size = 0; /* Number of addresses added */
for (tableNode = (PFTableNode *) pf_tables->firstNode; tableNode != NULL; tableNode = tableNode->next) {
int i, max;
/* Check the name */
if (strcmp(iot->pfrio_table.pfrt_name, tableNode->table.pfrt_name) == 0) {
/* Matched. Add the addresses */
address = iot->pfrio_buffer;
max = iot->pfrio_size;
for (i = 0; i < max; i++) {
assert(pfr_validate_addr(address));
addressNode = malloc(sizeof(PFAddressNode));
init_pfnode((PFNode *) addressNode);
memcpy(&addressNode->addr, address, sizeof(addressNode->addr));
insert_pfnode(&tableNode->addrs, (PFNode *) addressNode, NULL);
address++;
size++;
}
/* Number of addresses added */
iot->pfrio_nadd = size;
return 0;
}
}
/* If we fall through the table wasn't found */
errno = ESRCH;
return -1;
case DIOCRDELADDRS:
iot = (struct pfioc_table *) argp;
/* Verify structure initialization */
assert(iot->pfrio_esize == sizeof(struct pfr_addr));
/* Validate table */
pfr_validate_table (&iot->pfrio_table);
/* Find the table */
size = 0; /* Number of addresses deleted */
for (tableNode = (PFTableNode *) pf_tables->firstNode; tableNode != NULL; tableNode = tableNode->next) {
int i, max;
/* Check the name */
if (strcmp(iot->pfrio_table.pfrt_name, tableNode->table.pfrt_name) == 0) {
/* Matched the table. Delete the addresses */
address = iot->pfrio_buffer;
max = iot->pfrio_size;
for (i = 0; i < max; i++) {
int addrMatch = 0;
assert(pfr_validate_addr(address));
for (addressNode = (PFAddressNode *) tableNode->addrs.firstNode; addressNode != NULL; addressNode = addressNode->next) {
if (memcmp(&addressNode->addr, address, sizeof(addressNode->addr)) == 0) {
/* Matched the address */
addrMatch = 1;
remove_pfnode(&tableNode->addrs, (PFNode *) addressNode);
size++;
break;
}
}
address++;
}
/* Number of addresses deleted */
iot->pfrio_ndel = size;
return 0;
}
}
/* If we fall through the table wasn't found */
errno = ESRCH;
return -1;
case DIOCRGETADDRS:
iot = (struct pfioc_table *) argp;
/* Verify structure initialization */
assert(iot->pfrio_esize == sizeof(struct pfr_addr));
/* Find the table */
for (tableNode = (PFTableNode *) pf_tables->firstNode; tableNode != NULL; tableNode = tableNode->next) {
/* Check the name */
if (strcmp(iot->pfrio_table.pfrt_name, tableNode->table.pfrt_name) == 0) {
/* Matched. Check our caller's buffer size */
size = tableNode->addrs.nodeCount;
if (iot->pfrio_size < size) {
iot->pfrio_size = size;
return 0;
} else {
iot->pfrio_size = size;
}
address = iot->pfrio_buffer;
for (addressNode = (PFAddressNode *) tableNode->addrs.firstNode; addressNode != NULL; addressNode = addressNode->next) {
memcpy(address, &addressNode->addr, sizeof(struct pfr_addr));
address++;
}
return 0;
}
}
/* If we fall through the table wasn't found */
errno = ESRCH;
return -1;
default:
errno = EINVAL;
return -1;
}
}
/* Call the real ioctl */
return (_real_ioctl(d, request, argp));
}
#endif /* HAVE_PF */
|