result in fasl-dumping internal type objects. (lp#890750)
* bug fix: type mismatch on (setf aref) and function return values no
longer result in fasl-dumping internal type objects.
- * bug fix: SB-BSD-SOCKETS foreign memory leaks
- ** GET-PROTOCOL-BY-NAME had a significant leak.
- ** GET-HOST-BY-NAME and GET-HOST-BY-ADDRESS leaked 1 word per call on
- systems providing getaddrinfo().
+ * bug fix: SB-BSD-SOCKETS issues
+ ** GET-PROTOCOL-BY-NAME had a significant memory leak.
+ ** GET-HOST-BY-NAME and GET-HOST-BY-ADDRESS small amounts of memory on
+ systems with getaddrinfo().
+ ** GET-HOST-BY-NAME and GET-HOST-BY-ADDRESS weren't thread or interrupt
+ safe outside systems with getaddrinfo().
changes in sbcl-1.0.53 relative to sbcl-1.0.52:
* enhancement: on 64-bit targets, in src/compiler/generic/early-vm.lisp,
;;; Resolving
+#+(and sb-thread (not sb-bsd-sockets-addrinfo))
+(sb-ext:defglobal **gethostby-lock** (sb-thread:make-mutex :name "gethostby lock"))
+
(defun get-host-by-name (host-name)
"Returns a HOST-ENT instance for HOST-NAME or signals a NAME-SERVICE-ERROR.
HOST-NAME may also be an IP address in dotted quad notation or some other
#+sb-bsd-sockets-addrinfo
(get-address-info host-name)
#-sb-bsd-sockets-addrinfo
- (make-host-ent (sockint::gethostbyname host-name)))
+ (sb-thread::with-system-mutex (**gethostby-lock** :allow-with-interrupts t)
+ (make-host-ent (sockint::gethostbyname host-name))))
(defun get-host-by-address (address)
"Returns a HOST-ENT instance for ADDRESS, which should be a vector of
#+sb-bsd-sockets-addrinfo
(get-name-info address)
#-sb-bsd-sockets-addrinfo
- (sockint::with-in-addr packed-addr ()
- (let ((addr-vector (coerce address 'vector)))
- (loop for i from 0 below (length addr-vector)
- do (setf (sb-alien:deref (sockint::in-addr-addr packed-addr) i)
- (elt addr-vector i)))
- (make-host-ent (sockint::gethostbyaddr packed-addr
- 4
- sockint::af-inet)))))
+ (sb-thread::with-system-mutex (**gethostby-lock** :allow-with-interrupts t)
+ (sockint::with-in-addr packed-addr ()
+ (let ((addr-vector (coerce address 'vector)))
+ (loop for i from 0 below (length addr-vector)
+ do (setf (sb-alien:deref (sockint::in-addr-addr packed-addr) i)
+ (elt addr-vector i)))
+ (make-host-ent (sockint::gethostbyaddr packed-addr
+ 4
+ sockint::af-inet))))))
;;; Emulate the above two functions with getaddrinfo / getnameinfo