Linux çekirdeği v4.2-rc5 itibariyle libpcap tarafından kullanılan arabirimleri kullanarak doğrudan yakalamak mümkün değildir. libpcap yalnızca bir " netdevice " (Ethernet arayüzleri gibi) üzerinden gelen veriler için veri yakalamanızı sağlayan Linux'a özgü AF_PACKET
(takma ad PF_PACKET
) etki alanını kullanır .
AF_UNIX
Soketlerden çekim yapmak için bir çekirdek arabirimi yoktur . Standart Ethernet yakalamalarında kaynak / hedef vb. İçeren bir Ethernet başlığı vardır. Unix soketlerinde böyle sahte bir başlık yoktur ve bağlantı katmanı başlık türleri kayıt defterinde bununla ilgili hiçbir şey listelenmez.
Veriler için temel giriş noktaları unix_stream_recvmsg
ve unix_stream_sendmsg
içindir SOCK_STREAM
( SOCK_DGRAM
ve SOCK_SEQPACKET
benzer şekilde adlandırılmış işlevlere sahiptir). Veriler arabellekte sk->sk_receive_queue
ve unix_stream_sendmsg
fonksiyonda tamponlanır , sonuçta paket yakalama tpacket_rcv
fonksiyonunu çağırmaya yol açan bir kod yoktur . Genel olarak paket yakalamanın iç kısımları hakkında daha fazla ayrıntı için SO üzerinde osgx tarafından yapılan bu analize bakın .
AF_UNIX
Soket izleme hakkındaki orijinal soruya geri dönerseniz, esas olarak uygulama verileriyle ilgileniyorsanız, bazı seçenekleriniz vardır:
Önerilen CONFIG_UNIX_DIAG
seçenek maalesef burada da yararlı değildir, sadece istatistik toplamak için kullanılabilir, akarken gerçek zamanlı veriler elde etmek için kullanılamaz (bkz. Linux / unix_diag.h ).
Ne yazık ki şu anda pcap üreten Unix alan soketleri için mükemmel bir izleyici yok (en iyi bilgime göre). İdeal olarak, kaynak / dest PID'yi (varsa) ve ardından isteğe bağlı ek verileri (kimlik bilgileri, dosya tanımlayıcıları) ve son olarak verileri içeren bir başlığı olan bir libpcap formatı olacaktır. Bunun olmaması için yapılabilecek en iyi şey sistemli takiptir.
Ek bilgi (ilgilenen okuyucu için), bazı geri çekimler (GDB kırılma unix_stream_*
ve rbreak packet.c:.
QEMU'daki Linux ve ana hat Linux 4.2-rc5'teki socat ile edinilmiş):
# echo foo | socat - UNIX-LISTEN:/foo &
# echo bar | socat - UNIX-CONNECT:/foo
unix_stream_sendmsg at net/unix/af_unix.c:1638
sock_sendmsg_nosec at net/socket.c:610
sock_sendmsg at net/socket.c:620
sock_write_iter at net/socket.c:819
new_sync_write at fs/read_write.c:478
__vfs_write at fs/read_write.c:491
vfs_write at fs/read_write.c:538
SYSC_write at fs/read_write.c:585
SyS_write at fs/read_write.c:577
entry_SYSCALL_64_fastpath at arch/x86/entry/entry_64.S:186
unix_stream_recvmsg at net/unix/af_unix.c:2210
sock_recvmsg_nosec at net/socket.c:712
sock_recvmsg at net/socket.c:720
sock_read_iter at net/socket.c:797
new_sync_read at fs/read_write.c:422
__vfs_read at fs/read_write.c:434
vfs_read at fs/read_write.c:454
SYSC_read at fs/read_write.c:569
SyS_read at fs/read_write.c:562
# tcpdump -i lo &
# echo foo | socat - TCP-LISTEN:1337 &
# echo bar | socat - TCP-CONNECT:127.0.0.1:1337
tpacket_rcv at net/packet/af_packet.c:1962
dev_queue_xmit_nit at net/core/dev.c:1862
xmit_one at net/core/dev.c:2679
dev_hard_start_xmit at net/core/dev.c:2699
__dev_queue_xmit at net/core/dev.c:3104
dev_queue_xmit_sk at net/core/dev.c:3138
dev_queue_xmit at netdevice.h:2190
neigh_hh_output at include/net/neighbour.h:467
dst_neigh_output at include/net/dst.h:401
ip_finish_output2 at net/ipv4/ip_output.c:210
ip_finish_output at net/ipv4/ip_output.c:284
ip_output at net/ipv4/ip_output.c:356
dst_output_sk at include/net/dst.h:440
ip_local_out_sk at net/ipv4/ip_output.c:119
ip_local_out at include/net/ip.h:119
ip_queue_xmit at net/ipv4/ip_output.c:454
tcp_transmit_skb at net/ipv4/tcp_output.c:1039
tcp_write_xmit at net/ipv4/tcp_output.c:2128
__tcp_push_pending_frames at net/ipv4/tcp_output.c:2303
tcp_push at net/ipv4/tcp.c:689
tcp_sendmsg at net/ipv4/tcp.c:1276
inet_sendmsg at net/ipv4/af_inet.c:733
sock_sendmsg_nosec at net/socket.c:610
sock_sendmsg at net/socket.c:620
sock_write_iter at net/socket.c:819
new_sync_write at fs/read_write.c:478
__vfs_write at fs/read_write.c:491
vfs_write at fs/read_write.c:538
SYSC_write at fs/read_write.c:585
SyS_write at fs/read_write.c:577
entry_SYSCALL_64_fastpath at arch/x86/entry/entry_64.S:186
tpacket_rcv at net/packet/af_packet.c:1962
dev_queue_xmit_nit at net/core/dev.c:1862
xmit_one at net/core/dev.c:2679
dev_hard_start_xmit at net/core/dev.c:2699
__dev_queue_xmit at net/core/dev.c:3104
dev_queue_xmit_sk at net/core/dev.c:3138
dev_queue_xmit at netdevice.h:2190
neigh_hh_output at include/net/neighbour.h:467
dst_neigh_output at include/net/dst.h:401
ip_finish_output2 at net/ipv4/ip_output.c:210
ip_finish_output at net/ipv4/ip_output.c:284
ip_output at net/ipv4/ip_output.c:356
dst_output_sk at include/net/dst.h:440
ip_local_out_sk at net/ipv4/ip_output.c:119
ip_local_out at include/net/ip.h:119
ip_queue_xmit at net/ipv4/ip_output.c:454
tcp_transmit_skb at net/ipv4/tcp_output.c:1039
tcp_send_ack at net/ipv4/tcp_output.c:3375
__tcp_ack_snd_check at net/ipv4/tcp_input.c:4901
tcp_ack_snd_check at net/ipv4/tcp_input.c:4914
tcp_rcv_state_process at net/ipv4/tcp_input.c:5937
tcp_v4_do_rcv at net/ipv4/tcp_ipv4.c:1423
tcp_v4_rcv at net/ipv4/tcp_ipv4.c:1633
ip_local_deliver_finish at net/ipv4/ip_input.c:216
ip_local_deliver at net/ipv4/ip_input.c:256
dst_input at include/net/dst.h:450
ip_rcv_finish at net/ipv4/ip_input.c:367
ip_rcv at net/ipv4/ip_input.c:455
__netif_receive_skb_core at net/core/dev.c:3892
__netif_receive_skb at net/core/dev.c:3927
process_backlog at net/core/dev.c:4504
napi_poll at net/core/dev.c:4743
net_rx_action at net/core/dev.c:4808
__do_softirq at kernel/softirq.c:273
do_softirq_own_stack at arch/x86/entry/entry_64.S:970