blob: 5dc60eeeefe158ede162815ca4c472dbd574cd4b [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
Yabin Cui9df70402014-11-05 18:01:01 -080019#include "private/ScopeGuard.h"
20#include "BionicDeathTest.h"
21#include "ScopedSignalHandler.h"
Dmitriy Ivanov00e37812014-11-20 16:53:47 -080022#include "gtest_ex.h"
Yabin Cui9df70402014-11-05 18:01:01 -080023
Elliott Hughesbfeab1b2012-09-05 17:47:37 -070024#include <errno.h>
Elliott Hughes5b9310e2013-10-02 16:59:05 -070025#include <inttypes.h>
Elliott Hughesb95cf0d2013-07-15 14:51:07 -070026#include <limits.h>
Elliott Hughes04620a32014-03-07 17:59:05 -080027#include <malloc.h>
Elliott Hughesbfeab1b2012-09-05 17:47:37 -070028#include <pthread.h>
Christopher Ferrisf04935c2013-12-20 18:43:21 -080029#include <signal.h>
Yabin Cui140f3672015-02-03 10:32:00 -080030#include <stdio.h>
Elliott Hughes70b24b12013-11-15 11:51:07 -080031#include <sys/mman.h>
Elliott Hughes57b7a612014-08-25 17:26:50 -070032#include <sys/syscall.h>
Narayan Kamath51e6cb32014-03-03 15:38:51 +000033#include <time.h>
Elliott Hughes4d014e12012-09-07 16:47:54 -070034#include <unistd.h>
Elliott Hughesbfeab1b2012-09-05 17:47:37 -070035
36TEST(pthread, pthread_key_create) {
37 pthread_key_t key;
38 ASSERT_EQ(0, pthread_key_create(&key, NULL));
39 ASSERT_EQ(0, pthread_key_delete(key));
40 // Can't delete a key that's already been deleted.
41 ASSERT_EQ(EINVAL, pthread_key_delete(key));
42}
Elliott Hughes4d014e12012-09-07 16:47:54 -070043
Dan Albertc4bcc752014-09-30 11:48:24 -070044TEST(pthread, pthread_keys_max) {
Yabin Cui6c238f22014-12-11 20:50:41 -080045 // POSIX says PTHREAD_KEYS_MAX should be at least _POSIX_THREAD_KEYS_MAX.
46 ASSERT_GE(PTHREAD_KEYS_MAX, _POSIX_THREAD_KEYS_MAX);
Dan Albertc4bcc752014-09-30 11:48:24 -070047}
Elliott Hughes718a5b52014-01-28 17:02:03 -080048
Yabin Cui6c238f22014-12-11 20:50:41 -080049TEST(pthread, sysconf_SC_THREAD_KEYS_MAX_eq_PTHREAD_KEYS_MAX) {
Dan Albertc4bcc752014-09-30 11:48:24 -070050 int sysconf_max = sysconf(_SC_THREAD_KEYS_MAX);
Yabin Cui6c238f22014-12-11 20:50:41 -080051 ASSERT_EQ(sysconf_max, PTHREAD_KEYS_MAX);
Dan Albertc4bcc752014-09-30 11:48:24 -070052}
53
54TEST(pthread, pthread_key_many_distinct) {
Yabin Cui6c238f22014-12-11 20:50:41 -080055 // As gtest uses pthread keys, we can't allocate exactly PTHREAD_KEYS_MAX
56 // pthread keys, but We should be able to allocate at least this many keys.
57 int nkeys = PTHREAD_KEYS_MAX / 2;
Dan Albertc4bcc752014-09-30 11:48:24 -070058 std::vector<pthread_key_t> keys;
59
60 auto scope_guard = make_scope_guard([&keys]{
61 for (auto key : keys) {
62 EXPECT_EQ(0, pthread_key_delete(key));
63 }
64 });
65
66 for (int i = 0; i < nkeys; ++i) {
67 pthread_key_t key;
68 // If this fails, it's likely that GLOBAL_INIT_THREAD_LOCAL_BUFFER_COUNT is
69 // wrong.
70 ASSERT_EQ(0, pthread_key_create(&key, NULL)) << i << " of " << nkeys;
71 keys.push_back(key);
72 ASSERT_EQ(0, pthread_setspecific(key, reinterpret_cast<void*>(i)));
73 }
74
75 for (int i = keys.size() - 1; i >= 0; --i) {
76 ASSERT_EQ(reinterpret_cast<void*>(i), pthread_getspecific(keys.back()));
77 pthread_key_t key = keys.back();
78 keys.pop_back();
79 ASSERT_EQ(0, pthread_key_delete(key));
80 }
81}
82
Yabin Cui6c238f22014-12-11 20:50:41 -080083TEST(pthread, pthread_key_not_exceed_PTHREAD_KEYS_MAX) {
Elliott Hughes44b53ad2013-02-11 20:18:47 +000084 std::vector<pthread_key_t> keys;
Dan Albertc4bcc752014-09-30 11:48:24 -070085 int rv = 0;
Yabin Cui6c238f22014-12-11 20:50:41 -080086
87 // Pthread keys are used by gtest, so PTHREAD_KEYS_MAX should
88 // be more than we are allowed to allocate now.
89 for (int i = 0; i < PTHREAD_KEYS_MAX; i++) {
Elliott Hughes44b53ad2013-02-11 20:18:47 +000090 pthread_key_t key;
Dan Albertc4bcc752014-09-30 11:48:24 -070091 rv = pthread_key_create(&key, NULL);
92 if (rv == EAGAIN) {
93 break;
94 }
95 EXPECT_EQ(0, rv);
Elliott Hughes44b53ad2013-02-11 20:18:47 +000096 keys.push_back(key);
97 }
98
Dan Albertc4bcc752014-09-30 11:48:24 -070099 // Don't leak keys.
100 for (auto key : keys) {
101 EXPECT_EQ(0, pthread_key_delete(key));
Elliott Hughes44b53ad2013-02-11 20:18:47 +0000102 }
Dan Albertc4bcc752014-09-30 11:48:24 -0700103 keys.clear();
104
105 // We should have eventually reached the maximum number of keys and received
106 // EAGAIN.
107 ASSERT_EQ(EAGAIN, rv);
Elliott Hughes44b53ad2013-02-11 20:18:47 +0000108}
109
Elliott Hughesebb770f2014-06-25 13:46:46 -0700110TEST(pthread, pthread_key_delete) {
111 void* expected = reinterpret_cast<void*>(1234);
112 pthread_key_t key;
113 ASSERT_EQ(0, pthread_key_create(&key, NULL));
114 ASSERT_EQ(0, pthread_setspecific(key, expected));
115 ASSERT_EQ(expected, pthread_getspecific(key));
116 ASSERT_EQ(0, pthread_key_delete(key));
117 // After deletion, pthread_getspecific returns NULL.
118 ASSERT_EQ(NULL, pthread_getspecific(key));
119 // And you can't use pthread_setspecific with the deleted key.
120 ASSERT_EQ(EINVAL, pthread_setspecific(key, expected));
121}
122
Elliott Hughes40a52172014-07-30 14:48:10 -0700123TEST(pthread, pthread_key_fork) {
124 void* expected = reinterpret_cast<void*>(1234);
125 pthread_key_t key;
126 ASSERT_EQ(0, pthread_key_create(&key, NULL));
127 ASSERT_EQ(0, pthread_setspecific(key, expected));
128 ASSERT_EQ(expected, pthread_getspecific(key));
129
130 pid_t pid = fork();
131 ASSERT_NE(-1, pid) << strerror(errno);
132
133 if (pid == 0) {
134 // The surviving thread inherits all the forking thread's TLS values...
135 ASSERT_EQ(expected, pthread_getspecific(key));
136 _exit(99);
137 }
138
139 int status;
140 ASSERT_EQ(pid, waitpid(pid, &status, 0));
141 ASSERT_TRUE(WIFEXITED(status));
142 ASSERT_EQ(99, WEXITSTATUS(status));
143
144 ASSERT_EQ(expected, pthread_getspecific(key));
Dan Albert1d53ae22014-09-02 15:24:26 -0700145 ASSERT_EQ(0, pthread_key_delete(key));
Elliott Hughes40a52172014-07-30 14:48:10 -0700146}
147
148static void* DirtyKeyFn(void* key) {
149 return pthread_getspecific(*reinterpret_cast<pthread_key_t*>(key));
150}
151
152TEST(pthread, pthread_key_dirty) {
153 pthread_key_t key;
154 ASSERT_EQ(0, pthread_key_create(&key, NULL));
155
156 size_t stack_size = 128 * 1024;
157 void* stack = mmap(NULL, stack_size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
158 ASSERT_NE(MAP_FAILED, stack);
159 memset(stack, 0xff, stack_size);
160
161 pthread_attr_t attr;
162 ASSERT_EQ(0, pthread_attr_init(&attr));
163 ASSERT_EQ(0, pthread_attr_setstack(&attr, stack, stack_size));
164
165 pthread_t t;
166 ASSERT_EQ(0, pthread_create(&t, &attr, DirtyKeyFn, &key));
167
168 void* result;
169 ASSERT_EQ(0, pthread_join(t, &result));
170 ASSERT_EQ(nullptr, result); // Not ~0!
171
172 ASSERT_EQ(0, munmap(stack, stack_size));
Dan Albert1d53ae22014-09-02 15:24:26 -0700173 ASSERT_EQ(0, pthread_key_delete(key));
Elliott Hughes40a52172014-07-30 14:48:10 -0700174}
175
Elliott Hughes4d014e12012-09-07 16:47:54 -0700176static void* IdFn(void* arg) {
177 return arg;
178}
179
Yabin Cui63481602014-12-01 17:41:04 -0800180class SpinFunctionHelper {
181 public:
182 SpinFunctionHelper() {
183 SpinFunctionHelper::spin_flag_ = true;
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400184 }
Yabin Cui63481602014-12-01 17:41:04 -0800185 ~SpinFunctionHelper() {
186 UnSpin();
187 }
188 auto GetFunction() -> void* (*)(void*) {
189 return SpinFunctionHelper::SpinFn;
190 }
191
192 void UnSpin() {
193 SpinFunctionHelper::spin_flag_ = false;
194 }
195
196 private:
197 static void* SpinFn(void*) {
198 while (spin_flag_) {}
199 return NULL;
200 }
201 static volatile bool spin_flag_;
202};
203
204// It doesn't matter if spin_flag_ is used in several tests,
205// because it is always set to false after each test. Each thread
206// loops on spin_flag_ can find it becomes false at some time.
207volatile bool SpinFunctionHelper::spin_flag_ = false;
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400208
Elliott Hughes4d014e12012-09-07 16:47:54 -0700209static void* JoinFn(void* arg) {
210 return reinterpret_cast<void*>(pthread_join(reinterpret_cast<pthread_t>(arg), NULL));
211}
212
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400213static void AssertDetached(pthread_t t, bool is_detached) {
214 pthread_attr_t attr;
215 ASSERT_EQ(0, pthread_getattr_np(t, &attr));
216 int detach_state;
217 ASSERT_EQ(0, pthread_attr_getdetachstate(&attr, &detach_state));
218 pthread_attr_destroy(&attr);
219 ASSERT_EQ(is_detached, (detach_state == PTHREAD_CREATE_DETACHED));
220}
221
Elliott Hughes9d23e042013-02-15 19:21:51 -0800222static void MakeDeadThread(pthread_t& t) {
223 ASSERT_EQ(0, pthread_create(&t, NULL, IdFn, NULL));
Elliott Hughes34c987a2014-09-22 16:01:26 -0700224 ASSERT_EQ(0, pthread_join(t, NULL));
Elliott Hughes9d23e042013-02-15 19:21:51 -0800225}
226
Elliott Hughes4d014e12012-09-07 16:47:54 -0700227TEST(pthread, pthread_create) {
228 void* expected_result = reinterpret_cast<void*>(123);
229 // Can we create a thread?
230 pthread_t t;
231 ASSERT_EQ(0, pthread_create(&t, NULL, IdFn, expected_result));
232 // If we join, do we get the expected value back?
233 void* result;
234 ASSERT_EQ(0, pthread_join(t, &result));
235 ASSERT_EQ(expected_result, result);
236}
237
Elliott Hughes3e898472013-02-12 16:40:24 +0000238TEST(pthread, pthread_create_EAGAIN) {
239 pthread_attr_t attributes;
240 ASSERT_EQ(0, pthread_attr_init(&attributes));
241 ASSERT_EQ(0, pthread_attr_setstacksize(&attributes, static_cast<size_t>(-1) & ~(getpagesize() - 1)));
242
243 pthread_t t;
244 ASSERT_EQ(EAGAIN, pthread_create(&t, &attributes, IdFn, NULL));
245}
246
Elliott Hughes4d014e12012-09-07 16:47:54 -0700247TEST(pthread, pthread_no_join_after_detach) {
Yabin Cui63481602014-12-01 17:41:04 -0800248 SpinFunctionHelper spinhelper;
249
Elliott Hughes4d014e12012-09-07 16:47:54 -0700250 pthread_t t1;
Yabin Cui63481602014-12-01 17:41:04 -0800251 ASSERT_EQ(0, pthread_create(&t1, NULL, spinhelper.GetFunction(), NULL));
Elliott Hughes4d014e12012-09-07 16:47:54 -0700252
253 // After a pthread_detach...
254 ASSERT_EQ(0, pthread_detach(t1));
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400255 AssertDetached(t1, true);
Elliott Hughes4d014e12012-09-07 16:47:54 -0700256
257 // ...pthread_join should fail.
Elliott Hughes34c987a2014-09-22 16:01:26 -0700258 ASSERT_EQ(EINVAL, pthread_join(t1, NULL));
Elliott Hughes4d014e12012-09-07 16:47:54 -0700259}
260
261TEST(pthread, pthread_no_op_detach_after_join) {
Yabin Cui63481602014-12-01 17:41:04 -0800262 SpinFunctionHelper spinhelper;
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400263
Elliott Hughes4d014e12012-09-07 16:47:54 -0700264 pthread_t t1;
Yabin Cui63481602014-12-01 17:41:04 -0800265 ASSERT_EQ(0, pthread_create(&t1, NULL, spinhelper.GetFunction(), NULL));
Elliott Hughes4d014e12012-09-07 16:47:54 -0700266
267 // If thread 2 is already waiting to join thread 1...
268 pthread_t t2;
269 ASSERT_EQ(0, pthread_create(&t2, NULL, JoinFn, reinterpret_cast<void*>(t1)));
270
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400271 sleep(1); // (Give t2 a chance to call pthread_join.)
Elliott Hughes4d014e12012-09-07 16:47:54 -0700272
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400273 // ...a call to pthread_detach on thread 1 will "succeed" (silently fail)...
274 ASSERT_EQ(0, pthread_detach(t1));
275 AssertDetached(t1, false);
276
Yabin Cui63481602014-12-01 17:41:04 -0800277 spinhelper.UnSpin();
Sergey Melnikov10ce9692012-10-26 14:06:43 +0400278
279 // ...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 -0700280 void* join_result;
281 ASSERT_EQ(0, pthread_join(t2, &join_result));
Elliott Hughes5b9310e2013-10-02 16:59:05 -0700282 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(join_result));
Elliott Hughes4d014e12012-09-07 16:47:54 -0700283}
Elliott Hughes14f19592012-10-29 10:19:44 -0700284
285TEST(pthread, pthread_join_self) {
Elliott Hughes34c987a2014-09-22 16:01:26 -0700286 ASSERT_EQ(EDEADLK, pthread_join(pthread_self(), NULL));
Elliott Hughes14f19592012-10-29 10:19:44 -0700287}
Elliott Hughes4f251be2012-11-01 16:33:29 -0700288
Elliott Hughes877ec6d2013-11-15 17:40:18 -0800289struct TestBug37410 {
290 pthread_t main_thread;
291 pthread_mutex_t mutex;
Elliott Hughes4f251be2012-11-01 16:33:29 -0700292
Elliott Hughes877ec6d2013-11-15 17:40:18 -0800293 static void main() {
294 TestBug37410 data;
295 data.main_thread = pthread_self();
296 ASSERT_EQ(0, pthread_mutex_init(&data.mutex, NULL));
297 ASSERT_EQ(0, pthread_mutex_lock(&data.mutex));
298
299 pthread_t t;
300 ASSERT_EQ(0, pthread_create(&t, NULL, TestBug37410::thread_fn, reinterpret_cast<void*>(&data)));
301
302 // Wait for the thread to be running...
303 ASSERT_EQ(0, pthread_mutex_lock(&data.mutex));
304 ASSERT_EQ(0, pthread_mutex_unlock(&data.mutex));
305
306 // ...and exit.
307 pthread_exit(NULL);
308 }
309
310 private:
311 static void* thread_fn(void* arg) {
312 TestBug37410* data = reinterpret_cast<TestBug37410*>(arg);
313
314 // Let the main thread know we're running.
315 pthread_mutex_unlock(&data->mutex);
316
317 // And wait for the main thread to exit.
318 pthread_join(data->main_thread, NULL);
319
320 return NULL;
321 }
322};
Elliott Hughes4f251be2012-11-01 16:33:29 -0700323
Elliott Hughes7fd803c2013-02-14 16:33:52 -0800324// Even though this isn't really a death test, we have to say "DeathTest" here so gtest knows to
325// run this test (which exits normally) in its own process.
Yabin Cui9df70402014-11-05 18:01:01 -0800326
327class pthread_DeathTest : public BionicDeathTest {};
328
329TEST_F(pthread_DeathTest, pthread_bug_37410) {
Elliott Hughes4f251be2012-11-01 16:33:29 -0700330 // http://code.google.com/p/android/issues/detail?id=37410
Elliott Hughes877ec6d2013-11-15 17:40:18 -0800331 ASSERT_EXIT(TestBug37410::main(), ::testing::ExitedWithCode(0), "");
Elliott Hughes4f251be2012-11-01 16:33:29 -0700332}
Elliott Hughesc5d028f2013-01-10 14:42:14 -0800333
334static void* SignalHandlerFn(void* arg) {
335 sigset_t wait_set;
336 sigfillset(&wait_set);
337 return reinterpret_cast<void*>(sigwait(&wait_set, reinterpret_cast<int*>(arg)));
338}
339
340TEST(pthread, pthread_sigmask) {
Elliott Hughes19e62322013-10-15 11:23:57 -0700341 // Check that SIGUSR1 isn't blocked.
342 sigset_t original_set;
343 sigemptyset(&original_set);
344 ASSERT_EQ(0, pthread_sigmask(SIG_BLOCK, NULL, &original_set));
345 ASSERT_FALSE(sigismember(&original_set, SIGUSR1));
346
Elliott Hughesc5d028f2013-01-10 14:42:14 -0800347 // Block SIGUSR1.
348 sigset_t set;
349 sigemptyset(&set);
350 sigaddset(&set, SIGUSR1);
351 ASSERT_EQ(0, pthread_sigmask(SIG_BLOCK, &set, NULL));
352
Elliott Hughes19e62322013-10-15 11:23:57 -0700353 // Check that SIGUSR1 is blocked.
354 sigset_t final_set;
355 sigemptyset(&final_set);
356 ASSERT_EQ(0, pthread_sigmask(SIG_BLOCK, NULL, &final_set));
357 ASSERT_TRUE(sigismember(&final_set, SIGUSR1));
358 // ...and that sigprocmask agrees with pthread_sigmask.
359 sigemptyset(&final_set);
360 ASSERT_EQ(0, sigprocmask(SIG_BLOCK, NULL, &final_set));
361 ASSERT_TRUE(sigismember(&final_set, SIGUSR1));
362
Elliott Hughesc5d028f2013-01-10 14:42:14 -0800363 // Spawn a thread that calls sigwait and tells us what it received.
364 pthread_t signal_thread;
365 int received_signal = -1;
366 ASSERT_EQ(0, pthread_create(&signal_thread, NULL, SignalHandlerFn, &received_signal));
367
368 // Send that thread SIGUSR1.
369 pthread_kill(signal_thread, SIGUSR1);
370
371 // See what it got.
372 void* join_result;
373 ASSERT_EQ(0, pthread_join(signal_thread, &join_result));
374 ASSERT_EQ(SIGUSR1, received_signal);
Elliott Hughes5b9310e2013-10-02 16:59:05 -0700375 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(join_result));
Elliott Hughes19e62322013-10-15 11:23:57 -0700376
377 // Restore the original signal mask.
378 ASSERT_EQ(0, pthread_sigmask(SIG_SETMASK, &original_set, NULL));
Elliott Hughesc5d028f2013-01-10 14:42:14 -0800379}
Elliott Hughes5e3fc432013-02-11 16:36:48 -0800380
Elliott Hughes3e898472013-02-12 16:40:24 +0000381TEST(pthread, pthread_setname_np__too_long) {
382 ASSERT_EQ(ERANGE, pthread_setname_np(pthread_self(), "this name is far too long for linux"));
383}
384
385TEST(pthread, pthread_setname_np__self) {
386 ASSERT_EQ(0, pthread_setname_np(pthread_self(), "short 1"));
387}
388
389TEST(pthread, pthread_setname_np__other) {
Yabin Cui63481602014-12-01 17:41:04 -0800390 SpinFunctionHelper spinhelper;
391
Elliott Hughesed29e852014-10-27 12:01:51 -0700392 pthread_t t1;
Yabin Cui63481602014-12-01 17:41:04 -0800393 ASSERT_EQ(0, pthread_create(&t1, NULL, spinhelper.GetFunction(), NULL));
Elliott Hughesed29e852014-10-27 12:01:51 -0700394 ASSERT_EQ(0, pthread_setname_np(t1, "short 2"));
Elliott Hughes3e898472013-02-12 16:40:24 +0000395}
396
397TEST(pthread, pthread_setname_np__no_such_thread) {
Elliott Hughes9d23e042013-02-15 19:21:51 -0800398 pthread_t dead_thread;
399 MakeDeadThread(dead_thread);
Elliott Hughes3e898472013-02-12 16:40:24 +0000400
401 // Call pthread_setname_np after thread has already exited.
Elliott Hughes68d98d82014-11-12 21:03:26 -0800402 ASSERT_EQ(ENOENT, pthread_setname_np(dead_thread, "short 3"));
Elliott Hughes3e898472013-02-12 16:40:24 +0000403}
Elliott Hughes9d23e042013-02-15 19:21:51 -0800404
405TEST(pthread, pthread_kill__0) {
406 // Signal 0 just tests that the thread exists, so it's safe to call on ourselves.
407 ASSERT_EQ(0, pthread_kill(pthread_self(), 0));
408}
409
410TEST(pthread, pthread_kill__invalid_signal) {
411 ASSERT_EQ(EINVAL, pthread_kill(pthread_self(), -1));
412}
413
Elliott Hughesfae89fc2013-02-21 11:22:23 -0800414static void pthread_kill__in_signal_handler_helper(int signal_number) {
415 static int count = 0;
416 ASSERT_EQ(SIGALRM, signal_number);
417 if (++count == 1) {
418 // Can we call pthread_kill from a signal handler?
419 ASSERT_EQ(0, pthread_kill(pthread_self(), SIGALRM));
420 }
421}
422
423TEST(pthread, pthread_kill__in_signal_handler) {
Elliott Hughes4b558f52014-03-04 15:58:02 -0800424 ScopedSignalHandler ssh(SIGALRM, pthread_kill__in_signal_handler_helper);
Elliott Hughesfae89fc2013-02-21 11:22:23 -0800425 ASSERT_EQ(0, pthread_kill(pthread_self(), SIGALRM));
426}
427
Elliott Hughes9d23e042013-02-15 19:21:51 -0800428TEST(pthread, pthread_detach__no_such_thread) {
429 pthread_t dead_thread;
430 MakeDeadThread(dead_thread);
431
432 ASSERT_EQ(ESRCH, pthread_detach(dead_thread));
433}
434
Yabin Cui19e246d2014-12-18 14:22:09 -0800435TEST(pthread, pthread_detach_no_leak) {
Christopher Ferrise3809602014-08-06 14:15:01 -0700436 size_t initial_bytes = 0;
437 // Run this loop more than once since the first loop causes some memory
438 // to be allocated permenantly. Run an extra loop to help catch any subtle
439 // memory leaks.
440 for (size_t loop = 0; loop < 3; loop++) {
441 // Set the initial bytes on the second loop since the memory in use
442 // should have stabilized.
443 if (loop == 1) {
444 initial_bytes = mallinfo().uordblks;
445 }
Elliott Hughes04620a32014-03-07 17:59:05 -0800446
Christopher Ferrise3809602014-08-06 14:15:01 -0700447 pthread_attr_t attr;
448 ASSERT_EQ(0, pthread_attr_init(&attr));
449 ASSERT_EQ(0, pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE));
Elliott Hughes04620a32014-03-07 17:59:05 -0800450
Christopher Ferrise3809602014-08-06 14:15:01 -0700451 std::vector<pthread_t> threads;
452 for (size_t i = 0; i < 32; ++i) {
453 pthread_t t;
454 ASSERT_EQ(0, pthread_create(&t, &attr, IdFn, NULL));
455 threads.push_back(t);
456 }
Elliott Hughes04620a32014-03-07 17:59:05 -0800457
Christopher Ferrise3809602014-08-06 14:15:01 -0700458 sleep(1);
Elliott Hughes04620a32014-03-07 17:59:05 -0800459
Christopher Ferrise3809602014-08-06 14:15:01 -0700460 for (size_t i = 0; i < 32; ++i) {
461 ASSERT_EQ(0, pthread_detach(threads[i])) << i;
462 }
Elliott Hughes04620a32014-03-07 17:59:05 -0800463 }
464
465 size_t final_bytes = mallinfo().uordblks;
Elliott Hughes04620a32014-03-07 17:59:05 -0800466 int leaked_bytes = (final_bytes - initial_bytes);
467
Yabin Cui19e246d2014-12-18 14:22:09 -0800468 ASSERT_EQ(0, leaked_bytes);
Elliott Hughes04620a32014-03-07 17:59:05 -0800469}
470
Jeff Hao9b06cc32013-08-15 14:51:16 -0700471TEST(pthread, pthread_getcpuclockid__clock_gettime) {
Yabin Cui63481602014-12-01 17:41:04 -0800472 SpinFunctionHelper spinhelper;
473
Jeff Hao9b06cc32013-08-15 14:51:16 -0700474 pthread_t t;
Yabin Cui63481602014-12-01 17:41:04 -0800475 ASSERT_EQ(0, pthread_create(&t, NULL, spinhelper.GetFunction(), NULL));
Jeff Hao9b06cc32013-08-15 14:51:16 -0700476
477 clockid_t c;
478 ASSERT_EQ(0, pthread_getcpuclockid(t, &c));
479 timespec ts;
480 ASSERT_EQ(0, clock_gettime(c, &ts));
481}
482
Elliott Hughes9d23e042013-02-15 19:21:51 -0800483TEST(pthread, pthread_getcpuclockid__no_such_thread) {
484 pthread_t dead_thread;
485 MakeDeadThread(dead_thread);
486
487 clockid_t c;
488 ASSERT_EQ(ESRCH, pthread_getcpuclockid(dead_thread, &c));
489}
490
491TEST(pthread, pthread_getschedparam__no_such_thread) {
492 pthread_t dead_thread;
493 MakeDeadThread(dead_thread);
494
495 int policy;
496 sched_param param;
497 ASSERT_EQ(ESRCH, pthread_getschedparam(dead_thread, &policy, &param));
498}
499
500TEST(pthread, pthread_setschedparam__no_such_thread) {
501 pthread_t dead_thread;
502 MakeDeadThread(dead_thread);
503
504 int policy = 0;
505 sched_param param;
506 ASSERT_EQ(ESRCH, pthread_setschedparam(dead_thread, policy, &param));
507}
508
509TEST(pthread, pthread_join__no_such_thread) {
510 pthread_t dead_thread;
511 MakeDeadThread(dead_thread);
512
Elliott Hughes34c987a2014-09-22 16:01:26 -0700513 ASSERT_EQ(ESRCH, pthread_join(dead_thread, NULL));
Elliott Hughes9d23e042013-02-15 19:21:51 -0800514}
515
516TEST(pthread, pthread_kill__no_such_thread) {
517 pthread_t dead_thread;
518 MakeDeadThread(dead_thread);
519
520 ASSERT_EQ(ESRCH, pthread_kill(dead_thread, 0));
521}
msg5550f020d12013-06-06 14:59:28 -0400522
523TEST(pthread, pthread_join__multijoin) {
Yabin Cui63481602014-12-01 17:41:04 -0800524 SpinFunctionHelper spinhelper;
msg5550f020d12013-06-06 14:59:28 -0400525
526 pthread_t t1;
Yabin Cui63481602014-12-01 17:41:04 -0800527 ASSERT_EQ(0, pthread_create(&t1, NULL, spinhelper.GetFunction(), NULL));
msg5550f020d12013-06-06 14:59:28 -0400528
529 pthread_t t2;
530 ASSERT_EQ(0, pthread_create(&t2, NULL, JoinFn, reinterpret_cast<void*>(t1)));
531
532 sleep(1); // (Give t2 a chance to call pthread_join.)
533
534 // Multiple joins to the same thread should fail.
535 ASSERT_EQ(EINVAL, pthread_join(t1, NULL));
536
Yabin Cui63481602014-12-01 17:41:04 -0800537 spinhelper.UnSpin();
msg5550f020d12013-06-06 14:59:28 -0400538
539 // ...but t2's join on t1 still goes ahead (which we can tell because our join on t2 finishes).
540 void* join_result;
541 ASSERT_EQ(0, pthread_join(t2, &join_result));
Elliott Hughes5b9310e2013-10-02 16:59:05 -0700542 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(join_result));
msg5550f020d12013-06-06 14:59:28 -0400543}
Elliott Hughesb95cf0d2013-07-15 14:51:07 -0700544
Elliott Hughes70b24b12013-11-15 11:51:07 -0800545TEST(pthread, pthread_join__race) {
546 // http://b/11693195 --- pthread_join could return before the thread had actually exited.
547 // If the joiner unmapped the thread's stack, that could lead to SIGSEGV in the thread.
548 for (size_t i = 0; i < 1024; ++i) {
549 size_t stack_size = 64*1024;
550 void* stack = mmap(NULL, stack_size, PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, -1, 0);
551
552 pthread_attr_t a;
553 pthread_attr_init(&a);
554 pthread_attr_setstack(&a, stack, stack_size);
555
556 pthread_t t;
557 ASSERT_EQ(0, pthread_create(&t, &a, IdFn, NULL));
558 ASSERT_EQ(0, pthread_join(t, NULL));
559 ASSERT_EQ(0, munmap(stack, stack_size));
560 }
561}
562
Elliott Hughesb95cf0d2013-07-15 14:51:07 -0700563static void* GetActualGuardSizeFn(void* arg) {
564 pthread_attr_t attributes;
565 pthread_getattr_np(pthread_self(), &attributes);
566 pthread_attr_getguardsize(&attributes, reinterpret_cast<size_t*>(arg));
567 return NULL;
568}
569
570static size_t GetActualGuardSize(const pthread_attr_t& attributes) {
571 size_t result;
572 pthread_t t;
573 pthread_create(&t, &attributes, GetActualGuardSizeFn, &result);
Elliott Hughes34c987a2014-09-22 16:01:26 -0700574 pthread_join(t, NULL);
Elliott Hughesb95cf0d2013-07-15 14:51:07 -0700575 return result;
576}
577
578static void* GetActualStackSizeFn(void* arg) {
579 pthread_attr_t attributes;
580 pthread_getattr_np(pthread_self(), &attributes);
581 pthread_attr_getstacksize(&attributes, reinterpret_cast<size_t*>(arg));
582 return NULL;
583}
584
585static size_t GetActualStackSize(const pthread_attr_t& attributes) {
586 size_t result;
587 pthread_t t;
588 pthread_create(&t, &attributes, GetActualStackSizeFn, &result);
Elliott Hughes34c987a2014-09-22 16:01:26 -0700589 pthread_join(t, NULL);
Elliott Hughesb95cf0d2013-07-15 14:51:07 -0700590 return result;
591}
592
593TEST(pthread, pthread_attr_setguardsize) {
594 pthread_attr_t attributes;
595 ASSERT_EQ(0, pthread_attr_init(&attributes));
596
597 // Get the default guard size.
598 size_t default_guard_size;
599 ASSERT_EQ(0, pthread_attr_getguardsize(&attributes, &default_guard_size));
600
601 // No such thing as too small: will be rounded up to one page by pthread_create.
602 ASSERT_EQ(0, pthread_attr_setguardsize(&attributes, 128));
603 size_t guard_size;
604 ASSERT_EQ(0, pthread_attr_getguardsize(&attributes, &guard_size));
605 ASSERT_EQ(128U, guard_size);
606 ASSERT_EQ(4096U, GetActualGuardSize(attributes));
607
608 // Large enough and a multiple of the page size.
609 ASSERT_EQ(0, pthread_attr_setguardsize(&attributes, 32*1024));
610 ASSERT_EQ(0, pthread_attr_getguardsize(&attributes, &guard_size));
611 ASSERT_EQ(32*1024U, guard_size);
612
613 // Large enough but not a multiple of the page size; will be rounded up by pthread_create.
614 ASSERT_EQ(0, pthread_attr_setguardsize(&attributes, 32*1024 + 1));
615 ASSERT_EQ(0, pthread_attr_getguardsize(&attributes, &guard_size));
616 ASSERT_EQ(32*1024U + 1, guard_size);
617}
618
619TEST(pthread, pthread_attr_setstacksize) {
620 pthread_attr_t attributes;
621 ASSERT_EQ(0, pthread_attr_init(&attributes));
622
623 // Get the default stack size.
624 size_t default_stack_size;
625 ASSERT_EQ(0, pthread_attr_getstacksize(&attributes, &default_stack_size));
626
627 // Too small.
628 ASSERT_EQ(EINVAL, pthread_attr_setstacksize(&attributes, 128));
629 size_t stack_size;
630 ASSERT_EQ(0, pthread_attr_getstacksize(&attributes, &stack_size));
631 ASSERT_EQ(default_stack_size, stack_size);
632 ASSERT_GE(GetActualStackSize(attributes), default_stack_size);
633
Yabin Cui917d3902015-01-08 12:32:42 -0800634 // Large enough and a multiple of the page size; may be rounded up by pthread_create.
Elliott Hughesb95cf0d2013-07-15 14:51:07 -0700635 ASSERT_EQ(0, pthread_attr_setstacksize(&attributes, 32*1024));
636 ASSERT_EQ(0, pthread_attr_getstacksize(&attributes, &stack_size));
637 ASSERT_EQ(32*1024U, stack_size);
Yabin Cui917d3902015-01-08 12:32:42 -0800638 ASSERT_GE(GetActualStackSize(attributes), 32*1024U);
Elliott Hughesb95cf0d2013-07-15 14:51:07 -0700639
Yabin Cui917d3902015-01-08 12:32:42 -0800640 // Large enough but not aligned; will be rounded up by pthread_create.
Elliott Hughesb95cf0d2013-07-15 14:51:07 -0700641 ASSERT_EQ(0, pthread_attr_setstacksize(&attributes, 32*1024 + 1));
642 ASSERT_EQ(0, pthread_attr_getstacksize(&attributes, &stack_size));
643 ASSERT_EQ(32*1024U + 1, stack_size);
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800644#if defined(__BIONIC__)
Yabin Cui917d3902015-01-08 12:32:42 -0800645 ASSERT_GT(GetActualStackSize(attributes), 32*1024U + 1);
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800646#else // __BIONIC__
Elliott Hughesb95cf0d2013-07-15 14:51:07 -0700647 // glibc rounds down, in violation of POSIX. They document this in their BUGS section.
648 ASSERT_EQ(GetActualStackSize(attributes), 32*1024U);
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800649#endif // __BIONIC__
Elliott Hughesb95cf0d2013-07-15 14:51:07 -0700650}
Elliott Hughesc3f11402013-10-30 14:40:09 -0700651
652TEST(pthread, pthread_rwlock_smoke) {
653 pthread_rwlock_t l;
654 ASSERT_EQ(0, pthread_rwlock_init(&l, NULL));
655
Calin Juravle76f352e2014-05-19 13:41:10 +0100656 // Single read lock
Elliott Hughesc3f11402013-10-30 14:40:09 -0700657 ASSERT_EQ(0, pthread_rwlock_rdlock(&l));
658 ASSERT_EQ(0, pthread_rwlock_unlock(&l));
659
Calin Juravle76f352e2014-05-19 13:41:10 +0100660 // Multiple read lock
661 ASSERT_EQ(0, pthread_rwlock_rdlock(&l));
662 ASSERT_EQ(0, pthread_rwlock_rdlock(&l));
663 ASSERT_EQ(0, pthread_rwlock_unlock(&l));
664 ASSERT_EQ(0, pthread_rwlock_unlock(&l));
665
666 // Write lock
Calin Juravle92687e42014-05-22 19:21:22 +0100667 ASSERT_EQ(0, pthread_rwlock_wrlock(&l));
668 ASSERT_EQ(0, pthread_rwlock_unlock(&l));
Calin Juravle76f352e2014-05-19 13:41:10 +0100669
670 // Try writer lock
671 ASSERT_EQ(0, pthread_rwlock_trywrlock(&l));
672 ASSERT_EQ(EBUSY, pthread_rwlock_trywrlock(&l));
673 ASSERT_EQ(EBUSY, pthread_rwlock_tryrdlock(&l));
674 ASSERT_EQ(0, pthread_rwlock_unlock(&l));
675
676 // Try reader lock
677 ASSERT_EQ(0, pthread_rwlock_tryrdlock(&l));
678 ASSERT_EQ(0, pthread_rwlock_tryrdlock(&l));
679 ASSERT_EQ(EBUSY, pthread_rwlock_trywrlock(&l));
680 ASSERT_EQ(0, pthread_rwlock_unlock(&l));
681 ASSERT_EQ(0, pthread_rwlock_unlock(&l));
682
683 // Try writer lock after unlock
Elliott Hughesc3f11402013-10-30 14:40:09 -0700684 ASSERT_EQ(0, pthread_rwlock_wrlock(&l));
685 ASSERT_EQ(0, pthread_rwlock_unlock(&l));
686
Calin Juravle76f352e2014-05-19 13:41:10 +0100687#ifdef __BIONIC__
688 // EDEADLK in "read after write"
689 ASSERT_EQ(0, pthread_rwlock_wrlock(&l));
690 ASSERT_EQ(EDEADLK, pthread_rwlock_rdlock(&l));
691 ASSERT_EQ(0, pthread_rwlock_unlock(&l));
692
693 // EDEADLK in "write after write"
694 ASSERT_EQ(0, pthread_rwlock_wrlock(&l));
695 ASSERT_EQ(EDEADLK, pthread_rwlock_wrlock(&l));
696 ASSERT_EQ(0, pthread_rwlock_unlock(&l));
697#endif
698
Elliott Hughesc3f11402013-10-30 14:40:09 -0700699 ASSERT_EQ(0, pthread_rwlock_destroy(&l));
700}
701
Elliott Hughes1728b232014-05-14 10:02:03 -0700702static int g_once_fn_call_count = 0;
Elliott Hughesc3f11402013-10-30 14:40:09 -0700703static void OnceFn() {
Elliott Hughes1728b232014-05-14 10:02:03 -0700704 ++g_once_fn_call_count;
Elliott Hughesc3f11402013-10-30 14:40:09 -0700705}
706
707TEST(pthread, pthread_once_smoke) {
708 pthread_once_t once_control = PTHREAD_ONCE_INIT;
709 ASSERT_EQ(0, pthread_once(&once_control, OnceFn));
710 ASSERT_EQ(0, pthread_once(&once_control, OnceFn));
Elliott Hughes1728b232014-05-14 10:02:03 -0700711 ASSERT_EQ(1, g_once_fn_call_count);
Elliott Hughesc3f11402013-10-30 14:40:09 -0700712}
713
Elliott Hughes3694ec62014-05-14 11:46:08 -0700714static std::string pthread_once_1934122_result = "";
715
716static void Routine2() {
717 pthread_once_1934122_result += "2";
718}
719
720static void Routine1() {
721 pthread_once_t once_control_2 = PTHREAD_ONCE_INIT;
722 pthread_once_1934122_result += "1";
723 pthread_once(&once_control_2, &Routine2);
724}
725
726TEST(pthread, pthread_once_1934122) {
727 // Very old versions of Android couldn't call pthread_once from a
728 // pthread_once init routine. http://b/1934122.
729 pthread_once_t once_control_1 = PTHREAD_ONCE_INIT;
730 ASSERT_EQ(0, pthread_once(&once_control_1, &Routine1));
731 ASSERT_EQ("12", pthread_once_1934122_result);
732}
733
Elliott Hughes1728b232014-05-14 10:02:03 -0700734static int g_atfork_prepare_calls = 0;
735static void AtForkPrepare1() { g_atfork_prepare_calls = (g_atfork_prepare_calls << 4) | 1; }
736static void AtForkPrepare2() { g_atfork_prepare_calls = (g_atfork_prepare_calls << 4) | 2; }
737static int g_atfork_parent_calls = 0;
738static void AtForkParent1() { g_atfork_parent_calls = (g_atfork_parent_calls << 4) | 1; }
739static void AtForkParent2() { g_atfork_parent_calls = (g_atfork_parent_calls << 4) | 2; }
740static int g_atfork_child_calls = 0;
741static void AtForkChild1() { g_atfork_child_calls = (g_atfork_child_calls << 4) | 1; }
742static void AtForkChild2() { g_atfork_child_calls = (g_atfork_child_calls << 4) | 2; }
Elliott Hughesc3f11402013-10-30 14:40:09 -0700743
Dmitriy Ivanov00e37812014-11-20 16:53:47 -0800744TEST(pthread, pthread_atfork_smoke) {
Dmitriy Ivanov0864d8b2014-11-20 21:21:26 -0800745 test_isolated([] {
Dmitriy Ivanov00e37812014-11-20 16:53:47 -0800746 ASSERT_EQ(0, pthread_atfork(AtForkPrepare1, AtForkParent1, AtForkChild1));
747 ASSERT_EQ(0, pthread_atfork(AtForkPrepare2, AtForkParent2, AtForkChild2));
Elliott Hughesc3f11402013-10-30 14:40:09 -0700748
Dmitriy Ivanov00e37812014-11-20 16:53:47 -0800749 int pid = fork();
750 ASSERT_NE(-1, pid) << strerror(errno);
Elliott Hughesc3f11402013-10-30 14:40:09 -0700751
Dmitriy Ivanov00e37812014-11-20 16:53:47 -0800752 // Child and parent calls are made in the order they were registered.
753 if (pid == 0) {
754 ASSERT_EQ(0x12, g_atfork_child_calls);
755 _exit(0);
756 }
757 ASSERT_EQ(0x12, g_atfork_parent_calls);
Elliott Hughesc3f11402013-10-30 14:40:09 -0700758
Dmitriy Ivanov00e37812014-11-20 16:53:47 -0800759 // Prepare calls are made in the reverse order.
760 ASSERT_EQ(0x21, g_atfork_prepare_calls);
761 });
Elliott Hughesc3f11402013-10-30 14:40:09 -0700762}
763
764TEST(pthread, pthread_attr_getscope) {
765 pthread_attr_t attr;
766 ASSERT_EQ(0, pthread_attr_init(&attr));
767
768 int scope;
769 ASSERT_EQ(0, pthread_attr_getscope(&attr, &scope));
770 ASSERT_EQ(PTHREAD_SCOPE_SYSTEM, scope);
771}
Narayan Kamath51e6cb32014-03-03 15:38:51 +0000772
773TEST(pthread, pthread_condattr_init) {
774 pthread_condattr_t attr;
775 pthread_condattr_init(&attr);
776
777 clockid_t clock;
778 ASSERT_EQ(0, pthread_condattr_getclock(&attr, &clock));
779 ASSERT_EQ(CLOCK_REALTIME, clock);
780
781 int pshared;
782 ASSERT_EQ(0, pthread_condattr_getpshared(&attr, &pshared));
783 ASSERT_EQ(PTHREAD_PROCESS_PRIVATE, pshared);
784}
785
786TEST(pthread, pthread_condattr_setclock) {
787 pthread_condattr_t attr;
788 pthread_condattr_init(&attr);
789
790 ASSERT_EQ(0, pthread_condattr_setclock(&attr, CLOCK_REALTIME));
791 clockid_t clock;
792 ASSERT_EQ(0, pthread_condattr_getclock(&attr, &clock));
793 ASSERT_EQ(CLOCK_REALTIME, clock);
794
795 ASSERT_EQ(0, pthread_condattr_setclock(&attr, CLOCK_MONOTONIC));
796 ASSERT_EQ(0, pthread_condattr_getclock(&attr, &clock));
797 ASSERT_EQ(CLOCK_MONOTONIC, clock);
798
799 ASSERT_EQ(EINVAL, pthread_condattr_setclock(&attr, CLOCK_PROCESS_CPUTIME_ID));
800}
801
802TEST(pthread, pthread_cond_broadcast__preserves_condattr_flags) {
803#if defined(__BIONIC__) // This tests a bionic implementation detail.
804 pthread_condattr_t attr;
805 pthread_condattr_init(&attr);
806
807 ASSERT_EQ(0, pthread_condattr_setclock(&attr, CLOCK_MONOTONIC));
808 ASSERT_EQ(0, pthread_condattr_setpshared(&attr, PTHREAD_PROCESS_SHARED));
809
810 pthread_cond_t cond_var;
811 ASSERT_EQ(0, pthread_cond_init(&cond_var, &attr));
812
813 ASSERT_EQ(0, pthread_cond_signal(&cond_var));
814 ASSERT_EQ(0, pthread_cond_broadcast(&cond_var));
815
816 attr = static_cast<pthread_condattr_t>(cond_var.value);
817 clockid_t clock;
818 ASSERT_EQ(0, pthread_condattr_getclock(&attr, &clock));
819 ASSERT_EQ(CLOCK_MONOTONIC, clock);
820 int pshared;
821 ASSERT_EQ(0, pthread_condattr_getpshared(&attr, &pshared));
822 ASSERT_EQ(PTHREAD_PROCESS_SHARED, pshared);
823#else // __BIONIC__
824 GTEST_LOG_(INFO) << "This test does nothing.\n";
825#endif // __BIONIC__
826}
Elliott Hughes0e714a52014-03-03 16:42:47 -0800827
828TEST(pthread, pthread_mutex_timedlock) {
829 pthread_mutex_t m;
830 ASSERT_EQ(0, pthread_mutex_init(&m, NULL));
831
832 // If the mutex is already locked, pthread_mutex_timedlock should time out.
833 ASSERT_EQ(0, pthread_mutex_lock(&m));
834
835 timespec ts;
836 ASSERT_EQ(0, clock_gettime(CLOCK_REALTIME, &ts));
837 ts.tv_nsec += 1;
838 ASSERT_EQ(ETIMEDOUT, pthread_mutex_timedlock(&m, &ts));
839
840 // If the mutex is unlocked, pthread_mutex_timedlock should succeed.
841 ASSERT_EQ(0, pthread_mutex_unlock(&m));
842
843 ASSERT_EQ(0, clock_gettime(CLOCK_REALTIME, &ts));
844 ts.tv_nsec += 1;
845 ASSERT_EQ(0, pthread_mutex_timedlock(&m, &ts));
846
847 ASSERT_EQ(0, pthread_mutex_unlock(&m));
848 ASSERT_EQ(0, pthread_mutex_destroy(&m));
849}
Elliott Hughes57b7a612014-08-25 17:26:50 -0700850
851TEST(pthread, pthread_attr_getstack__main_thread) {
852 // This test is only meaningful for the main thread, so make sure we're running on it!
853 ASSERT_EQ(getpid(), syscall(__NR_gettid));
854
855 // Get the main thread's attributes.
856 pthread_attr_t attributes;
857 ASSERT_EQ(0, pthread_getattr_np(pthread_self(), &attributes));
858
859 // Check that we correctly report that the main thread has no guard page.
860 size_t guard_size;
861 ASSERT_EQ(0, pthread_attr_getguardsize(&attributes, &guard_size));
862 ASSERT_EQ(0U, guard_size); // The main thread has no guard page.
863
864 // Get the stack base and the stack size (both ways).
865 void* stack_base;
866 size_t stack_size;
867 ASSERT_EQ(0, pthread_attr_getstack(&attributes, &stack_base, &stack_size));
868 size_t stack_size2;
869 ASSERT_EQ(0, pthread_attr_getstacksize(&attributes, &stack_size2));
870
871 // The two methods of asking for the stack size should agree.
872 EXPECT_EQ(stack_size, stack_size2);
873
874 // What does /proc/self/maps' [stack] line say?
Elliott Hughes9e4ffa72014-08-27 15:32:01 -0700875 void* maps_stack_hi = NULL;
Elliott Hughes57b7a612014-08-25 17:26:50 -0700876 FILE* fp = fopen("/proc/self/maps", "r");
877 ASSERT_TRUE(fp != NULL);
878 char line[BUFSIZ];
879 while (fgets(line, sizeof(line), fp) != NULL) {
880 uintptr_t lo, hi;
881 char name[10];
882 sscanf(line, "%" PRIxPTR "-%" PRIxPTR " %*4s %*x %*x:%*x %*d %10s", &lo, &hi, name);
883 if (strcmp(name, "[stack]") == 0) {
Elliott Hughes9e4ffa72014-08-27 15:32:01 -0700884 maps_stack_hi = reinterpret_cast<void*>(hi);
Elliott Hughes57b7a612014-08-25 17:26:50 -0700885 break;
886 }
887 }
888 fclose(fp);
889
Elliott Hughes9e4ffa72014-08-27 15:32:01 -0700890 // The stack size should correspond to RLIMIT_STACK.
Elliott Hughes57b7a612014-08-25 17:26:50 -0700891 rlimit rl;
Elliott Hughes9e4ffa72014-08-27 15:32:01 -0700892 ASSERT_EQ(0, getrlimit(RLIMIT_STACK, &rl));
Elliott Hughes27a9aed2014-09-04 16:09:25 -0700893 uint64_t original_rlim_cur = rl.rlim_cur;
894#if defined(__BIONIC__)
895 if (rl.rlim_cur == RLIM_INFINITY) {
896 rl.rlim_cur = 8 * 1024 * 1024; // Bionic reports unlimited stacks as 8MiB.
897 }
898#endif
Elliott Hughes9e4ffa72014-08-27 15:32:01 -0700899 EXPECT_EQ(rl.rlim_cur, stack_size);
900
Dmitriy Ivanovd9ff7222014-09-08 16:22:22 -0700901 auto guard = make_scope_guard([&rl, original_rlim_cur]() {
Elliott Hughes27a9aed2014-09-04 16:09:25 -0700902 rl.rlim_cur = original_rlim_cur;
903 ASSERT_EQ(0, setrlimit(RLIMIT_STACK, &rl));
904 });
905
Elliott Hughes9e4ffa72014-08-27 15:32:01 -0700906 // The high address of the /proc/self/maps [stack] region should equal stack_base + stack_size.
907 // Remember that the stack grows down (and is mapped in on demand), so the low address of the
908 // region isn't very interesting.
909 EXPECT_EQ(maps_stack_hi, reinterpret_cast<uint8_t*>(stack_base) + stack_size);
910
911 //
912 // What if RLIMIT_STACK is smaller than the stack's current extent?
913 //
Elliott Hughes57b7a612014-08-25 17:26:50 -0700914 rl.rlim_cur = rl.rlim_max = 1024; // 1KiB. We know the stack must be at least a page already.
915 rl.rlim_max = RLIM_INFINITY;
916 ASSERT_EQ(0, setrlimit(RLIMIT_STACK, &rl));
917
918 ASSERT_EQ(0, pthread_getattr_np(pthread_self(), &attributes));
919 ASSERT_EQ(0, pthread_attr_getstack(&attributes, &stack_base, &stack_size));
920 ASSERT_EQ(0, pthread_attr_getstacksize(&attributes, &stack_size2));
921
922 EXPECT_EQ(stack_size, stack_size2);
923 ASSERT_EQ(1024U, stack_size);
924
925 //
Elliott Hughes9e4ffa72014-08-27 15:32:01 -0700926 // What if RLIMIT_STACK isn't a whole number of pages?
Elliott Hughes57b7a612014-08-25 17:26:50 -0700927 //
928 rl.rlim_cur = rl.rlim_max = 6666; // Not a whole number of pages.
929 rl.rlim_max = RLIM_INFINITY;
930 ASSERT_EQ(0, setrlimit(RLIMIT_STACK, &rl));
931
932 ASSERT_EQ(0, pthread_getattr_np(pthread_self(), &attributes));
933 ASSERT_EQ(0, pthread_attr_getstack(&attributes, &stack_base, &stack_size));
934 ASSERT_EQ(0, pthread_attr_getstacksize(&attributes, &stack_size2));
935
936 EXPECT_EQ(stack_size, stack_size2);
937 ASSERT_EQ(6666U, stack_size);
938}
Elliott Hughes8fb639c2014-09-12 14:43:07 -0700939
Yabin Cui917d3902015-01-08 12:32:42 -0800940static void pthread_attr_getstack_18908062_helper(void*) {
941 char local_variable;
942 pthread_attr_t attributes;
943 pthread_getattr_np(pthread_self(), &attributes);
944 void* stack_base;
945 size_t stack_size;
946 pthread_attr_getstack(&attributes, &stack_base, &stack_size);
947
948 // Test whether &local_variable is in [stack_base, stack_base + stack_size).
949 ASSERT_LE(reinterpret_cast<char*>(stack_base), &local_variable);
950 ASSERT_LT(&local_variable, reinterpret_cast<char*>(stack_base) + stack_size);
951}
952
953// Check whether something on stack is in the range of
954// [stack_base, stack_base + stack_size). see b/18908062.
955TEST(pthread, pthread_attr_getstack_18908062) {
956 pthread_t t;
957 ASSERT_EQ(0, pthread_create(&t, NULL,
958 reinterpret_cast<void* (*)(void*)>(pthread_attr_getstack_18908062_helper),
959 NULL));
960 pthread_join(t, NULL);
961}
962
Elliott Hughes8fb639c2014-09-12 14:43:07 -0700963#if defined(__BIONIC__)
964static void* pthread_gettid_np_helper(void* arg) {
965 *reinterpret_cast<pid_t*>(arg) = gettid();
966 return NULL;
967}
968#endif
969
970TEST(pthread, pthread_gettid_np) {
971#if defined(__BIONIC__)
972 ASSERT_EQ(gettid(), pthread_gettid_np(pthread_self()));
973
974 pid_t t_gettid_result;
975 pthread_t t;
976 pthread_create(&t, NULL, pthread_gettid_np_helper, &t_gettid_result);
977
978 pid_t t_pthread_gettid_np_result = pthread_gettid_np(t);
979
Elliott Hughes34c987a2014-09-22 16:01:26 -0700980 pthread_join(t, NULL);
Elliott Hughes8fb639c2014-09-12 14:43:07 -0700981
982 ASSERT_EQ(t_gettid_result, t_pthread_gettid_np_result);
983#else
984 GTEST_LOG_(INFO) << "This test does nothing.\n";
985#endif
986}
Elliott Hughes34c987a2014-09-22 16:01:26 -0700987
988static size_t cleanup_counter = 0;
989
Derek Xue41996952014-09-25 11:05:32 +0100990static void AbortCleanupRoutine(void*) {
Elliott Hughes34c987a2014-09-22 16:01:26 -0700991 abort();
992}
993
Derek Xue41996952014-09-25 11:05:32 +0100994static void CountCleanupRoutine(void*) {
Elliott Hughes34c987a2014-09-22 16:01:26 -0700995 ++cleanup_counter;
996}
997
Derek Xue41996952014-09-25 11:05:32 +0100998static void PthreadCleanupTester() {
Elliott Hughes34c987a2014-09-22 16:01:26 -0700999 pthread_cleanup_push(CountCleanupRoutine, NULL);
1000 pthread_cleanup_push(CountCleanupRoutine, NULL);
1001 pthread_cleanup_push(AbortCleanupRoutine, NULL);
1002
1003 pthread_cleanup_pop(0); // Pop the abort without executing it.
1004 pthread_cleanup_pop(1); // Pop one count while executing it.
1005 ASSERT_EQ(1U, cleanup_counter);
1006 // Exit while the other count is still on the cleanup stack.
1007 pthread_exit(NULL);
1008
1009 // Calls to pthread_cleanup_pop/pthread_cleanup_push must always be balanced.
1010 pthread_cleanup_pop(0);
1011}
1012
Derek Xue41996952014-09-25 11:05:32 +01001013static void* PthreadCleanupStartRoutine(void*) {
Elliott Hughes34c987a2014-09-22 16:01:26 -07001014 PthreadCleanupTester();
1015 return NULL;
1016}
1017
1018TEST(pthread, pthread_cleanup_push__pthread_cleanup_pop) {
1019 pthread_t t;
1020 ASSERT_EQ(0, pthread_create(&t, NULL, PthreadCleanupStartRoutine, NULL));
1021 pthread_join(t, NULL);
1022 ASSERT_EQ(2U, cleanup_counter);
1023}
Derek Xue41996952014-09-25 11:05:32 +01001024
1025TEST(pthread, PTHREAD_MUTEX_DEFAULT_is_PTHREAD_MUTEX_NORMAL) {
1026 ASSERT_EQ(PTHREAD_MUTEX_NORMAL, PTHREAD_MUTEX_DEFAULT);
1027}
1028
1029TEST(pthread, pthread_mutexattr_gettype) {
1030 pthread_mutexattr_t attr;
1031 ASSERT_EQ(0, pthread_mutexattr_init(&attr));
1032
1033 int attr_type;
1034
1035 ASSERT_EQ(0, pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL));
1036 ASSERT_EQ(0, pthread_mutexattr_gettype(&attr, &attr_type));
1037 ASSERT_EQ(PTHREAD_MUTEX_NORMAL, attr_type);
1038
1039 ASSERT_EQ(0, pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK));
1040 ASSERT_EQ(0, pthread_mutexattr_gettype(&attr, &attr_type));
1041 ASSERT_EQ(PTHREAD_MUTEX_ERRORCHECK, attr_type);
1042
1043 ASSERT_EQ(0, pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE));
1044 ASSERT_EQ(0, pthread_mutexattr_gettype(&attr, &attr_type));
1045 ASSERT_EQ(PTHREAD_MUTEX_RECURSIVE, attr_type);
1046}
1047
1048TEST(pthread, pthread_mutex_lock_NORMAL) {
1049 pthread_mutexattr_t attr;
1050 ASSERT_EQ(0, pthread_mutexattr_init(&attr));
1051 ASSERT_EQ(0, pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL));
1052
1053 pthread_mutex_t lock;
1054 ASSERT_EQ(0, pthread_mutex_init(&lock, &attr));
1055
1056 ASSERT_EQ(0, pthread_mutex_lock(&lock));
1057 ASSERT_EQ(0, pthread_mutex_unlock(&lock));
1058 ASSERT_EQ(0, pthread_mutex_destroy(&lock));
1059}
1060
1061TEST(pthread, pthread_mutex_lock_ERRORCHECK) {
1062 pthread_mutexattr_t attr;
1063 ASSERT_EQ(0, pthread_mutexattr_init(&attr));
1064 ASSERT_EQ(0, pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK));
1065
1066 pthread_mutex_t lock;
1067 ASSERT_EQ(0, pthread_mutex_init(&lock, &attr));
1068
1069 ASSERT_EQ(0, pthread_mutex_lock(&lock));
1070 ASSERT_EQ(EDEADLK, pthread_mutex_lock(&lock));
1071 ASSERT_EQ(0, pthread_mutex_unlock(&lock));
1072 ASSERT_EQ(0, pthread_mutex_trylock(&lock));
1073 ASSERT_EQ(EBUSY, pthread_mutex_trylock(&lock));
1074 ASSERT_EQ(0, pthread_mutex_unlock(&lock));
1075 ASSERT_EQ(EPERM, pthread_mutex_unlock(&lock));
1076 ASSERT_EQ(0, pthread_mutex_destroy(&lock));
1077}
1078
1079TEST(pthread, pthread_mutex_lock_RECURSIVE) {
1080 pthread_mutexattr_t attr;
1081 ASSERT_EQ(0, pthread_mutexattr_init(&attr));
1082 ASSERT_EQ(0, pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE));
1083
1084 pthread_mutex_t lock;
1085 ASSERT_EQ(0, pthread_mutex_init(&lock, &attr));
1086
1087 ASSERT_EQ(0, pthread_mutex_lock(&lock));
1088 ASSERT_EQ(0, pthread_mutex_lock(&lock));
1089 ASSERT_EQ(0, pthread_mutex_unlock(&lock));
1090 ASSERT_EQ(0, pthread_mutex_unlock(&lock));
1091 ASSERT_EQ(0, pthread_mutex_trylock(&lock));
1092 ASSERT_EQ(0, pthread_mutex_unlock(&lock));
1093 ASSERT_EQ(EPERM, pthread_mutex_unlock(&lock));
1094 ASSERT_EQ(0, pthread_mutex_destroy(&lock));
1095}
Yabin Cui140f3672015-02-03 10:32:00 -08001096
1097TEST(pthread, pthread_mutex_owner_tid_limit) {
1098 FILE* fp = fopen("/proc/sys/kernel/pid_max", "r");
1099 ASSERT_TRUE(fp != NULL);
1100 long pid_max;
1101 ASSERT_EQ(1, fscanf(fp, "%ld", &pid_max));
1102 fclose(fp);
1103 // Current pthread_mutex uses 16 bits to represent owner tid.
1104 // Change the implementation if we need to support higher value than 65535.
1105 ASSERT_LE(pid_max, 65536);
1106}