blob: 98bc4e5a5c2819c22d08287eb0dc5fd85d5f29e7 [file] [log] [blame]
Elliott Hughesbfeab1b2012-09-05 17:47:37 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <gtest/gtest.h>
18
19#include <errno.h>
20#include <pthread.h>
Elliott Hughes4d014e12012-09-07 16:47:54 -070021#include <unistd.h>
Elliott Hughesbfeab1b2012-09-05 17:47:37 -070022
23TEST(pthread, pthread_key_create) {
24 pthread_key_t key;
25 ASSERT_EQ(0, pthread_key_create(&key, NULL));
26 ASSERT_EQ(0, pthread_key_delete(key));
27 // Can't delete a key that's already been deleted.
28 ASSERT_EQ(EINVAL, pthread_key_delete(key));
29}
Elliott Hughes4d014e12012-09-07 16:47:54 -070030
Elliott Hughes3e898472013-02-12 16:40:24 +000031#if !defined(__GLIBC__) // glibc uses keys internally that its sysconf value doesn't account for.
Elliott Hughes44b53ad2013-02-11 20:18:47 +000032TEST(pthread, pthread_key_create_lots) {
33 // We can allocate _SC_THREAD_KEYS_MAX keys.
34 std::vector<pthread_key_t> keys;
35 for (int i = 0; i < sysconf(_SC_THREAD_KEYS_MAX); ++i) {
36 pthread_key_t key;
Elliott Hughes3e898472013-02-12 16:40:24 +000037 // If this fails, it's likely that GLOBAL_INIT_THREAD_LOCAL_BUFFER_COUNT is wrong.
38 ASSERT_EQ(0, pthread_key_create(&key, NULL)) << i << " of " << sysconf(_SC_THREAD_KEYS_MAX);
Elliott Hughes44b53ad2013-02-11 20:18:47 +000039 keys.push_back(key);
40 }
41
42 // ...and that really is the maximum.
43 pthread_key_t key;
44 ASSERT_EQ(EAGAIN, pthread_key_create(&key, NULL));
45
46 // (Don't leak all those keys!)
47 for (size_t i = 0; i < keys.size(); ++i) {
48 ASSERT_EQ(0, pthread_key_delete(keys[i]));
49 }
50}
Elliott Hughes3e898472013-02-12 16:40:24 +000051#endif
Elliott Hughes44b53ad2013-02-11 20:18:47 +000052
Elliott Hughes4d014e12012-09-07 16:47:54 -070053static void* IdFn(void* arg) {
54 return arg;
55}
56
57static void* SleepFn(void* arg) {
58 sleep(reinterpret_cast<unsigned int>(arg));
59 return NULL;
60}
61
Sergey Melnikov10ce9692012-10-26 14:06:43 +040062static void* SpinFn(void* arg) {
63 volatile bool* b = reinterpret_cast<volatile bool*>(arg);
64 while (!*b) {
65 }
66 return NULL;
67}
68
Elliott Hughes4d014e12012-09-07 16:47:54 -070069static void* JoinFn(void* arg) {
70 return reinterpret_cast<void*>(pthread_join(reinterpret_cast<pthread_t>(arg), NULL));
71}
72
Sergey Melnikov10ce9692012-10-26 14:06:43 +040073static void AssertDetached(pthread_t t, bool is_detached) {
74 pthread_attr_t attr;
75 ASSERT_EQ(0, pthread_getattr_np(t, &attr));
76 int detach_state;
77 ASSERT_EQ(0, pthread_attr_getdetachstate(&attr, &detach_state));
78 pthread_attr_destroy(&attr);
79 ASSERT_EQ(is_detached, (detach_state == PTHREAD_CREATE_DETACHED));
80}
81
Elliott Hughes9d23e042013-02-15 19:21:51 -080082static void MakeDeadThread(pthread_t& t) {
83 ASSERT_EQ(0, pthread_create(&t, NULL, IdFn, NULL));
84 void* result;
85 ASSERT_EQ(0, pthread_join(t, &result));
86}
87
Elliott Hughes4d014e12012-09-07 16:47:54 -070088TEST(pthread, pthread_create) {
89 void* expected_result = reinterpret_cast<void*>(123);
90 // Can we create a thread?
91 pthread_t t;
92 ASSERT_EQ(0, pthread_create(&t, NULL, IdFn, expected_result));
93 // If we join, do we get the expected value back?
94 void* result;
95 ASSERT_EQ(0, pthread_join(t, &result));
96 ASSERT_EQ(expected_result, result);
97}
98
Elliott Hughes3e898472013-02-12 16:40:24 +000099TEST(pthread, pthread_create_EAGAIN) {
100 pthread_attr_t attributes;
101 ASSERT_EQ(0, pthread_attr_init(&attributes));
102 ASSERT_EQ(0, pthread_attr_setstacksize(&attributes, static_cast<size_t>(-1) & ~(getpagesize() - 1)));
103
104 pthread_t t;
105 ASSERT_EQ(EAGAIN, pthread_create(&t, &attributes, IdFn, NULL));
106}
107
Elliott Hughes4d014e12012-09-07 16:47:54 -0700108TEST(pthread, pthread_no_join_after_detach) {
109 pthread_t t1;
110 ASSERT_EQ(0, pthread_create(&t1, NULL, SleepFn, reinterpret_cast<void*>(5)));
111
112 // After a pthread_detach...
113 ASSERT_EQ(0, pthread_detach(t1));
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400114 AssertDetached(t1, true);
Elliott Hughes4d014e12012-09-07 16:47:54 -0700115
116 // ...pthread_join should fail.
117 void* result;
118 ASSERT_EQ(EINVAL, pthread_join(t1, &result));
119}
120
121TEST(pthread, pthread_no_op_detach_after_join) {
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400122 bool done = false;
123
Elliott Hughes4d014e12012-09-07 16:47:54 -0700124 pthread_t t1;
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400125 ASSERT_EQ(0, pthread_create(&t1, NULL, SpinFn, &done));
Elliott Hughes4d014e12012-09-07 16:47:54 -0700126
127 // If thread 2 is already waiting to join thread 1...
128 pthread_t t2;
129 ASSERT_EQ(0, pthread_create(&t2, NULL, JoinFn, reinterpret_cast<void*>(t1)));
130
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400131 sleep(1); // (Give t2 a chance to call pthread_join.)
Elliott Hughes4d014e12012-09-07 16:47:54 -0700132
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400133 // ...a call to pthread_detach on thread 1 will "succeed" (silently fail)...
134 ASSERT_EQ(0, pthread_detach(t1));
135 AssertDetached(t1, false);
136
137 done = true;
138
139 // ...but t2's join on t1 still goes ahead (which we can tell because our join on t2 finishes).
Elliott Hughes4d014e12012-09-07 16:47:54 -0700140 void* join_result;
141 ASSERT_EQ(0, pthread_join(t2, &join_result));
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400142 ASSERT_EQ(0, reinterpret_cast<int>(join_result));
Elliott Hughes4d014e12012-09-07 16:47:54 -0700143}
Elliott Hughes14f19592012-10-29 10:19:44 -0700144
145TEST(pthread, pthread_join_self) {
146 void* result;
147 ASSERT_EQ(EDEADLK, pthread_join(pthread_self(), &result));
148}
Elliott Hughes4f251be2012-11-01 16:33:29 -0700149
150#if __BIONIC__ // For some reason, gtest on bionic can cope with this but gtest on glibc can't.
151
152static void TestBug37410() {
153 pthread_t t1;
154 ASSERT_EQ(0, pthread_create(&t1, NULL, JoinFn, reinterpret_cast<void*>(pthread_self())));
155 pthread_exit(NULL);
156}
157
Elliott Hughes7fd803c2013-02-14 16:33:52 -0800158// Even though this isn't really a death test, we have to say "DeathTest" here so gtest knows to
159// run this test (which exits normally) in its own process.
Elliott Hughes4f251be2012-11-01 16:33:29 -0700160TEST(pthread_DeathTest, pthread_bug_37410) {
161 // http://code.google.com/p/android/issues/detail?id=37410
162 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
Elliott Hughes7fd803c2013-02-14 16:33:52 -0800163 ASSERT_EXIT(TestBug37410(), ::testing::ExitedWithCode(0), "");
Elliott Hughes4f251be2012-11-01 16:33:29 -0700164}
165#endif
Elliott Hughesc5d028f2013-01-10 14:42:14 -0800166
167static void* SignalHandlerFn(void* arg) {
168 sigset_t wait_set;
169 sigfillset(&wait_set);
170 return reinterpret_cast<void*>(sigwait(&wait_set, reinterpret_cast<int*>(arg)));
171}
172
173TEST(pthread, pthread_sigmask) {
174 // Block SIGUSR1.
175 sigset_t set;
176 sigemptyset(&set);
177 sigaddset(&set, SIGUSR1);
178 ASSERT_EQ(0, pthread_sigmask(SIG_BLOCK, &set, NULL));
179
180 // Spawn a thread that calls sigwait and tells us what it received.
181 pthread_t signal_thread;
182 int received_signal = -1;
183 ASSERT_EQ(0, pthread_create(&signal_thread, NULL, SignalHandlerFn, &received_signal));
184
185 // Send that thread SIGUSR1.
186 pthread_kill(signal_thread, SIGUSR1);
187
188 // See what it got.
189 void* join_result;
190 ASSERT_EQ(0, pthread_join(signal_thread, &join_result));
191 ASSERT_EQ(SIGUSR1, received_signal);
192 ASSERT_EQ(0, reinterpret_cast<int>(join_result));
193}
Elliott Hughes5e3fc432013-02-11 16:36:48 -0800194
Elliott Hughes3e898472013-02-12 16:40:24 +0000195#if __BIONIC__
Elliott Hughes40eabe22013-02-14 18:59:37 -0800196extern "C" int __pthread_clone(void* (*fn)(void*), void* child_stack, int flags, void* arg);
Elliott Hughes5e3fc432013-02-11 16:36:48 -0800197TEST(pthread, __pthread_clone) {
198 uintptr_t fake_child_stack[16];
199 errno = 0;
200 ASSERT_EQ(-1, __pthread_clone(NULL, &fake_child_stack[0], CLONE_THREAD, NULL));
201 ASSERT_EQ(EINVAL, errno);
202}
203#endif
Elliott Hughes3e898472013-02-12 16:40:24 +0000204
Elliott Hughes9701d4b2013-02-12 17:20:42 -0800205#if __BIONIC__ // Not all build servers have a new enough glibc? TODO: remove when they're on gprecise.
Elliott Hughes3e898472013-02-12 16:40:24 +0000206TEST(pthread, pthread_setname_np__too_long) {
207 ASSERT_EQ(ERANGE, pthread_setname_np(pthread_self(), "this name is far too long for linux"));
208}
Elliott Hughes9701d4b2013-02-12 17:20:42 -0800209#endif
Elliott Hughes3e898472013-02-12 16:40:24 +0000210
Elliott Hughes9701d4b2013-02-12 17:20:42 -0800211#if __BIONIC__ // Not all build servers have a new enough glibc? TODO: remove when they're on gprecise.
Elliott Hughes3e898472013-02-12 16:40:24 +0000212TEST(pthread, pthread_setname_np__self) {
213 ASSERT_EQ(0, pthread_setname_np(pthread_self(), "short 1"));
214}
Elliott Hughes9701d4b2013-02-12 17:20:42 -0800215#endif
Elliott Hughes3e898472013-02-12 16:40:24 +0000216
Elliott Hughes9701d4b2013-02-12 17:20:42 -0800217#if __BIONIC__ // Not all build servers have a new enough glibc? TODO: remove when they're on gprecise.
Elliott Hughes3e898472013-02-12 16:40:24 +0000218TEST(pthread, pthread_setname_np__other) {
Elliott Hughes40eabe22013-02-14 18:59:37 -0800219 // Emulator kernels don't currently support setting the name of other threads.
220 char* filename = NULL;
221 asprintf(&filename, "/proc/self/task/%d/comm", gettid());
222 struct stat sb;
223 bool has_comm = (stat(filename, &sb) != -1);
224 free(filename);
225
226 if (has_comm) {
227 pthread_t t1;
228 ASSERT_EQ(0, pthread_create(&t1, NULL, SleepFn, reinterpret_cast<void*>(5)));
229 ASSERT_EQ(0, pthread_setname_np(t1, "short 2"));
230 } else {
231 fprintf(stderr, "skipping test: this kernel doesn't have /proc/self/task/tid/comm files!\n");
232 }
Elliott Hughes3e898472013-02-12 16:40:24 +0000233}
Elliott Hughes9701d4b2013-02-12 17:20:42 -0800234#endif
Elliott Hughes3e898472013-02-12 16:40:24 +0000235
Elliott Hughes9701d4b2013-02-12 17:20:42 -0800236#if __BIONIC__ // Not all build servers have a new enough glibc? TODO: remove when they're on gprecise.
Elliott Hughes3e898472013-02-12 16:40:24 +0000237TEST(pthread, pthread_setname_np__no_such_thread) {
Elliott Hughes9d23e042013-02-15 19:21:51 -0800238 pthread_t dead_thread;
239 MakeDeadThread(dead_thread);
Elliott Hughes3e898472013-02-12 16:40:24 +0000240
241 // Call pthread_setname_np after thread has already exited.
Elliott Hughes9d23e042013-02-15 19:21:51 -0800242 ASSERT_EQ(ENOENT, pthread_setname_np(dead_thread, "short 3"));
Elliott Hughes3e898472013-02-12 16:40:24 +0000243}
Elliott Hughes9701d4b2013-02-12 17:20:42 -0800244#endif
Elliott Hughes9d23e042013-02-15 19:21:51 -0800245
246TEST(pthread, pthread_kill__0) {
247 // Signal 0 just tests that the thread exists, so it's safe to call on ourselves.
248 ASSERT_EQ(0, pthread_kill(pthread_self(), 0));
249}
250
251TEST(pthread, pthread_kill__invalid_signal) {
252 ASSERT_EQ(EINVAL, pthread_kill(pthread_self(), -1));
253}
254
Elliott Hughesfae89fc2013-02-21 11:22:23 -0800255static void pthread_kill__in_signal_handler_helper(int signal_number) {
256 static int count = 0;
257 ASSERT_EQ(SIGALRM, signal_number);
258 if (++count == 1) {
259 // Can we call pthread_kill from a signal handler?
260 ASSERT_EQ(0, pthread_kill(pthread_self(), SIGALRM));
261 }
262}
263
264TEST(pthread, pthread_kill__in_signal_handler) {
265 struct sigaction action;
266 sigemptyset(&action.sa_mask);
267 action.sa_flags = 0;
268 action.sa_handler = pthread_kill__in_signal_handler_helper;
269 sigaction(SIGALRM, &action, NULL);
270 ASSERT_EQ(0, pthread_kill(pthread_self(), SIGALRM));
271}
272
Elliott Hughes9d23e042013-02-15 19:21:51 -0800273TEST(pthread, pthread_detach__no_such_thread) {
274 pthread_t dead_thread;
275 MakeDeadThread(dead_thread);
276
277 ASSERT_EQ(ESRCH, pthread_detach(dead_thread));
278}
279
280TEST(pthread, pthread_getcpuclockid__no_such_thread) {
281 pthread_t dead_thread;
282 MakeDeadThread(dead_thread);
283
284 clockid_t c;
285 ASSERT_EQ(ESRCH, pthread_getcpuclockid(dead_thread, &c));
286}
287
288TEST(pthread, pthread_getschedparam__no_such_thread) {
289 pthread_t dead_thread;
290 MakeDeadThread(dead_thread);
291
292 int policy;
293 sched_param param;
294 ASSERT_EQ(ESRCH, pthread_getschedparam(dead_thread, &policy, &param));
295}
296
297TEST(pthread, pthread_setschedparam__no_such_thread) {
298 pthread_t dead_thread;
299 MakeDeadThread(dead_thread);
300
301 int policy = 0;
302 sched_param param;
303 ASSERT_EQ(ESRCH, pthread_setschedparam(dead_thread, policy, &param));
304}
305
306TEST(pthread, pthread_join__no_such_thread) {
307 pthread_t dead_thread;
308 MakeDeadThread(dead_thread);
309
310 void* result;
311 ASSERT_EQ(ESRCH, pthread_join(dead_thread, &result));
312}
313
314TEST(pthread, pthread_kill__no_such_thread) {
315 pthread_t dead_thread;
316 MakeDeadThread(dead_thread);
317
318 ASSERT_EQ(ESRCH, pthread_kill(dead_thread, 0));
319}