xref: /freebsd/share/man/man4/tun.4 (revision b52b9d56d4e96089873a75f9e29062eec19fabba)
1.\" $NetBSD: tun.4,v 1.1 1996/06/25 22:17:37 pk Exp $
2.\" $FreeBSD$
3.\" Based on PR#2411
4.\"
5.Dd June 5, 2001
6.Dt TUN 4
7.Os
8.Sh NAME
9.Nm tun
10.Nd tunnel software network interface
11.Sh SYNOPSIS
12.Cd device tun
13.Sh DESCRIPTION
14The
15.Nm
16interface is a software loopback mechanism that can be loosely
17described as the network interface analog of the
18.Xr pty 4 ,
19that is,
20.Nm
21does for network interfaces what the
22.Xr pty 4
23driver does for terminals.
24.Pp
25The
26.Nm
27driver, like the
28.Xr pty 4
29driver, provides two interfaces: an interface like the usual facility
30it is simulating
31(a network interface in the case of
32.Nm ,
33or a terminal for
34.Xr pty 4 ) ,
35and a character-special device
36.Dq control
37interface.
38.Pp
39The network interfaces are named
40.Dq Li tun0 ,
41.Dq Li tun1 ,
42etc., one for each control device that has been opened.
43These network interfaces persist until the
44.Pa if_tun.ko
45module is unloaded (if
46.Nm
47is built into your kernel, the network interfaces cannot be removed).
48.Pp
49On older systems without
50.Xr devfs 5
51support,
52.Xr MAKEDEV 8
53should be used to create the initial control devices and the task
54of locating an unused device is left up to the opener (a
55.Nm
56device is usually obtained by attempting to open
57.Pa /dev/tun0 ,
58and if that fails
59.Pa /dev/tun1
60etc., until an
61.Va errno
62of
63.Er EBUSY
64is not received).
65.Pp
66On systems with
67.Xr devfs 5
68support,
69.Nm
70permits opens on the special control device
71.Pa /dev/tun .
72When this device is opened,
73.Nm
74will return a handle for the lowest unused
75.Nm
76device (use
77.Xr devname 3
78to determine which).
79Control devices (once successfully opened) persist until
80.Pa if_tun.ko
81is unloaded in the same way that network interfaces persist (see above).
82.Pp
83Each interface supports the usual network-interface
84.Xr ioctl 2 Ns s ,
85such as
86.Dv SIOCSIFADDR
87and
88.Dv SIOCSIFNETMASK ,
89and thus can be used with
90.Xr ifconfig 8
91like any other interface.
92At boot time, they are
93.Dv POINTOPOINT
94interfaces, but this can be changed; see the description of the control
95device, below.
96When the system chooses to transmit a packet on the
97network interface, the packet can be read from the control device
98(it appears as
99.Dq input
100there);
101writing a packet to the control device generates an input
102packet on the network interface, as if the (non\-existent)
103hardware had just received it.
104.Pp
105The tunnel device
106.Pq Pa /dev/tun Ns Ar N
107is exclusive-open
108(it cannot be opened if it is already open).
109A
110.Xr read 2
111call will return an error
112.Pq Er EHOSTDOWN
113if the interface is not
114.Dq ready
115(which means that the control device is open and the interface's
116address has been set).
117.Pp
118Once the interface is ready,
119.Xr read 2
120will return a packet if one is available; if not, it will either block
121until one is or return
122.Er EWOULDBLOCK ,
123depending on whether non-blocking I/O has been enabled.
124If the packet is longer than is allowed for in the buffer passed to
125.Xr read 2 ,
126the extra data will be silently dropped.
127.Pp
128If the
129.Dv TUNSLMODE
130ioctl has been set, packets read from the control device will be prepended
131with the destination address as presented to the network interface output
132routine,
133.Fn tunoutput .
134The destination address is in
135.Vt struct sockaddr
136format.
137The actual length of the prepended address is in the member
138.Va sa_len .
139If the
140.Dv TUNSIFHEAD
141ioctl has been set, packets will be prepended with a four byte address
142family in network byte order.
143.Dv TUNSLMODE
144and
145.Dv TUNSIFHEAD
146are mutually exclusive.
147In any case, the packet data follows immediately.
148.Pp
149A
150.Xr write 2
151call passes a packet in to be
152.Dq received
153on the pseudo-interface.
154If the
155.Dv TUNSIFHEAD
156ioctl has been set, the address family must be prepended, otherwise the
157packet is assumed to be of type
158.Dv AF_INET .
159Each
160.Xr write 2
161call supplies exactly one packet; the packet length is taken from the
162amount of data provided to
163.Xr write 2
164(minus any supplied address family).
165Writes will not block; if the packet cannot be accepted for a
166transient reason
167(e.g., no buffer space available),
168it is silently dropped; if the reason is not transient
169(e.g., packet too large),
170an error is returned.
171.Pp
172The following
173.Xr ioctl 2
174calls are supported
175(defined in
176.Aq Pa net/if_tun.h ) :
177.Bl -tag -width ".Dv TUNSIFMODE"
178.It Dv TUNSDEBUG
179The argument should be a pointer to an
180.Vt int ;
181this sets the internal debugging variable to that value.
182What, if anything, this variable controls is not documented here; see
183the source code.
184.It Dv TUNGDEBUG
185The argument should be a pointer to an
186.Vt int ;
187this stores the internal debugging variable's value into it.
188.It Dv TUNSIFINFO
189The argument should be a pointer to an
190.Vt struct tuninfo
191and allows setting the MTU, the type, and the baudrate of the tunnel
192device.
193The
194.Vt struct tuninfo
195is declared in
196.Aq Pa net/if_tun.h .
197.Pp
198The use of this ioctl is restricted to the super-user.
199.It Dv TUNGIFINFO
200The argument should be a pointer to an
201.Vt struct tuninfo ,
202where the current MTU, type, and baudrate will be stored.
203.It Dv TUNSIFMODE
204The argument should be a pointer to an
205.Vt int ;
206its value must be either
207.Dv IFF_POINTOPOINT
208or
209.Dv IFF_BROADCAST
210and should have
211.Dv IFF_MULTICAST
212OR'd into the value if multicast support is required.
213The type of the corresponding
214.Dq Li tun Ns Ar N
215interface is set to the supplied type.
216If the value is outside the above range, an
217.Er EINVAL
218error is returned.
219The interface must be down at the time; if it is up, an
220.Er EBUSY
221error is returned.
222.It Dv TUNSLMODE
223The argument should be a pointer to an
224.Vt int ;
225a non-zero value turns off
226.Dq multi-af
227mode and turns on
228.Dq link-layer
229mode, causing packets read from the tunnel device to be prepended with
230the network destination address (see above).
231.It Dv TUNSIFPID
232Will set the pid owning the tunnel device to the current process's pid.
233.It Dv TUNSIFHEAD
234The argument should be a pointer to an
235.Vt int ;
236a non-zero value turns off
237.Dq link-layer
238mode, and enables
239.Dq multi-af
240mode, where every packet is preceded with a four byte address family.
241.It Dv TUNGIFHEAD
242The argument should be a pointer to an
243.Vt int ;
244the ioctl sets the value to one if the device is in
245.Dq multi-af
246mode, and zero otherwise.
247.It Dv FIONBIO
248Turn non-blocking I/O for reads off or on, according as the argument
249.Vt int Ns 's
250value is or isn't zero.
251(Writes are always non-blocking.)
252.It Dv FIOASYNC
253Turn asynchronous I/O for reads
254(i.e., generation of
255.Dv SIGIO
256when data is available to be read)
257off or on, according as the argument
258.Vt int Ns 's
259value is or isn't zero.
260.It Dv FIONREAD
261If any packets are queued to be read, store the size of the first one
262into the argument
263.Vt int ;
264otherwise, store zero.
265.It Dv TIOCSPGRP
266Set the process group to receive
267.Dv SIGIO
268signals, when asynchronous I/O is enabled, to the argument
269.Vt int
270value.
271.It Dv TIOCGPGRP
272Retrieve the process group value for
273.Dv SIGIO
274signals into the argument
275.Vt int
276value.
277.El
278.Pp
279The control device also supports
280.Xr select 2
281for read; selecting for write is pointless, and always succeeds, since
282writes are always non-blocking.
283.Pp
284On the last close of the data device, by default, the interface is
285brought down
286(as if with
287.Nm ifconfig Ar tunN Cm down ) .
288All queued packets are thrown away.
289If the interface is up when the data device is not open
290output packets are always thrown away rather than letting
291them pile up.
292.Sh SEE ALSO
293.Xr ioctl 2 ,
294.Xr read 2 ,
295.Xr select 2 ,
296.Xr write 2 ,
297.Xr devname 3 ,
298.Xr inet 4 ,
299.Xr intro 4 ,
300.Xr pty 4 ,
301.Xr devfs 5 ,
302.Xr ifconfig 8 ,
303.Xr MAKEDEV 8
304.Sh AUTHORS
305This manual page was originally obtained from
306.Nx .
307