Chame um syscall do Linux a partir de uma linguagem de script

15

Eu quero chamar um syscall do Linux (ou pelo menos o wrapper da libc) diretamente de uma linguagem de script. Eu não me importo com a linguagem de script - é importante que ela não seja compilada (a razão basicamente tem a ver com não querer um compilador no caminho da dependência, mas isso não é nem aqui nem ali). Existem linguagens de script (shell, Python, Ruby, etc) que permitem isso?

Em particular, é o getrandom syscall.

    
por joshlf 24.03.2017 / 21:58

3 respostas

33

Perl permite isso com sua função syscall :

$ perldoc -f syscall
    syscall NUMBER, LIST
            Calls the system call specified as the first element of the list,
            passing the remaining elements as arguments to the system call. If
⋮

A documentação também dá um exemplo de chamada write (2):

require 'syscall.ph';        # may need to run h2ph
my $s = "hi there\n";
syscall(SYS_write(), fileno(STDOUT), $s, length $s);

Não é possível dizer que sempre usei esse recurso, no entanto. Bem, antes apenas agora para confirmar o exemplo realmente funciona.

Isso parece funcionar com getrandom :

$ perl -E 'require "syscall.ph"; $v = " "x8; syscall(SYS_getrandom(), $v, length $v, 0); print $v' | xxd
00000000: 5790 8a6d 714f 8dbe                      W..mqO..

E se você não tiver getrandom no seu syscall.ph, poderá usar o número. É 318 na minha caixa de testes Debian (amd64). Tenha em atenção que os números syscall do Linux são específicos da arquitetura.

    
por 24.03.2017 / 22:14
27

No Python, você pode usar o módulo ctypes para acessar funções arbitrárias em bibliotecas dinâmicas, incluindo syscall() da libc:

import ctypes

SYS_getrandom = 318 # You need to check the syscall number for your target architecture

libc = ctypes.CDLL(None)
_getrandom_syscall = libc.syscall
_getrandom_syscall.restypes = ctypes.c_int
_getrandom_syscall.argtypes = ctypes.c_int, ctypes.POINTER(ctypes.c_char), ctypes.c_size_t, ctypes.c_uint

def getrandom(size, flags=0):
    buf = (ctypes.c_char * size)()
    result = _getrandom_syscall(SYS_getrandom, buf, size, flags)
    if result < 0:
        raise OSError(ctypes.get_errno(), 'getrandom() failed')
    return bytes(buf)

Se a sua libc incluir a função% wrapper getrandom() , você também pode chamar:

import ctypes

libc = ctypes.CDLL(None)
_getrandom = libc.getrandom
_getrandom.restypes = ctypes.c_int
_getrandom.argtypes = ctypes.POINTER(ctypes.c_char), ctypes.c_size_t, ctypes.c_uint

def getrandom(size, flags=0):
    buf = (ctypes.c_char * size)()
    result = _getrandom(buf, size, flags)
    if result < 0:
        raise OSError(ctypes.get_errno(), 'getrandom() failed')
    return bytes(buf)
    
por 24.03.2017 / 22:41
17

Ruby tem uma função syscall(num [, args...]) → integer .

Por exemplo:

irb(main):010:0> syscall 1, 1, "hello\n", 6
hello
=> 6

com getrandom() :

irb(main):001:0> a = "aaaaaaaa"
=> "aaaaaaaa"
irb(main):002:0> syscall 318,a,8,0
=> 8
irb(main):003:0> a
=> "\x9Cq\xBE\xD6|\x87\u0016\xC6"
irb(main):004:0> 
    
por 24.03.2017 / 22:28