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 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004
|
/*
* libslack - https://libslack.org
*
* Copyright (C) 1999-2004, 2010, 2020-2023 raf <raf@raf.org>
*
* 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, see <https://www.gnu.org/licenses/>.
*
* 20230824 raf <raf@raf.org>
*/
/*
=head1 NAME
I<libslack(lim)> - I<POSIX.1> limits module
=head1 SYNOPSIS
#include <slack/std.h>
#include <slack/lim.h>
long limit_arg(void);
long limit_child(void);
long limit_tick(void);
long limit_group(void);
long limit_open(void);
long limit_stream(void);
long limit_tzname(void);
long limit_job(void);
long limit_save_ids(void);
long limit_version(void);
long limit_pcanon(const char *path);
long limit_fcanon(int fd);
long limit_canon(void);
long limit_pinput(const char *path);
long limit_finput(int fd);
long limit_input(void);
long limit_pvdisable(const char *path);
long limit_fvdisable(int fd);
long limit_vdisable(void);
long limit_plink(const char *path);
long limit_flink(int fd);
long limit_link(void);
long limit_pname(const char *path);
long limit_fname(int fd);
long limit_name(void);
long limit_ppath(const char *path);
long limit_fpath(int fd);
long limit_path(void);
long limit_ppipe(const char *path);
long limit_fpipe(int fd);
long limit_pnotrunc(const char *path);
long limit_fnotrunc(int fd);
long limit_notrunc(void);
long limit_pchown(const char *path);
long limit_fchown(int fd);
long limit_chown(void);
=head1 DESCRIPTION
This module provides functions for simply and reliably obtaining a
I<POSIX.1> limit for the current system or a usable default when a
particular facility is unlimited on the current system. These functions
always return a usable value.
=over 4
=cut
*/
#include "config.h"
#include "std.h"
#include <limits.h>
#include <sys/resource.h>
#include "lim.h"
#include "err.h"
enum name_t
{
LIMIT_ARG,
LIMIT_CHILD,
LIMIT_TICK,
LIMIT_GROUP,
LIMIT_OPEN,
LIMIT_STREAM,
LIMIT_TZNAME,
LIMIT_JOB,
LIMIT_SAVE_IDS,
LIMIT_VERSION,
LIMIT_CANON,
LIMIT_INPUT,
LIMIT_VDISABLE,
LIMIT_LINK,
LIMIT_NAME,
LIMIT_PATH,
LIMIT_PIPE,
LIMIT_NOTRUNC,
LIMIT_CHOWN,
LIMIT_COUNT
};
typedef struct conf_t conf_t;
struct conf_t
{
const int name; /* name argument for sysconf, [f]pathconf */
const long value; /* limit to use when indeterminate */
const off_t offset; /* offset to apply to value when not indeterminate */
};
#ifndef TEST
static const struct
{
conf_t conf[LIMIT_COUNT];
}
g =
{
{
{ _SC_ARG_MAX, 131072, 0 },
{ _SC_CHILD_MAX, 1024, 0 },
{ _SC_CLK_TCK, -1, 0 },
{ _SC_NGROUPS_MAX, 32, 0 },
{ _SC_OPEN_MAX, 1024, 0 },
{ _SC_STREAM_MAX, 1024, 0 },
{ _SC_TZNAME_MAX, 3, 0 },
{ _SC_JOB_CONTROL, 0, 0 },
{ _SC_SAVED_IDS, 0, 0 },
{ _SC_VERSION, 0, 0 },
{ _PC_MAX_CANON, 255, 0 },
{ _PC_MAX_INPUT, 255, 0 },
{ _PC_VDISABLE, 0, 0 },
{ _PC_LINK_MAX, 32768, 0 },
{ _PC_NAME_MAX, 1024, 0 },
{ _PC_PATH_MAX, 4096, 2 },
{ _PC_PIPE_BUF, 4096, 0 },
{ _PC_NO_TRUNC, 0, 0 },
{ _PC_CHOWN_RESTRICTED, 0, 0 }
}
};
/*
C<long limit_sysconf(int limit)>
Returns system limits using I<sysconf(3)>. If the limit is indeterminate, a
predetermined default value is returned. Whatever happens, a usable value is
returned.
*/
static long limit_sysconf(int limit)
{
long value;
if ((value = sysconf(g.conf[limit].name)) == -1)
return g.conf[limit].value;
return value;
}
/*
C<long limit_pathconf(int limit, const char *path)>
Returns system limits using I<pathconf(3)>. If the limit is indeterminate, a
predetermined default value is returned. If the limit is determinate, a
predetermined amount may be added to its value. This is only needed for
C<_PC_PATH_MAX> which is the maximum length of a relative path. To be more
useful, C<2> is added to this limit to account for the C<'/'> and C<'\0'>
that will be needed to form an absolute path. Whatever happens, a usable
value is returned.
*/
static long limit_pathconf(int limit, const char *path)
{
long value;
if ((value = pathconf(path, g.conf[limit].name)) == -1)
return g.conf[limit].value;
return value + g.conf[limit].offset;
}
/*
C<long limit_fpathconf(int limit, int fd)>
Returns system limits using I<fpathconf(3)>. If the limit is indeterminate,
a predetermined default value is returned. If the limit is determinate, a
predetermined amount may be added to its value. This is only needed for
C<_PC_PATH_MAX> which is the maximum length of a relative path. To be more
useful, C<2> is added to this limit to account for the C<'/'> and C<'\0'>
that will be needed to form an absolute path. Whatever happens, a usable
value is returned.
*/
static long limit_fpathconf(int limit, int fd)
{
long value;
if ((value = fpathconf(fd, g.conf[limit].name)) == -1)
return g.conf[limit].value;
return value + g.conf[limit].offset;
}
/*
=item C<long limit_arg(void)>
Returns the maximum length of arguments to the I<exec(2)> family of
functions. If indeterminate, a usable value (131072) is returned.
=cut
*/
long limit_arg(void)
{
return limit_sysconf(LIMIT_ARG);
}
/*
=item C<long limit_child(void)>
Returns the maximum number of simultaneous processes per user id. If
indeterminate, a usable value (1024) is returned.
=cut
*/
long limit_child(void)
{
return limit_sysconf(LIMIT_CHILD);
}
/*
=item C<long limit_tick(void)>
Returns the number of clock ticks per second. If indeterminate (which makes
no sense), -1 is returned. This should never happen.
=cut
*/
long limit_tick(void)
{
return limit_sysconf(LIMIT_TICK);
}
/*
=item C<long limit_group(void)>
Returns the maximum number of groups that a user may belong to. If
indeterminate, a usable value (32) is returned.
=cut
*/
long limit_group(void)
{
return limit_sysconf(LIMIT_GROUP);
}
/*
=item C<long limit_open(void)>
Returns the maximum number of files that a process can have open at any
time. If indeterminate, a usable value (1024) is returned.
=cut
*/
long limit_open(void)
{
return limit_sysconf(LIMIT_OPEN);
}
/*
=item C<long limit_stream(void)>
Returns the maximum number of streams that a process can have open at any
time. If indeterminate, a usable value (1024) is returned.
=cut
*/
long limit_stream(void)
{
return limit_sysconf(LIMIT_STREAM);
}
/*
=item C<long limit_tzname(void)>
Returns the maximum number of bytes in a time zone name. If indeterminate, a
usable value (3) is returned.
=cut
*/
long limit_tzname(void)
{
return limit_sysconf(LIMIT_TZNAME);
}
/*
=item C<long limit_job(void)>
Returns whether or not job control is supported.
=cut
*/
long limit_job(void)
{
return limit_sysconf(LIMIT_JOB);
}
/*
=item C<long limit_save_ids(void)>
Returns whether or not a process has a saved set-user-id and a saved
set-group-id.
=cut
*/
long limit_save_ids(void)
{
return limit_sysconf(LIMIT_SAVE_IDS);
}
/*
=item C<long limit_version(void)>
Returns the year and month the I<POSIX.1> standard was approved in the format
I<YYYYMML>.
=cut
*/
long limit_version(void)
{
return limit_sysconf(LIMIT_VERSION);
}
/*
=item C<long limit_pcanon(const char *path)>
Returns the maximum length of a formatted input line for the terminal
referred to by C<path>. If indeterminate, a usable value (255) is returned.
=cut
*/
long limit_pcanon(const char *path)
{
return limit_pathconf(LIMIT_CANON, path);
}
/*
=item C<long limit_fcanon(int fd)>
Returns the maximum length of a formatted input line for the terminal
referred to by C<fd>. If indeterminate, a usable value (255) is returned.
=cut
*/
long limit_fcanon(int fd)
{
return limit_fpathconf(LIMIT_CANON, fd);
}
/*
=item C<long limit_canon(void)>
Returns the maximum length of a formatted input line for the controlling
terminal (C</dev/tty>). If indeterminate, a usable value (255) is returned.
=cut
*/
long limit_canon(void)
{
return limit_pcanon("/dev/tty");
}
/*
=item C<long limit_pinput(const char *path)>
Returns the maximum length of an input line for the terminal referred to by
C<path>. If indeterminate, a usable value (255) is returned.
=cut
*/
long limit_pinput(const char *path)
{
return limit_pathconf(LIMIT_INPUT, path);
}
/*
=item C<long limit_finput(int fd)>
Returns the maximum length of an input line for the terminal referred to by
C<fd>. If indeterminate, a usable value (255) is returned.
=cut
*/
long limit_finput(int fd)
{
return limit_fpathconf(LIMIT_INPUT, fd);
}
/*
=item C<long limit_input(void)>
Returns the maximum length of an input line for the controlling terminal
(C</dev/tty>). If indeterminate, a usable value (255) is returned.
=cut
*/
long limit_input(void)
{
return limit_pinput("/dev/tty");
}
/*
=item C<long limit_pvdisable(const char *path)>
Returns whether or not special character processing can be disabled for the
terminal referred to by C<path>.
=cut
*/
long limit_pvdisable(const char *path)
{
return limit_pathconf(LIMIT_VDISABLE, path);
}
/*
=item C<long limit_fvdisable(int fd)>
Returns whether or not special character processing can be disabled for the
terminal referred to by C<fd>.
=cut
*/
long limit_fvdisable(int fd)
{
return limit_fpathconf(LIMIT_VDISABLE, fd);
}
/*
=item C<long limit_vdisable(void)>
Returns whether or not special character processing can be disabled for the
controlling terminal (C</dev/tty>).
=cut
*/
long limit_vdisable(void)
{
return limit_pvdisable("/dev/tty");
}
/*
=item C<long limit_plink(const char *path)>
Returns the maximum number of links to the file represented by C<path>. If
indeterminate, a usable value (32768) is returned.
=cut
*/
long limit_plink(const char *path)
{
return limit_pathconf(LIMIT_LINK, path);
}
/*
=item C<long limit_flink(int fd)>
Returns the maximum number of links to the file represented by C<fd>. If
indeterminate, a usable value (32768) is returned.
=cut
*/
long limit_flink(int fd)
{
return limit_fpathconf(LIMIT_LINK, fd);
}
/*
=item C<long limit_link(void)>
Returns the maximum number of links to the root directory (C</>). If
indeterminate, a usable value (32768) is returned.
=cut
*/
long limit_link(void)
{
return limit_plink("/");
}
/*
=item C<long limit_pname(const char *path)>
Returns the maximum length of a filename in the directory referred to by
C<path> that the process can create. If indeterminate, a usable value (1024)
is returned.
=cut
*/
long limit_pname(const char *path)
{
return limit_pathconf(LIMIT_NAME, path);
}
/*
=item C<long limit_fname(int fd)>
Returns the maximum length of a filename in the directory referred to by
C<fd> that the process can create. If indeterminate, a usable value (1024)
is returned.
=cut
*/
long limit_fname(int fd)
{
return limit_fpathconf(LIMIT_NAME, fd);
}
/*
=item C<long limit_name(void)>
Returns the maximum length of a filename in the root directory (C</>) that
the process can create. If indeterminate, a usable value (1024) is returned.
=cut
*/
long limit_name(void)
{
return limit_pname("/");
}
/*
=item C<long limit_ppath(const char *path)>
Returns the maximum length of an absolute pathname (including the C<nul>
character) when C<path> is the current directory. If indeterminate, a usable
value (4096) is returned.
=cut
*/
long limit_ppath(const char *path)
{
return limit_pathconf(LIMIT_PATH, path);
}
/*
=item C<long limit_fpath(int fd)>
Returns the maximum length of an absolute pathname (including the C<nul>
character) when C<fd> refers to the current directory. If indeterminate, a
usable value (4096) is returned.
=cut
*/
long limit_fpath(int fd)
{
return limit_fpathconf(LIMIT_PATH, fd);
}
/*
=item C<long limit_path(void)>
Returns the maximum length of an absolute pathname (including the C<nul>
character). If indeterminate, a usable value (4096) is returned.
=cut
*/
long limit_path(void)
{
return limit_ppath("/");
}
/*
=item C<long limit_ppipe(const char *path)>
Returns the size of the pipe buffer for the fifo referred to by C<path>. If
indeterminate, a usable value (4096) is returned.
=cut
*/
long limit_ppipe(const char *path)
{
return limit_pathconf(LIMIT_PIPE, path);
}
/*
=item C<long limit_fpipe(int fd)>
Returns the size of the pipe buffer for the pipe or fifo referred to by
C<fd>. If indeterminate, a usable value (4096) is returned.
=cut
*/
long limit_fpipe(int fd)
{
return limit_fpathconf(LIMIT_PIPE, fd);
}
/*
=item C<long limit_pnotrunc(const char *path)>
Returns whether or not an error is generated when accessing filenames longer
than the maximum filename length for the filesystem referred to by C<path>.
=cut
*/
long limit_pnotrunc(const char *path)
{
return limit_pathconf(LIMIT_NOTRUNC, path);
}
/*
=item C<long limit_fnotrunc(int fd)>
Returns whether or not an error is generated when accessing filenames longer
than the maximum filename length for the filesystem referred to by C<fd>.
=cut
*/
long limit_fnotrunc(int fd)
{
return limit_fpathconf(LIMIT_NOTRUNC, fd);
}
/*
=item C<long limit_notrunc(void)>
Returns whether or not an error is generated when accessing filenames longer
than the maximum filename length for the root filesystem.
=cut
*/
long limit_notrunc(void)
{
return limit_pnotrunc("/");
}
/*
=item C<long limit_pchown(const char *path)>
Returns whether or not I<chown(2)> may be called on the file referred to by
C<path> or the files contained in the directory referred to by C<path>.
=cut
*/
long limit_pchown(const char *path)
{
return limit_pathconf(LIMIT_CHOWN, path);
}
/*
=item C<long limit_fchown(int fd)>
Returns whether or not I<chown(2)> may be called on the file referred to by
C<fd> or the files contained in the directory referred to by C<fd>.
=cut
*/
long limit_fchown(int fd)
{
return limit_fpathconf(LIMIT_CHOWN, fd);
}
/*
=item C<long limit_chown(void)>
Returns whether or not I<chown(2)> may be called on the files contained in
the root filesystem.
=cut
*/
long limit_chown(void)
{
return limit_pchown("/");
}
/*
=back
=head1 RETURNS
The functions that return a condition return C<1> when the condition is true
or C<0> when it is false. All of the others either return the system limit
indicated, or a predetermined, usable value when the indicated limit is
indeterminate. These functions never return C<-1>.
=head1 MT-Level
I<MT-Safe>
=head1 EXAMPLES
Store the current directory into allocated memory:
#include <slack/std.h>
#include <slack/lim.h>
int main()
{
long path_size = limit_path();
char *buf = malloc(path_size * sizeof(char));
if (!buf)
return EXIT_FAILURE;
printf("%s\n", getcwd(buf, path_size));
return EXIT_SUCCESS;
}
Close all file descriptors:
#include <slack/std.h>
#include <slack/lim.h>
int main()
{
int fd_limit = limit_open();
int fd;
for (fd = 0; fd < fd_limit; ++fd)
close(fd);
return EXIT_SUCCESS;
}
=head1 SEE ALSO
I<libslack(3)>,
I<sysconf(2)>,
I<pathconf(2)>,
I<fpathconf(2)>,
I<locker(3)>
=head1 AUTHOR
20230824 raf <raf@raf.org>
=cut
*/
#endif
#ifdef TEST
int main(int ac, char **av)
{
int fds[2];
long limit;
int errors = 0;
int verbose = (ac >= 2 && !strcmp(av[1], "-v"));
if (ac == 2 && !strcmp(av[1], "help"))
{
printf("usage: %s [-v]\n", *av);
return EXIT_SUCCESS;
}
printf("Testing: %s\n", "lim");
if ((limit = limit_arg()) == -1)
++errors, printf("Test1: limit_arg() failed\n");
else if (verbose)
printf("arg = %ld\n", limit);
if ((limit = limit_child()) == -1)
++errors, printf("Test2: limit_child() failed\n");
else if (verbose)
printf("child = %ld\n", limit);
if ((limit = limit_tick()) == -1)
++errors, printf("Test3: limit_tick() failed\n");
else if (verbose)
printf("tick = %ld\n", limit);
if ((limit = limit_group()) == -1)
++errors, printf("Test4: limit_group() failed\n");
else if (verbose)
printf("group = %ld\n", limit);
if ((limit = limit_open()) == -1)
++errors, printf("Test5: limit_open() failed\n");
else if (verbose)
printf("open = %ld\n", limit);
if ((limit = limit_stream()) == -1)
++errors, printf("Test6: limit_stream() failed\n");
else if (verbose)
printf("stream = %ld\n", limit);
if ((limit = limit_tzname()) == -1)
++errors, printf("Test7: limit_tzname() failed\n");
else if (verbose)
printf("tzname = %ld\n", limit);
if ((limit = limit_job()) == -1)
++errors, printf("Test8: limit_job() failed\n");
else if (verbose)
printf("job = %ld\n", limit);
if ((limit = limit_save_ids()) == -1)
++errors, printf("Test9: limit_save_ids() failed\n");
else if (verbose)
printf("save_ids = %ld\n", limit);
if ((limit = limit_version()) == -1)
++errors, printf("Test10: limit_version() failed\n");
else if (verbose)
printf("version = %ld\n", limit);
if ((limit = limit_canon()) == -1)
++errors, printf("Test11: limit_canon() failed\n");
else if (verbose)
printf("canon = %ld\n", limit);
if ((limit = limit_input()) == -1)
++errors, printf("Test12: limit_input() failed\n");
else if (verbose)
printf("input = %ld\n", limit);
if ((limit = limit_vdisable()) == -1)
++errors, printf("Test13: limit_vdisable() failed\n");
else if (verbose)
printf("vdisable = %ld\n", limit);
if ((limit = limit_link()) == -1)
++errors, printf("Test14: limit_link() failed\n");
else if (verbose)
printf("link = %ld\n", limit);
if ((limit = limit_name()) == -1)
++errors, printf("Test15: limit_name() failed\n");
else if (verbose)
printf("name = %ld\n", limit);
if ((limit = limit_path()) == -1)
++errors, printf("Test16: limit_path() failed\n");
else if (verbose)
printf("path = %ld\n", limit);
if (pipe(fds) == -1)
{
++errors, printf("Test17: failed to test limit_fpipe() - pipe() failed (%s)\n", strerror(errno));
}
else
{
if ((limit = limit_fpipe(fds[0])) == -1)
++errors, printf("Test17: limit_fpipe() failed\n");
else if (verbose)
printf("pipe = %ld\n", limit);
close(fds[0]);
close(fds[1]);
}
if ((limit = limit_notrunc()) == -1)
++errors, printf("Test18: limit_notrunc() failed\n");
else if (verbose)
printf("notrunc = %ld\n", limit);
if ((limit = limit_chown()) == -1)
++errors, printf("Test19: limit_chown() failed\n");
else if (verbose)
printf("chown = %ld\n", limit);
if (errors)
printf("%d/19 tests failed\n", errors);
else
printf("All tests passed\n");
return (errors == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}
#endif
/* vi:set ts=4 sw=4: */
|