Text file
src/runtime/cgo/gcc_linux_amd64.c
1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 #include <pthread.h>
6 #include <errno.h>
7 #include <string.h> // strerror
8 #include <signal.h>
9 #include <stdlib.h>
10 #include "libcgo.h"
11 #include "libcgo_unix.h"
12
13 static void* threadentry(void*);
14 static void (*setg_gcc)(void*);
15
16 // This will be set in gcc_android.c for android-specific customization.
17 void (*x_cgo_inittls)(void **tlsg, void **tlsbase) __attribute__((common));
18
19 void
20 x_cgo_init(G *g, void (*setg)(void*), void **tlsg, void **tlsbase)
21 {
22 uintptr *pbounds;
23
24 /* The memory sanitizer distributed with versions of clang
25 before 3.8 has a bug: if you call mmap before malloc, mmap
26 may return an address that is later overwritten by the msan
27 library. Avoid this problem by forcing a call to malloc
28 here, before we ever call malloc.
29
30 This is only required for the memory sanitizer, so it's
31 unfortunate that we always run it. It should be possible
32 to remove this when we no longer care about versions of
33 clang before 3.8. The test for this is
34 misc/cgo/testsanitizers.
35
36 GCC works hard to eliminate a seemingly unnecessary call to
37 malloc, so we actually use the memory we allocate. */
38
39 setg_gcc = setg;
40 pbounds = (uintptr*)malloc(2 * sizeof(uintptr));
41 if (pbounds == NULL) {
42 fatalf("malloc failed: %s", strerror(errno));
43 }
44 _cgo_set_stacklo(g, pbounds);
45 free(pbounds);
46
47 if (x_cgo_inittls) {
48 x_cgo_inittls(tlsg, tlsbase);
49 }
50 }
51
52
53 void
54 _cgo_sys_thread_start(ThreadStart *ts)
55 {
56 pthread_attr_t attr;
57 sigset_t ign, oset;
58 pthread_t p;
59 size_t size;
60 int err;
61
62 sigfillset(&ign);
63 pthread_sigmask(SIG_SETMASK, &ign, &oset);
64
65 pthread_attr_init(&attr);
66 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
67 pthread_attr_getstacksize(&attr, &size);
68 // Leave stacklo=0 and set stackhi=size; mstart will do the rest.
69 ts->g->stackhi = size;
70 err = _cgo_try_pthread_create(&p, &attr, threadentry, ts);
71
72 pthread_sigmask(SIG_SETMASK, &oset, nil);
73
74 if (err != 0) {
75 fatalf("pthread_create failed: %s", strerror(err));
76 }
77 }
78
79 extern void crosscall1(void (*fn)(void), void (*setg_gcc)(void*), void *g);
80 static void*
81 threadentry(void *v)
82 {
83 ThreadStart ts;
84
85 ts = *(ThreadStart*)v;
86 _cgo_tsan_acquire();
87 free(v);
88 _cgo_tsan_release();
89
90 crosscall1(ts.fn, setg_gcc, (void*)ts.g);
91 return nil;
92 }
93
View as plain text