注意:我现在维护一个lsof
包装器,该包装器结合了这里描述的两种方法,并且还在https://github.com/stephane-chazelas/misc-scripts/blob/master/lsofc添加了回送TCP连接对等方的信息
Linux-3.3及更高版本。
在Linux中,因为内核版本3.3(和提供的UNIX_DIAG
功能内置在内核),可以利用一个新的来获得给定的UNIX域套接字的对等体(包括socketpairs)的netlink基于API。
lsof
因为版本4.89可以使用该API:
lsof +E -aUc Xorg
将以Xorg
类似于以下格式列出所有进程名称都以结尾开头的所有Unix域套接字:
Xorg 2777 root 56u unix 0xffff8802419a7c00 0t0 34036 @/tmp/.X11-unix/X0 type=STREAM ->INO=33273 4120,xterm,3u
如果您的版本lsof
太旧,则还有更多选择。
在ss
(从实用程序iproute2
)利用同一API的检索和UNIX域套接字的系统,其包括对等体的信息的一览表上显示的信息。
套接字由它们的inode号标识。请注意,它与套接字文件的文件系统索引节点无关。
例如在:
$ ss -x
[...]
u_str ESTAB 0 0 @/tmp/.X11-unix/X0 3435997 * 3435996
它说套接字3435997(绑定到ABSTRACT套接字/tmp/.X11-unix/X0
)与套接字3435996连接。该-p
选项可以告诉您哪个进程打开了该套接字。它通过在readlink
上执行一些操作来做到这一点/proc/$pid/fd/*
,因此只能在您拥有的进程上执行此操作(除非您是root
)。例如在这里:
$ sudo ss -xp
[...]
u_str ESTAB 0 0 @/tmp/.X11-unix/X0 3435997 * 3435996 users:(("Xorg",pid=3080,fd=83))
[...]
$ sudo ls -l /proc/3080/fd/23
lrwx------ 1 root root 64 Mar 12 16:34 /proc/3080/fd/83 -> socket:[3435997]
要找出哪个进程具有3435996,可以在输出中查找其自己的条目ss -xp
:
$ ss -xp | awk '$6 == 3435996'
u_str ESTAB 0 0 * 3435996 * 3435997 users:(("xterm",pid=29215,fd=3))
您还可以将此脚本用作包装器,lsof
以在其中轻松显示相关信息:
#! /usr/bin/perl
# lsof wrapper to add peer information for unix domain socket.
# Needs Linux 3.3 or above and CONFIG_UNIX_DIAG enabled.
# retrieve peer and direction information from ss
my (%peer, %dir);
open SS, '-|', 'ss', '-nexa';
while (<SS>) {
if (/\s(\d+)\s+\*\s+(\d+) ([<-]-[->])$/) {
$peer{$1} = $2;
$dir{$1} = $3;
}
}
close SS;
# Now get info about processes tied to sockets using lsof
my (%fields, %proc);
open LSOF, '-|', 'lsof', '-nPUFpcfin';
while (<LSOF>) {
if (/(.)(.*)/) {
$fields{$1} = $2;
if ($1 eq 'n') {
$proc{$fields{i}}->{"$fields{c},$fields{p}" .
($fields{n} =~ m{^([@/].*?)( type=\w+)?$} ? ",$1" : "")} = "";
}
}
}
close LSOF;
# and finally process the lsof output
open LSOF, '-|', 'lsof', @ARGV;
while (<LSOF>) {
chomp;
if (/\sunix\s+\S+\s+\S+\s+(\d+)\s/) {
my $peer = $peer{$1};
if (defined($peer)) {
$_ .= $peer ?
" ${dir{$1}} $peer\[" . (join("|", keys%{$proc{$peer}})||"?") . "]" :
"[LISTENING]";
}
}
print "$_\n";
}
close LSOF or exit(1);
例如:
$ sudo that-lsof-wrapper -ad3 -p 29215
命令PID用户FD类型设备尺寸/关闭节点名称
xterm 29215 stephane 3u unix 0xffff8800a07da4c0 0t0 3435996 type = STREAM <-> 3435997 [Xorg,3080,@ / tmp / .X11-unix / X0]
在linux-3.3之前
用于检索unix套接字信息的旧Linux API是通过/proc/net/unix
文本文件获取的。它列出了所有Unix域套接字(包括套接字对)。@Totor已在其中说明了其中的第一个字段(如果没有使用kernel.kptr_restrict
sysctl参数隐藏给非超级用户),则该字段包含结构的内核地址,该结构的内核地址包含指向相应对等方的字段。这也是Unix套接字上列的输出。unix_sock
peer
unix_sock
lsof
DEVICE
现在获取该peer
字段的值意味着能够读取内核内存并知道该peer
字段相对于unix_sock
地址的偏移量。
已经给出了几种gdb
基于和systemtap
基于的解决方案,但是它们需要gdb
/ systemtap
和Linux内核调试符号来安装正在运行的内核,通常在生产系统上不是这样。
硬编码偏移量并不是真正的选择,因为随内核版本的不同而不同。
现在,我们可以在确定偏移使用启发式方法:有我们的工具来创建一个虚拟的socketpair
(后来我们知道,这两个同龄人的地址),并搜索的地址对周围的内存在另一端,以确定偏移。
这是一个使用该功能的概念验证脚本perl
(已在i386上的内核2.4.27和2.6.32以及amd64上的3.13和3.16进行了成功测试)。像上面一样,它可以作为包装器lsof
:
例如:
$ that-lsof-wrapper -aUc nm-applet
命令PID用户FD类型设备尺寸/关闭节点名称
纳米小应用程序4183的Stephane 4U UNIX 0xffff8800a055eb40 0t0 36888型= STREAM - > 0xffff8800a055e7c0 [DBUS守护,4190,@ / TMP / DBUS-AiBCXOnuP6]
纳米小程序4183的Stephane 7U UNIX 0xffff8800a055e440 0t0 36890型= STREAM - > 0xffff8800a055e0c0 [Xorg则3080,@ / TMP / .X11-UNIX / X0]
纳米小程序4183的Stephane 8U UNIX 0xffff8800a05c1040 0t0 36201型= STREAM - > 0xffff8800a05c13c0 [DBUS守护,4118,@ / TMP / DBUS-yxxNr1NkYC]
纳米小程序4183个的Stephane 11U Unix 0xffff8800a055d080 0t0 36219 type = STREAM-> 0xffff8800a055d400 [dbus-daemon,4118,@ / tmp / dbus-yxxNr1NkYC]
nm-applet 4183 stephane 12u unix 0xffff88022e0dfb80 0t0 36221 type = daREAM-268 / run / dbus / system_bus_socket]
nm-applet 4183 stephane 13u Unix 0xffff88022e0f80c0 0t0 37025 type = STREAM-> 0xffff88022e29ec00 [dbus-daemon,2268,/ var / run / dbus / system_bus_socket]
这是脚本:
#! /usr/bin/perl
# wrapper around lsof to add peer information for Unix
# domain sockets. needs lsof, and superuser privileges.
# Copyright Stephane Chazelas 2015, public domain.
# example: sudo this-lsof-wrapper -aUc Xorg
use Socket;
open K, "<", "/proc/kcore" or die "open kcore: $!";
read K, $h, 8192 # should be more than enough
or die "read kcore: $!";
# parse ELF header
my ($t,$o,$n) = unpack("x4Cx[C19L!]L!x[L!C8]S", $h);
$t = $t == 1 ? "L3x4Lx12" : "Lx4QQx8Qx16"; # program header ELF32 or ELF64
my @headers = unpack("x$o($t)$n",$h);
# read data from kcore at given address (obtaining file offset from ELF
# @headers)
sub readaddr {
my @h = @headers;
my ($addr, $length) = @_;
my $offset;
while (my ($t, $o, $v, $s) = splice @h, 0, 4) {
if ($addr >= $v && $addr < $v + $s) {
$offset = $o + $addr - $v;
if ($addr + $length - $v > $s) {
$length = $s - ($addr - $v);
}
last;
}
}
return undef unless defined($offset);
seek K, $offset, 0 or die "seek kcore: $!";
my $ret;
read K, $ret, $length or die "read($length) kcore \@$offset: $!";
return $ret;
}
# create a dummy socketpair to try find the offset in the
# kernel structure
socketpair(Rdr, Wtr, AF_UNIX, SOCK_STREAM, PF_UNSPEC)
or die "socketpair: $!";
$r = readlink("/proc/self/fd/" . fileno(Rdr)) or die "readlink Rdr: $!";
$r =~ /\[(\d+)/; $r = $1;
$w = readlink("/proc/self/fd/" . fileno(Wtr)) or die "readlink Wtr: $!";
$w =~ /\[(\d+)/; $w = $1;
# now $r and $w contain the socket inodes of both ends of the socketpair
die "Can't determine peer offset" unless $r && $w;
# get the inode->address mapping
open U, "<", "/proc/net/unix" or die "open unix: $!";
while (<U>) {
if (/^([0-9a-f]+):(?:\s+\S+){5}\s+(\d+)/) {
$addr{$2} = hex $1;
}
}
close U;
die "Can't determine peer offset" unless $addr{$r} && $addr{$w};
# read 2048 bytes starting at the address of Rdr and hope to find
# the address of Wtr referenced somewhere in there.
$around = readaddr $addr{$r}, 2048;
my $offset = 0;
my $ptr_size = length(pack("L!",0));
my $found;
for (unpack("L!*", $around)) {
if ($_ == $addr{$w}) {
$found = 1;
last;
}
$offset += $ptr_size;
}
die "Can't determine peer offset" unless $found;
my %peer;
# now retrieve peer for each socket
for my $inode (keys %addr) {
$peer{$addr{$inode}} = unpack("L!", readaddr($addr{$inode}+$offset,$ptr_size));
}
close K;
# Now get info about processes tied to sockets using lsof
my (%fields, %proc);
open LSOF, '-|', 'lsof', '-nPUFpcfdn';
while (<LSOF>) {
if (/(.)(.*)/) {
$fields{$1} = $2;
if ($1 eq 'n') {
$proc{hex($fields{d})}->{"$fields{c},$fields{p}" .
($fields{n} =~ m{^([@/].*?)( type=\w+)?$} ? ",$1" : "")} = "";
}
}
}
close LSOF;
# and finally process the lsof output
open LSOF, '-|', 'lsof', @ARGV;
while (<LSOF>) {
chomp;
for my $addr (/0x[0-9a-f]+/g) {
$addr = hex $addr;
my $peer = $peer{$addr};
if (defined($peer)) {
$_ .= $peer ?
sprintf(" -> 0x%x[", $peer) . join("|", keys%{$proc{$peer}}) . "]" :
"[LISTENING]";
last;
}
}
print "$_\n";
}
close LSOF or exit(1);