1 /* tzset tests with crafted time zone data.
2 Copyright (C) 2015-2017 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 <http://www.gnu.org/licenses/>. */
24 #include <sys/resource.h>
29 static int do_test (void);
30 #define TEST_FUNCTION do_test ()
31 #include "../test-skeleton.c"
33 /* Returns the name of a large TZ file. */
35 create_tz_file (off64_t size
)
38 int fd
= create_temp_file ("tst-tzset-", &path
);
42 // Reopen for large-file support.
44 fd
= open64 (path
, O_WRONLY
);
47 printf ("open64 (%s) failed: %m\n", path
);
51 static const char data
[] = {
52 0x54, 0x5a, 0x69, 0x66, 0x32, 0x00, 0x00, 0x00,
53 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
54 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
55 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
56 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
57 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00,
58 0x00, 0x00, 0x58, 0x54, 0x47, 0x00, 0x00, 0x00,
59 0x54, 0x5a, 0x69, 0x66, 0x32, 0x00, 0x00, 0x00,
60 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
61 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
62 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
63 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
64 0x00, 0x00, 0x00, 0x04, 0xf8, 0x00, 0x00, 0x00,
65 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
66 0x00, 0x00, 0x00, 0x58, 0x54, 0x47, 0x00, 0x00,
67 0x00, 0x0a, 0x58, 0x54, 0x47, 0x30, 0x0a
69 ssize_t ret
= write (fd
, data
, sizeof (data
));
72 printf ("write failed: %m\n");
75 if ((size_t) ret
!= sizeof (data
))
77 printf ("Short write\n");
80 if (lseek64 (fd
, size
, SEEK_CUR
) < 0)
82 printf ("lseek failed: %m\n");
86 if (write (fd
, "", 1) != 1)
88 printf ("Single-byte write failed\n");
94 printf ("close failed: %m\n");
101 test_tz_file (off64_t size
)
103 char *path
= create_tz_file (size
);
104 if (setenv ("TZ", path
, 1) < 0)
106 printf ("setenv failed: %m\n");
116 /* Limit the size of the process. Otherwise, some of the tests will
117 consume a lot of resources. */
120 if (getrlimit (RLIMIT_AS
, &limit
) != 0)
122 printf ("getrlimit (RLIMIT_AS) failed: %m\n");
125 long target
= 512 * 1024 * 1024;
126 if (limit
.rlim_cur
== RLIM_INFINITY
|| limit
.rlim_cur
> target
)
128 limit
.rlim_cur
= 512 * 1024 * 1024;
129 if (setrlimit (RLIMIT_AS
, &limit
) != 0)
131 printf ("setrlimit (RLIMIT_AS) failed: %m\n");
138 for (int i
= 1; i
<= 4; ++i
)
141 snprintf (tz
, sizeof (tz
), "XT%d", i
);
142 if (setenv ("TZ", tz
, 1) < 0)
144 printf ("setenv failed: %m\n");
148 if (strcmp (tzname
[0], tz
) == 0)
150 printf ("Unexpected success for %s\n", tz
);
155 /* Large TZ files. */
157 /* This will succeed on 64-bit architectures, and fail on 32-bit
158 architectures. It used to crash on 32-bit. */
159 test_tz_file (64 * 1024 * 1024);
161 /* This will fail on 64-bit and 32-bit architectures. It used to
162 cause a test timeout on 64-bit and crash on 32-bit if the TZ file
163 open succeeded for some reason (it does not use O_LARGEFILE in
165 test_tz_file (4LL * 1024 * 1024 * 1024 - 6);
167 /* Large TZ variables. */
169 size_t length
= 64 * 1024 * 1024;
170 char *value
= malloc (length
+ 1);
173 puts ("malloc failed: %m");
176 value
[length
] = '\0';
178 memset (value
, ' ', length
);
182 if (setenv ("TZ", value
, 1) < 0)
184 printf ("setenv failed: %m\n");
189 memset (value
, '0', length
);
191 value
[length
- 1] = '>';
192 if (setenv ("TZ", value
, 1) < 0)
194 printf ("setenv failed: %m\n");