GNU/Linux >> Linux Esercitazione >  >> Linux

Chiama una chiamata di sistema Linux da un linguaggio di scripting

Perl lo permette con il suo syscall funzione:

$ 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
⋮

La documentazione fornisce anche un esempio di chiamata a write(2):

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

Non posso dire di non averlo mai utilizzato questa funzione, però. Bene, prima di confermare l'esempio funziona davvero.

Questo sembra funzionare con 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 non hai getrandom nel tuo syscall.ph, puoi invece usare il numero. È 318 sulla mia scatola Debian testing (amd64). Attenzione che i numeri syscall di Linux sono specifici dell'architettura.


In Python puoi usare il ctypes modulo per accedere a funzioni arbitrarie nelle librerie dinamiche, incluso 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 la tua libc include il file getrandom() funzione wrapper, puoi anche chiamarla:

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)

Ruby ha un syscall(num [, args...]) → integer funzione.

Ad esempio:

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

Con 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> 

Linux
  1. Qual è il tuo linguaggio di programmazione o scripting Linux preferito?

  2. Migliori pratiche di codifica per la programmazione di sistemi Linux in linguaggio C – Parte 1

  3. immagine linux dagli appunti

  4. x86_64 Assembly Linux System Call Confusion

  5. Chiama una funzione dello spazio utente dall'interno di un modulo del kernel Linux

EBook gratuito da Packt - Ricettario per script di shell Linux - Terza edizione

Passaggio da Windows a Linux

Come installare Go Language in Linux

Installa il linguaggio di programmazione racket su Linux

Installa Linux Mint da USB

Installa Linux da Linux