Un file socket Unix/Linux è fondamentalmente un FIFO bidirezionale. Poiché i socket sono stati originariamente creati come un modo per gestire le comunicazioni di rete, è possibile manipolarli utilizzando il send()
e recv()
chiamate di sistema. Tuttavia, nello spirito Unix di "tutto è un file", puoi anche usare write()
e read()
. Devi usare socketpair()
o socket()
per creare socket denominati. Un tutorial per l'utilizzo dei socket in C può essere trovato qui:Beej's Guide to Unix IPC:Unix Sockets.
Il socat
L'utilità della riga di comando è utile quando si desidera giocare con i socket senza scrivere un programma "reale". È simile a netcat
e funge da adattatore tra diverse interfacce di rete e di file.
Link:
socat
progetto casa- Un'introduzione a
socat
- Interessante articolo sui socket Unix e
socat
Crea rapidamente un socket in python:
~]# python -c "import socket as s; sock = s.socket(s.AF_UNIX); sock.bind('/tmp/somesocket')"
~]# ll /tmp/somesocket
srwxr-xr-x. 1 root root 0 Mar 3 19:30 /tmp/somesocket
Oppure con un minuscolo programma in C, ad esempio, salva quanto segue in create-a-socket.c
:
#include <fcntl.h>
#include <sys/un.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
int main(int argc, char **argv)
{
// The following line expects the socket path to be first argument
char * mysocketpath = argv[1];
// Alternatively, you could comment that and set it statically:
//char * mysocketpath = "/tmp/mysock";
struct sockaddr_un namesock;
int fd;
namesock.sun_family = AF_UNIX;
strncpy(namesock.sun_path, (char *)mysocketpath, sizeof(namesock.sun_path));
fd = socket(AF_UNIX, SOCK_DGRAM, 0);
bind(fd, (struct sockaddr *) &namesock, sizeof(struct sockaddr_un));
close(fd);
return 0;
}
Quindi installa gcc, compilalo e ta-da:
~]# gcc -o create-a-socket create-a-socket.c
~]# ./create-a-socket mysock
~]# ll mysock
srwxr-xr-x. 1 root root 0 Mar 3 17:45 mysock