1 /* tzset tests with crafted time zone data.
2 Copyright (C) 2015-2022 Free Software Foundation, Inc.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
24 #include <sys/resource.h>
27 #include <support/check.h>
30 static int do_test (void);
31 #define TEST_FUNCTION do_test ()
32 #include "../test-skeleton.c"
34 /* Returns the name of a large TZ file. */
36 create_tz_file (off64_t size
)
39 int fd
= create_temp_file ("tst-tzset-", &path
);
42 if (!support_descriptor_supports_holes (fd
))
43 FAIL_UNSUPPORTED ("File %s does not support holes", path
);
45 // Reopen for large-file support.
47 fd
= open64 (path
, O_WRONLY
);
50 printf ("open64 (%s) failed: %m\n", path
);
54 static const char data
[] = {
55 0x54, 0x5a, 0x69, 0x66, 0x32, 0x00, 0x00, 0x00,
56 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
57 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
58 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
59 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
60 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00,
61 0x00, 0x00, 0x58, 0x54, 0x47, 0x00, 0x00, 0x00,
62 0x54, 0x5a, 0x69, 0x66, 0x32, 0x00, 0x00, 0x00,
63 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
64 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
65 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
66 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
67 0x00, 0x00, 0x00, 0x04, 0xf8, 0x00, 0x00, 0x00,
68 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
69 0x00, 0x00, 0x00, 0x58, 0x54, 0x47, 0x00, 0x00,
70 0x00, 0x0a, 0x58, 0x54, 0x47, 0x30, 0x0a
72 ssize_t ret
= write (fd
, data
, sizeof (data
));
75 printf ("write failed: %m\n");
78 if ((size_t) ret
!= sizeof (data
))
80 printf ("Short write\n");
83 if (lseek64 (fd
, size
, SEEK_CUR
) < 0)
85 printf ("lseek failed: %m\n");
89 if (write (fd
, "", 1) != 1)
91 printf ("Single-byte write failed\n");
97 printf ("close failed: %m\n");
104 test_tz_file (off64_t size
)
106 char *path
= create_tz_file (size
);
109 printf ("creating timezone file of size: %" PRId64
"MiB failed.\n",
110 size
/ (1024 * 1024));
114 if (setenv ("TZ", path
, 1) < 0)
116 printf ("setenv failed: %m\n");
126 /* Limit the size of the process. Otherwise, some of the tests will
127 consume a lot of resources. */
130 if (getrlimit (RLIMIT_AS
, &limit
) != 0)
132 printf ("getrlimit (RLIMIT_AS) failed: %m\n");
135 long target
= 512 * 1024 * 1024;
136 if (limit
.rlim_cur
== RLIM_INFINITY
|| limit
.rlim_cur
> target
)
138 limit
.rlim_cur
= 512 * 1024 * 1024;
139 if (setrlimit (RLIMIT_AS
, &limit
) != 0)
141 printf ("setrlimit (RLIMIT_AS) failed: %m\n");
148 for (int i
= 1; i
<= 4; ++i
)
151 snprintf (tz
, sizeof (tz
), "XT%d", i
);
152 if (setenv ("TZ", tz
, 1) < 0)
154 printf ("setenv failed: %m\n");
158 if (strcmp (tzname
[0], tz
) == 0)
160 printf ("Unexpected success for %s\n", tz
);
165 /* Large TZ files. */
167 /* This will succeed on 64-bit architectures, and fail on 32-bit
168 architectures. It used to crash on 32-bit. */
169 test_tz_file (64 * 1024 * 1024);
171 /* This will fail on 64-bit and 32-bit architectures. It used to
172 cause a test timeout on 64-bit and crash on 32-bit if the TZ file
173 open succeeded for some reason (it does not use O_LARGEFILE in
175 test_tz_file (4LL * 1024 * 1024 * 1024 - 6);
177 /* Large TZ variables. */
179 size_t length
= 64 * 1024 * 1024;
180 char *value
= malloc (length
+ 1);
183 puts ("malloc failed: %m");
186 value
[length
] = '\0';
188 memset (value
, ' ', length
);
192 if (setenv ("TZ", value
, 1) < 0)
194 printf ("setenv failed: %m\n");
199 memset (value
, '0', length
);
201 value
[length
- 1] = '>';
202 if (setenv ("TZ", value
, 1) < 0)
204 printf ("setenv failed: %m\n");