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 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933
|
/*
* Copyright (c) 2021-2023 Todd C. Miller <Todd.Miller@sudo.ws>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <config.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#if defined(HAVE_STDINT_H)
# include <stdint.h>
#elif defined(HAVE_INTTYPES_H)
# include <inttypes.h>
#endif
#include <errno.h>
#include <fcntl.h>
#include <netdb.h>
#include <unistd.h>
#include <string.h>
#ifndef HAVE_GETADDRINFO
# include <compat/getaddrinfo.h>
#endif
#include <sudoers.h>
#include <sudo_iolog.h>
#include <interfaces.h>
#include <timestamp.h>
#include "auth/sudo_auth.h"
extern char **environ;
extern sudo_dso_public struct policy_plugin sudoers_policy;
char *audit_msg;
static int pass;
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
static FILE *
open_data(const uint8_t *data, size_t size)
{
#ifdef HAVE_FMEMOPEN
/* Operate in-memory. */
return fmemopen((void *)data, size, "r");
#else
char tempfile[] = "/tmp/sudoers.XXXXXX";
size_t nwritten;
int fd;
/* Use (unlinked) temporary file. */
fd = mkstemp(tempfile);
if (fd == -1)
return NULL;
unlink(tempfile);
nwritten = write(fd, data, size);
if (nwritten != size) {
close(fd);
return NULL;
}
lseek(fd, 0, SEEK_SET);
return fdopen(fd, "r");
#endif
}
/*
* Array that gets resized as needed.
*/
struct dynamic_array {
char **entries;
size_t len;
size_t size;
};
static void
free_strvec(char **vec)
{
size_t i;
for (i = 0; vec[i] != NULL; i++)
free(vec[i]);
}
static void
free_dynamic_array(struct dynamic_array *arr)
{
if (arr->entries != NULL) {
free_strvec(arr->entries);
free(arr->entries);
}
memset(arr, 0, sizeof(*arr));
}
static bool
push(struct dynamic_array *arr, const char *entry)
{
char *copy = NULL;
if (entry != NULL) {
if ((copy = strdup(entry)) == NULL)
return false;
}
if (arr->len + (entry != NULL) >= arr->size) {
char **tmp = reallocarray(arr->entries, arr->size + 1024, sizeof(char *));
if (tmp == NULL) {
free(copy);
return false;
}
arr->entries = tmp;
arr->size += 1024;
}
if (copy != NULL)
arr->entries[arr->len++] = copy;
arr->entries[arr->len] = NULL;
return true;
}
static int
fuzz_conversation(int num_msgs, const struct sudo_conv_message msgs[],
struct sudo_conv_reply replies[], struct sudo_conv_callback *callback)
{
int n;
for (n = 0; n < num_msgs; n++) {
const struct sudo_conv_message *msg = &msgs[n];
switch (msg->msg_type & 0xff) {
case SUDO_CONV_PROMPT_ECHO_ON:
case SUDO_CONV_PROMPT_MASK:
case SUDO_CONV_PROMPT_ECHO_OFF:
/* input not supported */
return -1;
case SUDO_CONV_ERROR_MSG:
case SUDO_CONV_INFO_MSG:
/* no output for fuzzers */
break;
default:
return -1;
}
}
return 0;
}
static int
fuzz_printf(int msg_type, const char * restrict fmt, ...)
{
return 0;
}
static int
fuzz_hook_stub(struct sudo_hook *hook)
{
return 0;
}
/*
* The fuzzing environment may not have DNS available, this may result
* in long delays that cause a timeout when fuzzing.
* This getaddrinfo() resolves every name as "localhost" (127.0.0.1).
*/
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
/* Avoid compilation errors if getaddrinfo() or freeaddrinfo() are macros. */
# undef getaddrinfo
# undef freeaddrinfo
int
# ifdef HAVE_GETADDRINFO
getaddrinfo(
# else
sudo_getaddrinfo(
# endif
const char *nodename, const char *servname,
const struct addrinfo *hints, struct addrinfo **res)
{
struct addrinfo *ai;
struct in_addr addr;
unsigned short port = 0;
/* Stub getaddrinfo(3) to avoid a DNS timeout in CIfuzz. */
if (servname == NULL) {
/* Must have either nodename or servname. */
if (nodename == NULL)
return EAI_NONAME;
} else {
struct servent *servent;
const char *errstr;
/* Parse servname as a port number or IPv4 TCP service name. */
port = sudo_strtonum(servname, 0, USHRT_MAX, &errstr);
if (errstr != NULL && errno == ERANGE)
return EAI_SERVICE;
if (hints != NULL && ISSET(hints->ai_flags, AI_NUMERICSERV))
return EAI_NONAME;
servent = getservbyname(servname, "tcp");
if (servent == NULL)
return EAI_NONAME;
port = htons(servent->s_port);
}
/* Hard-code IPv4 localhost for fuzzing. */
ai = calloc(1, sizeof(*ai) + sizeof(struct sockaddr_in));
if (ai == NULL)
return EAI_MEMORY;
ai->ai_canonname = strdup("localhost");
if (ai == NULL) {
free(ai);
return EAI_MEMORY;
}
ai->ai_family = AF_INET;
ai->ai_protocol = IPPROTO_TCP;
ai->ai_addrlen = sizeof(struct sockaddr_in);
ai->ai_addr = (struct sockaddr *)(ai + 1);
inet_pton(AF_INET, "127.0.0.1", &addr);
((struct sockaddr_in *)ai->ai_addr)->sin_family = AF_INET;
((struct sockaddr_in *)ai->ai_addr)->sin_addr = addr;
((struct sockaddr_in *)ai->ai_addr)->sin_port = htons(port);
*res = ai;
return 0;
}
void
# ifdef HAVE_GETADDRINFO
freeaddrinfo(struct addrinfo *ai)
# else
sudo_freeaddrinfo(struct addrinfo *ai)
# endif
{
struct addrinfo *next;
while (ai != NULL) {
next = ai->ai_next;
free(ai->ai_canonname);
free(ai);
ai = next;
}
}
#endif /* FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION */
enum fuzz_policy_pass {
PASS_NONE,
PASS_VERSION,
PASS_CHECK_LOG_LOCAL,
PASS_CHECK_LOG_REMOTE,
PASS_CHECK_NOT_FOUND,
PASS_CHECK_NOT_FOUND_DOT,
PASS_LIST,
PASS_LIST_OTHER,
PASS_LIST_CHECK,
PASS_VALIDATE,
PASS_INVALIDATE
};
int
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
struct dynamic_array plugin_args = { NULL };
struct dynamic_array settings = { NULL };
struct dynamic_array user_info = { NULL };
struct dynamic_array argv = { NULL };
struct dynamic_array env_add = { NULL };
char **command_info = NULL, **argv_out = NULL, **user_env_out = NULL;
const char *errstr = NULL;
const int num_passes = 10;
char *line = NULL;
size_t linesize = 0;
ssize_t linelen;
int res = 1;
FILE *fp;
fp = open_data(data, size);
if (fp == NULL)
return 0;
initprogname("fuzz_policy");
sudoers_debug_register(getprogname(), NULL);
if (getenv("SUDO_FUZZ_VERBOSE") == NULL)
sudo_warn_set_conversation(fuzz_conversation);
/* user_info and settings must be non-NULL (even if empty). */
push(&user_info, NULL);
push(&settings, NULL);
/* Iterate over each line of data. */
while ((linelen = getdelim(&line, &linesize, '\n', fp)) != -1) {
if (line[linelen - 1] == '\n')
line[linelen - 1] = '\0';
/* Skip comments and blank lines. */
if (line[0] == '#' || line[0] == '\0')
continue;
/* plugin args */
if (strncmp(line, "error_recovery=", sizeof("error_recovery=") - 1) == 0) {
push(&plugin_args, line);
continue;
}
if (strncmp(line, "sudoers_file=", sizeof("sudoers_file=") - 1) == 0) {
push(&plugin_args, line);
continue;
}
if (strncmp(line, "sudoers_mode=", sizeof("sudoers_mode=") - 1) == 0) {
push(&plugin_args, line);
continue;
}
if (strncmp(line, "sudoers_gid=", sizeof("sudoers_gid=") - 1) == 0) {
push(&plugin_args, line);
continue;
}
if (strncmp(line, "sudoers_uid=", sizeof("sudoers_uid=") - 1) == 0) {
push(&plugin_args, line);
continue;
}
if (strncmp(line, "ldap_conf=", sizeof("ldap_conf=") - 1) == 0) {
push(&plugin_args, line);
continue;
}
if (strncmp(line, "ldap_secret=", sizeof("ldap_secret=") - 1) == 0) {
push(&plugin_args, line);
continue;
}
/* user info */
if (strncmp(line, "user=", sizeof("user=") - 1) == 0) {
push(&user_info, line);
continue;
}
if (strncmp(line, "uid=", sizeof("uid=") - 1) == 0) {
push(&user_info, line);
continue;
}
if (strncmp(line, "gid=", sizeof("gid=") - 1) == 0) {
push(&user_info, line);
continue;
}
if (strncmp(line, "groups=", sizeof("groups=") - 1) == 0) {
push(&user_info, line);
continue;
}
if (strncmp(line, "cwd=", sizeof("cwd=") - 1) == 0) {
push(&user_info, line);
continue;
}
if (strncmp(line, "tty=", sizeof("tty=") - 1) == 0) {
push(&user_info, line);
continue;
}
if (strncmp(line, "host=", sizeof("host=") - 1) == 0) {
push(&user_info, line);
continue;
}
if (strncmp(line, "lines=", sizeof("lines=") - 1) == 0) {
push(&user_info, line);
continue;
}
if (strncmp(line, "cols=", sizeof("cols=") - 1) == 0) {
push(&user_info, line);
continue;
}
if (strncmp(line, "sid=", sizeof("sid=") - 1) == 0) {
push(&user_info, line);
continue;
}
if (strncmp(line, "umask=", sizeof("umask=") - 1) == 0) {
push(&user_info, line);
continue;
}
if (strncmp(line, "rlimit_", sizeof("rlimit_") - 1) == 0) {
push(&user_info, line);
continue;
}
/* First argv entry is the command, the rest are args. */
if (strncmp(line, "argv=", sizeof("argv=") - 1) == 0) {
push(&argv, line);
continue;
}
/* Additional environment variables to add. */
if (strncmp(line, "env=", sizeof("env=") - 1) == 0) {
const char *cp = line + sizeof("env=") - 1;
if (strchr(cp, '=') != NULL)
push(&env_add, cp);
continue;
}
/* Treat anything else as a setting. */
push(&settings, line);
}
fclose(fp);
free(line);
line = NULL;
/* Exercise code paths that use KRB5CCNAME and SUDO_PROMPT. */
putenv((char *)"KRB5CCNAME=/tmp/krb5cc_123456");
putenv((char *)"SUDO_PROMPT=[sudo] password for %p: ");
sudoers_policy.register_hooks(SUDO_API_VERSION, fuzz_hook_stub);
for (pass = 1; res == 1 && pass <= num_passes; pass++) {
/* Call policy open function */
res = sudoers_policy.open(SUDO_API_VERSION, fuzz_conversation,
fuzz_printf, settings.entries, user_info.entries, environ,
plugin_args.entries, &errstr);
if (res == 1) {
if (argv.len == 0) {
/* Must have a command to check. */
push(&argv, "/usr/bin/id");
}
switch (pass) {
case PASS_NONE:
break;
case PASS_VERSION:
/* sudo -V */
sudoers_policy.show_version(true);
break;
case PASS_CHECK_LOG_LOCAL: {
/* sudo command w/ local I/O logging (MODE_RUN) */
sudoers_policy.check_policy((int)argv.len, argv.entries,
env_add.entries, &command_info, &argv_out, &user_env_out,
&errstr);
/* call check_policy() again to check for leaks. */
sudoers_policy.check_policy((int)argv.len, argv.entries,
env_add.entries, &command_info, &argv_out, &user_env_out,
&errstr);
/* sudo_auth_begin_session() is stubbed out below. */
sudoers_policy.init_session(NULL, NULL, NULL);
break;
}
case PASS_CHECK_LOG_REMOTE:
/* sudo command w/ remote I/O logging (MODE_RUN) */
sudoers_policy.check_policy((int)argv.len, argv.entries,
env_add.entries, &command_info, &argv_out, &user_env_out,
&errstr);
/* call check_policy() again to check for leaks. */
sudoers_policy.check_policy((int)argv.len, argv.entries,
env_add.entries, &command_info, &argv_out, &user_env_out,
&errstr);
/* sudo_auth_begin_session() is stubbed out below. */
sudoers_policy.init_session(NULL, NULL, NULL);
break;
case PASS_CHECK_NOT_FOUND:
/* sudo command (not found) */
sudoers_policy.check_policy((int)argv.len, argv.entries,
env_add.entries, &command_info, &argv_out, &user_env_out,
&errstr);
/* sudo_auth_begin_session() is stubbed out below. */
sudoers_policy.init_session(NULL, NULL, NULL);
break;
case PASS_CHECK_NOT_FOUND_DOT:
/* sudo command (found but in cwd) */
sudoers_policy.check_policy((int)argv.len, argv.entries,
env_add.entries, &command_info, &argv_out, &user_env_out,
&errstr);
/* call check_policy() again to check for leaks. */
sudoers_policy.check_policy((int)argv.len, argv.entries,
env_add.entries, &command_info, &argv_out, &user_env_out,
&errstr);
/* sudo_auth_begin_session() is stubbed out below. */
sudoers_policy.init_session(NULL, NULL, NULL);
break;
case PASS_LIST:
/* sudo -l (MODE_LIST) */
sudoers_policy.list(0, NULL, false, NULL, &errstr);
/* call list() again to check for leaks. */
sudoers_policy.list(0, NULL, false, NULL, &errstr);
break;
case PASS_LIST_OTHER:
/* sudo -l -U root (MODE_LIST) */
sudoers_policy.list(0, NULL, false, "root", &errstr);
/* call list() again to check for leaks. */
sudoers_policy.list(0, NULL, false, "root", &errstr);
break;
case PASS_LIST_CHECK:
/* sudo -l command (MODE_CHECK) */
sudoers_policy.list((int)argv.len, argv.entries, false, NULL,
&errstr);
/* call list() again to check for leaks. */
sudoers_policy.list((int)argv.len, argv.entries, false, NULL,
&errstr);
break;
case PASS_VALIDATE:
/* sudo -v (MODE_VALIDATE) */
sudoers_policy.validate(&errstr);
/* call validate() again to check for leaks. */
sudoers_policy.validate(&errstr);
break;
case PASS_INVALIDATE:
/* sudo -k */
sudoers_policy.invalidate(false);
/* call invalidate() again to check for leaks. */
sudoers_policy.invalidate(false);
break;
}
}
/* Free resources. */
if (sudoers_policy.close != NULL)
sudoers_policy.close(0, 0);
else
sudoers_cleanup();
}
sudoers_policy.deregister_hooks(SUDO_API_VERSION, fuzz_hook_stub);
free_dynamic_array(&plugin_args);
free_dynamic_array(&settings);
free_dynamic_array(&user_info);
free_dynamic_array(&argv);
free_dynamic_array(&env_add);
sudoers_debug_deregister();
fflush(stdout);
return 0;
}
/* STUB */
bool
user_is_exempt(const struct sudoers_context *ctx)
{
return false;
}
/* STUB */
bool
set_interfaces(const char *ai)
{
return true;
}
/* STUB */
void
dump_interfaces(const char *ai)
{
return;
}
/* STUB */
void
dump_auth_methods(void)
{
return;
}
/* STUB */
int
sudo_auth_begin_session(const struct sudoers_context *ctx, struct passwd *pw,
char **user_env[])
{
return 1;
}
/* STUB */
int
sudo_auth_end_session(void)
{
return 1;
}
/* STUB */
bool
sudo_auth_needs_end_session(void)
{
return false;
}
/* STUB */
int
timestamp_remove(const struct sudoers_context *ctx, bool unlink_it)
{
return true;
}
/* STUB */
int
create_admin_success_flag(const struct sudoers_context *ctx)
{
return true;
}
/* STUB */
static int
sudo_file_open(struct sudoers_context *ctx, struct sudo_nss *nss)
{
return 0;
}
/* STUB */
static int
sudo_file_close(struct sudoers_context *ctx, struct sudo_nss *nss)
{
return 0;
}
/* STUB */
static struct sudoers_parse_tree *
sudo_file_parse(struct sudoers_context *ctx, const struct sudo_nss *nss)
{
static struct sudoers_parse_tree parse_tree;
return &parse_tree;
}
/* STUB */
static int
sudo_file_query(struct sudoers_context *ctx, const struct sudo_nss *nss,
struct passwd *pw)
{
return 0;
}
/* STUB */
static int
sudo_file_getdefs(struct sudoers_context *ctx, const struct sudo_nss *nss)
{
/* Set some Defaults */
set_default(ctx, "log_input", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "log_output", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "env_file", "/dev/null", true, "sudoers", 1, 1, false);
set_default(ctx, "restricted_env_file", "/dev/null", true, "sudoers", 1, 1, false);
set_default(ctx, "exempt_group", "sudo", true, "sudoers", 1, 1, false);
set_default(ctx, "runchroot", "/", true, "sudoers", 1, 1, false);
set_default(ctx, "runcwd", "~", true, "sudoers", 1, 1, false);
set_default(ctx, "fqdn", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "runas_default", "root", true, "sudoers", 1, 1, false);
set_default(ctx, "tty_tickets", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "umask", "022", true, "sudoers", 1, 1, false);
set_default(ctx, "logfile", "/var/log/sudo", true, "sudoers", 1, 1, false);
set_default(ctx, "syslog", "auth", true, "sudoers", 1, 1, false);
set_default(ctx, "syslog_goodpri", "notice", true, "sudoers", 1, 1, false);
set_default(ctx, "syslog_badpri", "alert", true, "sudoers", 1, 1, false);
set_default(ctx, "syslog_maxlen", "2048", true, "sudoers", 1, 1, false);
set_default(ctx, "loglinelen", "0", true, "sudoers", 1, 1, false);
set_default(ctx, "log_year", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "log_host", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "mailerpath", NULL, false, "sudoers", 1, 1, false);
set_default(ctx, "mailerflags", "-t", true, "sudoers", 1, 1, false);
set_default(ctx, "mailto", "root@localhost", true, "sudoers", 1, 1, false);
set_default(ctx, "mailfrom", "sudo@sudo.ws", true, "sudoers", 1, 1, false);
set_default(ctx, "mailsub", "Someone has been naughty on %h", true, "sudoers", 1, 1, false);
set_default(ctx, "timestampowner", "#0", true, "sudoers", 1, 1, false);
set_default(ctx, "compress_io", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "iolog_flush", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "iolog_flush", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "maxseq", "2176782336", true, "sudoers", 1, 1, false);
set_default(ctx, "sudoedit_checkdir", NULL, false, "sudoers", 1, 1, false);
set_default(ctx, "sudoedit_follow", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "ignore_iolog_errors", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "ignore_iolog_errors", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "noexec", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "exec_background", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "use_pty", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "utmp_runas", NULL, true, "sudoers", 1, 1, false);
set_default(ctx, "iolog_mode", "0640", true, "sudoers", 1, 1, false);
set_default(ctx, "iolog_user", NULL, false, "sudoers", 1, 1, false);
set_default(ctx, "iolog_group", NULL, false, "sudoers", 1, 1, false);
if (pass != PASS_CHECK_LOG_LOCAL) {
set_default(ctx, "log_servers", "localhost", true, "sudoers", 1, 1, false);
set_default(ctx, "log_server_timeout", "30", true, "sudoers", 1, 1, false);
set_default(ctx, "log_server_cabundle", "/etc/ssl/cacert.pem", true, "sudoers", 1, 1, false);
set_default(ctx, "log_server_peer_cert", "/etc/ssl/localhost.crt", true, "sudoers", 1, 1, false);
set_default(ctx, "log_server_peer_key", "/etc/ssl/private/localhost.key", true, "sudoers", 1, 1, false);
}
return 0;
}
static struct sudo_nss sudo_nss_file = {
{ NULL, NULL },
"sudoers",
sudo_file_open,
sudo_file_close,
sudo_file_parse,
sudo_file_query,
sudo_file_getdefs
};
struct sudo_nss_list *
sudo_read_nss(void)
{
static struct sudo_nss_list snl = TAILQ_HEAD_INITIALIZER(snl);
if (TAILQ_EMPTY(&snl))
TAILQ_INSERT_TAIL(&snl, &sudo_nss_file, entries);
return &snl;
}
/* STUB */
int
check_user(struct sudoers_context *ctx, unsigned int validated,
unsigned int mode)
{
return AUTH_SUCCESS;
}
/* STUB */
int
check_user_runchroot(const char *runchroot)
{
return true;
}
/* STUB */
int
check_user_runcwd(const char *runcwd)
{
return true;
}
/* STUB */
void
group_plugin_unload(void)
{
return;
}
/* STUB */
bool
log_warning(const struct sudoers_context *ctx, unsigned int flags,
const char * restrict fmt, ...)
{
return true;
}
/* STUB */
bool
log_warningx(const struct sudoers_context *ctx, unsigned int flags,
const char * restrict fmt, ...)
{
return true;
}
/* STUB */
bool
gai_log_warning(const struct sudoers_context *ctx, unsigned int flags,
int errnum, const char * restrict fmt, ...)
{
return true;
}
/* STUB */
bool
log_denial(const struct sudoers_context *ctx, unsigned int status,
bool inform_user)
{
return true;
}
/* STUB */
bool
log_failure(const struct sudoers_context *ctx,unsigned int status, int flags)
{
return true;
}
/* STUB */
bool
log_exit_status(const struct sudoers_context *ctx, int exit_status)
{
return true;
}
/* STUB */
bool
mail_parse_errors(const struct sudoers_context *ctx)
{
return true;
}
/* STUB */
bool
log_parse_error(const struct sudoers_context *ctx, const char *file,
int line, int column, const char * restrict fmt, va_list args)
{
return true;
}
/* STUB */
int
audit_failure(const struct sudoers_context *ctx, char *const argv[],
char const * restrict const fmt, ...)
{
return 0;
}
/* STUB */
unsigned int
sudoers_lookup(struct sudo_nss_list *snl, struct sudoers_context *ctx,
time_t now, sudoers_lookup_callback_fn_t callback, void *cb_data,
int *cmnd_status, int pwflag)
{
return VALIDATE_SUCCESS;
}
/* STUB */
int
display_cmnd(struct sudoers_context *ctx, const struct sudo_nss_list *snl,
struct passwd *pw, int verbose)
{
return true;
}
/* STUB */
int
display_privs(struct sudoers_context *ctx, const struct sudo_nss_list *snl,
struct passwd *pw, int verbose)
{
return true;
}
/* STUB */
int
find_path(const char *infile, char **outfile, struct stat *sbp,
const char *path, const char *runchroot, bool ignore_dot,
char * const *allowlist)
{
switch (pass) {
case PASS_CHECK_NOT_FOUND:
return NOT_FOUND;
case PASS_CHECK_NOT_FOUND_DOT:
return NOT_FOUND_DOT;
default:
if (infile[0] == '/') {
*outfile = strdup(infile);
} else {
if (asprintf(outfile, "/usr/bin/%s", infile) == -1)
*outfile = NULL;
}
if (*outfile == NULL)
return NOT_FOUND_ERROR;
return FOUND;
}
}
/* STUB */
int
resolve_cmnd(struct sudoers_context *ctx, const char *infile, char **outfile,
const char *path, const char *runchroot)
{
return find_path(infile, outfile, NULL, path, NULL, false, NULL);
}
/* STUB */
bool
expand_iolog_path(const char *inpath, char *path, size_t pathlen,
const struct iolog_path_escape *escapes, void *closure)
{
return strlcpy(path, inpath, pathlen) < pathlen;
}
/* STUB */
bool
iolog_nextid(const char *iolog_dir, char sessid[7])
{
strlcpy(sessid, "000001", 7);
return true;
}
/* STUB */
bool
cb_maxseq(struct sudoers_context *ctx, const char *file,
int line, int column, const union sudo_defs_val *sd_un, int op)
{
return true;
}
/* STUB */
bool
cb_iolog_user(struct sudoers_context *ctx, const char *file,
int line, int column, const union sudo_defs_val *sd_un, int op)
{
return true;
}
/* STUB */
bool
cb_iolog_group(struct sudoers_context *ctx, const char *file,
int line, int column, const union sudo_defs_val *sd_un, int op)
{
return true;
}
/* STUB */
bool
cb_iolog_mode(struct sudoers_context *ctx, const char *file,
int line, int column, const union sudo_defs_val *sd_un, int op)
{
return true;
}
/* STUB */
bool
cb_group_plugin(struct sudoers_context *ctx, const char *file,
int line, int column, const union sudo_defs_val *sd_un, int op)
{
return true;
}
/* STUB */
bool
cb_timestampowner(struct sudoers_context *ctx, const char *file,
int line, int column, const union sudo_defs_val *sd_un, int op)
{
return true;
}
/* STUB */
void
bsdauth_set_style(const char *style)
{
return;
}
|