1.0.30.48: utf-8 simple-array-nil correctness
[sbcl.git] / tests / threads.impure.lisp
blob3eb0fe0a74c8fea0578f3b0fd54216dae8339e4c
1 ;;;; miscellaneous tests of thread stuff
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; While most of SBCL is derived from the CMU CL system, the test
7 ;;;; files (like this one) were written from scratch after the fork
8 ;;;; from CMU CL.
9 ;;;
10 ;;;; This software is in the public domain and is provided with
11 ;;;; absoluely no warranty. See the COPYING and CREDITS files for
12 ;;;; more information.
14 ; WHITE-BOX TESTS
16 (in-package "SB-THREAD")
17 (use-package :test-util)
18 (use-package "ASSERTOID")
20 (setf sb-unix::*on-dangerous-select* :error)
22 (defun wait-for-threads (threads)
23 (mapc (lambda (thread) (sb-thread:join-thread thread :default nil)) threads)
24 (assert (not (some #'sb-thread:thread-alive-p threads))))
26 (assert (eql 1 (length (list-all-threads))))
28 (assert (eq *current-thread*
29 (find (thread-name *current-thread*) (list-all-threads)
30 :key #'thread-name :test #'equal)))
32 (assert (thread-alive-p *current-thread*))
34 (let ((a 0))
35 (interrupt-thread *current-thread* (lambda () (setq a 1)))
36 (assert (eql a 1)))
38 (let ((spinlock (make-spinlock)))
39 (with-spinlock (spinlock)))
41 (let ((mutex (make-mutex)))
42 (with-mutex (mutex)
43 mutex))
45 (sb-alien:define-alien-routine "check_deferrables_blocked_or_lose"
46 void
47 (where sb-alien:unsigned-long))
48 (sb-alien:define-alien-routine "check_deferrables_unblocked_or_lose"
49 void
50 (where sb-alien:unsigned-long))
52 (with-test (:name (:interrupt-thread :deferrables-blocked))
53 (sb-thread:interrupt-thread sb-thread:*current-thread*
54 (lambda ()
55 (check-deferrables-blocked-or-lose 0))))
57 (with-test (:name (:interrupt-thread :deferrables-unblocked))
58 (sb-thread:interrupt-thread sb-thread:*current-thread*
59 (lambda ()
60 (with-interrupts
61 (check-deferrables-unblocked-or-lose 0)))))
63 (with-test (:name (:interrupt-thread :nlx))
64 (catch 'xxx
65 (sb-thread:interrupt-thread sb-thread:*current-thread*
66 (lambda ()
67 (check-deferrables-blocked-or-lose 0)
68 (throw 'xxx nil))))
69 (check-deferrables-unblocked-or-lose 0))
71 #-sb-thread (sb-ext:quit :unix-status 104)
73 (with-test (:name (:interrupt-thread :deferrables-unblocked-by-spinlock))
74 (let ((spinlock (sb-thread::make-spinlock))
75 (thread (sb-thread:make-thread (lambda ()
76 (loop (sleep 1))))))
77 (sb-thread::get-spinlock spinlock)
78 (sb-thread:interrupt-thread thread
79 (lambda ()
80 (check-deferrables-blocked-or-lose 0)
81 (sb-thread::get-spinlock spinlock)
82 (check-deferrables-unblocked-or-lose 0)
83 (sb-ext:quit)))
84 (sleep 1)
85 (sb-thread::release-spinlock spinlock)))
87 ;;; compare-and-swap
89 (defmacro defincf (name accessor &rest args)
90 `(defun ,name (x)
91 (let* ((old (,accessor x ,@args))
92 (new (1+ old)))
93 (loop until (eq old (sb-ext:compare-and-swap (,accessor x ,@args) old new))
94 do (setf old (,accessor x ,@args)
95 new (1+ old)))
96 new)))
98 (defstruct cas-struct (slot 0))
100 (defincf incf-car car)
101 (defincf incf-cdr cdr)
102 (defincf incf-slot cas-struct-slot)
103 (defincf incf-symbol-value symbol-value)
104 (defincf incf-svref/1 svref 1)
105 (defincf incf-svref/0 svref 0)
107 (defmacro def-test-cas (name init incf op)
108 `(progn
109 (defun ,name (n)
110 (declare (fixnum n))
111 (let* ((x ,init)
112 (run nil)
113 (threads
114 (loop repeat 10
115 collect (sb-thread:make-thread
116 (lambda ()
117 (loop until run
118 do (sb-thread:thread-yield))
119 (loop repeat n do (,incf x)))))))
120 (setf run t)
121 (dolist (th threads)
122 (sb-thread:join-thread th))
123 (assert (= (,op x) (* 10 n)))))
124 (,name 200000)))
126 (def-test-cas test-cas-car (cons 0 nil) incf-car car)
127 (def-test-cas test-cas-cdr (cons nil 0) incf-cdr cdr)
128 (def-test-cas test-cas-slot (make-cas-struct) incf-slot cas-struct-slot)
129 (def-test-cas test-cas-value (let ((x '.x.))
130 (set x 0)
132 incf-symbol-value symbol-value)
133 (def-test-cas test-cas-svref/0 (vector 0 nil) incf-svref/0 (lambda (x)
134 (svref x 0)))
135 (def-test-cas test-cas-svref/1 (vector nil 0) incf-svref/1 (lambda (x)
136 (svref x 1)))
137 (format t "~&compare-and-swap tests done~%")
139 (let ((old-threads (list-all-threads))
140 (thread (make-thread (lambda ()
141 (assert (find *current-thread* *all-threads*))
142 (sleep 2))))
143 (new-threads (list-all-threads)))
144 (assert (thread-alive-p thread))
145 (assert (eq thread (first new-threads)))
146 (assert (= (1+ (length old-threads)) (length new-threads)))
147 (sleep 3)
148 (assert (not (thread-alive-p thread))))
150 (with-test (:name '(:join-thread :nlx :default))
151 (let ((sym (gensym)))
152 (assert (eq sym (join-thread (make-thread (lambda () (sb-ext:quit)))
153 :default sym)))))
155 (with-test (:name '(:join-thread :nlx :error))
156 (raises-error? (join-thread (make-thread (lambda () (sb-ext:quit))))
157 join-thread-error))
159 (with-test (:name '(:join-thread :multiple-values))
160 (assert (equal '(1 2 3)
161 (multiple-value-list
162 (join-thread (make-thread (lambda () (values 1 2 3))))))))
164 ;;; We had appalling scaling properties for a while. Make sure they
165 ;;; don't reappear.
166 (defun scaling-test (function &optional (nthreads 5))
167 "Execute FUNCTION with NTHREADS lurking to slow it down."
168 (let ((queue (sb-thread:make-waitqueue))
169 (mutex (sb-thread:make-mutex)))
170 ;; Start NTHREADS idle threads.
171 (dotimes (i nthreads)
172 (sb-thread:make-thread (lambda ()
173 (with-mutex (mutex)
174 (sb-thread:condition-wait queue mutex))
175 (sb-ext:quit))))
176 (let ((start-time (get-internal-run-time)))
177 (funcall function)
178 (prog1 (- (get-internal-run-time) start-time)
179 (sb-thread:condition-broadcast queue)))))
180 (defun fact (n)
181 "A function that does work with the CPU."
182 (if (zerop n) 1 (* n (fact (1- n)))))
183 (let ((work (lambda () (fact 15000))))
184 (let ((zero (scaling-test work 0))
185 (four (scaling-test work 4)))
186 ;; a slightly weak assertion, but good enough for starters.
187 (assert (< four (* 1.5 zero)))))
189 ;;; For one of the interupt-thread tests, we want a foreign function
190 ;;; that does not make syscalls
192 (with-open-file (o "threads-foreign.c" :direction :output :if-exists :supersede)
193 (format o "void loop_forever() { while(1) ; }~%"))
194 (sb-ext:run-program
195 #-sunos "cc" #+sunos "gcc"
196 (or #+(or linux freebsd sunos) '(#+x86-64 "-fPIC"
197 "-shared" "-o" "threads-foreign.so" "threads-foreign.c")
198 #+darwin '(#+x86-64 "-arch" #+x86-64 "x86_64"
199 "-dynamiclib" "-o" "threads-foreign.so" "threads-foreign.c")
200 (error "Missing shared library compilation options for this platform"))
201 :search t)
202 (sb-alien:load-shared-object (truename "threads-foreign.so"))
203 (sb-alien:define-alien-routine loop-forever sb-alien:void)
204 (delete-file "threads-foreign.c")
206 ;;; elementary "can we get a lock and release it again"
207 (let ((l (make-mutex :name "foo"))
208 (p *current-thread*))
209 (assert (eql (mutex-value l) nil) nil "1")
210 (sb-thread:get-mutex l)
211 (assert (eql (mutex-value l) p) nil "3")
212 (sb-thread:release-mutex l)
213 (assert (eql (mutex-value l) nil) nil "5"))
215 (labels ((ours-p (value)
216 (eq *current-thread* value)))
217 (let ((l (make-mutex :name "rec")))
218 (assert (eql (mutex-value l) nil) nil "1")
219 (sb-thread:with-recursive-lock (l)
220 (assert (ours-p (mutex-value l)) nil "3")
221 (sb-thread:with-recursive-lock (l)
222 (assert (ours-p (mutex-value l)) nil "4"))
223 (assert (ours-p (mutex-value l)) nil "5"))
224 (assert (eql (mutex-value l) nil) nil "6")))
226 (labels ((ours-p (value)
227 (eq *current-thread* value)))
228 (let ((l (make-spinlock :name "rec")))
229 (assert (eql (spinlock-value l) nil) nil "1")
230 (with-recursive-spinlock (l)
231 (assert (ours-p (spinlock-value l)) nil "3")
232 (with-recursive-spinlock (l)
233 (assert (ours-p (spinlock-value l)) nil "4"))
234 (assert (ours-p (spinlock-value l)) nil "5"))
235 (assert (eql (spinlock-value l) nil) nil "6")))
237 (with-test (:name (:mutex :nesting-mutex-and-recursive-lock))
238 (let ((l (make-mutex :name "a mutex")))
239 (with-mutex (l)
240 (with-recursive-lock (l)))))
242 (with-test (:name (:spinlock :nesting-spinlock-and-recursive-spinlock))
243 (let ((l (make-spinlock :name "a spinlock")))
244 (with-spinlock (l)
245 (with-recursive-spinlock (l)))))
247 (let ((l (make-spinlock :name "spinlock")))
248 (assert (eql (spinlock-value l) nil) ((spinlock-value l))
249 "spinlock not free (1)")
250 (with-spinlock (l)
251 (assert (eql (spinlock-value l) *current-thread*) ((spinlock-value l))
252 "spinlock not taken"))
253 (assert (eql (spinlock-value l) nil) ((spinlock-value l))
254 "spinlock not free (2)"))
256 ;; test that SLEEP actually sleeps for at least the given time, even
257 ;; if interrupted by another thread exiting/a gc/anything
258 (let ((start-time (get-universal-time)))
259 (make-thread (lambda () (sleep 1) (sb-ext:gc :full t)))
260 (sleep 5)
261 (assert (>= (get-universal-time) (+ 5 start-time))))
264 (let ((queue (make-waitqueue :name "queue"))
265 (lock (make-mutex :name "lock"))
266 (n 0))
267 (labels ((in-new-thread ()
268 (with-mutex (lock)
269 (assert (eql (mutex-value lock) *current-thread*))
270 (format t "~A got mutex~%" *current-thread*)
271 ;; now drop it and sleep
272 (condition-wait queue lock)
273 ;; after waking we should have the lock again
274 (assert (eql (mutex-value lock) *current-thread*))
275 (assert (eql n 1))
276 (decf n))))
277 (make-thread #'in-new-thread)
278 (sleep 2) ; give it a chance to start
279 ;; check the lock is free while it's asleep
280 (format t "parent thread ~A~%" *current-thread*)
281 (assert (eql (mutex-value lock) nil))
282 (with-mutex (lock)
283 (incf n)
284 (condition-notify queue))
285 (sleep 1)))
287 (let ((queue (make-waitqueue :name "queue"))
288 (lock (make-mutex :name "lock")))
289 (labels ((ours-p (value)
290 (eq *current-thread* value))
291 (in-new-thread ()
292 (with-recursive-lock (lock)
293 (assert (ours-p (mutex-value lock)))
294 (format t "~A got mutex~%" (mutex-value lock))
295 ;; now drop it and sleep
296 (condition-wait queue lock)
297 ;; after waking we should have the lock again
298 (format t "woken, ~A got mutex~%" (mutex-value lock))
299 (assert (ours-p (mutex-value lock))))))
300 (make-thread #'in-new-thread)
301 (sleep 2) ; give it a chance to start
302 ;; check the lock is free while it's asleep
303 (format t "parent thread ~A~%" *current-thread*)
304 (assert (eql (mutex-value lock) nil))
305 (with-recursive-lock (lock)
306 (condition-notify queue))
307 (sleep 1)))
309 (let ((mutex (make-mutex :name "contended")))
310 (labels ((run ()
311 (let ((me *current-thread*))
312 (dotimes (i 100)
313 (with-mutex (mutex)
314 (sleep .03)
315 (assert (eql (mutex-value mutex) me)))
316 (assert (not (eql (mutex-value mutex) me))))
317 (format t "done ~A~%" *current-thread*))))
318 (let ((kid1 (make-thread #'run))
319 (kid2 (make-thread #'run)))
320 (format t "contention ~A ~A~%" kid1 kid2)
321 (wait-for-threads (list kid1 kid2)))))
323 ;;; semaphores
325 (defmacro raises-timeout-p (&body body)
326 `(handler-case (progn (progn ,@body) nil)
327 (sb-ext:timeout () t)))
329 (with-test (:name (:semaphore :wait-forever))
330 (let ((sem (make-semaphore :count 0)))
331 (assert (raises-timeout-p
332 (sb-ext:with-timeout 0.1
333 (wait-on-semaphore sem))))))
335 (with-test (:name (:semaphore :initial-count))
336 (let ((sem (make-semaphore :count 1)))
337 (sb-ext:with-timeout 0.1
338 (wait-on-semaphore sem))))
340 (with-test (:name (:semaphore :wait-then-signal))
341 (let ((sem (make-semaphore))
342 (signalled-p nil))
343 (make-thread (lambda ()
344 (sleep 0.1)
345 (setq signalled-p t)
346 (signal-semaphore sem)))
347 (wait-on-semaphore sem)
348 (assert signalled-p)))
350 (with-test (:name (:semaphore :signal-then-wait))
351 (let ((sem (make-semaphore))
352 (signalled-p nil))
353 (make-thread (lambda ()
354 (signal-semaphore sem)
355 (setq signalled-p t)))
356 (loop until signalled-p)
357 (wait-on-semaphore sem)
358 (assert signalled-p)))
360 (with-test (:name (:semaphore :multiple-signals))
361 (let* ((sem (make-semaphore :count 5))
362 (threads (loop repeat 20
363 collect (make-thread (lambda ()
364 (wait-on-semaphore sem))))))
365 (flet ((count-live-threads ()
366 (count-if #'thread-alive-p threads)))
367 (sleep 0.5)
368 (assert (= 15 (count-live-threads)))
369 (signal-semaphore sem 10)
370 (sleep 0.5)
371 (assert (= 5 (count-live-threads)))
372 (signal-semaphore sem 3)
373 (sleep 0.5)
374 (assert (= 2 (count-live-threads)))
375 (signal-semaphore sem 4)
376 (sleep 0.5)
377 (assert (= 0 (count-live-threads))))))
379 (format t "~&semaphore tests done~%")
381 (defun test-interrupt (function-to-interrupt &optional quit-p)
382 (let ((child (make-thread function-to-interrupt)))
383 ;;(format t "gdb ./src/runtime/sbcl ~A~%attach ~A~%" child child)
384 (sleep 2)
385 (format t "interrupting child ~A~%" child)
386 (interrupt-thread child
387 (lambda ()
388 (format t "child pid ~A~%" *current-thread*)
389 (when quit-p (sb-ext:quit))))
390 (sleep 1)
391 child))
393 ;; separate tests for (a) interrupting Lisp code, (b) C code, (c) a syscall,
394 ;; (d) waiting on a lock, (e) some code which we hope is likely to be
395 ;; in pseudo-atomic
397 (let ((child (test-interrupt (lambda () (loop))))) (terminate-thread child))
399 (test-interrupt #'loop-forever :quit)
401 (let ((child (test-interrupt (lambda () (loop (sleep 2000))))))
402 (terminate-thread child)
403 (wait-for-threads (list child)))
405 (let ((lock (make-mutex :name "loctite"))
406 child)
407 (with-mutex (lock)
408 (setf child (test-interrupt
409 (lambda ()
410 (with-mutex (lock)
411 (assert (eql (mutex-value lock) *current-thread*)))
412 (assert (not (eql (mutex-value lock) *current-thread*)))
413 (sleep 10))))
414 ;;hold onto lock for long enough that child can't get it immediately
415 (sleep 5)
416 (interrupt-thread child (lambda () (format t "l ~A~%" (mutex-value lock))))
417 (format t "parent releasing lock~%"))
418 (terminate-thread child)
419 (wait-for-threads (list child)))
421 (format t "~&locking test done~%")
423 (defun alloc-stuff () (copy-list '(1 2 3 4 5)))
425 (progn
426 (let ((thread (sb-thread:make-thread (lambda () (loop (alloc-stuff))))))
427 (let ((killers
428 (loop repeat 4 collect
429 (sb-thread:make-thread
430 (lambda ()
431 (loop repeat 25 do
432 (sleep (random 0.1d0))
433 (princ ".")
434 (force-output)
435 (sb-thread:interrupt-thread thread (lambda ()))))))))
436 (wait-for-threads killers)
437 (sb-thread:terminate-thread thread)
438 (wait-for-threads (list thread))))
439 (sb-ext:gc :full t))
441 (format t "~&multi interrupt test done~%")
443 (let ((c (make-thread (lambda () (loop (alloc-stuff))))))
444 ;; NB this only works on x86: other ports don't have a symbol for
445 ;; pseudo-atomic atomicity
446 (dotimes (i 100)
447 (sleep (random 0.1d0))
448 (interrupt-thread c
449 (lambda ()
450 (princ ".") (force-output)
451 (assert (thread-alive-p *current-thread*))
452 (assert
453 (not (logbitp 0 SB-KERNEL:*PSEUDO-ATOMIC-BITS*))))))
454 (terminate-thread c)
455 (wait-for-threads (list c)))
457 (format t "~&interrupt test done~%")
459 (defstruct counter (n 0 :type sb-vm:word))
460 (defvar *interrupt-counter* (make-counter))
462 (declaim (notinline check-interrupt-count))
463 (defun check-interrupt-count (i)
464 (declare (optimize (debug 1) (speed 1)))
465 ;; This used to lose if eflags were not restored after an interrupt.
466 (unless (typep i 'fixnum)
467 (error "!!!!!!!!!!!")))
469 (let ((c (make-thread
470 (lambda ()
471 (handler-bind ((error #'(lambda (cond)
472 (princ cond)
473 (sb-debug:backtrace
474 most-positive-fixnum))))
475 (loop (check-interrupt-count (counter-n *interrupt-counter*))))))))
476 (let ((func (lambda ()
477 (princ ".")
478 (force-output)
479 (sb-ext:atomic-incf (counter-n *interrupt-counter*)))))
480 (setf (counter-n *interrupt-counter*) 0)
481 (dotimes (i 100)
482 (sleep (random 0.1d0))
483 (interrupt-thread c func))
484 (loop until (= (counter-n *interrupt-counter*) 100) do (sleep 0.1))
485 (terminate-thread c)
486 (wait-for-threads (list c))))
488 (format t "~&interrupt count test done~%")
490 (defvar *runningp* nil)
492 (with-test (:name (:interrupt-thread :no-nesting))
493 (let ((thread (sb-thread:make-thread
494 (lambda ()
495 (catch 'xxx
496 (loop))))))
497 (declare (special runningp))
498 (sleep 0.2)
499 (sb-thread:interrupt-thread thread
500 (lambda ()
501 (let ((*runningp* t))
502 (sleep 1))))
503 (sleep 0.2)
504 (sb-thread:interrupt-thread thread
505 (lambda ()
506 (throw 'xxx *runningp*)))
507 (assert (not (sb-thread:join-thread thread)))))
509 (with-test (:name (:interrupt-thread :nesting))
510 (let ((thread (sb-thread:make-thread
511 (lambda ()
512 (catch 'xxx
513 (loop))))))
514 (declare (special runningp))
515 (sleep 0.2)
516 (sb-thread:interrupt-thread thread
517 (lambda ()
518 (let ((*runningp* t))
519 (sb-sys:with-interrupts
520 (sleep 1)))))
521 (sleep 0.2)
522 (sb-thread:interrupt-thread thread
523 (lambda ()
524 (throw 'xxx *runningp*)))
525 (assert (sb-thread:join-thread thread))))
527 (let (a-done b-done)
528 (make-thread (lambda ()
529 (dotimes (i 100)
530 (sb-ext:gc) (princ "\\") (force-output))
531 (setf a-done t)))
532 (make-thread (lambda ()
533 (dotimes (i 25)
534 (sb-ext:gc :full t)
535 (princ "/") (force-output))
536 (setf b-done t)))
537 (loop
538 (when (and a-done b-done) (return))
539 (sleep 1)))
541 (terpri)
543 (defun waste (&optional (n 100000))
544 (loop repeat n do (make-string 16384)))
546 (loop for i below 100 do
547 (princ "!")
548 (force-output)
549 (sb-thread:make-thread
550 #'(lambda ()
551 (waste)))
552 (waste)
553 (sb-ext:gc))
555 (terpri)
557 (defparameter *aaa* nil)
558 (loop for i below 100 do
559 (princ "!")
560 (force-output)
561 (sb-thread:make-thread
562 #'(lambda ()
563 (let ((*aaa* (waste)))
564 (waste))))
565 (let ((*aaa* (waste)))
566 (waste))
567 (sb-ext:gc))
569 (format t "~&gc test done~%")
571 ;; this used to deadlock on session-lock
572 (sb-thread:make-thread (lambda () (sb-ext:gc)))
573 ;; expose thread creation races by exiting quickly
574 (sb-thread:make-thread (lambda ()))
576 (defun exercise-syscall (fn reference-errno)
577 (sb-thread:make-thread
578 (lambda ()
579 (loop do
580 (funcall fn)
581 (let ((errno (sb-unix::get-errno)))
582 (sleep (random 0.1d0))
583 (unless (eql errno reference-errno)
584 (format t "Got errno: ~A (~A) instead of ~A~%"
585 errno
586 (sb-unix::strerror)
587 reference-errno)
588 (force-output)
589 (sb-ext:quit :unix-status 1)))))))
591 ;; (nanosleep -1 0) does not fail on FreeBSD
592 (let* (#-freebsd
593 (nanosleep-errno (progn
594 (sb-unix:nanosleep -1 0)
595 (sb-unix::get-errno)))
596 (open-errno (progn
597 (open "no-such-file"
598 :if-does-not-exist nil)
599 (sb-unix::get-errno)))
600 (threads
601 (list
602 #-freebsd
603 (exercise-syscall (lambda () (sb-unix:nanosleep -1 0)) nanosleep-errno)
604 (exercise-syscall (lambda () (open "no-such-file"
605 :if-does-not-exist nil))
606 open-errno)
607 (sb-thread:make-thread (lambda () (loop (sb-ext:gc) (sleep 1)))))))
608 (sleep 10)
609 (princ "terminating threads")
610 (dolist (thread threads)
611 (sb-thread:terminate-thread thread)))
613 (format t "~&errno test done~%")
615 (loop repeat 100 do
616 (let ((thread (sb-thread:make-thread (lambda () (sleep 0.1)))))
617 (sb-thread:interrupt-thread
618 thread
619 (lambda ()
620 (assert (find-restart 'sb-thread:terminate-thread))))))
622 (sb-ext:gc :full t)
624 (format t "~&thread startup sigmask test done~%")
626 ;; FIXME: What is this supposed to test?
627 (sb-debug::enable-debugger)
628 (let* ((main-thread *current-thread*)
629 (interruptor-thread
630 (make-thread (lambda ()
631 (sleep 2)
632 (interrupt-thread main-thread
633 (lambda ()
634 (with-interrupts
635 (break))))
636 (sleep 2)
637 (interrupt-thread main-thread #'continue))
638 :name "interruptor")))
639 (with-session-lock (*session*)
640 (sleep 3))
641 (loop while (thread-alive-p interruptor-thread)))
643 (format t "~&session lock test done~%")
645 (loop repeat 20 do
646 (wait-for-threads
647 (loop for i below 100 collect
648 (sb-thread:make-thread (lambda ())))))
650 (format t "~&creation test done~%")
652 ;; interrupt handlers are per-thread with pthreads, make sure the
653 ;; handler installed in one thread is global
654 (sb-thread:make-thread
655 (lambda ()
656 (sb-ext:run-program "sleep" '("1") :search t :wait nil)))
658 ;;;; Binding stack safety
660 (defparameter *x* nil)
661 (defparameter *n-gcs-requested* 0)
662 (defparameter *n-gcs-done* 0)
664 (let ((counter 0))
665 (defun make-something-big ()
666 (let ((x (make-string 32000)))
667 (incf counter)
668 (let ((counter counter))
669 (sb-ext:finalize x (lambda () (format t " ~S" counter)
670 (force-output)))))))
672 (defmacro wait-for-gc ()
673 `(progn
674 (incf *n-gcs-requested*)
675 (loop while (< *n-gcs-done* *n-gcs-requested*))))
677 (defun send-gc ()
678 (loop until (< *n-gcs-done* *n-gcs-requested*))
679 (format t "G")
680 (force-output)
681 (sb-ext:gc)
682 (incf *n-gcs-done*))
684 (defun exercise-binding ()
685 (loop
686 (let ((*x* (make-something-big)))
687 (let ((*x* 42))
688 ;; at this point the binding stack looks like this:
689 ;; NO-TLS-VALUE-MARKER, *x*, SOMETHING, *x*
691 (wait-for-gc)
692 ;; sig_stop_for_gc_handler binds FREE_INTERRUPT_CONTEXT_INDEX. By
693 ;; now SOMETHING is gc'ed and the binding stack looks like this: 0,
694 ;; 0, SOMETHING, 0 (because the symbol slots are zeroed on
695 ;; unbinding but values are not).
696 (let ((*x* nil))
697 ;; bump bsp as if a BIND had just started
698 (incf sb-vm::*binding-stack-pointer* 2)
699 (wait-for-gc)
700 (decf sb-vm::*binding-stack-pointer* 2))))
702 (with-test (:name (:binding-stack-gc-safety))
703 (let (threads)
704 (unwind-protect
705 (progn
706 (push (sb-thread:make-thread #'exercise-binding) threads)
707 (push (sb-thread:make-thread (lambda ()
708 (loop
709 (sleep 0.1)
710 (send-gc))))
711 threads)
712 (sleep 4))
713 (mapc #'sb-thread:terminate-thread threads))))
715 (format t "~&binding test done~%")
717 ;;; HASH TABLES
719 (defvar *errors* nil)
721 (defun oops (e)
722 (setf *errors* e)
723 (format t "~&oops: ~A in ~S~%" e *current-thread*)
724 (sb-debug:backtrace)
725 (catch 'done))
727 (with-test (:name (:unsynchronized-hash-table))
728 ;; We expect a (probable) error here: parellel readers and writers
729 ;; on a hash-table are not expected to work -- but we also don't
730 ;; expect this to corrupt the image.
731 (let* ((hash (make-hash-table))
732 (*errors* nil)
733 (threads (list (sb-thread:make-thread
734 (lambda ()
735 (catch 'done
736 (handler-bind ((serious-condition 'oops))
737 (loop
738 ;;(princ "1") (force-output)
739 (setf (gethash (random 100) hash) 'h)))))
740 :name "writer")
741 (sb-thread:make-thread
742 (lambda ()
743 (catch 'done
744 (handler-bind ((serious-condition 'oops))
745 (loop
746 ;;(princ "2") (force-output)
747 (remhash (random 100) hash)))))
748 :name "reader")
749 (sb-thread:make-thread
750 (lambda ()
751 (catch 'done
752 (handler-bind ((serious-condition 'oops))
753 (loop
754 (sleep (random 1.0))
755 (sb-ext:gc :full t)))))
756 :name "collector"))))
757 (unwind-protect
758 (sleep 10)
759 (mapc #'sb-thread:terminate-thread threads))))
761 (format t "~&unsynchronized hash table test done~%")
763 (with-test (:name (:synchronized-hash-table))
764 (let* ((hash (make-hash-table :synchronized t))
765 (*errors* nil)
766 (threads (list (sb-thread:make-thread
767 (lambda ()
768 (catch 'done
769 (handler-bind ((serious-condition 'oops))
770 (loop
771 ;;(princ "1") (force-output)
772 (setf (gethash (random 100) hash) 'h)))))
773 :name "writer")
774 (sb-thread:make-thread
775 (lambda ()
776 (catch 'done
777 (handler-bind ((serious-condition 'oops))
778 (loop
779 ;;(princ "2") (force-output)
780 (remhash (random 100) hash)))))
781 :name "reader")
782 (sb-thread:make-thread
783 (lambda ()
784 (catch 'done
785 (handler-bind ((serious-condition 'oops))
786 (loop
787 (sleep (random 1.0))
788 (sb-ext:gc :full t)))))
789 :name "collector"))))
790 (unwind-protect
791 (sleep 10)
792 (mapc #'sb-thread:terminate-thread threads))
793 (assert (not *errors*))))
795 (format t "~&synchronized hash table test done~%")
797 (with-test (:name (:hash-table-parallel-readers))
798 (let ((hash (make-hash-table))
799 (*errors* nil))
800 (loop repeat 50
801 do (setf (gethash (random 100) hash) 'xxx))
802 (let ((threads (list (sb-thread:make-thread
803 (lambda ()
804 (catch 'done
805 (handler-bind ((serious-condition 'oops))
806 (loop
807 until (eq t (gethash (random 100) hash))))))
808 :name "reader 1")
809 (sb-thread:make-thread
810 (lambda ()
811 (catch 'done
812 (handler-bind ((serious-condition 'oops))
813 (loop
814 until (eq t (gethash (random 100) hash))))))
815 :name "reader 2")
816 (sb-thread:make-thread
817 (lambda ()
818 (catch 'done
819 (handler-bind ((serious-condition 'oops))
820 (loop
821 until (eq t (gethash (random 100) hash))))))
822 :name "reader 3")
823 (sb-thread:make-thread
824 (lambda ()
825 (catch 'done
826 (handler-bind ((serious-condition 'oops))
827 (loop
828 (sleep (random 1.0))
829 (sb-ext:gc :full t)))))
830 :name "collector"))))
831 (unwind-protect
832 (sleep 10)
833 (mapc #'sb-thread:terminate-thread threads))
834 (assert (not *errors*)))))
836 (format t "~&multiple reader hash table test done~%")
838 (with-test (:name (:hash-table-single-accessor-parallel-gc))
839 (let ((hash (make-hash-table))
840 (*errors* nil))
841 (let ((threads (list (sb-thread:make-thread
842 (lambda ()
843 (handler-bind ((serious-condition 'oops))
844 (loop
845 (let ((n (random 100)))
846 (if (gethash n hash)
847 (remhash n hash)
848 (setf (gethash n hash) 'h))))))
849 :name "accessor")
850 (sb-thread:make-thread
851 (lambda ()
852 (handler-bind ((serious-condition 'oops))
853 (loop
854 (sleep (random 1.0))
855 (sb-ext:gc :full t))))
856 :name "collector"))))
857 (unwind-protect
858 (sleep 10)
859 (mapc #'sb-thread:terminate-thread threads))
860 (assert (not *errors*)))))
862 (format t "~&single accessor hash table test~%")
864 #| ;; a cll post from eric marsden
865 | (defun crash ()
866 | (setq *debugger-hook*
867 | (lambda (condition old-debugger-hook)
868 | (debug:backtrace 10)
869 | (unix:unix-exit 2)))
870 | #+live-dangerously
871 | (mp::start-sigalrm-yield)
872 | (flet ((roomy () (loop (with-output-to-string (*standard-output*) (room)))))
873 | (mp:make-process #'roomy)
874 | (mp:make-process #'roomy)))
877 ;;; KLUDGE: No deadlines while waiting on lutex-based condition variables. This test
878 ;;; would just hang.
879 #-sb-lutex
880 (with-test (:name (:condition-variable :wait-multiple))
881 (loop repeat 40 do
882 (let ((waitqueue (sb-thread:make-waitqueue :name "Q"))
883 (mutex (sb-thread:make-mutex :name "M"))
884 (failedp nil))
885 (format t ".")
886 (finish-output t)
887 (let ((threads (loop repeat 200
888 collect
889 (sb-thread:make-thread
890 (lambda ()
891 (handler-case
892 (sb-sys:with-deadline (:seconds 0.01)
893 (sb-thread:with-mutex (mutex)
894 (sb-thread:condition-wait waitqueue
895 mutex)
896 (setq failedp t)))
897 (sb-sys:deadline-timeout (c)
898 (declare (ignore c)))))))))
899 (mapc #'sb-thread:join-thread threads)
900 (assert (not failedp))))))
902 (with-test (:name (:condition-variable :notify-multiple))
903 (flet ((tester (notify-fun)
904 (let ((queue (make-waitqueue :name "queue"))
905 (lock (make-mutex :name "lock"))
906 (data nil))
907 (labels ((test (x)
908 (loop
909 (with-mutex (lock)
910 (format t "condition-wait ~a~%" x)
911 (force-output)
912 (condition-wait queue lock)
913 (format t "woke up ~a~%" x)
914 (force-output)
915 (push x data)))))
916 (let ((threads (loop for x from 1 to 10
917 collect
918 (let ((x x))
919 (sb-thread:make-thread (lambda ()
920 (test x)))))))
921 (sleep 5)
922 (with-mutex (lock)
923 (funcall notify-fun queue))
924 (sleep 5)
925 (mapcar #'terminate-thread threads)
926 ;; Check that all threads woke up at least once
927 (assert (= (length (remove-duplicates data)) 10)))))))
928 (tester (lambda (queue)
929 (format t "~&(condition-notify queue 10)~%")
930 (force-output)
931 (condition-notify queue 10)))
932 (tester (lambda (queue)
933 (format t "~&(condition-broadcast queue)~%")
934 (force-output)
935 (condition-broadcast queue)))))
937 (format t "waitqueue wakeup tests done~%")
939 (with-test (:name (:mutex :finalization))
940 (let ((a nil))
941 (dotimes (i 500000)
942 (setf a (make-mutex)))))
944 (format t "mutex finalization test done~%")
946 ;;; Check that INFO is thread-safe, at least when we're just doing reads.
948 (let* ((symbols (loop repeat 10000 collect (gensym)))
949 (functions (loop for (symbol . rest) on symbols
950 for next = (car rest)
951 for fun = (let ((next next))
952 (lambda (n)
953 (if next
954 (funcall next (1- n))
955 n)))
956 do (setf (symbol-function symbol) fun)
957 collect fun)))
958 (defun infodb-test ()
959 (funcall (car functions) 9999)))
961 (with-test (:name (:infodb :read))
962 (let* ((ok t)
963 (threads (loop for i from 0 to 10
964 collect (sb-thread:make-thread
965 (lambda ()
966 (dotimes (j 100)
967 (write-char #\-)
968 (finish-output)
969 (let ((n (infodb-test)))
970 (unless (zerop n)
971 (setf ok nil)
972 (format t "N != 0 (~A)~%" n)
973 (sb-ext:quit)))))))))
974 (wait-for-threads threads)
975 (assert ok)))
977 (format t "infodb test done~%")
979 (with-test (:name (:backtrace))
980 ;; Printing backtraces from several threads at once used to hang the
981 ;; whole SBCL process (discovered by accident due to a timer.impure
982 ;; test misbehaving). The cause was that packages weren't even
983 ;; thread-safe for only doing FIND-SYMBOL, and while printing
984 ;; backtraces a loot of symbol lookups need to be done due to
985 ;; *PRINT-ESCAPE*.
986 (let* ((threads (loop repeat 10
987 collect (sb-thread:make-thread
988 (lambda ()
989 (dotimes (i 1000)
990 (with-output-to-string (*debug-io*)
991 (sb-debug::backtrace 10))))))))
992 (wait-for-threads threads)))
994 (format t "backtrace test done~%")
996 (format t "~&starting gc deadlock test: WARNING: THIS TEST WILL HANG ON FAILURE!~%")
998 (with-test (:name (:gc-deadlock))
999 ;; Prior to 0.9.16.46 thread exit potentially deadlocked the
1000 ;; GC due to *all-threads-lock* and session lock. On earlier
1001 ;; versions and at least on one specific box this test is good enough
1002 ;; to catch that typically well before the 1500th iteration.
1003 (loop
1004 with i = 0
1005 with n = 3000
1006 while (< i n)
1008 (incf i)
1009 (when (zerop (mod i 100))
1010 (write-char #\.)
1011 (force-output))
1012 (handler-case
1013 (if (oddp i)
1014 (sb-thread:make-thread
1015 (lambda ()
1016 (sleep (random 0.001)))
1017 :name (list :sleep i))
1018 (sb-thread:make-thread
1019 (lambda ()
1020 ;; KLUDGE: what we are doing here is explicit,
1021 ;; but the same can happen because of a regular
1022 ;; MAKE-THREAD or LIST-ALL-THREADS, and various
1023 ;; session functions.
1024 (sb-thread::with-all-threads-lock
1025 (sb-thread::with-session-lock (sb-thread::*session*)
1026 (sb-ext:gc))))
1027 :name (list :gc i)))
1028 (error (e)
1029 (format t "~%error creating thread ~D: ~A -- backing off for retry~%" i e)
1030 (sleep 0.1)
1031 (incf i)))))
1033 (format t "~&gc deadlock test done~%")
1035 (let ((count (make-array 8 :initial-element 0)))
1036 (defun closure-one ()
1037 (declare (optimize safety))
1038 (values (incf (aref count 0)) (incf (aref count 1))
1039 (incf (aref count 2)) (incf (aref count 3))
1040 (incf (aref count 4)) (incf (aref count 5))
1041 (incf (aref count 6)) (incf (aref count 7))))
1042 (defun no-optimizing-away-closure-one ()
1043 (setf count (make-array 8 :initial-element 0))))
1045 (defstruct box
1046 (count 0))
1048 (let ((one (make-box))
1049 (two (make-box))
1050 (three (make-box)))
1051 (defun closure-two ()
1052 (declare (optimize safety))
1053 (values (incf (box-count one)) (incf (box-count two)) (incf (box-count three))))
1054 (defun no-optimizing-away-closure-two ()
1055 (setf one (make-box)
1056 two (make-box)
1057 three (make-box))))
1059 (with-test (:name (:funcallable-instances))
1060 ;; the funcallable-instance implementation used not to be threadsafe
1061 ;; against setting the funcallable-instance function to a closure
1062 ;; (because the code and lexenv were set separately).
1063 (let ((fun (sb-kernel:%make-funcallable-instance 0))
1064 (condition nil))
1065 (setf (sb-kernel:funcallable-instance-fun fun) #'closure-one)
1066 (flet ((changer ()
1067 (loop (setf (sb-kernel:funcallable-instance-fun fun) #'closure-one)
1068 (setf (sb-kernel:funcallable-instance-fun fun) #'closure-two)))
1069 (test ()
1070 (handler-case (loop (funcall fun))
1071 (serious-condition (c) (setf condition c)))))
1072 (let ((changer (make-thread #'changer))
1073 (test (make-thread #'test)))
1074 (handler-case
1075 (progn
1076 ;; The two closures above are fairly carefully crafted
1077 ;; so that if given the wrong lexenv they will tend to
1078 ;; do some serious damage, but it is of course difficult
1079 ;; to predict where the various bits and pieces will be
1080 ;; allocated. Five seconds failed fairly reliably on
1081 ;; both my x86 and x86-64 systems. -- CSR, 2006-09-27.
1082 (sb-ext:with-timeout 5
1083 (wait-for-threads (list test)))
1084 (error "~@<test thread got condition:~2I~_~A~@:>" condition))
1085 (sb-ext:timeout ()
1086 (terminate-thread changer)
1087 (terminate-thread test)
1088 (wait-for-threads (list changer test))))))))
1090 (format t "~&funcallable-instance test done~%")
1092 (defun random-type (n)
1093 `(integer ,(random n) ,(+ n (random n))))
1095 (defun subtypep-hash-cache-test ()
1096 (dotimes (i 10000)
1097 (let ((type1 (random-type 500))
1098 (type2 (random-type 500)))
1099 (let ((a (subtypep type1 type2)))
1100 (dotimes (i 100)
1101 (assert (eq (subtypep type1 type2) a))))))
1102 (format t "ok~%")
1103 (force-output))
1105 (with-test (:name '(:hash-cache :subtypep))
1106 (dotimes (i 10)
1107 (sb-thread:make-thread #'subtypep-hash-cache-test)))
1108 (format t "hash-cache tests done~%")
1110 ;;;; BLACK BOX TESTS
1112 (in-package :cl-user)
1113 (use-package :test-util)
1114 (use-package "ASSERTOID")
1116 (format t "parallel defclass test -- WARNING, WILL HANG ON FAILURE!~%")
1117 (with-test (:name :parallel-defclass)
1118 (defclass test-1 () ((a :initform :orig-a)))
1119 (defclass test-2 () ((b :initform :orig-b)))
1120 (defclass test-3 (test-1 test-2) ((c :initform :orig-c)))
1121 (let* ((run t)
1122 (d1 (sb-thread:make-thread (lambda ()
1123 (loop while run
1124 do (defclass test-1 () ((a :initform :new-a)))
1125 (write-char #\1)
1126 (force-output)))
1127 :name "d1"))
1128 (d2 (sb-thread:make-thread (lambda ()
1129 (loop while run
1130 do (defclass test-2 () ((b :initform :new-b)))
1131 (write-char #\2)
1132 (force-output)))
1133 :name "d2"))
1134 (d3 (sb-thread:make-thread (lambda ()
1135 (loop while run
1136 do (defclass test-3 (test-1 test-2) ((c :initform :new-c)))
1137 (write-char #\3)
1138 (force-output)))
1139 :name "d3"))
1140 (i (sb-thread:make-thread (lambda ()
1141 (loop while run
1142 do (let ((i (make-instance 'test-3)))
1143 (assert (member (slot-value i 'a) '(:orig-a :new-a)))
1144 (assert (member (slot-value i 'b) '(:orig-b :new-b)))
1145 (assert (member (slot-value i 'c) '(:orig-c :new-c))))
1146 (write-char #\i)
1147 (force-output)))
1148 :name "i")))
1149 (format t "~%sleeping!~%")
1150 (sleep 2.0)
1151 (format t "~%stopping!~%")
1152 (setf run nil)
1153 (mapc (lambda (th)
1154 (sb-thread:join-thread th)
1155 (format t "~%joined ~S~%" (sb-thread:thread-name th)))
1156 (list d1 d2 d3 i))))
1157 (format t "parallel defclass test done~%")