github.com/panjjo/go@v0.0.0-20161104043856-d62b31386338/src/runtime/os_linux.go (about) 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 package runtime 6 7 import ( 8 "runtime/internal/sys" 9 "unsafe" 10 ) 11 12 type mOS struct{} 13 14 //go:noescape 15 func futex(addr unsafe.Pointer, op int32, val uint32, ts, addr2 unsafe.Pointer, val3 uint32) int32 16 17 // Linux futex. 18 // 19 // futexsleep(uint32 *addr, uint32 val) 20 // futexwakeup(uint32 *addr) 21 // 22 // Futexsleep atomically checks if *addr == val and if so, sleeps on addr. 23 // Futexwakeup wakes up threads sleeping on addr. 24 // Futexsleep is allowed to wake up spuriously. 25 26 const ( 27 _FUTEX_WAIT = 0 28 _FUTEX_WAKE = 1 29 ) 30 31 // Atomically, 32 // if(*addr == val) sleep 33 // Might be woken up spuriously; that's allowed. 34 // Don't sleep longer than ns; ns < 0 means forever. 35 //go:nosplit 36 func futexsleep(addr *uint32, val uint32, ns int64) { 37 var ts timespec 38 39 // Some Linux kernels have a bug where futex of 40 // FUTEX_WAIT returns an internal error code 41 // as an errno. Libpthread ignores the return value 42 // here, and so can we: as it says a few lines up, 43 // spurious wakeups are allowed. 44 if ns < 0 { 45 futex(unsafe.Pointer(addr), _FUTEX_WAIT, val, nil, nil, 0) 46 return 47 } 48 49 // It's difficult to live within the no-split stack limits here. 50 // On ARM and 386, a 64-bit divide invokes a general software routine 51 // that needs more stack than we can afford. So we use timediv instead. 52 // But on real 64-bit systems, where words are larger but the stack limit 53 // is not, even timediv is too heavy, and we really need to use just an 54 // ordinary machine instruction. 55 if sys.PtrSize == 8 { 56 ts.set_sec(ns / 1000000000) 57 ts.set_nsec(int32(ns % 1000000000)) 58 } else { 59 ts.tv_nsec = 0 60 ts.set_sec(int64(timediv(ns, 1000000000, (*int32)(unsafe.Pointer(&ts.tv_nsec))))) 61 } 62 futex(unsafe.Pointer(addr), _FUTEX_WAIT, val, unsafe.Pointer(&ts), nil, 0) 63 } 64 65 // If any procs are sleeping on addr, wake up at most cnt. 66 //go:nosplit 67 func futexwakeup(addr *uint32, cnt uint32) { 68 ret := futex(unsafe.Pointer(addr), _FUTEX_WAKE, cnt, nil, nil, 0) 69 if ret >= 0 { 70 return 71 } 72 73 // I don't know that futex wakeup can return 74 // EAGAIN or EINTR, but if it does, it would be 75 // safe to loop and call futex again. 76 systemstack(func() { 77 print("futexwakeup addr=", addr, " returned ", ret, "\n") 78 }) 79 80 *(*int32)(unsafe.Pointer(uintptr(0x1006))) = 0x1006 81 } 82 83 func getproccount() int32 { 84 // This buffer is huge (8 kB) but we are on the system stack 85 // and there should be plenty of space (64 kB). 86 // Also this is a leaf, so we're not holding up the memory for long. 87 // See golang.org/issue/11823. 88 // The suggested behavior here is to keep trying with ever-larger 89 // buffers, but we don't have a dynamic memory allocator at the 90 // moment, so that's a bit tricky and seems like overkill. 91 const maxCPUs = 64 * 1024 92 var buf [maxCPUs / (sys.PtrSize * 8)]uintptr 93 r := sched_getaffinity(0, unsafe.Sizeof(buf), &buf[0]) 94 n := int32(0) 95 for _, v := range buf[:r/sys.PtrSize] { 96 for v != 0 { 97 n += int32(v & 1) 98 v >>= 1 99 } 100 } 101 if n == 0 { 102 n = 1 103 } 104 return n 105 } 106 107 // Clone, the Linux rfork. 108 const ( 109 _CLONE_VM = 0x100 110 _CLONE_FS = 0x200 111 _CLONE_FILES = 0x400 112 _CLONE_SIGHAND = 0x800 113 _CLONE_PTRACE = 0x2000 114 _CLONE_VFORK = 0x4000 115 _CLONE_PARENT = 0x8000 116 _CLONE_THREAD = 0x10000 117 _CLONE_NEWNS = 0x20000 118 _CLONE_SYSVSEM = 0x40000 119 _CLONE_SETTLS = 0x80000 120 _CLONE_PARENT_SETTID = 0x100000 121 _CLONE_CHILD_CLEARTID = 0x200000 122 _CLONE_UNTRACED = 0x800000 123 _CLONE_CHILD_SETTID = 0x1000000 124 _CLONE_STOPPED = 0x2000000 125 _CLONE_NEWUTS = 0x4000000 126 _CLONE_NEWIPC = 0x8000000 127 128 cloneFlags = _CLONE_VM | /* share memory */ 129 _CLONE_FS | /* share cwd, etc */ 130 _CLONE_FILES | /* share fd table */ 131 _CLONE_SIGHAND | /* share sig handler table */ 132 _CLONE_THREAD /* revisit - okay for now */ 133 ) 134 135 //go:noescape 136 func clone(flags int32, stk, mp, gp, fn unsafe.Pointer) int32 137 138 // May run with m.p==nil, so write barriers are not allowed. 139 //go:nowritebarrier 140 func newosproc(mp *m, stk unsafe.Pointer) { 141 /* 142 * note: strace gets confused if we use CLONE_PTRACE here. 143 */ 144 if false { 145 print("newosproc stk=", stk, " m=", mp, " g=", mp.g0, " clone=", funcPC(clone), " id=", mp.id, " ostk=", &mp, "\n") 146 } 147 148 // Disable signals during clone, so that the new thread starts 149 // with signals disabled. It will enable them in minit. 150 var oset sigset 151 sigprocmask(_SIG_SETMASK, &sigset_all, &oset) 152 ret := clone(cloneFlags, stk, unsafe.Pointer(mp), unsafe.Pointer(mp.g0), unsafe.Pointer(funcPC(mstart))) 153 sigprocmask(_SIG_SETMASK, &oset, nil) 154 155 if ret < 0 { 156 print("runtime: failed to create new OS thread (have ", mcount(), " already; errno=", -ret, ")\n") 157 if ret == -_EAGAIN { 158 println("runtime: may need to increase max user processes (ulimit -u)") 159 } 160 throw("newosproc") 161 } 162 } 163 164 // Version of newosproc that doesn't require a valid G. 165 //go:nosplit 166 func newosproc0(stacksize uintptr, fn unsafe.Pointer) { 167 stack := sysAlloc(stacksize, &memstats.stacks_sys) 168 if stack == nil { 169 write(2, unsafe.Pointer(&failallocatestack[0]), int32(len(failallocatestack))) 170 exit(1) 171 } 172 ret := clone(cloneFlags, unsafe.Pointer(uintptr(stack)+stacksize), nil, nil, fn) 173 if ret < 0 { 174 write(2, unsafe.Pointer(&failthreadcreate[0]), int32(len(failthreadcreate))) 175 exit(1) 176 } 177 } 178 179 var failallocatestack = []byte("runtime: failed to allocate stack for the new OS thread\n") 180 var failthreadcreate = []byte("runtime: failed to create new OS thread\n") 181 182 const ( 183 _AT_NULL = 0 // End of vector 184 _AT_PAGESZ = 6 // System physical page size 185 _AT_HWCAP = 16 // hardware capability bit vector 186 _AT_RANDOM = 25 // introduced in 2.6.29 187 _AT_HWCAP2 = 26 // hardware capability bit vector 2 188 ) 189 190 func sysargs(argc int32, argv **byte) { 191 n := argc + 1 192 193 // skip over argv, envp to get to auxv 194 for argv_index(argv, n) != nil { 195 n++ 196 } 197 198 // skip NULL separator 199 n++ 200 201 // now argv+n is auxv 202 auxv := (*[1 << 28]uintptr)(add(unsafe.Pointer(argv), uintptr(n)*sys.PtrSize)) 203 for i := 0; auxv[i] != _AT_NULL; i += 2 { 204 tag, val := auxv[i], auxv[i+1] 205 switch tag { 206 case _AT_RANDOM: 207 // The kernel provides a pointer to 16-bytes 208 // worth of random data. 209 startupRandomData = (*[16]byte)(unsafe.Pointer(val))[:] 210 211 case _AT_PAGESZ: 212 physPageSize = val 213 } 214 215 archauxv(tag, val) 216 } 217 } 218 219 func osinit() { 220 ncpu = getproccount() 221 } 222 223 var urandom_dev = []byte("/dev/urandom\x00") 224 225 func getRandomData(r []byte) { 226 if startupRandomData != nil { 227 n := copy(r, startupRandomData) 228 extendRandom(r, n) 229 return 230 } 231 fd := open(&urandom_dev[0], 0 /* O_RDONLY */, 0) 232 n := read(fd, unsafe.Pointer(&r[0]), int32(len(r))) 233 closefd(fd) 234 extendRandom(r, int(n)) 235 } 236 237 func goenvs() { 238 goenvs_unix() 239 } 240 241 // Called to do synchronous initialization of Go code built with 242 // -buildmode=c-archive or -buildmode=c-shared. 243 // None of the Go runtime is initialized. 244 //go:nosplit 245 //go:nowritebarrierrec 246 func libpreinit() { 247 initsig(true) 248 } 249 250 // Called to initialize a new m (including the bootstrap m). 251 // Called on the parent thread (main thread in case of bootstrap), can allocate memory. 252 func mpreinit(mp *m) { 253 mp.gsignal = malg(32 * 1024) // Linux wants >= 2K 254 mp.gsignal.m = mp 255 } 256 257 func gettid() uint32 258 259 // Called to initialize a new m (including the bootstrap m). 260 // Called on the new thread, cannot allocate memory. 261 func minit() { 262 minitSignals() 263 264 // for debuggers, in case cgo created the thread 265 getg().m.procid = uint64(gettid()) 266 } 267 268 // Called from dropm to undo the effect of an minit. 269 //go:nosplit 270 func unminit() { 271 unminitSignals() 272 } 273 274 func memlimit() uintptr { 275 /* 276 TODO: Convert to Go when something actually uses the result. 277 278 Rlimit rl; 279 extern byte runtime·text[], runtime·end[]; 280 uintptr used; 281 282 if(runtime·getrlimit(RLIMIT_AS, &rl) != 0) 283 return 0; 284 if(rl.rlim_cur >= 0x7fffffff) 285 return 0; 286 287 // Estimate our VM footprint excluding the heap. 288 // Not an exact science: use size of binary plus 289 // some room for thread stacks. 290 used = runtime·end - runtime·text + (64<<20); 291 if(used >= rl.rlim_cur) 292 return 0; 293 294 // If there's not at least 16 MB left, we're probably 295 // not going to be able to do much. Treat as no limit. 296 rl.rlim_cur -= used; 297 if(rl.rlim_cur < (16<<20)) 298 return 0; 299 300 return rl.rlim_cur - used; 301 */ 302 303 return 0 304 } 305 306 //#ifdef GOARCH_386 307 //#define sa_handler k_sa_handler 308 //#endif 309 310 func sigreturn() 311 func sigtramp(sig uint32, info *siginfo, ctx unsafe.Pointer) 312 func cgoSigtramp() 313 314 //go:noescape 315 func rt_sigaction(sig uintptr, new, old *sigactiont, size uintptr) int32 316 317 //go:noescape 318 func sigaltstack(new, old *stackt) 319 320 //go:noescape 321 func setitimer(mode int32, new, old *itimerval) 322 323 //go:noescape 324 func rtsigprocmask(how int32, new, old *sigset, size int32) 325 326 //go:nosplit 327 //go:nowritebarrierrec 328 func sigprocmask(how int32, new, old *sigset) { 329 rtsigprocmask(how, new, old, int32(unsafe.Sizeof(*new))) 330 } 331 332 //go:noescape 333 func getrlimit(kind int32, limit unsafe.Pointer) int32 334 func raise(sig uint32) 335 func raiseproc(sig uint32) 336 337 //go:noescape 338 func sched_getaffinity(pid, len uintptr, buf *uintptr) int32 339 func osyield() 340 341 //go:nosplit 342 //go:nowritebarrierrec 343 func setsig(i uint32, fn uintptr) { 344 var sa sigactiont 345 sa.sa_flags = _SA_SIGINFO | _SA_ONSTACK | _SA_RESTORER | _SA_RESTART 346 sigfillset(&sa.sa_mask) 347 // Although Linux manpage says "sa_restorer element is obsolete and 348 // should not be used". x86_64 kernel requires it. Only use it on 349 // x86. 350 if GOARCH == "386" || GOARCH == "amd64" { 351 sa.sa_restorer = funcPC(sigreturn) 352 } 353 if fn == funcPC(sighandler) { 354 if iscgo { 355 fn = funcPC(cgoSigtramp) 356 } else { 357 fn = funcPC(sigtramp) 358 } 359 } 360 sa.sa_handler = fn 361 rt_sigaction(uintptr(i), &sa, nil, unsafe.Sizeof(sa.sa_mask)) 362 } 363 364 //go:nosplit 365 //go:nowritebarrierrec 366 func setsigstack(i uint32) { 367 var sa sigactiont 368 rt_sigaction(uintptr(i), nil, &sa, unsafe.Sizeof(sa.sa_mask)) 369 if sa.sa_flags&_SA_ONSTACK != 0 { 370 return 371 } 372 sa.sa_flags |= _SA_ONSTACK 373 rt_sigaction(uintptr(i), &sa, nil, unsafe.Sizeof(sa.sa_mask)) 374 } 375 376 //go:nosplit 377 //go:nowritebarrierrec 378 func getsig(i uint32) uintptr { 379 var sa sigactiont 380 if rt_sigaction(uintptr(i), nil, &sa, unsafe.Sizeof(sa.sa_mask)) != 0 { 381 throw("rt_sigaction read failure") 382 } 383 return sa.sa_handler 384 } 385 386 // setSignaltstackSP sets the ss_sp field of a stackt. 387 //go:nosplit 388 func setSignalstackSP(s *stackt, sp uintptr) { 389 *(*uintptr)(unsafe.Pointer(&s.ss_sp)) = sp 390 } 391 392 func (c *sigctxt) fixsigcode(sig uint32) { 393 }