0.8.14.5: Join the foreign legion!
[sbcl.git] / src / code / foreign.lisp
1 ;;;; Foreign symbol linkage
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
11
12 (in-package "SB!IMPL")
13
14 ;;; *STATIC-FOREIGN-SYMBOLS* are static as opposed to "dynamic" (not
15 ;;; as opposed to C's "extern"). The table contains symbols known at
16 ;;; the time that the program was built, but not symbols defined in
17 ;;; object files which have been loaded dynamically since then.
18 (declaim (type hash-table *static-foreign-symbols*))
19 (defvar *static-foreign-symbols* (make-hash-table :test 'equal))
20
21 (defun find-foreign-symbol-in-table (name table)
22   (some (lambda (prefix)
23           (gethash (concatenate 'string prefix name) table))
24         #("" "ldso_stub__")))
25
26 (defun foreign-symbol-address-as-integer-or-nil (name &optional datap)
27   (declare (ignorable datap))
28   (or (find-foreign-symbol-in-table name  *static-foreign-symbols*)
29       #!+os-provides-dlopen
30       (progn
31         #-sb-xc-host
32         (values #!-linkage-table
33                 (get-dynamic-foreign-symbol-address name)
34                 #!+linkage-table
35                 (ensure-foreign-symbol-linkage name datap)
36                 t))))
37
38 (defun foreign-symbol-address-as-integer (name &optional datap)
39   (or (foreign-symbol-address-as-integer-or-nil name datap)
40       (error "Unknown foreign symbol: ~S" name)))
41
42 (defun foreign-symbol-address (symbol &optional datap)
43   (declare (ignorable datap))
44   (let ((name (sb!vm:extern-alien-name symbol)))
45     #!-linkage-table
46     (int-sap (foreign-symbol-address-as-integer name))
47     #!+linkage-table
48     (multiple-value-bind (addr sharedp)
49         (foreign-symbol-address-as-integer name datap)
50       #+sb-xc-host
51       (aver (not sharedp))
52       ;; If the address is from linkage-table and refers to data
53       ;; we need to do a bit of juggling.
54       (if (and sharedp datap)
55           ;; FIXME: 64bit badness here
56           (int-sap (sap-ref-32 (int-sap addr) 0))
57           (int-sap addr)))))
58
59 (defun foreign-reinit ()
60   #!+os-provides-dlopen
61   (reopen-shared-objects)
62   #!+linkage-table
63   (linkage-table-reinit))
64
65 ;;; Cleanups before saving a core
66 (defun foreign-deinit ()
67   #!+(and os-provides-dlopen (not linkage-table))
68   (let ((shared (remove-if #'null (mapcar #'sb!alien::shared-object-file
69                                           *shared-objects*))))
70     (when shared
71       (warn "~@<Saving cores with shared objects loaded is unsupported on ~
72             this platform: calls to foreign functions in shared objects ~
73             from the restarted core will not work. You may be able to ~
74             work around this limitation by reloading all foreign definitions ~
75             and code using them in the restarted core, but no guarantees.~%~%~
76             Shared objects in this image:~% ~{~A~^, ~}~:@>"
77             shared)))
78   #!+os-provides-dlopen
79   (close-shared-objects))
80
81 (defun foreign-symbol-in-address (sap)
82   (declare (ignorable sap))
83   #-sb-xc-host
84   (let ((addr (sap-int sap)))
85     (declare (ignorable addr))
86     #!+linkage-table
87     (when (<= sb!vm:linkage-table-space-start
88               addr
89               sb!vm:linkage-table-space-end)
90       (maphash (lambda (name info)
91                  (let ((table-addr (linkage-info-address info)))
92                    (when (<= table-addr
93                              addr
94                              (+ table-addr sb!vm:linkage-table-entry-size))
95                      (return-from foreign-symbol-in-address name))))
96                *linkage-info*))
97     #!+os-provides-dladdr
98     (with-alien ((info (struct dl-info
99                                (filename c-string)
100                                (base unsigned)
101                                (symbol c-string)
102                                (symbol-address unsigned)))
103                  (dladdr (function unsigned unsigned (* (struct dl-info)))
104                          :extern "dladdr"))
105       (let ((err (alien-funcall dladdr addr (addr info))))
106         (if (zerop err)
107             nil
108             (slot info 'symbol))))
109     ;; FIXME: Even in the absence of dladdr we could search the
110     ;; static foreign symbols (and *linkage-info*, for that matter).
111     ))
112
113 ;;; How we learn about foreign symbols and dlhandles initially
114 (defvar *!initial-foreign-symbols*)
115
116 (defun !foreign-cold-init ()
117   (dolist (symbol *!initial-foreign-symbols*)
118     (setf (gethash (car symbol) *static-foreign-symbols*) (cdr symbol)))
119   #!+os-provides-dlopen
120   (setf *runtime-dlhandle* (dlopen-or-lose nil)
121         *shared-objects* nil))
122
123 #!-os-provides-dlopen
124 (define-unsupported-fun load-shared-object)