nscd: Use time_t for return type of addgetnetgrentX
[glibc.git] / misc / bug18240.c
blob358d9771f7af3487ec022c4a459d7232c686a8dd
1 /* Test integer wraparound in hcreate.
2 Copyright (C) 2016-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <limits.h>
21 #include <search.h>
22 #include <stdbool.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <sys/resource.h>
27 static void
28 test_size (size_t size)
30 int res = hcreate (size);
31 if (res == 0)
33 if (errno == ENOMEM)
34 return;
35 printf ("error: hcreate (%zu): %m\n", size);
36 exit (1);
38 char *keys[100];
39 for (int i = 0; i < 100; ++i)
41 if (asprintf (keys + i, "%d", i) < 0)
43 printf ("error: asprintf: %m\n");
44 exit (1);
46 ENTRY e = { keys[i], (char *) "value" };
47 if (hsearch (e, ENTER) == NULL)
49 printf ("error: hsearch (\"%s\"): %m\n", keys[i]);
50 exit (1);
53 hdestroy ();
55 for (int i = 0; i < 100; ++i)
56 free (keys[i]);
59 static int
60 do_test (void)
62 /* Limit the size of the process, so that memory allocation will
63 fail without impacting the entire system. */
65 struct rlimit limit;
66 if (getrlimit (RLIMIT_AS, &limit) != 0)
68 printf ("getrlimit (RLIMIT_AS) failed: %m\n");
69 return 1;
71 long target = 100 * 1024 * 1024;
72 if (limit.rlim_cur == RLIM_INFINITY || limit.rlim_cur > target)
74 limit.rlim_cur = target;
75 if (setrlimit (RLIMIT_AS, &limit) != 0)
77 printf ("setrlimit (RLIMIT_AS) failed: %m\n");
78 return 1;
83 test_size (500);
84 test_size (-1);
85 test_size (-3);
86 test_size (INT_MAX - 2);
87 test_size (INT_MAX - 1);
88 test_size (INT_MAX);
89 test_size (((unsigned) INT_MAX) + 1);
90 test_size (UINT_MAX - 2);
91 test_size (UINT_MAX - 1);
92 test_size (UINT_MAX);
93 return 0;
96 #define TEST_FUNCTION do_test ()
97 #include "../test-skeleton.c"