xref: /freebsd/usr.bin/netstat/unix.c (revision 95968ea7ec8f1cd3c1d03cc56c704cb2392d0d25)
19b50d902SRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
49b50d902SRodney W. Grimes  * Copyright (c) 1983, 1988, 1993
59b50d902SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
69b50d902SRodney W. Grimes  *
79b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
89b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
99b50d902SRodney W. Grimes  * are met:
109b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
119b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
129b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
139b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
149b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
169b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
179b50d902SRodney W. Grimes  *    without specific prior written permission.
189b50d902SRodney W. Grimes  *
199b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
209b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
219b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
229b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
239b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
249b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
259b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
269b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
279b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
289b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
299b50d902SRodney W. Grimes  * SUCH DAMAGE.
309b50d902SRodney W. Grimes  */
319b50d902SRodney W. Grimes 
326cc6f122SPhilippe Charnier #include <sys/cdefs.h>
339b50d902SRodney W. Grimes /*
349b50d902SRodney W. Grimes  * Display protocol blocks in the unix domain.
359b50d902SRodney W. Grimes  */
369b50d902SRodney W. Grimes #include <sys/param.h>
37d8d89152SDavid Greenman #include <sys/queue.h>
389b50d902SRodney W. Grimes #include <sys/protosw.h>
399b50d902SRodney W. Grimes #include <sys/socket.h>
400e229f34SGleb Smirnoff #define	_WANT_SOCKET
419b50d902SRodney W. Grimes #include <sys/socketvar.h>
429b50d902SRodney W. Grimes #include <sys/mbuf.h>
439b50d902SRodney W. Grimes #include <sys/sysctl.h>
449b50d902SRodney W. Grimes #include <sys/un.h>
450e229f34SGleb Smirnoff #define	_WANT_UNPCB
469b50d902SRodney W. Grimes #include <sys/unpcb.h>
479b50d902SRodney W. Grimes 
489b50d902SRodney W. Grimes #include <netinet/in.h>
499b50d902SRodney W. Grimes 
504f81ef50SGarrett Wollman #include <errno.h>
518ad9b1a3SGarrett Wollman #include <stddef.h>
527b95a1ebSYaroslav Tykhiy #include <stdint.h>
539b50d902SRodney W. Grimes #include <stdio.h>
549b50d902SRodney W. Grimes #include <stdlib.h>
55ade9ccfeSMarcel Moolenaar #include <stdbool.h>
56feda1a43SJohn Baldwin #include <strings.h>
574f81ef50SGarrett Wollman #include <kvm.h>
58ade9ccfeSMarcel Moolenaar #include <libxo/xo.h>
599b50d902SRodney W. Grimes #include "netstat.h"
609b50d902SRodney W. Grimes 
615e051718SAssar Westerlund static	void unixdomainpr(struct xunpcb *, struct xsocket *);
629b50d902SRodney W. Grimes 
634f81ef50SGarrett Wollman static	const char *const socktype[] =
649b50d902SRodney W. Grimes     { "#0", "stream", "dgram", "raw", "rdm", "seqpacket" };
659b50d902SRodney W. Grimes 
66feda1a43SJohn Baldwin static int
pcblist_sysctl(int type,char ** bufp)67feda1a43SJohn Baldwin pcblist_sysctl(int type, char **bufp)
689b50d902SRodney W. Grimes {
694f81ef50SGarrett Wollman 	char 	*buf;
704f81ef50SGarrett Wollman 	size_t	len;
714f81ef50SGarrett Wollman 	char mibvar[sizeof "net.local.seqpacket.pcblist"];
724f81ef50SGarrett Wollman 
73f193c8ceSXin LI 	snprintf(mibvar, sizeof(mibvar), "net.local.%s.pcblist", socktype[type]);
744f81ef50SGarrett Wollman 
754f81ef50SGarrett Wollman 	len = 0;
764f81ef50SGarrett Wollman 	if (sysctlbyname(mibvar, 0, &len, 0, 0) < 0) {
774f81ef50SGarrett Wollman 		if (errno != ENOENT)
78ade9ccfeSMarcel Moolenaar 			xo_warn("sysctl: %s", mibvar);
79feda1a43SJohn Baldwin 		return (-1);
804f81ef50SGarrett Wollman 	}
81ef1cb629SMarcelo Araujo 	if ((buf = malloc(len)) == NULL) {
82ade9ccfeSMarcel Moolenaar 		xo_warnx("malloc %lu bytes", (u_long)len);
83feda1a43SJohn Baldwin 		return (-2);
844f81ef50SGarrett Wollman 	}
854f81ef50SGarrett Wollman 	if (sysctlbyname(mibvar, buf, &len, 0, 0) < 0) {
86ade9ccfeSMarcel Moolenaar 		xo_warn("sysctl: %s", mibvar);
874f81ef50SGarrett Wollman 		free(buf);
88feda1a43SJohn Baldwin 		return (-2);
894f81ef50SGarrett Wollman 	}
90feda1a43SJohn Baldwin 	*bufp = buf;
91feda1a43SJohn Baldwin 	return (0);
92feda1a43SJohn Baldwin }
93feda1a43SJohn Baldwin 
94feda1a43SJohn Baldwin static int
pcblist_kvm(u_long count_off,u_long gencnt_off,u_long head_off,char ** bufp)95feda1a43SJohn Baldwin pcblist_kvm(u_long count_off, u_long gencnt_off, u_long head_off, char **bufp)
96feda1a43SJohn Baldwin {
97feda1a43SJohn Baldwin 	struct unp_head head;
980e229f34SGleb Smirnoff 	struct unpcb *unp, unp0, unp_conn;
99feda1a43SJohn Baldwin 	u_char sun_len;
100feda1a43SJohn Baldwin 	struct socket so;
101feda1a43SJohn Baldwin 	struct xunpgen xug;
102feda1a43SJohn Baldwin 	struct xunpcb xu;
103feda1a43SJohn Baldwin 	unp_gen_t unp_gencnt;
104feda1a43SJohn Baldwin 	u_int	unp_count;
105feda1a43SJohn Baldwin 	char 	*buf, *p;
106feda1a43SJohn Baldwin 	size_t	len;
107feda1a43SJohn Baldwin 
108feda1a43SJohn Baldwin 	if (count_off == 0 || gencnt_off == 0)
109feda1a43SJohn Baldwin 		return (-2);
110feda1a43SJohn Baldwin 	if (head_off == 0)
111feda1a43SJohn Baldwin 		return (-1);
112feda1a43SJohn Baldwin 	kread(count_off, &unp_count, sizeof(unp_count));
113feda1a43SJohn Baldwin 	len = 2 * sizeof(xug) + (unp_count + unp_count / 8) * sizeof(xu);
114ef1cb629SMarcelo Araujo 	if ((buf = malloc(len)) == NULL) {
115ade9ccfeSMarcel Moolenaar 		xo_warnx("malloc %lu bytes", (u_long)len);
116feda1a43SJohn Baldwin 		return (-2);
117feda1a43SJohn Baldwin 	}
118feda1a43SJohn Baldwin 	p = buf;
119feda1a43SJohn Baldwin 
120feda1a43SJohn Baldwin #define	COPYOUT(obj, size) do {						\
121feda1a43SJohn Baldwin 	if (len < (size)) {						\
122ade9ccfeSMarcel Moolenaar 		xo_warnx("buffer size exceeded");			\
123feda1a43SJohn Baldwin 		goto fail;						\
124feda1a43SJohn Baldwin 	}								\
125feda1a43SJohn Baldwin 	bcopy((obj), p, (size));					\
126feda1a43SJohn Baldwin 	len -= (size);							\
127feda1a43SJohn Baldwin 	p += (size);							\
128feda1a43SJohn Baldwin } while (0)
129feda1a43SJohn Baldwin 
130feda1a43SJohn Baldwin #define	KREAD(off, buf, len) do {					\
131feda1a43SJohn Baldwin 	if (kread((uintptr_t)(off), (buf), (len)) != 0)			\
132feda1a43SJohn Baldwin 		goto fail;						\
133feda1a43SJohn Baldwin } while (0)
134feda1a43SJohn Baldwin 
135feda1a43SJohn Baldwin 	/* Write out header. */
136feda1a43SJohn Baldwin 	kread(gencnt_off, &unp_gencnt, sizeof(unp_gencnt));
137feda1a43SJohn Baldwin 	xug.xug_len = sizeof xug;
138feda1a43SJohn Baldwin 	xug.xug_count = unp_count;
139feda1a43SJohn Baldwin 	xug.xug_gen = unp_gencnt;
140feda1a43SJohn Baldwin 	xug.xug_sogen = 0;
141feda1a43SJohn Baldwin 	COPYOUT(&xug, sizeof xug);
142feda1a43SJohn Baldwin 
143feda1a43SJohn Baldwin 	/* Walk the PCB list. */
144feda1a43SJohn Baldwin 	xu.xu_len = sizeof xu;
145feda1a43SJohn Baldwin 	KREAD(head_off, &head, sizeof(head));
146feda1a43SJohn Baldwin 	LIST_FOREACH(unp, &head, unp_link) {
147*3a20f06aSBrooks Davis 		xu.xu_unpp = (uintptr_t)unp;
1480e229f34SGleb Smirnoff 		KREAD(unp, &unp0, sizeof (*unp));
1490e229f34SGleb Smirnoff 		unp = &unp0;
150feda1a43SJohn Baldwin 
151feda1a43SJohn Baldwin 		if (unp->unp_gencnt > unp_gencnt)
152feda1a43SJohn Baldwin 			continue;
153feda1a43SJohn Baldwin 		if (unp->unp_addr != NULL) {
154feda1a43SJohn Baldwin 			KREAD(unp->unp_addr, &sun_len, sizeof(sun_len));
155feda1a43SJohn Baldwin 			KREAD(unp->unp_addr, &xu.xu_addr, sun_len);
156feda1a43SJohn Baldwin 		}
157feda1a43SJohn Baldwin 		if (unp->unp_conn != NULL) {
158feda1a43SJohn Baldwin 			KREAD(unp->unp_conn, &unp_conn, sizeof(unp_conn));
159feda1a43SJohn Baldwin 			if (unp_conn.unp_addr != NULL) {
160feda1a43SJohn Baldwin 				KREAD(unp_conn.unp_addr, &sun_len,
161feda1a43SJohn Baldwin 				    sizeof(sun_len));
162feda1a43SJohn Baldwin 				KREAD(unp_conn.unp_addr, &xu.xu_caddr, sun_len);
163feda1a43SJohn Baldwin 			}
164feda1a43SJohn Baldwin 		}
165feda1a43SJohn Baldwin 		KREAD(unp->unp_socket, &so, sizeof(so));
166feda1a43SJohn Baldwin 		if (sotoxsocket(&so, &xu.xu_socket) != 0)
167feda1a43SJohn Baldwin 			goto fail;
168feda1a43SJohn Baldwin 		COPYOUT(&xu, sizeof(xu));
169feda1a43SJohn Baldwin 	}
170feda1a43SJohn Baldwin 
171feda1a43SJohn Baldwin 	/* Reread the counts and write the footer. */
172feda1a43SJohn Baldwin 	kread(count_off, &unp_count, sizeof(unp_count));
173feda1a43SJohn Baldwin 	kread(gencnt_off, &unp_gencnt, sizeof(unp_gencnt));
174feda1a43SJohn Baldwin 	xug.xug_count = unp_count;
175feda1a43SJohn Baldwin 	xug.xug_gen = unp_gencnt;
176feda1a43SJohn Baldwin 	COPYOUT(&xug, sizeof xug);
177feda1a43SJohn Baldwin 
178feda1a43SJohn Baldwin 	*bufp = buf;
179feda1a43SJohn Baldwin 	return (0);
180feda1a43SJohn Baldwin 
181feda1a43SJohn Baldwin fail:
182feda1a43SJohn Baldwin 	free(buf);
183feda1a43SJohn Baldwin 	return (-1);
184feda1a43SJohn Baldwin #undef COPYOUT
185feda1a43SJohn Baldwin #undef KREAD
186feda1a43SJohn Baldwin }
187feda1a43SJohn Baldwin 
188feda1a43SJohn Baldwin void
unixpr(u_long count_off,u_long gencnt_off,u_long dhead_off,u_long shead_off,u_long sphead_off,bool * first)189963b7ccdSRobert Watson unixpr(u_long count_off, u_long gencnt_off, u_long dhead_off, u_long shead_off,
190ade9ccfeSMarcel Moolenaar     u_long sphead_off, bool *first)
191feda1a43SJohn Baldwin {
192feda1a43SJohn Baldwin 	char 	*buf;
193feda1a43SJohn Baldwin 	int	ret, type;
194feda1a43SJohn Baldwin 	struct	xsocket *so;
195feda1a43SJohn Baldwin 	struct	xunpgen *xug, *oxug;
196feda1a43SJohn Baldwin 	struct	xunpcb *xunp;
197963b7ccdSRobert Watson 	u_long	head_off;
198feda1a43SJohn Baldwin 
199321ae07fSPhilippe Charnier 	buf = NULL;
200feda1a43SJohn Baldwin 	for (type = SOCK_STREAM; type <= SOCK_SEQPACKET; type++) {
201feda1a43SJohn Baldwin 		if (live)
202feda1a43SJohn Baldwin 			ret = pcblist_sysctl(type, &buf);
203963b7ccdSRobert Watson 		else {
204963b7ccdSRobert Watson 			head_off = 0;
205963b7ccdSRobert Watson 			switch (type) {
206963b7ccdSRobert Watson 			case SOCK_STREAM:
207963b7ccdSRobert Watson 				head_off = shead_off;
208963b7ccdSRobert Watson 				break;
209963b7ccdSRobert Watson 
210963b7ccdSRobert Watson 			case SOCK_DGRAM:
211963b7ccdSRobert Watson 				head_off = dhead_off;
212963b7ccdSRobert Watson 				break;
213963b7ccdSRobert Watson 
214963b7ccdSRobert Watson 			case SOCK_SEQPACKET:
215963b7ccdSRobert Watson 				head_off = sphead_off;
216963b7ccdSRobert Watson 				break;
217963b7ccdSRobert Watson 			}
218963b7ccdSRobert Watson 			ret = pcblist_kvm(count_off, gencnt_off, head_off,
219963b7ccdSRobert Watson 			    &buf);
220963b7ccdSRobert Watson 		}
221feda1a43SJohn Baldwin 		if (ret == -1)
222feda1a43SJohn Baldwin 			continue;
223feda1a43SJohn Baldwin 		if (ret < 0)
224feda1a43SJohn Baldwin 			return;
2254f81ef50SGarrett Wollman 
2264f81ef50SGarrett Wollman 		oxug = xug = (struct xunpgen *)buf;
2274f81ef50SGarrett Wollman 		for (xug = (struct xunpgen *)((char *)xug + xug->xug_len);
2284f81ef50SGarrett Wollman 		    xug->xug_len > sizeof(struct xunpgen);
2294f81ef50SGarrett Wollman 		    xug = (struct xunpgen *)((char *)xug + xug->xug_len)) {
2304f81ef50SGarrett Wollman 			xunp = (struct xunpcb *)xug;
2314f81ef50SGarrett Wollman 			so = &xunp->xu_socket;
2324f81ef50SGarrett Wollman 
2334f81ef50SGarrett Wollman 			/* Ignore PCBs which were freed during copyout. */
2340e229f34SGleb Smirnoff 			if (xunp->unp_gencnt > oxug->xug_gen)
2354f81ef50SGarrett Wollman 				continue;
236ade9ccfeSMarcel Moolenaar 			if (*first) {
237ade9ccfeSMarcel Moolenaar 				xo_open_list("socket");
238ade9ccfeSMarcel Moolenaar 				*first = false;
239ade9ccfeSMarcel Moolenaar 			}
240ade9ccfeSMarcel Moolenaar 			xo_open_instance("socket");
2414f81ef50SGarrett Wollman 			unixdomainpr(xunp, so);
242ade9ccfeSMarcel Moolenaar 			xo_close_instance("socket");
2434f81ef50SGarrett Wollman 		}
2444f81ef50SGarrett Wollman 		if (xug != oxug && xug->xug_gen != oxug->xug_gen) {
2454f81ef50SGarrett Wollman 			if (oxug->xug_count > xug->xug_count) {
246ade9ccfeSMarcel Moolenaar 				xo_emit("Some {:type/%s} sockets may have "
247ade9ccfeSMarcel Moolenaar 				    "been {:action/deleted}.\n",
2484f81ef50SGarrett Wollman 				    socktype[type]);
2494f81ef50SGarrett Wollman 			} else if (oxug->xug_count < xug->xug_count) {
250ade9ccfeSMarcel Moolenaar 				xo_emit("Some {:type/%s} sockets may have "
251ade9ccfeSMarcel Moolenaar 				    "been {:action/created}.\n",
2524f81ef50SGarrett Wollman 				    socktype[type]);
2534f81ef50SGarrett Wollman 			} else {
254ade9ccfeSMarcel Moolenaar 				xo_emit("Some {:type/%s} sockets may have "
255ade9ccfeSMarcel Moolenaar 				    "been {:action/created or deleted}",
2564f81ef50SGarrett Wollman 				    socktype[type]);
2574f81ef50SGarrett Wollman 			}
2584f81ef50SGarrett Wollman 		}
2594f81ef50SGarrett Wollman 		free(buf);
2604f81ef50SGarrett Wollman 	}
2614f81ef50SGarrett Wollman }
2624f81ef50SGarrett Wollman 
2634f81ef50SGarrett Wollman static void
unixdomainpr(struct xunpcb * xunp,struct xsocket * so)2645e051718SAssar Westerlund unixdomainpr(struct xunpcb *xunp, struct xsocket *so)
2654f81ef50SGarrett Wollman {
2664f81ef50SGarrett Wollman 	struct sockaddr_un *sa;
2679b50d902SRodney W. Grimes 	static int first = 1;
2687325dfbbSAlfred Perlstein 	char buf1[33];
269ade9ccfeSMarcel Moolenaar 	static const char *titles[2] = {
270ade9ccfeSMarcel Moolenaar 	    "{T:/%-8.8s} {T:/%-6.6s} {T:/%-6.6s} {T:/%-6.6s} {T:/%8.8s} "
271ade9ccfeSMarcel Moolenaar 	    "{T:/%8.8s} {T:/%8.8s} {T:/%8.8s} {T:Addr}\n",
272ade9ccfeSMarcel Moolenaar 	    "{T:/%-16.16s} {T:/%-6.6s} {T:/%-6.6s} {T:/%-6.6s} {T:/%16.16s} "
273ade9ccfeSMarcel Moolenaar 	    "{T:/%16.16s} {T:/%16.16s} {T:/%16.16s} {T:Addr}\n"
274ade9ccfeSMarcel Moolenaar 	};
275ade9ccfeSMarcel Moolenaar 	static const char *format[2] = {
276ade9ccfeSMarcel Moolenaar 	    "{q:address/%8lx} {t:type/%-6.6s} "
277ade9ccfeSMarcel Moolenaar 	    "{:receive-bytes-waiting/%6u} "
278ade9ccfeSMarcel Moolenaar 	    "{:send-bytes-waiting/%6u} "
279ade9ccfeSMarcel Moolenaar 	    "{q:vnode/%8lx} {q:connection/%8lx} "
280ade9ccfeSMarcel Moolenaar 	    "{q:first-reference/%8lx} {q:next-reference/%8lx}",
281ade9ccfeSMarcel Moolenaar 	    "{q:address/%16lx} {t:type/%-6.6s} "
282ade9ccfeSMarcel Moolenaar 	    "{:receive-bytes-waiting/%6u} "
283ade9ccfeSMarcel Moolenaar 	    "{:send-bytes-waiting/%6u} "
284ade9ccfeSMarcel Moolenaar 	    "{q:vnode/%16lx} {q:connection/%16lx} "
285ade9ccfeSMarcel Moolenaar 	    "{q:first-reference/%16lx} {q:next-reference/%16lx}"
286ade9ccfeSMarcel Moolenaar 	};
287ade9ccfeSMarcel Moolenaar 	int fmt = (sizeof(void *) == 8) ? 1 : 0;
2889b50d902SRodney W. Grimes 
2890e229f34SGleb Smirnoff 	sa = (xunp->xu_addr.sun_family == AF_UNIX) ? &xunp->xu_addr : NULL;
2904f81ef50SGarrett Wollman 
291f1c0a78dSMaxim Konovalov 	if (first && !Lflag) {
292ade9ccfeSMarcel Moolenaar 		xo_emit("{T:Active UNIX domain sockets}\n");
293ade9ccfeSMarcel Moolenaar 		xo_emit(titles[fmt],
2949b50d902SRodney W. Grimes 		    "Address", "Type", "Recv-Q", "Send-Q",
2959b50d902SRodney W. Grimes 		    "Inode", "Conn", "Refs", "Nextref");
2969b50d902SRodney W. Grimes 		first = 0;
2979b50d902SRodney W. Grimes 	}
298f1c0a78dSMaxim Konovalov 
299f1c0a78dSMaxim Konovalov 	if (Lflag && so->so_qlimit == 0)
300f1c0a78dSMaxim Konovalov 		return;
301f1c0a78dSMaxim Konovalov 
302f1c0a78dSMaxim Konovalov 	if (Lflag) {
3037325dfbbSAlfred Perlstein 		snprintf(buf1, sizeof buf1, "%u/%u/%u", so->so_qlen,
304f1c0a78dSMaxim Konovalov 		    so->so_incqlen, so->so_qlimit);
3057325dfbbSAlfred Perlstein 		xo_emit("unix  {d:socket/%-32.32s}{e:queue-length/%u}"
3067325dfbbSAlfred Perlstein 		    "{e:incomplete-queue-length/%u}{e:queue-limit/%u}",
307ade9ccfeSMarcel Moolenaar 		    buf1, so->so_qlen, so->so_incqlen, so->so_qlimit);
308f1c0a78dSMaxim Konovalov 	} else {
309ade9ccfeSMarcel Moolenaar 		xo_emit(format[fmt],
3104f81ef50SGarrett Wollman 		    (long)so->so_pcb, socktype[so->so_type], so->so_rcv.sb_cc,
3110e229f34SGleb Smirnoff 		    so->so_snd.sb_cc, (long)xunp->unp_vnode,
3120e229f34SGleb Smirnoff 		    (long)xunp->unp_conn, (long)xunp->xu_firstref,
3130e229f34SGleb Smirnoff 		    (long)xunp->xu_nextref);
314f1c0a78dSMaxim Konovalov 	}
315e4bb0b9aSGarrett Wollman 	if (sa)
316ade9ccfeSMarcel Moolenaar 		xo_emit(" {:path/%.*s}",
31722694ebaSBruce Evans 		    (int)(sa->sun_len - offsetof(struct sockaddr_un, sun_path)),
318bc6ee716SAndrey A. Chernov 		    sa->sun_path);
319ade9ccfeSMarcel Moolenaar 	xo_emit("\n");
3209b50d902SRodney W. Grimes }
321