Rob Pike | aeb4398 | 2008-06-21 15:36:23 -0700 | [diff] [blame] | 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 "runtime.h" |
Russ Cox | 851f301 | 2011-12-16 15:33:58 -0500 | [diff] [blame] | 6 | #include "defs_GOOS_GOARCH.h" |
| 7 | #include "os_GOOS.h" |
Russ Cox | e9d62a6 | 2013-03-14 11:35:13 -0700 | [diff] [blame] | 8 | #include "signal_unix.h" |
Russ Cox | 820dc9f | 2011-02-24 13:46:44 -0800 | [diff] [blame] | 9 | #include "stack.h" |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 10 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 11 | extern SigTab runtime·sigtab[]; |
Russ Cox | 5963dba | 2010-04-08 18:15:30 -0700 | [diff] [blame] | 12 | |
Russ Cox | c7f7bbb | 2013-02-15 12:18:33 -0500 | [diff] [blame] | 13 | static Sigset sigset_none; |
Russ Cox | 224f05b | 2012-02-23 14:44:06 -0500 | [diff] [blame] | 14 | static Sigset sigset_all = ~(Sigset)0; |
Russ Cox | 6e2ae0a | 2012-02-28 16:18:24 -0500 | [diff] [blame] | 15 | static Sigset sigset_prof = 1<<(SIGPROF-1); |
Russ Cox | 224f05b | 2012-02-23 14:44:06 -0500 | [diff] [blame] | 16 | |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 17 | static void |
| 18 | unimplemented(int8 *name) |
| 19 | { |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 20 | runtime·prints(name); |
| 21 | runtime·prints(" not implemented\n"); |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 22 | *(int32*)1231 = 1231; |
| 23 | } |
| 24 | |
Russ Cox | 3b86026 | 2011-11-09 15:17:05 -0500 | [diff] [blame] | 25 | int32 |
| 26 | runtime·semasleep(int64 ns) |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 27 | { |
Russ Cox | 6e2ae0a | 2012-02-28 16:18:24 -0500 | [diff] [blame] | 28 | int32 v; |
| 29 | |
| 30 | if(m->profilehz > 0) |
| 31 | runtime·setprof(false); |
| 32 | v = runtime·mach_semacquire(m->waitsema, ns); |
| 33 | if(m->profilehz > 0) |
| 34 | runtime·setprof(true); |
| 35 | return v; |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | void |
Dmitriy Vyukov | ee24bfc | 2011-11-02 16:42:01 +0300 | [diff] [blame] | 39 | runtime·semawakeup(M *mp) |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 40 | { |
Dmitriy Vyukov | ee24bfc | 2011-11-02 16:42:01 +0300 | [diff] [blame] | 41 | runtime·mach_semrelease(mp->waitsema); |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 42 | } |
| 43 | |
Dmitriy Vyukov | ee24bfc | 2011-11-02 16:42:01 +0300 | [diff] [blame] | 44 | uintptr |
| 45 | runtime·semacreate(void) |
Russ Cox | 62d627f | 2010-02-08 21:41:54 -0800 | [diff] [blame] | 46 | { |
Dmitriy Vyukov | ee24bfc | 2011-11-02 16:42:01 +0300 | [diff] [blame] | 47 | return runtime·mach_semcreate(); |
Russ Cox | 62d627f | 2010-02-08 21:41:54 -0800 | [diff] [blame] | 48 | } |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 49 | |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 50 | // BSD interface for threading. |
| 51 | void |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 52 | runtime·osinit(void) |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 53 | { |
Shenghou Ma | 44fd1d1 | 2012-04-30 15:55:07 -0400 | [diff] [blame] | 54 | // bsdthread_register delayed until end of goenvs so that we |
| 55 | // can look at the environment first. |
Russ Cox | d324f21 | 2011-09-30 09:40:01 -0400 | [diff] [blame] | 56 | |
| 57 | // Use sysctl to fetch hw.ncpu. |
| 58 | uint32 mib[2]; |
| 59 | uint32 out; |
| 60 | int32 ret; |
| 61 | uintptr nout; |
| 62 | |
| 63 | mib[0] = 6; |
| 64 | mib[1] = 3; |
| 65 | nout = sizeof out; |
| 66 | out = 0; |
| 67 | ret = runtime·sysctl(mib, 2, (byte*)&out, &nout, nil, 0); |
| 68 | if(ret >= 0) |
| 69 | runtime·ncpu = out; |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | void |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 73 | runtime·get_random_data(byte **rnd, int32 *rnd_len) |
| 74 | { |
| 75 | static byte urandom_data[HashRandomBytes]; |
| 76 | int32 fd; |
| 77 | fd = runtime·open("/dev/urandom", 0 /* O_RDONLY */, 0); |
| 78 | if(runtime·read(fd, urandom_data, HashRandomBytes) == HashRandomBytes) { |
| 79 | *rnd = urandom_data; |
| 80 | *rnd_len = HashRandomBytes; |
| 81 | } else { |
| 82 | *rnd = nil; |
| 83 | *rnd_len = 0; |
| 84 | } |
| 85 | runtime·close(fd); |
| 86 | } |
| 87 | |
| 88 | void |
Alex Brainman | a41d854 | 2011-01-12 11:48:15 +1100 | [diff] [blame] | 89 | runtime·goenvs(void) |
| 90 | { |
| 91 | runtime·goenvs_unix(); |
Shenghou Ma | 44fd1d1 | 2012-04-30 15:55:07 -0400 | [diff] [blame] | 92 | |
| 93 | // Register our thread-creation callback (see sys_darwin_{amd64,386}.s) |
| 94 | // but only if we're not using cgo. If we are using cgo we need |
Shenghou Ma | 7bec1a6 | 2013-04-24 04:46:14 +0800 | [diff] [blame] | 95 | // to let the C pthread library install its own thread-creation callback. |
Shenghou Ma | 44fd1d1 | 2012-04-30 15:55:07 -0400 | [diff] [blame] | 96 | if(!runtime·iscgo) { |
| 97 | if(runtime·bsdthread_register() != 0) { |
| 98 | if(runtime·getenv("DYLD_INSERT_LIBRARIES")) |
| 99 | runtime·throw("runtime: bsdthread_register error (unset DYLD_INSERT_LIBRARIES)"); |
| 100 | runtime·throw("runtime: bsdthread_register error"); |
| 101 | } |
| 102 | } |
| 103 | |
Alex Brainman | a41d854 | 2011-01-12 11:48:15 +1100 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | void |
Russ Cox | e6a3e22 | 2013-03-01 11:44:43 -0500 | [diff] [blame] | 107 | runtime·newosproc(M *mp, void *stk) |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 108 | { |
Russ Cox | 4608feb | 2011-01-28 15:03:26 -0500 | [diff] [blame] | 109 | int32 errno; |
Russ Cox | 224f05b | 2012-02-23 14:44:06 -0500 | [diff] [blame] | 110 | Sigset oset; |
Russ Cox | 4608feb | 2011-01-28 15:03:26 -0500 | [diff] [blame] | 111 | |
Jingcheng Zhang | 70e967b | 2012-12-19 00:30:29 +0800 | [diff] [blame] | 112 | mp->tls[0] = mp->id; // so 386 asm can find it |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 113 | if(0){ |
Russ Cox | e6a3e22 | 2013-03-01 11:44:43 -0500 | [diff] [blame] | 114 | runtime·printf("newosproc stk=%p m=%p g=%p id=%d/%d ostk=%p\n", |
| 115 | stk, mp, mp->g0, mp->id, (int32)mp->tls[0], &mp); |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 116 | } |
Russ Cox | 224f05b | 2012-02-23 14:44:06 -0500 | [diff] [blame] | 117 | |
| 118 | runtime·sigprocmask(SIG_SETMASK, &sigset_all, &oset); |
Russ Cox | e6a3e22 | 2013-03-01 11:44:43 -0500 | [diff] [blame] | 119 | errno = runtime·bsdthread_create(stk, mp, mp->g0, runtime·mstart); |
Russ Cox | 224f05b | 2012-02-23 14:44:06 -0500 | [diff] [blame] | 120 | runtime·sigprocmask(SIG_SETMASK, &oset, nil); |
Russ Cox | 6e2ae0a | 2012-02-28 16:18:24 -0500 | [diff] [blame] | 121 | |
Russ Cox | 224f05b | 2012-02-23 14:44:06 -0500 | [diff] [blame] | 122 | if(errno < 0) { |
Russ Cox | 4608feb | 2011-01-28 15:03:26 -0500 | [diff] [blame] | 123 | runtime·printf("runtime: failed to create new OS thread (have %d already; errno=%d)\n", runtime·mcount(), -errno); |
| 124 | runtime·throw("runtime.newosproc"); |
| 125 | } |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Russ Cox | a67258f | 2008-09-18 15:56:46 -0700 | [diff] [blame] | 128 | // Called to initialize a new m (including the bootstrap m). |
Dmitriy Vyukov | a0955a2 | 2013-02-21 16:24:38 +0400 | [diff] [blame] | 129 | // Called on the parent thread (main thread in case of bootstrap), can allocate memory. |
| 130 | void |
| 131 | runtime·mpreinit(M *mp) |
| 132 | { |
| 133 | mp->gsignal = runtime·malg(32*1024); // OS X wants >=8K, Linux >=2K |
| 134 | } |
| 135 | |
| 136 | // Called to initialize a new m (including the bootstrap m). |
| 137 | // Called on the new thread, can not allocate memory. |
Russ Cox | a67258f | 2008-09-18 15:56:46 -0700 | [diff] [blame] | 138 | void |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 139 | runtime·minit(void) |
Russ Cox | a67258f | 2008-09-18 15:56:46 -0700 | [diff] [blame] | 140 | { |
| 141 | // Initialize signal handling. |
Jan Ziak | 334bf95 | 2012-05-30 13:07:52 -0400 | [diff] [blame] | 142 | runtime·signalstack((byte*)m->gsignal->stackguard - StackGuard, 32*1024); |
Russ Cox | 6e2ae0a | 2012-02-28 16:18:24 -0500 | [diff] [blame] | 143 | |
Russ Cox | c7f7bbb | 2013-02-15 12:18:33 -0500 | [diff] [blame] | 144 | runtime·sigprocmask(SIG_SETMASK, &sigset_none, nil); |
Russ Cox | f3407f4 | 2013-02-15 11:18:55 -0500 | [diff] [blame] | 145 | runtime·setprof(m->profilehz > 0); |
Russ Cox | a67258f | 2008-09-18 15:56:46 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 148 | // Called from dropm to undo the effect of an minit. |
| 149 | void |
| 150 | runtime·unminit(void) |
| 151 | { |
| 152 | runtime·signalstack(nil, 0); |
| 153 | } |
| 154 | |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 155 | // Mach IPC, to get at semaphores |
| 156 | // Definitions are in /usr/include/mach on a Mac. |
| 157 | |
| 158 | static void |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 159 | macherror(int32 r, int8 *fn) |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 160 | { |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 161 | runtime·printf("mach error %s: %d\n", fn, r); |
| 162 | runtime·throw("mach error"); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | enum |
| 166 | { |
| 167 | DebugMach = 0 |
| 168 | }; |
| 169 | |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 170 | static MachNDR zerondr; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 171 | |
| 172 | #define MACH_MSGH_BITS(a, b) ((a) | ((b)<<8)) |
| 173 | |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 174 | static int32 |
| 175 | mach_msg(MachHeader *h, |
| 176 | int32 op, |
| 177 | uint32 send_size, |
| 178 | uint32 rcv_size, |
| 179 | uint32 rcv_name, |
| 180 | uint32 timeout, |
| 181 | uint32 notify) |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 182 | { |
| 183 | // TODO: Loop on interrupt. |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 184 | return runtime·mach_msg_trap(h, op, send_size, rcv_size, rcv_name, timeout, notify); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 185 | } |
| 186 | |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 187 | // Mach RPC (MIG) |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 188 | |
| 189 | enum |
| 190 | { |
| 191 | MinMachMsg = 48, |
| 192 | Reply = 100, |
| 193 | }; |
| 194 | |
| 195 | #pragma pack on |
| 196 | typedef struct CodeMsg CodeMsg; |
| 197 | struct CodeMsg |
| 198 | { |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 199 | MachHeader h; |
| 200 | MachNDR NDR; |
| 201 | int32 code; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 202 | }; |
| 203 | #pragma pack off |
| 204 | |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 205 | static int32 |
| 206 | machcall(MachHeader *h, int32 maxsize, int32 rxsize) |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 207 | { |
| 208 | uint32 *p; |
| 209 | int32 i, ret, id; |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 210 | uint32 port; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 211 | CodeMsg *c; |
| 212 | |
| 213 | if((port = m->machport) == 0){ |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 214 | port = runtime·mach_reply_port(); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 215 | m->machport = port; |
| 216 | } |
| 217 | |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 218 | h->msgh_bits |= MACH_MSGH_BITS(MACH_MSG_TYPE_COPY_SEND, MACH_MSG_TYPE_MAKE_SEND_ONCE); |
| 219 | h->msgh_local_port = port; |
| 220 | h->msgh_reserved = 0; |
| 221 | id = h->msgh_id; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 222 | |
| 223 | if(DebugMach){ |
| 224 | p = (uint32*)h; |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 225 | runtime·prints("send:\t"); |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 226 | for(i=0; i<h->msgh_size/sizeof(p[0]); i++){ |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 227 | runtime·prints(" "); |
| 228 | runtime·printpointer((void*)p[i]); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 229 | if(i%8 == 7) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 230 | runtime·prints("\n\t"); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 231 | } |
| 232 | if(i%8) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 233 | runtime·prints("\n"); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | ret = mach_msg(h, MACH_SEND_MSG|MACH_RCV_MSG, |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 237 | h->msgh_size, maxsize, port, 0, 0); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 238 | if(ret != 0){ |
| 239 | if(DebugMach){ |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 240 | runtime·prints("mach_msg error "); |
| 241 | runtime·printint(ret); |
| 242 | runtime·prints("\n"); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 243 | } |
| 244 | return ret; |
| 245 | } |
| 246 | |
| 247 | if(DebugMach){ |
| 248 | p = (uint32*)h; |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 249 | runtime·prints("recv:\t"); |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 250 | for(i=0; i<h->msgh_size/sizeof(p[0]); i++){ |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 251 | runtime·prints(" "); |
| 252 | runtime·printpointer((void*)p[i]); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 253 | if(i%8 == 7) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 254 | runtime·prints("\n\t"); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 255 | } |
| 256 | if(i%8) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 257 | runtime·prints("\n"); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 258 | } |
| 259 | |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 260 | if(h->msgh_id != id+Reply){ |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 261 | if(DebugMach){ |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 262 | runtime·prints("mach_msg reply id mismatch "); |
| 263 | runtime·printint(h->msgh_id); |
| 264 | runtime·prints(" != "); |
| 265 | runtime·printint(id+Reply); |
| 266 | runtime·prints("\n"); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 267 | } |
| 268 | return -303; // MIG_REPLY_MISMATCH |
| 269 | } |
| 270 | |
| 271 | // Look for a response giving the return value. |
| 272 | // Any call can send this back with an error, |
| 273 | // and some calls only have return values so they |
| 274 | // send it back on success too. I don't quite see how |
| 275 | // you know it's one of these and not the full response |
| 276 | // format, so just look if the message is right. |
| 277 | c = (CodeMsg*)h; |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 278 | if(h->msgh_size == sizeof(CodeMsg) |
| 279 | && !(h->msgh_bits & MACH_MSGH_BITS_COMPLEX)){ |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 280 | if(DebugMach){ |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 281 | runtime·prints("mig result "); |
| 282 | runtime·printint(c->code); |
| 283 | runtime·prints("\n"); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 284 | } |
| 285 | return c->code; |
| 286 | } |
| 287 | |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 288 | if(h->msgh_size != rxsize){ |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 289 | if(DebugMach){ |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 290 | runtime·prints("mach_msg reply size mismatch "); |
| 291 | runtime·printint(h->msgh_size); |
| 292 | runtime·prints(" != "); |
| 293 | runtime·printint(rxsize); |
| 294 | runtime·prints("\n"); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 295 | } |
| 296 | return -307; // MIG_ARRAY_TOO_LARGE |
| 297 | } |
| 298 | |
Russ Cox | d28acc4 | 2008-08-04 16:43:49 -0700 | [diff] [blame] | 299 | return 0; |
| 300 | } |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 301 | |
| 302 | |
| 303 | // Semaphores! |
| 304 | |
| 305 | enum |
| 306 | { |
Russ Cox | 1f8a40d | 2009-01-22 16:23:44 -0800 | [diff] [blame] | 307 | Tmach_semcreate = 3418, |
| 308 | Rmach_semcreate = Tmach_semcreate + Reply, |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 309 | |
Russ Cox | 1f8a40d | 2009-01-22 16:23:44 -0800 | [diff] [blame] | 310 | Tmach_semdestroy = 3419, |
| 311 | Rmach_semdestroy = Tmach_semdestroy + Reply, |
Russ Cox | cd80000 | 2009-06-08 14:03:21 -0700 | [diff] [blame] | 312 | |
Russ Cox | 925183c | 2009-06-08 14:09:04 -0700 | [diff] [blame] | 313 | // Mach calls that get interrupted by Unix signals |
| 314 | // return this error code. We retry them. |
Russ Cox | cd80000 | 2009-06-08 14:03:21 -0700 | [diff] [blame] | 315 | KERN_ABORTED = 14, |
Russ Cox | 3b86026 | 2011-11-09 15:17:05 -0500 | [diff] [blame] | 316 | KERN_OPERATION_TIMED_OUT = 49, |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 317 | }; |
| 318 | |
Russ Cox | 1f8a40d | 2009-01-22 16:23:44 -0800 | [diff] [blame] | 319 | typedef struct Tmach_semcreateMsg Tmach_semcreateMsg; |
| 320 | typedef struct Rmach_semcreateMsg Rmach_semcreateMsg; |
| 321 | typedef struct Tmach_semdestroyMsg Tmach_semdestroyMsg; |
| 322 | // Rmach_semdestroyMsg = CodeMsg |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 323 | |
| 324 | #pragma pack on |
Russ Cox | 1f8a40d | 2009-01-22 16:23:44 -0800 | [diff] [blame] | 325 | struct Tmach_semcreateMsg |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 326 | { |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 327 | MachHeader h; |
| 328 | MachNDR ndr; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 329 | int32 policy; |
| 330 | int32 value; |
| 331 | }; |
| 332 | |
Russ Cox | 1f8a40d | 2009-01-22 16:23:44 -0800 | [diff] [blame] | 333 | struct Rmach_semcreateMsg |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 334 | { |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 335 | MachHeader h; |
| 336 | MachBody body; |
| 337 | MachPort semaphore; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 338 | }; |
| 339 | |
Russ Cox | 1f8a40d | 2009-01-22 16:23:44 -0800 | [diff] [blame] | 340 | struct Tmach_semdestroyMsg |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 341 | { |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 342 | MachHeader h; |
| 343 | MachBody body; |
| 344 | MachPort semaphore; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 345 | }; |
| 346 | #pragma pack off |
| 347 | |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 348 | uint32 |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 349 | runtime·mach_semcreate(void) |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 350 | { |
| 351 | union { |
Russ Cox | 1f8a40d | 2009-01-22 16:23:44 -0800 | [diff] [blame] | 352 | Tmach_semcreateMsg tx; |
| 353 | Rmach_semcreateMsg rx; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 354 | uint8 pad[MinMachMsg]; |
| 355 | } m; |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 356 | int32 r; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 357 | |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 358 | m.tx.h.msgh_bits = 0; |
| 359 | m.tx.h.msgh_size = sizeof(m.tx); |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 360 | m.tx.h.msgh_remote_port = runtime·mach_task_self(); |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 361 | m.tx.h.msgh_id = Tmach_semcreate; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 362 | m.tx.ndr = zerondr; |
| 363 | |
| 364 | m.tx.policy = 0; // 0 = SYNC_POLICY_FIFO |
| 365 | m.tx.value = 0; |
| 366 | |
Russ Cox | cd80000 | 2009-06-08 14:03:21 -0700 | [diff] [blame] | 367 | while((r = machcall(&m.tx.h, sizeof m, sizeof(m.rx))) != 0){ |
| 368 | if(r == KERN_ABORTED) // interrupted |
| 369 | continue; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 370 | macherror(r, "semaphore_create"); |
Russ Cox | cd80000 | 2009-06-08 14:03:21 -0700 | [diff] [blame] | 371 | } |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 372 | if(m.rx.body.msgh_descriptor_count != 1) |
Russ Cox | 1f8a40d | 2009-01-22 16:23:44 -0800 | [diff] [blame] | 373 | unimplemented("mach_semcreate desc count"); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 374 | return m.rx.semaphore.name; |
| 375 | } |
| 376 | |
| 377 | void |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 378 | runtime·mach_semdestroy(uint32 sem) |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 379 | { |
| 380 | union { |
Russ Cox | 1f8a40d | 2009-01-22 16:23:44 -0800 | [diff] [blame] | 381 | Tmach_semdestroyMsg tx; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 382 | uint8 pad[MinMachMsg]; |
| 383 | } m; |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 384 | int32 r; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 385 | |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 386 | m.tx.h.msgh_bits = MACH_MSGH_BITS_COMPLEX; |
| 387 | m.tx.h.msgh_size = sizeof(m.tx); |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 388 | m.tx.h.msgh_remote_port = runtime·mach_task_self(); |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 389 | m.tx.h.msgh_id = Tmach_semdestroy; |
| 390 | m.tx.body.msgh_descriptor_count = 1; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 391 | m.tx.semaphore.name = sem; |
| 392 | m.tx.semaphore.disposition = MACH_MSG_TYPE_MOVE_SEND; |
| 393 | m.tx.semaphore.type = 0; |
| 394 | |
Russ Cox | cd80000 | 2009-06-08 14:03:21 -0700 | [diff] [blame] | 395 | while((r = machcall(&m.tx.h, sizeof m, 0)) != 0){ |
Russ Cox | 3ff5e72 | 2009-07-27 10:59:59 -0700 | [diff] [blame] | 396 | if(r == KERN_ABORTED) // interrupted |
| 397 | continue; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 398 | macherror(r, "semaphore_destroy"); |
Russ Cox | cd80000 | 2009-06-08 14:03:21 -0700 | [diff] [blame] | 399 | } |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 400 | } |
| 401 | |
Shenghou Ma | e021357 | 2012-01-22 10:34:17 -0800 | [diff] [blame] | 402 | // The other calls have simple system call traps in sys_darwin_{amd64,386}.s |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 403 | int32 runtime·mach_semaphore_wait(uint32 sema); |
| 404 | int32 runtime·mach_semaphore_timedwait(uint32 sema, uint32 sec, uint32 nsec); |
| 405 | int32 runtime·mach_semaphore_signal(uint32 sema); |
| 406 | int32 runtime·mach_semaphore_signal_all(uint32 sema); |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 407 | |
Russ Cox | 3b86026 | 2011-11-09 15:17:05 -0500 | [diff] [blame] | 408 | int32 |
| 409 | runtime·mach_semacquire(uint32 sem, int64 ns) |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 410 | { |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 411 | int32 r; |
Rémy Oudompheng | ba50e4f | 2013-03-18 20:11:11 +0100 | [diff] [blame] | 412 | int64 secs; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 413 | |
Russ Cox | 3b86026 | 2011-11-09 15:17:05 -0500 | [diff] [blame] | 414 | if(ns >= 0) { |
Rémy Oudompheng | ba50e4f | 2013-03-18 20:11:11 +0100 | [diff] [blame] | 415 | secs = ns/1000000000LL; |
| 416 | // Avoid overflow |
| 417 | if(secs > 1LL<<30) |
| 418 | secs = 1LL<<30; |
| 419 | r = runtime·mach_semaphore_timedwait(sem, secs, ns%1000000000LL); |
Russ Cox | 3b86026 | 2011-11-09 15:17:05 -0500 | [diff] [blame] | 420 | if(r == KERN_ABORTED || r == KERN_OPERATION_TIMED_OUT) |
| 421 | return -1; |
| 422 | if(r != 0) |
| 423 | macherror(r, "semaphore_wait"); |
| 424 | return 0; |
| 425 | } |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 426 | while((r = runtime·mach_semaphore_wait(sem)) != 0) { |
Russ Cox | cd80000 | 2009-06-08 14:03:21 -0700 | [diff] [blame] | 427 | if(r == KERN_ABORTED) // interrupted |
| 428 | continue; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 429 | macherror(r, "semaphore_wait"); |
Russ Cox | cd80000 | 2009-06-08 14:03:21 -0700 | [diff] [blame] | 430 | } |
Russ Cox | 3b86026 | 2011-11-09 15:17:05 -0500 | [diff] [blame] | 431 | return 0; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | void |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 435 | runtime·mach_semrelease(uint32 sem) |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 436 | { |
Russ Cox | 08cfcd1 | 2009-03-24 13:51:48 -0700 | [diff] [blame] | 437 | int32 r; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 438 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 439 | while((r = runtime·mach_semaphore_signal(sem)) != 0) { |
Russ Cox | cd80000 | 2009-06-08 14:03:21 -0700 | [diff] [blame] | 440 | if(r == KERN_ABORTED) // interrupted |
| 441 | continue; |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 442 | macherror(r, "semaphore_signal"); |
Russ Cox | cd80000 | 2009-06-08 14:03:21 -0700 | [diff] [blame] | 443 | } |
Russ Cox | 376898c | 2008-09-09 11:50:14 -0700 | [diff] [blame] | 444 | } |
| 445 | |
Russ Cox | 5963dba | 2010-04-08 18:15:30 -0700 | [diff] [blame] | 446 | void |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 447 | runtime·sigpanic(void) |
Russ Cox | 5963dba | 2010-04-08 18:15:30 -0700 | [diff] [blame] | 448 | { |
| 449 | switch(g->sig) { |
| 450 | case SIGBUS: |
Russ Cox | 5032a7d | 2012-01-10 11:46:57 -0800 | [diff] [blame] | 451 | if(g->sigcode0 == BUS_ADRERR && g->sigcode1 < 0x1000) { |
| 452 | if(g->sigpc == 0) |
| 453 | runtime·panicstring("call of nil func value"); |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 454 | runtime·panicstring("invalid memory address or nil pointer dereference"); |
Russ Cox | 5032a7d | 2012-01-10 11:46:57 -0800 | [diff] [blame] | 455 | } |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 456 | runtime·printf("unexpected fault address %p\n", g->sigcode1); |
| 457 | runtime·throw("fault"); |
Russ Cox | 5963dba | 2010-04-08 18:15:30 -0700 | [diff] [blame] | 458 | case SIGSEGV: |
Russ Cox | 5032a7d | 2012-01-10 11:46:57 -0800 | [diff] [blame] | 459 | if((g->sigcode0 == 0 || g->sigcode0 == SEGV_MAPERR || g->sigcode0 == SEGV_ACCERR) && g->sigcode1 < 0x1000) { |
| 460 | if(g->sigpc == 0) |
| 461 | runtime·panicstring("call of nil func value"); |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 462 | runtime·panicstring("invalid memory address or nil pointer dereference"); |
Russ Cox | 5032a7d | 2012-01-10 11:46:57 -0800 | [diff] [blame] | 463 | } |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 464 | runtime·printf("unexpected fault address %p\n", g->sigcode1); |
| 465 | runtime·throw("fault"); |
Russ Cox | 5963dba | 2010-04-08 18:15:30 -0700 | [diff] [blame] | 466 | case SIGFPE: |
| 467 | switch(g->sigcode0) { |
| 468 | case FPE_INTDIV: |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 469 | runtime·panicstring("integer divide by zero"); |
Russ Cox | 5963dba | 2010-04-08 18:15:30 -0700 | [diff] [blame] | 470 | case FPE_INTOVF: |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 471 | runtime·panicstring("integer overflow"); |
Russ Cox | 5963dba | 2010-04-08 18:15:30 -0700 | [diff] [blame] | 472 | } |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 473 | runtime·panicstring("floating point error"); |
Russ Cox | 5963dba | 2010-04-08 18:15:30 -0700 | [diff] [blame] | 474 | } |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 475 | runtime·panicstring(runtime·sigtab[g->sig].name); |
Russ Cox | 5963dba | 2010-04-08 18:15:30 -0700 | [diff] [blame] | 476 | } |
Rob Pike | 40c26ff | 2011-09-30 10:52:36 -0700 | [diff] [blame] | 477 | |
Russ Cox | 86d509b | 2013-02-18 13:43:12 -0500 | [diff] [blame] | 478 | #pragma textflag 7 |
Rob Pike | 40c26ff | 2011-09-30 10:52:36 -0700 | [diff] [blame] | 479 | void |
| 480 | runtime·osyield(void) |
| 481 | { |
Russ Cox | 86d509b | 2013-02-18 13:43:12 -0500 | [diff] [blame] | 482 | runtime·usleep(1); |
Rob Pike | 40c26ff | 2011-09-30 10:52:36 -0700 | [diff] [blame] | 483 | } |
Russ Cox | 102274a | 2012-02-24 15:28:51 -0500 | [diff] [blame] | 484 | |
| 485 | uintptr |
| 486 | runtime·memlimit(void) |
| 487 | { |
| 488 | // NOTE(rsc): Could use getrlimit here, |
| 489 | // like on FreeBSD or Linux, but Darwin doesn't enforce |
| 490 | // ulimit -v, so it's unclear why we'd try to stay within |
| 491 | // the limit. |
| 492 | return 0; |
| 493 | } |
Russ Cox | 6e2ae0a | 2012-02-28 16:18:24 -0500 | [diff] [blame] | 494 | |
| 495 | // NOTE(rsc): On OS X, when the CPU profiling timer expires, the SIGPROF |
| 496 | // signal is not guaranteed to be sent to the thread that was executing to |
| 497 | // cause it to expire. It can and often does go to a sleeping thread, which is |
| 498 | // not interesting for our profile. This is filed Apple Bug Report #9177434, |
| 499 | // copied to http://code.google.com/p/go/source/detail?r=35b716c94225. |
| 500 | // To work around this bug, we disable receipt of the profiling signal on |
| 501 | // a thread while in blocking system calls. This forces the kernel to deliver |
| 502 | // the profiling signal to an executing thread. |
| 503 | // |
| 504 | // The workaround fails on OS X machines using a 64-bit Snow Leopard kernel. |
| 505 | // In that configuration, the kernel appears to want to deliver SIGPROF to the |
| 506 | // sleeping threads regardless of signal mask and, worse, does not deliver |
| 507 | // the signal until the thread wakes up on its own. |
| 508 | // |
| 509 | // If necessary, we can switch to using ITIMER_REAL for OS X and handle |
| 510 | // the kernel-generated SIGALRM by generating our own SIGALRMs to deliver |
| 511 | // to all the running threads. SIGALRM does not appear to be affected by |
| 512 | // the 64-bit Snow Leopard bug. However, as of this writing Mountain Lion |
| 513 | // is in preview, making Snow Leopard two versions old, so it is unclear how |
| 514 | // much effort we need to spend on one buggy kernel. |
| 515 | |
| 516 | // Control whether profiling signal can be delivered to this thread. |
| 517 | void |
| 518 | runtime·setprof(bool on) |
| 519 | { |
| 520 | if(on) |
| 521 | runtime·sigprocmask(SIG_UNBLOCK, &sigset_prof, nil); |
| 522 | else |
| 523 | runtime·sigprocmask(SIG_BLOCK, &sigset_prof, nil); |
| 524 | } |
Russ Cox | 9b73238 | 2012-03-08 12:12:40 -0500 | [diff] [blame] | 525 | |
Russ Cox | e9d62a6 | 2013-03-14 11:35:13 -0700 | [diff] [blame] | 526 | void |
| 527 | runtime·setsig(int32 i, GoSighandler *fn, bool restart) |
| 528 | { |
| 529 | Sigaction sa; |
| 530 | |
| 531 | runtime·memclr((byte*)&sa, sizeof sa); |
| 532 | sa.sa_flags = SA_SIGINFO|SA_ONSTACK; |
| 533 | if(restart) |
| 534 | sa.sa_flags |= SA_RESTART; |
| 535 | sa.sa_mask = ~(uintptr)0; |
| 536 | sa.sa_tramp = (void*)runtime·sigtramp; // runtime·sigtramp's job is to call into real handler |
| 537 | *(uintptr*)sa.__sigaction_u = (uintptr)fn; |
| 538 | runtime·sigaction(i, &sa, nil); |
| 539 | } |
| 540 | |
| 541 | GoSighandler* |
| 542 | runtime·getsig(int32 i) |
| 543 | { |
| 544 | Sigaction sa; |
| 545 | |
| 546 | runtime·memclr((byte*)&sa, sizeof sa); |
| 547 | runtime·sigaction(i, nil, &sa); |
| 548 | return *(void**)sa.__sigaction_u; |
| 549 | } |
| 550 | |
| 551 | void |
| 552 | runtime·signalstack(byte *p, int32 n) |
| 553 | { |
| 554 | StackT st; |
| 555 | |
| 556 | st.ss_sp = (void*)p; |
| 557 | st.ss_size = n; |
| 558 | st.ss_flags = 0; |
| 559 | if(p == nil) |
| 560 | st.ss_flags = SS_DISABLE; |
| 561 | runtime·sigaltstack(&st, nil); |
| 562 | } |