1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; indent-tabs-mode: nil -*-
3 ;;; --- *UNIX foreign function definitions.
6 (in-package :iolib.syscalls
)
8 ;;; Needed for clock_gettime() and friends.
9 #+linux
(load-foreign-library "librt.so")
12 ;;;-------------------------------------------------------------------------
13 ;;; ERRNO-related functions
14 ;;;-------------------------------------------------------------------------
16 (defentrypoint (setf %sys-errno
) (value)
17 (%%sys-set-errno value
))
19 (defentrypoint %sys-strerror
(&optional
(err (%sys-errno
)))
20 "Look up the error message string for ERRNO. (reentrant)"
23 (foreign-enum-value 'errno-values err
)
25 (with-foreign-pointer-as-string ((buf bufsiz
) 1024)
26 (%sys-strerror-r errno buf bufsiz
))))
28 (defmethod print-object ((posix-error posix-error
) stream
)
29 (print-unreadable-object (posix-error stream
:type nil
:identity nil
)
30 (let ((code (code-of posix-error
))
31 (identifier (identifier-of posix-error
)))
32 (format stream
"POSIX Error ~A code: ~S ~S"
33 identifier
(or code
"[No code]")
34 (or (%sys-strerror code
) "[Can't get error string.]")))))
37 ;;;-------------------------------------------------------------------------
38 ;;; Memory manipulation
39 ;;;-------------------------------------------------------------------------
41 (defcfun* ("memset" %sys-memset
) :pointer
46 (defentrypoint %sys-bzero
(buffer length
)
47 (%sys-memset buffer
0 length
))
49 (defcfun* ("memcpy" %sys-memcpy
) :pointer
54 (defcfun* ("memmove" %sys-memmove
) :pointer
60 ;;;-------------------------------------------------------------------------
62 ;;;-------------------------------------------------------------------------
64 (defsyscall* ("read" %sys-read
) ssize-t
65 "Read at most COUNT bytes from FD into the foreign area BUF."
70 (defsyscall* ("write" %sys-write
) ssize-t
71 "Write at most COUNT bytes to FD from the foreign area BUF."
77 ;;;-------------------------------------------------------------------------
79 ;;;-------------------------------------------------------------------------
81 (defsyscall* ("open" %%sys-open
) :int
82 (pathname filename-designator
)
86 (defvar *default-open-mode
* #o666
)
88 (defentrypoint %sys-open
(pathname flags
&optional
(mode *default-open-mode
*))
89 (%%sys-open pathname flags mode
))
91 (defsyscall* ("creat" %sys-creat
) :int
92 (pathname filename-designator
)
95 (defsyscall ("pipe" %%sys-pipe
) :int
98 (defentrypoint %sys-pipe
()
99 "Create pipe, returns two values with the new FDs."
100 (with-foreign-object (filedes :int
2)
102 (values (mem-aref filedes
:int
0)
103 (mem-aref filedes
:int
1))))
105 (defsyscall ("mkfifo" %sys-mkfifo
) :int
106 "Create a FIFO (named pipe)."
107 (path filename-designator
)
110 (defsyscall "umask" mode-t
111 "Sets the umask and returns the old one"
114 (defsyscall ("access" %sys-access
) :int
115 (path filename-designator
)
118 (defsyscall ("rename" %sys-rename
) :int
120 (old filename-designator
)
121 (new filename-designator
))
123 (defsyscall ("link" %sys-link
) :int
124 (path1 filename-designator
)
125 (path2 filename-designator
))
127 (defsyscall ("symlink" %sys-symlink
) :int
128 "Creates a symbolic link"
129 (name1 filename-designator
)
130 (name2 filename-designator
))
132 (defsyscall ("readlink" %%sys-readlink
) ssize-t
133 (path filename-designator
)
137 (defentrypoint %sys-readlink
(path)
138 "Read value of a symbolic link."
139 (with-foreign-pointer (buf 4096 bufsize
)
140 (let ((count (%%sys-readlink path buf bufsize
)))
141 (values (foreign-string-to-lisp buf
:count count
)))))
143 (defsyscall ("unlink" %sys-unlink
) :int
144 (path filename-designator
))
146 (defsyscall* ("chown" %sys-chown
) :int
147 "Change ownership of a file."
148 (path filename-designator
)
152 (defsyscall* ("fchown" %sys-fchown
) :int
153 "Change ownership of an open file."
158 (defsyscall* ("lchown" %sys-lchown
) :int
159 "Change ownership of a file or symlink."
160 (path filename-designator
)
164 (defsyscall* ("chmod" %sys-chmod
) :int
165 (path filename-designator
)
168 (defsyscall* ("fchmod" %sys-fchmod
) :int
174 (define-c-struct-wrapper stat
())
176 (defconstant +stat-version-linux
+ 3)
178 ;;; If necessary for performance reasons, we can add an optional
179 ;;; argument to this function and use that to reuse a wrapper object.
180 (defentrypoint funcall-stat
(fn arg
)
181 (with-foreign-object (buf 'stat
)
183 (make-instance 'stat
:pointer buf
)))
185 (defentrypoint %sys-stat
(path)
186 "Get information about a file."
187 (funcall-stat #'%%sys-stat path
))
189 (defentrypoint %sys-fstat
(fd)
190 "Get information about a file descriptor"
191 (funcall-stat #'%%sys-fstat fd
))
193 (defentrypoint %sys-lstat
(path)
194 "Get information about a file or symlink."
195 (funcall-stat #'%%sys-lstat path
))
197 (defsyscall ("sync" %sys-sync
) :void
198 "Schedule all file system buffers to be written to disk.")
200 (defsyscall* ("fsync" %sys-fsync
) :int
203 (defsyscall ("mkstemp" %%sys-mkstemp
) :int
204 (template filename-designator
))
206 (defentrypoint %sys-mkstemp
(&optional
(template ""))
207 (let ((template (concatenate 'string template
"XXXXXX")))
208 (with-foreign-string (ptr (filename template
))
209 (values (%%sys-mkstemp ptr
) (foreign-string-to-lisp ptr
)))))
212 ;;;-------------------------------------------------------------------------
214 ;;;-------------------------------------------------------------------------
216 (defsyscall "mkdir" :int
217 "Create a directory."
218 (path filename-designator
)
221 (defsyscall ("rmdir" %sys-rmdir
) :int
222 (path filename-designator
))
224 (defsyscall ("chdir" %sys-chdir
) :int
225 "Changes the current working directory"
226 (path filename-designator
))
228 (defsyscall* ("fchdir" %sys-fchdir
) :int
231 (defsyscall ("getcwd" %%sys-getcwd
) :string
235 (defentrypoint %sys-getcwd
()
236 "Returns the current working directory as a string."
237 (with-foreign-pointer (buf path-max size
)
238 (%%sys-getcwd buf size
)))
240 (defsyscall ("mkdtemp" %%sys-mkdtemp
) :int
241 (template filename-designator
))
243 (defentrypoint %sys-mkdtemp
(&optional
(template ""))
244 (let ((template (concatenate 'string template
"XXXXXX")))
245 (with-foreign-string (ptr (filename template
))
246 (values (%%sys-mkdtemp ptr
) (foreign-string-to-lisp ptr
)))))
249 ;;;-------------------------------------------------------------------------
251 ;;;-------------------------------------------------------------------------
253 (defsyscall ("close" %sys-close
) :int
254 "Close an open file descriptor."
257 (defsyscall ("dup" %sys-dup
) :int
260 (defsyscall* ("dup2" %sys-dup2
) :int
264 (defsyscall* ("ioctl" %sys-ioctl
/2) :int
268 (defsyscall* ("ioctl" %sys-ioctl
/3) :int
273 (defentrypoint %sys-fd-open-p
(fd)
274 (not (minusp (%sys-fstat fd
))))
277 ;;;-------------------------------------------------------------------------
278 ;;; File descriptor polling
279 ;;;-------------------------------------------------------------------------
281 ;;; FIXME: Until a way to autodetect platform features is implemented
282 #+(or darwin freebsd
)
283 (defconstant pollrdhup
0)
285 (defsyscall ("poll" %sys-poll
) :int
286 "Scan for I/O activity on multiple file descriptors."
292 ;;;-------------------------------------------------------------------------
294 ;;;-------------------------------------------------------------------------
296 (defsyscall ("munmap" %sys-munmap
) :int
297 "Unmap pages of memory."
302 ;;;-------------------------------------------------------------------------
304 ;;;-------------------------------------------------------------------------
306 (defsyscall* ("usleep" %sys-usleep
) :int
307 (useconds useconds-t
))
309 (defsyscall ("time" %%sys-time
) time-t
312 (defentrypoint %sys-time
()
313 (%%sys-time
(null-pointer)))
315 (defsyscall ("gettimeofday" %%sys-gettimeofday
) :int
319 (defentrypoint %sys-gettimeofday
()
320 "Return the time in seconds and microseconds."
321 (with-foreign-object (tv 'timeval
)
322 (with-foreign-slots ((sec usec
) tv timeval
)
323 (%%sys-gettimeofday tv
(null-pointer))
326 ;;; FIXME: or we can implement this through the MACH functions.
329 (defctype kern-return-t
:int
)
330 (defctype clock-res-t
:int
)
331 (defctype clock-id-t
:int
)
332 (defctype port-t
:unsigned-int
) ; not sure
333 (defctype clock-serv-t port
)
335 (defconstant kern-success
0)
337 (defconstant system-clock
0)
338 (defconstant calendar-clock
1)
339 (defconstant realtime-clock
0)
341 (defsyscall ("mach_host_self" %sys-mach-host-self
) port-t
)
343 (defsyscall ("host_get_clock_service" %%sys-host-get-clock-service
) kern-return-t
346 (clock-name (:pointer clock-serv-t
)))
348 (defentrypoint %sys-host-get-clock-service
(id &optional
(host (%sys-mach-host-self
)))
349 (with-foreign-object (clock 'clock-serv-t
)
350 (%%sys-host-get-clock-service host id clock
)
351 (mem-ref clock
:int
)))
353 (defsyscall ("clock_get_time" %clock-get-time
) kern-return-t
354 (clock-serv clock-serv-t
)
357 (defentrypoint clock-get-time
(clock-service)
358 (with-foreign-object (time 'timespec
)
359 (%clock-get-time clock-service time
)
360 (with-foreign-slots ((tv-sec tv-nsec
) time timespec
)
361 (values tv-sec tv-nsec
)))))
365 (defsyscall ("clock_getres" %%sys-clock-getres
) :int
366 "Returns the resolution of the clock CLOCKID."
370 (defentrypoint %sys-clock-getres
(clock-id)
371 (with-foreign-object (ts 'timespec
)
372 (with-foreign-slots ((sec nsec
) ts timespec
)
373 (%%sys-clock-getres clock-id ts
)
376 (defsyscall ("clock_gettime" %%sys-clock-gettime
) :int
380 (defentrypoint %sys-clock-gettime
(clock-id)
381 "Returns the time of the clock CLOCKID."
382 (with-foreign-object (ts 'timespec
)
383 (with-foreign-slots ((sec nsec
) ts timespec
)
384 (%%sys-clock-gettime clock-id ts
)
387 (defsyscall ("clock_settime" %%sys-clock-settime
) :int
391 (defentrypoint %sys-clock-settime
(clock-id)
392 "Sets the time of the clock CLOCKID."
393 (with-foreign-object (ts 'timespec
)
394 (with-foreign-slots ((sec nsec
) ts timespec
)
395 (%%sys-clock-settime clock-id ts
)
396 (values sec nsec
)))))
398 (defentrypoint %sys-get-monotonic-time
()
399 "Gets current time in seconds from a system's monotonic clock."
400 (multiple-value-bind (seconds nanoseconds
)
401 #-darwin
(%sys-clock-gettime clock-monotonic
)
402 #+darwin
(%sys-clock-get-time
(%sys-host-get-clock-service system-clock
))
403 (+ seconds
(/ nanoseconds
1d9
))))
406 ;;;-------------------------------------------------------------------------
408 ;;;-------------------------------------------------------------------------
410 (defcvar ("environ" :read-only t
) (:pointer
:string
))
412 (defsyscall ("getenv" %sys-getenv
) :string
413 "Returns the value of an environment variable"
416 (defsyscall ("setenv" %sys-setenv
) :int
417 "Changes the value of an environment variable"
420 (overwrite bool-designator
))
422 (defsyscall ("unsetenv" %sys-unsetenv
) :int
423 "Removes the binding of an environment variable"
427 ;;;-------------------------------------------------------------------------
429 ;;;-------------------------------------------------------------------------
431 (defsyscall ("gethostname" %%sys-gethostname
) :int
435 (defentrypoint %sys-gethostname
()
436 (with-foreign-pointer-as-string ((cstr size
) 256)
437 (%%sys-gethostname cstr size
)))
439 (defsyscall ("getdomainname" %%sys-getdomainname
) :int
443 (defentrypoint %sys-getdomainname
()
444 (with-foreign-pointer-as-string ((cstr size
) 256)
445 (%%sys-getdomainname cstr size
)))