2014-05-10 15:49:11 -04:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2016-02-03 05:18:57 -05:00
|
|
|
|
;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
2015-05-31 21:40:29 -04:00
|
|
|
|
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
2014-05-10 15:49:11 -04:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (guix build syscalls)
|
|
|
|
|
#:use-module (system foreign)
|
|
|
|
|
#:use-module (rnrs bytevectors)
|
|
|
|
|
#:use-module (srfi srfi-1)
|
2015-07-25 07:06:01 -04:00
|
|
|
|
#:use-module (srfi srfi-9)
|
|
|
|
|
#:use-module (srfi srfi-9 gnu)
|
2014-05-10 15:49:11 -04:00
|
|
|
|
#:use-module (ice-9 rdelim)
|
2014-09-14 16:56:12 -04:00
|
|
|
|
#:use-module (ice-9 regex)
|
2014-05-10 15:49:11 -04:00
|
|
|
|
#:use-module (ice-9 match)
|
2014-05-14 10:35:35 -04:00
|
|
|
|
#:use-module (ice-9 ftw)
|
2014-05-10 15:49:11 -04:00
|
|
|
|
#:export (errno
|
|
|
|
|
MS_RDONLY
|
2015-05-31 21:40:29 -04:00
|
|
|
|
MS_NOSUID
|
|
|
|
|
MS_NODEV
|
|
|
|
|
MS_NOEXEC
|
2014-05-10 15:49:11 -04:00
|
|
|
|
MS_REMOUNT
|
|
|
|
|
MS_BIND
|
|
|
|
|
MS_MOVE
|
2015-05-31 21:40:29 -04:00
|
|
|
|
MS_STRICTATIME
|
2015-06-25 08:29:26 -04:00
|
|
|
|
MNT_FORCE
|
|
|
|
|
MNT_DETACH
|
|
|
|
|
MNT_EXPIRE
|
|
|
|
|
UMOUNT_NOFOLLOW
|
2015-05-21 17:23:47 -04:00
|
|
|
|
restart-on-EINTR
|
2014-05-10 15:49:11 -04:00
|
|
|
|
mount
|
2014-05-14 10:35:35 -04:00
|
|
|
|
umount
|
2014-11-10 12:14:20 -05:00
|
|
|
|
mount-points
|
2014-09-18 14:19:56 -04:00
|
|
|
|
swapon
|
|
|
|
|
swapoff
|
2014-09-14 15:39:51 -04:00
|
|
|
|
processes
|
2015-06-24 20:50:34 -04:00
|
|
|
|
mkdtemp!
|
2015-06-25 20:17:46 -04:00
|
|
|
|
pivot-root
|
2014-09-14 16:12:35 -04:00
|
|
|
|
|
2015-09-05 14:10:08 -04:00
|
|
|
|
CLONE_CHILD_CLEARTID
|
|
|
|
|
CLONE_CHILD_SETTID
|
2015-05-31 20:26:47 -04:00
|
|
|
|
CLONE_NEWNS
|
|
|
|
|
CLONE_NEWUTS
|
|
|
|
|
CLONE_NEWIPC
|
|
|
|
|
CLONE_NEWUSER
|
|
|
|
|
CLONE_NEWPID
|
|
|
|
|
CLONE_NEWNET
|
|
|
|
|
clone
|
2015-06-08 08:43:05 -04:00
|
|
|
|
setns
|
2015-05-31 20:26:47 -04:00
|
|
|
|
|
2015-07-25 06:22:30 -04:00
|
|
|
|
PF_PACKET
|
|
|
|
|
AF_PACKET
|
2014-09-14 16:12:35 -04:00
|
|
|
|
IFF_UP
|
|
|
|
|
IFF_BROADCAST
|
|
|
|
|
IFF_LOOPBACK
|
2015-07-25 05:46:31 -04:00
|
|
|
|
all-network-interface-names
|
|
|
|
|
network-interface-names
|
2014-09-14 16:12:35 -04:00
|
|
|
|
network-interface-flags
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
loopback-network-interface?
|
|
|
|
|
network-interface-address
|
|
|
|
|
set-network-interface-flags
|
|
|
|
|
set-network-interface-address
|
2015-05-17 17:20:59 -04:00
|
|
|
|
set-network-interface-up
|
2015-07-25 07:06:01 -04:00
|
|
|
|
configure-network-interface
|
|
|
|
|
|
|
|
|
|
interface?
|
|
|
|
|
interface-name
|
|
|
|
|
interface-flags
|
|
|
|
|
interface-address
|
|
|
|
|
interface-netmask
|
|
|
|
|
interface-broadcast-address
|
|
|
|
|
network-interfaces))
|
2014-05-10 15:49:11 -04:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; This module provides bindings to libc's syscall wrappers. It uses the
|
|
|
|
|
;;; FFI, and thus requires a dynamically-linked Guile. (For statically-linked
|
|
|
|
|
;;; Guile, we instead apply 'guile-linux-syscalls.patch'.)
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(define %libc-errno-pointer
|
|
|
|
|
;; Glibc's 'errno' pointer.
|
|
|
|
|
(let ((errno-loc (dynamic-func "__errno_location" (dynamic-link))))
|
|
|
|
|
(and errno-loc
|
|
|
|
|
(let ((proc (pointer->procedure '* errno-loc '())))
|
|
|
|
|
(proc)))))
|
|
|
|
|
|
|
|
|
|
(define errno
|
|
|
|
|
(if %libc-errno-pointer
|
|
|
|
|
(let ((bv (pointer->bytevector %libc-errno-pointer (sizeof int))))
|
|
|
|
|
(lambda ()
|
|
|
|
|
"Return the current errno."
|
|
|
|
|
;; XXX: We assume that nothing changes 'errno' while we're doing all this.
|
|
|
|
|
;; In particular, that means that no async must be running here.
|
|
|
|
|
|
|
|
|
|
;; Use one of the fixed-size native-ref procedures because they are
|
|
|
|
|
;; optimized down to a single VM instruction, which reduces the risk
|
|
|
|
|
;; that we fiddle with 'errno' (needed on Guile 2.0.5, libc 2.11.)
|
|
|
|
|
(let-syntax ((ref (lambda (s)
|
|
|
|
|
(syntax-case s ()
|
|
|
|
|
((_ bv)
|
|
|
|
|
(case (sizeof int)
|
|
|
|
|
((4)
|
|
|
|
|
#'(bytevector-s32-native-ref bv 0))
|
|
|
|
|
((8)
|
|
|
|
|
#'(bytevector-s64-native-ref bv 0))
|
|
|
|
|
(else
|
|
|
|
|
(error "unsupported 'int' size"
|
|
|
|
|
(sizeof int)))))))))
|
|
|
|
|
(ref bv))))
|
|
|
|
|
(lambda () 0)))
|
|
|
|
|
|
2015-05-21 17:23:47 -04:00
|
|
|
|
(define (call-with-restart-on-EINTR thunk)
|
|
|
|
|
(let loop ()
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
thunk
|
|
|
|
|
(lambda args
|
|
|
|
|
(if (= (system-error-errno args) EINTR)
|
|
|
|
|
(loop)
|
|
|
|
|
(apply throw args))))))
|
|
|
|
|
|
|
|
|
|
(define-syntax-rule (restart-on-EINTR expr)
|
|
|
|
|
"Evaluate EXPR and restart upon EINTR. Return the value of EXPR."
|
|
|
|
|
(call-with-restart-on-EINTR (lambda () expr)))
|
|
|
|
|
|
2014-05-10 15:49:11 -04:00
|
|
|
|
(define (augment-mtab source target type options)
|
|
|
|
|
"Augment /etc/mtab with information about the given mount point."
|
|
|
|
|
(let ((port (open-file "/etc/mtab" "a")))
|
|
|
|
|
(format port "~a ~a ~a ~a 0 0~%"
|
|
|
|
|
source target type (or options "rw"))
|
|
|
|
|
(close-port port)))
|
|
|
|
|
|
|
|
|
|
(define (read-mtab port)
|
|
|
|
|
"Read an mtab-formatted file from PORT, returning a list of tuples."
|
|
|
|
|
(let loop ((result '()))
|
|
|
|
|
(let ((line (read-line port)))
|
|
|
|
|
(if (eof-object? line)
|
|
|
|
|
(reverse result)
|
|
|
|
|
(loop (cons (string-tokenize line) result))))))
|
|
|
|
|
|
|
|
|
|
(define (remove-from-mtab target)
|
|
|
|
|
"Remove mount point TARGET from /etc/mtab."
|
|
|
|
|
(define entries
|
|
|
|
|
(remove (match-lambda
|
|
|
|
|
((device mount-point type options freq passno)
|
|
|
|
|
(string=? target mount-point))
|
|
|
|
|
(_ #f))
|
2014-11-13 18:41:01 -05:00
|
|
|
|
(call-with-input-file "/etc/mtab" read-mtab)))
|
2014-05-10 15:49:11 -04:00
|
|
|
|
|
2014-11-13 18:41:01 -05:00
|
|
|
|
(call-with-output-file "/etc/mtab"
|
2014-05-10 15:49:11 -04:00
|
|
|
|
(lambda (port)
|
|
|
|
|
(for-each (match-lambda
|
|
|
|
|
((device mount-point type options freq passno)
|
|
|
|
|
(format port "~a ~a ~a ~a ~a ~a~%"
|
|
|
|
|
device mount-point type options freq passno)))
|
|
|
|
|
entries))))
|
|
|
|
|
|
|
|
|
|
;; Linux mount flags, from libc's <sys/mount.h>.
|
2015-05-31 21:40:29 -04:00
|
|
|
|
(define MS_RDONLY 1)
|
|
|
|
|
(define MS_NOSUID 2)
|
|
|
|
|
(define MS_NODEV 4)
|
|
|
|
|
(define MS_NOEXEC 8)
|
|
|
|
|
(define MS_REMOUNT 32)
|
|
|
|
|
(define MS_BIND 4096)
|
|
|
|
|
(define MS_MOVE 8192)
|
|
|
|
|
(define MS_STRICTATIME 16777216)
|
2014-05-10 15:49:11 -04:00
|
|
|
|
|
2015-06-25 08:29:26 -04:00
|
|
|
|
(define MNT_FORCE 1)
|
|
|
|
|
(define MNT_DETACH 2)
|
|
|
|
|
(define MNT_EXPIRE 4)
|
|
|
|
|
(define UMOUNT_NOFOLLOW 8)
|
|
|
|
|
|
2014-05-10 15:49:11 -04:00
|
|
|
|
(define mount
|
|
|
|
|
(let* ((ptr (dynamic-func "mount" (dynamic-link)))
|
|
|
|
|
(proc (pointer->procedure int ptr `(* * * ,unsigned-long *))))
|
|
|
|
|
(lambda* (source target type #:optional (flags 0) options
|
2015-01-05 09:07:03 -05:00
|
|
|
|
#:key (update-mtab? #f))
|
2014-05-10 15:49:11 -04:00
|
|
|
|
"Mount device SOURCE on TARGET as a file system TYPE. Optionally, FLAGS
|
|
|
|
|
may be a bitwise-or of the MS_* <sys/mount.h> constants, and OPTIONS may be a
|
|
|
|
|
string. When FLAGS contains MS_REMOUNT, SOURCE and TYPE are ignored. When
|
|
|
|
|
UPDATE-MTAB? is true, update /etc/mtab. Raise a 'system-error' exception on
|
|
|
|
|
error."
|
|
|
|
|
(let ((ret (proc (if source
|
|
|
|
|
(string->pointer source)
|
|
|
|
|
%null-pointer)
|
|
|
|
|
(string->pointer target)
|
|
|
|
|
(if type
|
|
|
|
|
(string->pointer type)
|
|
|
|
|
%null-pointer)
|
|
|
|
|
flags
|
|
|
|
|
(if options
|
|
|
|
|
(string->pointer options)
|
|
|
|
|
%null-pointer)))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(unless (zero? ret)
|
|
|
|
|
(throw 'system-error "mount" "mount ~S on ~S: ~A"
|
|
|
|
|
(list source target (strerror err))
|
|
|
|
|
(list err)))
|
|
|
|
|
(when update-mtab?
|
|
|
|
|
(augment-mtab source target type options))))))
|
|
|
|
|
|
|
|
|
|
(define umount
|
|
|
|
|
(let* ((ptr (dynamic-func "umount2" (dynamic-link)))
|
|
|
|
|
(proc (pointer->procedure int ptr `(* ,int))))
|
|
|
|
|
(lambda* (target #:optional (flags 0)
|
2015-01-05 09:07:03 -05:00
|
|
|
|
#:key (update-mtab? #f))
|
2014-05-10 15:49:11 -04:00
|
|
|
|
"Unmount TARGET. Optionally FLAGS may be one of the MNT_* or UMOUNT_*
|
|
|
|
|
constants from <sys/mount.h>."
|
|
|
|
|
(let ((ret (proc (string->pointer target) flags))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(unless (zero? ret)
|
|
|
|
|
(throw 'system-error "umount" "~S: ~A"
|
|
|
|
|
(list target (strerror err))
|
|
|
|
|
(list err)))
|
|
|
|
|
(when update-mtab?
|
|
|
|
|
(remove-from-mtab target))))))
|
|
|
|
|
|
2014-11-10 12:14:20 -05:00
|
|
|
|
(define (mount-points)
|
|
|
|
|
"Return the mounts points for currently mounted file systems."
|
|
|
|
|
(call-with-input-file "/proc/mounts"
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(let loop ((result '()))
|
|
|
|
|
(let ((line (read-line port)))
|
|
|
|
|
(if (eof-object? line)
|
|
|
|
|
(reverse result)
|
|
|
|
|
(match (string-tokenize line)
|
|
|
|
|
((source mount-point _ ...)
|
|
|
|
|
(loop (cons mount-point result))))))))))
|
|
|
|
|
|
2014-09-18 14:19:56 -04:00
|
|
|
|
(define swapon
|
|
|
|
|
(let* ((ptr (dynamic-func "swapon" (dynamic-link)))
|
|
|
|
|
(proc (pointer->procedure int ptr (list '* int))))
|
|
|
|
|
(lambda* (device #:optional (flags 0))
|
|
|
|
|
"Use the block special device at DEVICE for swapping."
|
|
|
|
|
(let ((ret (proc (string->pointer device) flags))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(unless (zero? ret)
|
|
|
|
|
(throw 'system-error "swapon" "~S: ~A"
|
|
|
|
|
(list device (strerror err))
|
|
|
|
|
(list err)))))))
|
|
|
|
|
|
|
|
|
|
(define swapoff
|
|
|
|
|
(let* ((ptr (dynamic-func "swapoff" (dynamic-link)))
|
|
|
|
|
(proc (pointer->procedure int ptr '(*))))
|
|
|
|
|
(lambda (device)
|
|
|
|
|
"Stop using block special device DEVICE for swapping."
|
|
|
|
|
(let ((ret (proc (string->pointer device)))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(unless (zero? ret)
|
2015-05-21 17:24:49 -04:00
|
|
|
|
(throw 'system-error "swapoff" "~S: ~A"
|
2014-09-18 14:19:56 -04:00
|
|
|
|
(list device (strerror err))
|
|
|
|
|
(list err)))))))
|
|
|
|
|
|
2014-05-14 10:35:35 -04:00
|
|
|
|
(define (kernel? pid)
|
|
|
|
|
"Return #t if PID designates a \"kernel thread\" rather than a normal
|
|
|
|
|
user-land process."
|
|
|
|
|
(let ((stat (call-with-input-file (format #f "/proc/~a/stat" pid)
|
|
|
|
|
(compose string-tokenize read-string))))
|
|
|
|
|
;; See proc.txt in Linux's documentation for the list of fields.
|
|
|
|
|
(match stat
|
|
|
|
|
((pid tcomm state ppid pgrp sid tty_nr tty_pgrp flags min_flt
|
|
|
|
|
cmin_flt maj_flt cmaj_flt utime stime cutime cstime
|
|
|
|
|
priority nice num_thread it_real_value start_time
|
|
|
|
|
vsize rss rsslim
|
|
|
|
|
(= string->number start_code) (= string->number end_code) _ ...)
|
|
|
|
|
;; Got this obscure trick from sysvinit's 'killall5' program.
|
|
|
|
|
(and (zero? start_code) (zero? end_code))))))
|
|
|
|
|
|
|
|
|
|
(define (processes)
|
|
|
|
|
"Return the list of live processes."
|
|
|
|
|
(sort (filter-map (lambda (file)
|
|
|
|
|
(let ((pid (string->number file)))
|
|
|
|
|
(and pid
|
|
|
|
|
(not (kernel? pid))
|
|
|
|
|
pid)))
|
|
|
|
|
(scandir "/proc"))
|
|
|
|
|
<))
|
|
|
|
|
|
2015-06-24 20:50:34 -04:00
|
|
|
|
(define mkdtemp!
|
|
|
|
|
(let* ((ptr (dynamic-func "mkdtemp" (dynamic-link)))
|
|
|
|
|
(proc (pointer->procedure '* ptr '(*))))
|
|
|
|
|
(lambda (tmpl)
|
|
|
|
|
"Create a new unique directory in the file system using the template
|
|
|
|
|
string TMPL and return its file name. TMPL must end with 'XXXXXX'."
|
|
|
|
|
(let ((result (proc (string->pointer tmpl)))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(when (null-pointer? result)
|
|
|
|
|
(throw 'system-error "mkdtemp!" "~S: ~A"
|
|
|
|
|
(list tmpl (strerror err))
|
|
|
|
|
(list err)))
|
|
|
|
|
(pointer->string result)))))
|
|
|
|
|
|
2015-05-31 20:26:47 -04:00
|
|
|
|
;; Linux clone flags, from linux/sched.h
|
2015-09-05 14:10:08 -04:00
|
|
|
|
(define CLONE_CHILD_CLEARTID #x00200000)
|
|
|
|
|
(define CLONE_CHILD_SETTID #x01000000)
|
|
|
|
|
(define CLONE_NEWNS #x00020000)
|
|
|
|
|
(define CLONE_NEWUTS #x04000000)
|
|
|
|
|
(define CLONE_NEWIPC #x08000000)
|
|
|
|
|
(define CLONE_NEWUSER #x10000000)
|
|
|
|
|
(define CLONE_NEWPID #x20000000)
|
|
|
|
|
(define CLONE_NEWNET #x40000000)
|
2015-05-31 20:26:47 -04:00
|
|
|
|
|
|
|
|
|
;; The libc interface to sys_clone is not useful for Scheme programs, so the
|
2015-10-17 05:53:25 -04:00
|
|
|
|
;; low-level system call is wrapped instead. The 'syscall' function is
|
|
|
|
|
;; declared in <unistd.h> as a variadic function; in practice, it expects 6
|
|
|
|
|
;; pointer-sized arguments, as shown in, e.g., x86_64/syscall.S.
|
2015-05-31 20:26:47 -04:00
|
|
|
|
(define clone
|
|
|
|
|
(let* ((ptr (dynamic-func "syscall" (dynamic-link)))
|
2015-10-17 05:53:25 -04:00
|
|
|
|
(proc (pointer->procedure long ptr
|
|
|
|
|
(list long ;sysno
|
|
|
|
|
unsigned-long ;flags
|
|
|
|
|
'* '* '*
|
|
|
|
|
'*)))
|
2015-05-31 20:26:47 -04:00
|
|
|
|
;; TODO: Don't do this.
|
|
|
|
|
(syscall-id (match (utsname:machine (uname))
|
|
|
|
|
("i686" 120)
|
|
|
|
|
("x86_64" 56)
|
|
|
|
|
("mips64" 5055)
|
|
|
|
|
("armv7l" 120))))
|
|
|
|
|
(lambda (flags)
|
|
|
|
|
"Create a new child process by duplicating the current parent process.
|
|
|
|
|
Unlike the fork system call, clone accepts FLAGS that specify which resources
|
|
|
|
|
are shared between the parent and child processes."
|
2015-10-17 05:53:25 -04:00
|
|
|
|
(let ((ret (proc syscall-id flags
|
|
|
|
|
%null-pointer ;child stack
|
|
|
|
|
%null-pointer %null-pointer ;ptid & ctid
|
|
|
|
|
%null-pointer)) ;unused
|
2015-09-05 13:36:53 -04:00
|
|
|
|
(err (errno)))
|
|
|
|
|
(if (= ret -1)
|
|
|
|
|
(throw 'system-error "clone" "~d: ~A"
|
|
|
|
|
(list flags (strerror err))
|
|
|
|
|
(list err))
|
|
|
|
|
ret)))))
|
2015-05-31 20:26:47 -04:00
|
|
|
|
|
2015-06-08 08:43:05 -04:00
|
|
|
|
(define setns
|
2015-08-16 08:08:34 -04:00
|
|
|
|
;; Some systems may be using an old (pre-2.14) version of glibc where there
|
|
|
|
|
;; is no 'setns' function available.
|
|
|
|
|
(false-if-exception
|
|
|
|
|
(let* ((ptr (dynamic-func "setns" (dynamic-link)))
|
|
|
|
|
(proc (pointer->procedure int ptr (list int int))))
|
|
|
|
|
(lambda (fdes nstype)
|
|
|
|
|
"Reassociate the current process with the namespace specified by FDES, a
|
2015-06-08 08:43:05 -04:00
|
|
|
|
file descriptor obtained by opening a /proc/PID/ns/* file. NSTYPE specifies
|
|
|
|
|
which type of namespace the current process may be reassociated with, or 0 if
|
|
|
|
|
there is no such limitation."
|
2015-08-16 08:08:34 -04:00
|
|
|
|
(let ((ret (proc fdes nstype))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(unless (zero? ret)
|
|
|
|
|
(throw 'system-error "setns" "~d ~d: ~A"
|
|
|
|
|
(list fdes nstype (strerror err))
|
|
|
|
|
(list err))))))))
|
2015-06-08 08:43:05 -04:00
|
|
|
|
|
2015-06-25 20:17:46 -04:00
|
|
|
|
(define pivot-root
|
|
|
|
|
(let* ((ptr (dynamic-func "pivot_root" (dynamic-link)))
|
|
|
|
|
(proc (pointer->procedure int ptr (list '* '*))))
|
|
|
|
|
(lambda (new-root put-old)
|
|
|
|
|
"Change the root file system to NEW-ROOT and move the current root file
|
|
|
|
|
system to PUT-OLD."
|
|
|
|
|
(let ((ret (proc (string->pointer new-root)
|
|
|
|
|
(string->pointer put-old)))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(unless (zero? ret)
|
|
|
|
|
(throw 'system-error "pivot_root" "~S ~S: ~A"
|
|
|
|
|
(list new-root put-old (strerror err))
|
|
|
|
|
(list err)))))))
|
|
|
|
|
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Packed structures.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define-syntax sizeof*
|
|
|
|
|
;; XXX: This duplicates 'compile-time-value'.
|
|
|
|
|
(syntax-rules (int128)
|
|
|
|
|
((_ int128)
|
|
|
|
|
16)
|
|
|
|
|
((_ type)
|
|
|
|
|
(let-syntax ((v (lambda (s)
|
|
|
|
|
(let ((val (sizeof type)))
|
|
|
|
|
(syntax-case s ()
|
|
|
|
|
(_ val))))))
|
|
|
|
|
v))))
|
|
|
|
|
|
2015-07-25 06:41:08 -04:00
|
|
|
|
(define-syntax alignof*
|
|
|
|
|
;; XXX: This duplicates 'compile-time-value'.
|
|
|
|
|
(syntax-rules (int128)
|
|
|
|
|
((_ int128)
|
|
|
|
|
16)
|
|
|
|
|
((_ type)
|
|
|
|
|
(let-syntax ((v (lambda (s)
|
|
|
|
|
(let ((val (alignof type)))
|
|
|
|
|
(syntax-case s ()
|
|
|
|
|
(_ val))))))
|
|
|
|
|
v))))
|
|
|
|
|
|
|
|
|
|
(define-syntax align ;as found in (system foreign)
|
|
|
|
|
(syntax-rules (~)
|
|
|
|
|
"Add to OFFSET whatever it takes to get proper alignment for TYPE."
|
|
|
|
|
((_ offset (type ~ endianness))
|
|
|
|
|
(align offset type))
|
|
|
|
|
((_ offset type)
|
|
|
|
|
(1+ (logior (1- offset) (1- (alignof* type)))))))
|
|
|
|
|
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
(define-syntax type-size
|
|
|
|
|
(syntax-rules (~)
|
|
|
|
|
((_ (type ~ order))
|
|
|
|
|
(sizeof* type))
|
|
|
|
|
((_ type)
|
|
|
|
|
(sizeof* type))))
|
|
|
|
|
|
|
|
|
|
(define-syntax write-type
|
|
|
|
|
(syntax-rules (~)
|
|
|
|
|
((_ bv offset (type ~ order) value)
|
|
|
|
|
(bytevector-uint-set! bv offset value
|
|
|
|
|
(endianness order) (sizeof* type)))
|
|
|
|
|
((_ bv offset type value)
|
|
|
|
|
(bytevector-uint-set! bv offset value
|
|
|
|
|
(native-endianness) (sizeof* type)))))
|
|
|
|
|
|
|
|
|
|
(define-syntax write-types
|
|
|
|
|
(syntax-rules ()
|
|
|
|
|
((_ bv offset () ())
|
|
|
|
|
#t)
|
|
|
|
|
((_ bv offset (type0 types ...) (field0 fields ...))
|
|
|
|
|
(begin
|
2015-07-25 06:41:08 -04:00
|
|
|
|
(write-type bv (align offset type0) type0 field0)
|
|
|
|
|
(write-types bv
|
|
|
|
|
(+ (align offset type0) (type-size type0))
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
(types ...) (fields ...))))))
|
|
|
|
|
|
|
|
|
|
(define-syntax read-type
|
2015-07-25 05:50:23 -04:00
|
|
|
|
(syntax-rules (~ quote *)
|
|
|
|
|
((_ bv offset '*)
|
|
|
|
|
(make-pointer (bytevector-uint-ref bv offset
|
|
|
|
|
(native-endianness)
|
|
|
|
|
(sizeof* '*))))
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
((_ bv offset (type ~ order))
|
|
|
|
|
(bytevector-uint-ref bv offset
|
|
|
|
|
(endianness order) (sizeof* type)))
|
|
|
|
|
((_ bv offset type)
|
|
|
|
|
(bytevector-uint-ref bv offset
|
|
|
|
|
(native-endianness) (sizeof* type)))))
|
|
|
|
|
|
|
|
|
|
(define-syntax read-types
|
|
|
|
|
(syntax-rules ()
|
2015-07-17 17:31:29 -04:00
|
|
|
|
((_ return bv offset () (values ...))
|
|
|
|
|
(return values ...))
|
|
|
|
|
((_ return bv offset (type0 types ...) (values ...))
|
|
|
|
|
(read-types return
|
2015-07-25 06:41:08 -04:00
|
|
|
|
bv
|
|
|
|
|
(+ (align offset type0) (type-size type0))
|
|
|
|
|
(types ...)
|
|
|
|
|
(values ... (read-type bv
|
|
|
|
|
(align offset type0)
|
|
|
|
|
type0))))))
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
|
|
|
|
|
(define-syntax define-c-struct
|
|
|
|
|
(syntax-rules ()
|
2015-07-17 17:31:29 -04:00
|
|
|
|
"Define READ as a deserializer and WRITE! as a serializer for the C
|
|
|
|
|
structure with the given TYPES. READ uses WRAP-FIELDS to return its value."
|
|
|
|
|
((_ name wrap-fields read write! (fields types) ...)
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
(begin
|
|
|
|
|
(define (write! bv offset fields ...)
|
|
|
|
|
(write-types bv offset (types ...) (fields ...)))
|
|
|
|
|
(define (read bv offset)
|
2015-07-17 17:31:29 -04:00
|
|
|
|
(read-types wrap-fields bv offset (types ...) ()))))))
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
|
2014-09-14 15:39:51 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Network interfaces.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define SIOCGIFCONF ;from <bits/ioctls.h>
|
|
|
|
|
(if (string-contains %host-type "linux")
|
|
|
|
|
#x8912 ;GNU/Linux
|
|
|
|
|
#xf00801a4)) ;GNU/Hurd
|
2014-09-14 16:12:35 -04:00
|
|
|
|
(define SIOCGIFFLAGS
|
|
|
|
|
(if (string-contains %host-type "linux")
|
|
|
|
|
#x8913 ;GNU/Linux
|
|
|
|
|
#xc4804191)) ;GNU/Hurd
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
(define SIOCSIFFLAGS
|
|
|
|
|
(if (string-contains %host-type "linux")
|
|
|
|
|
#x8914 ;GNU/Linux
|
|
|
|
|
-1)) ;FIXME: GNU/Hurd?
|
|
|
|
|
(define SIOCGIFADDR
|
|
|
|
|
(if (string-contains %host-type "linux")
|
|
|
|
|
#x8915 ;GNU/Linux
|
|
|
|
|
-1)) ;FIXME: GNU/Hurd?
|
|
|
|
|
(define SIOCSIFADDR
|
|
|
|
|
(if (string-contains %host-type "linux")
|
|
|
|
|
#x8916 ;GNU/Linux
|
|
|
|
|
-1)) ;FIXME: GNU/Hurd?
|
2014-09-14 16:12:35 -04:00
|
|
|
|
|
|
|
|
|
;; Flags and constants from <net/if.h>.
|
|
|
|
|
|
|
|
|
|
(define IFF_UP #x1) ;Interface is up
|
|
|
|
|
(define IFF_BROADCAST #x2) ;Broadcast address valid.
|
|
|
|
|
(define IFF_LOOPBACK #x8) ;Is a loopback net.
|
|
|
|
|
|
|
|
|
|
(define IF_NAMESIZE 16) ;maximum interface name size
|
2014-09-14 15:39:51 -04:00
|
|
|
|
|
|
|
|
|
(define ifconf-struct
|
|
|
|
|
;; 'struct ifconf', from <net/if.h>.
|
|
|
|
|
(list int ;int ifc_len
|
|
|
|
|
'*)) ;struct ifreq *ifc_ifcu
|
|
|
|
|
|
|
|
|
|
(define ifreq-struct-size
|
2014-09-14 16:12:35 -04:00
|
|
|
|
;; 'struct ifreq' begins with an array of IF_NAMESIZE bytes containing the
|
|
|
|
|
;; interface name (nul-terminated), followed by a bunch of stuff. This is
|
|
|
|
|
;; its size in bytes.
|
2014-09-14 15:39:51 -04:00
|
|
|
|
(if (= 8 (sizeof '*))
|
|
|
|
|
40
|
|
|
|
|
32))
|
|
|
|
|
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
(define-c-struct sockaddr-in ;<linux/in.h>
|
2015-07-17 17:31:29 -04:00
|
|
|
|
(lambda (family port address)
|
|
|
|
|
(make-socket-address family address port))
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
read-sockaddr-in
|
|
|
|
|
write-sockaddr-in!
|
|
|
|
|
(family unsigned-short)
|
|
|
|
|
(port (int16 ~ big))
|
|
|
|
|
(address (int32 ~ big)))
|
|
|
|
|
|
|
|
|
|
(define-c-struct sockaddr-in6 ;<linux/in6.h>
|
2015-07-17 17:31:29 -04:00
|
|
|
|
(lambda (family port flowinfo address scopeid)
|
|
|
|
|
(make-socket-address family address port flowinfo scopeid))
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
read-sockaddr-in6
|
|
|
|
|
write-sockaddr-in6!
|
|
|
|
|
(family unsigned-short)
|
|
|
|
|
(port (int16 ~ big))
|
|
|
|
|
(flowinfo (int32 ~ big))
|
|
|
|
|
(address (int128 ~ big))
|
|
|
|
|
(scopeid int32))
|
|
|
|
|
|
|
|
|
|
(define (write-socket-address! sockaddr bv index)
|
|
|
|
|
"Write SOCKADDR, a socket address as returned by 'make-socket-address', to
|
|
|
|
|
bytevector BV at INDEX."
|
|
|
|
|
(let ((family (sockaddr:fam sockaddr)))
|
|
|
|
|
(cond ((= family AF_INET)
|
|
|
|
|
(write-sockaddr-in! bv index
|
|
|
|
|
family
|
|
|
|
|
(sockaddr:port sockaddr)
|
|
|
|
|
(sockaddr:addr sockaddr)))
|
|
|
|
|
((= family AF_INET6)
|
|
|
|
|
(write-sockaddr-in6! bv index
|
|
|
|
|
family
|
|
|
|
|
(sockaddr:port sockaddr)
|
|
|
|
|
(sockaddr:flowinfo sockaddr)
|
|
|
|
|
(sockaddr:addr sockaddr)
|
|
|
|
|
(sockaddr:scopeid sockaddr)))
|
|
|
|
|
(else
|
|
|
|
|
(error "unsupported socket address" sockaddr)))))
|
|
|
|
|
|
2015-07-25 06:22:30 -04:00
|
|
|
|
(define PF_PACKET 17) ;<bits/socket.h>
|
|
|
|
|
(define AF_PACKET PF_PACKET)
|
|
|
|
|
|
|
|
|
|
(define* (read-socket-address bv #:optional (index 0))
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
"Read a socket address from bytevector BV at INDEX."
|
|
|
|
|
(let ((family (bytevector-u16-native-ref bv index)))
|
|
|
|
|
(cond ((= family AF_INET)
|
2015-07-17 17:31:29 -04:00
|
|
|
|
(read-sockaddr-in bv index))
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
((= family AF_INET6)
|
2015-07-17 17:31:29 -04:00
|
|
|
|
(read-sockaddr-in6 bv index))
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
(else
|
2015-07-25 06:22:30 -04:00
|
|
|
|
;; XXX: Unsupported address family, such as AF_PACKET. Return a
|
|
|
|
|
;; vector such that the vector can at least call 'sockaddr:fam'.
|
|
|
|
|
(vector family)))))
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
|
2014-09-14 15:39:51 -04:00
|
|
|
|
(define %ioctl
|
|
|
|
|
;; The most terrible interface, live from Scheme.
|
|
|
|
|
(pointer->procedure int
|
|
|
|
|
(dynamic-func "ioctl" (dynamic-link))
|
|
|
|
|
(list int unsigned-long '*)))
|
|
|
|
|
|
|
|
|
|
(define (bytevector->string-list bv stride len)
|
|
|
|
|
"Return the null-terminated strings found in BV every STRIDE bytes. Read at
|
|
|
|
|
most LEN bytes from BV."
|
|
|
|
|
(let loop ((bytes (take (bytevector->u8-list bv)
|
|
|
|
|
(min len (bytevector-length bv))))
|
|
|
|
|
(result '()))
|
|
|
|
|
(match bytes
|
|
|
|
|
(()
|
|
|
|
|
(reverse result))
|
|
|
|
|
(_
|
|
|
|
|
(loop (drop bytes stride)
|
|
|
|
|
(cons (list->string (map integer->char
|
|
|
|
|
(take-while (negate zero?) bytes)))
|
|
|
|
|
result))))))
|
|
|
|
|
|
2015-07-25 05:46:31 -04:00
|
|
|
|
(define* (network-interface-names #:optional sock)
|
|
|
|
|
"Return the names of existing network interfaces. This is typically limited
|
2014-09-14 16:56:12 -04:00
|
|
|
|
to interfaces that are currently up."
|
2014-09-14 15:39:51 -04:00
|
|
|
|
(let* ((close? (not sock))
|
|
|
|
|
(sock (or sock (socket SOCK_STREAM AF_INET 0)))
|
|
|
|
|
(len (* ifreq-struct-size 10))
|
|
|
|
|
(reqs (make-bytevector len))
|
|
|
|
|
(conf (make-c-struct ifconf-struct
|
|
|
|
|
(list len (bytevector->pointer reqs))))
|
|
|
|
|
(ret (%ioctl (fileno sock) SIOCGIFCONF conf))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(when close?
|
|
|
|
|
(close-port sock))
|
|
|
|
|
(if (zero? ret)
|
|
|
|
|
(bytevector->string-list reqs ifreq-struct-size
|
|
|
|
|
(match (parse-c-struct conf ifconf-struct)
|
|
|
|
|
((len . _) len)))
|
|
|
|
|
(throw 'system-error "network-interface-list"
|
|
|
|
|
"network-interface-list: ~A"
|
|
|
|
|
(list (strerror err))
|
|
|
|
|
(list err)))))
|
|
|
|
|
|
2014-09-14 16:56:12 -04:00
|
|
|
|
(define %interface-line
|
|
|
|
|
;; Regexp matching an interface line in Linux's /proc/net/dev.
|
2016-02-03 05:18:57 -05:00
|
|
|
|
(make-regexp "^[[:blank:]]*([[:graph:]]+):.*$"))
|
2014-09-14 16:56:12 -04:00
|
|
|
|
|
2015-07-25 05:46:31 -04:00
|
|
|
|
(define (all-network-interface-names)
|
|
|
|
|
"Return all the names of the registered network interfaces, including those
|
|
|
|
|
that are not up."
|
2014-09-14 16:56:12 -04:00
|
|
|
|
(call-with-input-file "/proc/net/dev" ;XXX: Linux-specific
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(let loop ((interfaces '()))
|
|
|
|
|
(let ((line (read-line port)))
|
|
|
|
|
(cond ((eof-object? line)
|
|
|
|
|
(reverse interfaces))
|
|
|
|
|
((regexp-exec %interface-line line)
|
|
|
|
|
=>
|
|
|
|
|
(lambda (match)
|
|
|
|
|
(loop (cons (match:substring match 1) interfaces))))
|
|
|
|
|
(else
|
|
|
|
|
(loop interfaces))))))))
|
|
|
|
|
|
2014-09-14 16:12:35 -04:00
|
|
|
|
(define (network-interface-flags socket name)
|
|
|
|
|
"Return a number that is the bit-wise or of 'IFF*' flags for network
|
|
|
|
|
interface NAME."
|
|
|
|
|
(let ((req (make-bytevector ifreq-struct-size)))
|
|
|
|
|
(bytevector-copy! (string->utf8 name) 0 req 0
|
|
|
|
|
(min (string-length name) (- IF_NAMESIZE 1)))
|
|
|
|
|
(let* ((ret (%ioctl (fileno socket) SIOCGIFFLAGS
|
|
|
|
|
(bytevector->pointer req)))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(if (zero? ret)
|
|
|
|
|
|
|
|
|
|
;; The 'ifr_flags' field is IF_NAMESIZE bytes after the beginning of
|
|
|
|
|
;; 'struct ifreq', and it's a short int.
|
|
|
|
|
(bytevector-sint-ref req IF_NAMESIZE (native-endianness)
|
|
|
|
|
(sizeof short))
|
|
|
|
|
|
|
|
|
|
(throw 'system-error "network-interface-flags"
|
|
|
|
|
"network-interface-flags on ~A: ~A"
|
|
|
|
|
(list name (strerror err))
|
|
|
|
|
(list err))))))
|
|
|
|
|
|
|
|
|
|
(define (loopback-network-interface? name)
|
|
|
|
|
"Return true if NAME designates a loopback network interface."
|
|
|
|
|
(let* ((sock (socket SOCK_STREAM AF_INET 0))
|
|
|
|
|
(flags (network-interface-flags sock name)))
|
|
|
|
|
(close-port sock)
|
|
|
|
|
(not (zero? (logand flags IFF_LOOPBACK)))))
|
|
|
|
|
|
syscalls: Add more procedures for network interfaces.
* guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types,
read-type, read-types, define-c-struct): New macros.
(SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables.
(sockaddr-in, sockaddr-in6): New C structs.
(write-socket-address!, read-socket-address,
set-network-interface-flags, set-network-interface-address,
network-interface-address, configure-network-interface): New
procedures.
2014-12-19 08:26:11 -05:00
|
|
|
|
(define (set-network-interface-flags socket name flags)
|
|
|
|
|
"Set the flag of network interface NAME to FLAGS."
|
|
|
|
|
(let ((req (make-bytevector ifreq-struct-size)))
|
|
|
|
|
(bytevector-copy! (string->utf8 name) 0 req 0
|
|
|
|
|
(min (string-length name) (- IF_NAMESIZE 1)))
|
|
|
|
|
;; Set the 'ifr_flags' field.
|
|
|
|
|
(bytevector-uint-set! req IF_NAMESIZE flags (native-endianness)
|
|
|
|
|
(sizeof short))
|
|
|
|
|
(let* ((ret (%ioctl (fileno socket) SIOCSIFFLAGS
|
|
|
|
|
(bytevector->pointer req)))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(unless (zero? ret)
|
|
|
|
|
(throw 'system-error "set-network-interface-flags"
|
|
|
|
|
"set-network-interface-flags on ~A: ~A"
|
|
|
|
|
(list name (strerror err))
|
|
|
|
|
(list err))))))
|
|
|
|
|
|
|
|
|
|
(define (set-network-interface-address socket name sockaddr)
|
|
|
|
|
"Set the address of network interface NAME to SOCKADDR."
|
|
|
|
|
(let ((req (make-bytevector ifreq-struct-size)))
|
|
|
|
|
(bytevector-copy! (string->utf8 name) 0 req 0
|
|
|
|
|
(min (string-length name) (- IF_NAMESIZE 1)))
|
|
|
|
|
;; Set the 'ifr_addr' field.
|
|
|
|
|
(write-socket-address! sockaddr req IF_NAMESIZE)
|
|
|
|
|
(let* ((ret (%ioctl (fileno socket) SIOCSIFADDR
|
|
|
|
|
(bytevector->pointer req)))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(unless (zero? ret)
|
|
|
|
|
(throw 'system-error "set-network-interface-address"
|
|
|
|
|
"set-network-interface-address on ~A: ~A"
|
|
|
|
|
(list name (strerror err))
|
|
|
|
|
(list err))))))
|
|
|
|
|
|
|
|
|
|
(define (network-interface-address socket name)
|
|
|
|
|
"Return the address of network interface NAME. The result is an object of
|
|
|
|
|
the same type as that returned by 'make-socket-address'."
|
|
|
|
|
(let ((req (make-bytevector ifreq-struct-size)))
|
|
|
|
|
(bytevector-copy! (string->utf8 name) 0 req 0
|
|
|
|
|
(min (string-length name) (- IF_NAMESIZE 1)))
|
|
|
|
|
(let* ((ret (%ioctl (fileno socket) SIOCGIFADDR
|
|
|
|
|
(bytevector->pointer req)))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(if (zero? ret)
|
|
|
|
|
(read-socket-address req IF_NAMESIZE)
|
|
|
|
|
(throw 'system-error "network-interface-address"
|
|
|
|
|
"network-interface-address on ~A: ~A"
|
|
|
|
|
(list name (strerror err))
|
|
|
|
|
(list err))))))
|
|
|
|
|
|
|
|
|
|
(define (configure-network-interface name sockaddr flags)
|
|
|
|
|
"Configure network interface NAME to use SOCKADDR, an address as returned by
|
|
|
|
|
'make-socket-address', and FLAGS, a bitwise-or of IFF_* constants."
|
|
|
|
|
(let ((sock (socket (sockaddr:fam sockaddr) SOCK_STREAM 0)))
|
|
|
|
|
(dynamic-wind
|
|
|
|
|
(const #t)
|
|
|
|
|
(lambda ()
|
|
|
|
|
(set-network-interface-address sock name sockaddr)
|
|
|
|
|
(set-network-interface-flags sock name flags))
|
|
|
|
|
(lambda ()
|
|
|
|
|
(close-port sock)))))
|
|
|
|
|
|
2015-05-17 17:20:59 -04:00
|
|
|
|
(define* (set-network-interface-up name
|
|
|
|
|
#:key (family AF_INET))
|
|
|
|
|
"Turn up the interface NAME."
|
|
|
|
|
(let ((sock (socket family SOCK_STREAM 0)))
|
|
|
|
|
(dynamic-wind
|
|
|
|
|
(const #t)
|
|
|
|
|
(lambda ()
|
|
|
|
|
(let ((flags (network-interface-flags sock name)))
|
|
|
|
|
(set-network-interface-flags sock name
|
|
|
|
|
(logior flags IFF_UP))))
|
|
|
|
|
(lambda ()
|
|
|
|
|
(close-port sock)))))
|
|
|
|
|
|
2015-07-25 07:06:01 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Details about network interfaces---aka. 'getifaddrs'.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
;; Network interfaces. XXX: We would call it <network-interface> but that
|
|
|
|
|
;; would collide with the ioctl wrappers above.
|
|
|
|
|
(define-record-type <interface>
|
|
|
|
|
(make-interface name flags address netmask broadcast-address)
|
|
|
|
|
interface?
|
|
|
|
|
(name interface-name) ;string
|
|
|
|
|
(flags interface-flags) ;or'd IFF_* values
|
|
|
|
|
(address interface-address) ;sockaddr | #f
|
|
|
|
|
(netmask interface-netmask) ;sockaddr | #f
|
|
|
|
|
(broadcast-address interface-broadcast-address)) ;sockaddr | #f
|
|
|
|
|
|
|
|
|
|
(define (write-interface interface port)
|
|
|
|
|
(match interface
|
|
|
|
|
(($ <interface> name flags address)
|
|
|
|
|
(format port "#<interface ~s " name)
|
|
|
|
|
(unless (zero? (logand IFF_UP flags))
|
|
|
|
|
(display "up " port))
|
|
|
|
|
(if (member (sockaddr:fam address) (list AF_INET AF_INET6))
|
|
|
|
|
(format port "~a " (inet-ntop (sockaddr:fam address)
|
|
|
|
|
(sockaddr:addr address)))
|
|
|
|
|
(format port "family:~a " (sockaddr:fam address)))
|
|
|
|
|
(format port "~a>" (number->string (object-address interface) 16)))))
|
|
|
|
|
|
|
|
|
|
(set-record-type-printer! <interface> write-interface)
|
|
|
|
|
|
|
|
|
|
(define (values->interface next name flags address netmask
|
|
|
|
|
broadcast-address data)
|
|
|
|
|
"Given the raw field values passed as arguments, return a pair whose car is
|
|
|
|
|
an <interface> object, and whose cdr is the pointer NEXT."
|
|
|
|
|
(define (maybe-socket-address pointer)
|
|
|
|
|
(if (null-pointer? pointer)
|
|
|
|
|
#f
|
|
|
|
|
(read-socket-address (pointer->bytevector pointer 50)))) ;XXX: size
|
|
|
|
|
|
|
|
|
|
(cons (make-interface (if (null-pointer? name)
|
|
|
|
|
#f
|
|
|
|
|
(pointer->string name))
|
|
|
|
|
flags
|
|
|
|
|
(maybe-socket-address address)
|
|
|
|
|
(maybe-socket-address netmask)
|
|
|
|
|
(maybe-socket-address broadcast-address)
|
|
|
|
|
;; Ignore DATA.
|
|
|
|
|
)
|
|
|
|
|
next))
|
|
|
|
|
|
|
|
|
|
(define-c-struct ifaddrs ;<ifaddrs.h>
|
|
|
|
|
values->interface
|
|
|
|
|
read-ifaddrs
|
|
|
|
|
write-ifaddrs!
|
|
|
|
|
(next '*)
|
|
|
|
|
(name '*)
|
|
|
|
|
(flags unsigned-int)
|
|
|
|
|
(addr '*)
|
|
|
|
|
(netmask '*)
|
|
|
|
|
(broadcastaddr '*)
|
|
|
|
|
(data '*))
|
|
|
|
|
|
|
|
|
|
(define-syntax %struct-ifaddrs-type
|
|
|
|
|
(identifier-syntax
|
|
|
|
|
`(* * ,unsigned-int * * * *)))
|
|
|
|
|
|
|
|
|
|
(define-syntax %sizeof-ifaddrs
|
|
|
|
|
(identifier-syntax
|
|
|
|
|
(sizeof* %struct-ifaddrs-type)))
|
|
|
|
|
|
|
|
|
|
(define (unfold-interface-list ptr)
|
|
|
|
|
"Call 'read-ifaddrs' on PTR and all its 'next' fields, recursively, and
|
|
|
|
|
return the list of resulting <interface> objects."
|
|
|
|
|
(let loop ((ptr ptr)
|
|
|
|
|
(result '()))
|
|
|
|
|
(if (null-pointer? ptr)
|
|
|
|
|
(reverse result)
|
|
|
|
|
(match (read-ifaddrs (pointer->bytevector ptr %sizeof-ifaddrs)
|
|
|
|
|
0)
|
|
|
|
|
((ifaddr . ptr)
|
|
|
|
|
(loop ptr (cons ifaddr result)))))))
|
|
|
|
|
|
|
|
|
|
(define network-interfaces
|
|
|
|
|
(let* ((ptr (dynamic-func "getifaddrs" (dynamic-link)))
|
|
|
|
|
(proc (pointer->procedure int ptr (list '*))))
|
|
|
|
|
(lambda ()
|
|
|
|
|
"Return a list of <interface> objects, each denoting a configured
|
|
|
|
|
network interface. This is implemented using the 'getifaddrs' libc function."
|
|
|
|
|
(let* ((ptr (bytevector->pointer (make-bytevector (sizeof* '*))))
|
|
|
|
|
(ret (proc ptr))
|
|
|
|
|
(err (errno)))
|
|
|
|
|
(if (zero? ret)
|
|
|
|
|
(let* ((ptr (dereference-pointer ptr))
|
|
|
|
|
(result (unfold-interface-list ptr)))
|
|
|
|
|
(free-ifaddrs ptr)
|
|
|
|
|
result)
|
|
|
|
|
(throw 'system-error "network-interfaces" "~A"
|
|
|
|
|
(list (strerror err))
|
|
|
|
|
(list err)))))))
|
|
|
|
|
|
|
|
|
|
(define free-ifaddrs
|
|
|
|
|
(let ((ptr (dynamic-func "freeifaddrs" (dynamic-link))))
|
|
|
|
|
(pointer->procedure void ptr '(*))))
|
|
|
|
|
|
2014-05-10 15:49:11 -04:00
|
|
|
|
;;; syscalls.scm ends here
|