]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - share/man/man4/ipsec.4
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / share / man / man4 / ipsec.4
1 .\"     $KAME: ipsec.4,v 1.17 2001/06/27 15:25:10 itojun Exp $
2 .\"
3 .\" Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the project nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\" $FreeBSD$
31 .\"
32 .Dd August 5, 2007
33 .Dt IPSEC 4
34 .Os
35 .Sh NAME
36 .Nm IPsec
37 .Nd Internet Protocol Security protocol
38 .Sh SYNOPSIS
39 .Cd "options IPSEC"
40 .Cd "options IPSEC_FILTERTUNNEL"
41 .Cd "device crypto"
42 .Pp
43 .In sys/types.h
44 .In netinet/in.h
45 .In netipsec/ipsec.h
46 .In netipsec/ipsec6.h
47 .Sh DESCRIPTION
48 .Nm
49 is a security protocol implemented within the Internet Protocol layer
50 of the networking stack.
51 .Nm
52 is defined for both IPv4 and IPv6
53 .Xr ( inet 4
54 and
55 .Xr inet6 4 ) .
56 .Nm
57 is a set of protocols,
58 .Tn ESP
59 (for Encapsulating Security Payload)
60 .Tn AH
61 (for Authentication Header),
62 and
63 .Tn IPComp
64 (for IP Payload Compression Protocol)
65 that provide security services for IP datagrams.
66 AH both authenticates and guarantees the integrity of an IP packet
67 by attaching a cryptographic checksum computed using one-way hash functions.
68 ESP, in addition, prevents unauthorized parties from reading the payload of
69 an IP packet by also encrypting it.
70 IPComp tries to increase communication performance by compressing IP payload,
71 thus reducing the amount of data sent.
72 This will help nodes on slow links but with enough computing power.
73 .Nm
74 operates in one of two modes: transport mode or tunnel mode.
75 Transport mode is used to protect peer-to-peer communication between end nodes.
76 Tunnel mode encapsulates IP packets within other IP packets
77 and is designed for security gateways such as VPN endpoints.
78 .Pp
79 System configuration requires the
80 .Xr crypto 4
81 subsystem.
82 .Pp
83 The packets can be passed to a virtual
84 .Xr enc 4
85 interface,
86 to perform packet filtering before outbound encryption and after decapsulation
87 inbound.
88 .Pp
89 To properly filter on the inner packets of an
90 .Nm
91 tunnel with firewalls, add
92 .Cd "options IPSEC_FILTERTUNNEL"
93 to the kernel configuration file.
94 .\"
95 .Ss Kernel interface
96 .Nm
97 is controlled by a key management and policy engine,
98 that reside in the operating system kernel.
99 Key management
100 is the process of associating keys with security associations, also
101 know as SAs.
102 Policy management dictates when new security
103 associations created or destroyed.
104 .Pp
105 The key management engine can be accessed from userland by using
106 .Dv PF_KEY
107 sockets.
108 The
109 .Dv PF_KEY
110 socket API is defined in RFC2367.
111 .Pp
112 The policy engine is controlled by an extension to the
113 .Dv PF_KEY
114 API,
115 .Xr setsockopt 2
116 operations, and
117 .Xr sysctl 3
118 interface.
119 The kernel implements
120 an extended version of the
121 .Dv PF_KEY
122 interface and allows the programmer to define IPsec policies
123 which are similar to the per-packet filters.
124 The
125 .Xr setsockopt 2
126 interface is used to define per-socket behavior, and
127 .Xr sysctl 3
128 interface is used to define host-wide default behavior.
129 .Pp
130 The kernel code does not implement a dynamic encryption key exchange protocol
131 such as IKE
132 (Internet Key Exchange).
133 Key exchange protocols are beyond what is necessary in the kernel and
134 should be implemented as daemon processes which call the
135 .Nm APIs.
136 .\"
137 .Ss Policy management
138 IPsec policies can be managed in one of two ways, either by
139 configuring per-socket policies using the
140 .Xr setsockopt 2
141 system calls, or by configuring kernel level packet filter-based
142 policies using the
143 .Dv PF_KEY
144 interface, via the
145 .Xr setkey 8
146 you can define IPsec policies against packets using rules similar to packet
147 filtering rules.
148 Refer to
149 .Xr setkey 8
150 on how to use it.
151 .Pp
152 When setting policies using the
153 .Xr setkey 8
154 command, the
155 .Dq Li default
156 option instructs the system to use its default policy, as
157 explained below, for processing packets.
158 The following sysctl variables are available for configuring the
159 system's IPsec behavior.
160 The variables can have one of two values.
161 A
162 .Li 1
163 means
164 .Dq Li use ,
165 which means that if there is a security association then use it but if
166 there is not then the packets are not processed by IPsec.
167 The value
168 .Li 2
169 is synonymous with
170 .Dq Li require ,
171 which requires that a security association must exist for the packets
172 to move, and not be dropped.
173 These terms are defined in
174 .Xr ipsec_set_policy 8 .
175 .Bl -column net.inet6.ipsec6.esp_trans_deflev integerxxx
176 .It Sy "Name    Type    Changeable"
177 .It "net.inet.ipsec.esp_trans_deflev    integer yes"
178 .It "net.inet.ipsec.esp_net_deflev      integer yes"
179 .It "net.inet.ipsec.ah_trans_deflev     integer yes"
180 .It "net.inet.ipsec.ah_net_deflev       integer yes"
181 .It "net.inet6.ipsec6.esp_trans_deflev  integer yes"
182 .It "net.inet6.ipsec6.esp_net_deflev    integer yes"
183 .It "net.inet6.ipsec6.ah_trans_deflev   integer yes"
184 .It "net.inet6.ipsec6.ah_net_deflev     integer yes"
185 .El
186 .Pp
187 If the kernel does not find a matching, system wide, policy then the
188 default value is applied.
189 The system wide default policy is specified
190 by the following
191 .Xr sysctl 8
192 variables.
193 .Li 0
194 means
195 .Dq Li discard
196 which asks the kernel to drop the packet.
197 .Li 1
198 means
199 .Dq Li none .
200 .Bl -column net.inet6.ipsec6.def_policy integerxxx
201 .It Sy "Name    Type    Changeable"
202 .It "net.inet.ipsec.def_policy  integer yes"
203 .It "net.inet6.ipsec6.def_policy        integer yes"
204 .El
205 .\"
206 .Ss Miscellaneous sysctl variables
207 When the
208 .Nm
209 protocols are configured for use, all protocols are included in the system.
210 To selectively enable/disable protocols, use
211 .Xr sysctl 8 .
212 .Bl -column net.inet.ipcomp.ipcomp_enable
213 .It Sy "Name    Default"
214 .It "net.inet.esp.esp_enable    On"
215 .It "net.inet.ah.ah_enable      On"
216 .It "net.inet.ipcomp.ipcomp_enable      Off"
217 .El
218 .Pp
219 In addition the following variables are accessible via
220 .Xr sysctl 8 ,
221 for tweaking the kernel's IPsec behavior:
222 .Bl -column net.inet6.ipsec6.inbonud_call_ike integerxxx
223 .It Sy "Name    Type    Changeable"
224 .It "net.inet.ipsec.ah_cleartos integer yes"
225 .It "net.inet.ipsec.ah_offsetmask       integer yes"
226 .It "net.inet.ipsec.dfbit       integer yes"
227 .It "net.inet.ipsec.ecn integer yes"
228 .It "net.inet.ipsec.debug       integer yes"
229 .It "net.inet6.ipsec6.ecn       integer yes"
230 .It "net.inet6.ipsec6.debug     integer yes"
231 .El
232 .Pp
233 The variables are interpreted as follows:
234 .Bl -tag -width 6n
235 .It Li ipsec.ah_cleartos
236 If set to non-zero, the kernel clears the type-of-service field in the IPv4 header
237 during AH authentication data computation.
238 This variable is used to get current systems to inter-operate with devices that
239 implement RFC1826 AH.
240 It should be set to non-zero
241 (clear the type-of-service field)
242 for RFC2402 conformance.
243 .It Li ipsec.ah_offsetmask
244 During AH authentication data computation, the kernel will include a
245 16bit fragment offset field
246 (including flag bits)
247 in the IPv4 header, after computing logical AND with the variable.
248 The variable is used for inter-operating with devices that
249 implement RFC1826 AH.
250 It should be set to zero
251 (clear the fragment offset field during computation)
252 for RFC2402 conformance.
253 .It Li ipsec.dfbit
254 This variable configures the kernel behavior on IPv4 IPsec tunnel encapsulation.
255 If set to 0, the DF bit on the outer IPv4 header will be cleared while
256 1 means that the outer DF bit is set regardless from the inner DF bit and
257 2 indicates that the DF bit is copied from the inner header to the
258 outer one.
259 The variable is supplied to conform to RFC2401 chapter 6.1.
260 .It Li ipsec.ecn
261 If set to non-zero, IPv4 IPsec tunnel encapsulation/decapsulation behavior will
262 be friendly to ECN
263 (explicit congestion notification),
264 as documented in
265 .Li draft-ietf-ipsec-ecn-02.txt .
266 .Xr gif 4
267 talks more about the behavior.
268 .It Li ipsec.debug
269 If set to non-zero, debug messages will be generated via
270 .Xr syslog 3 .
271 .El
272 .Pp
273 Variables under the
274 .Li net.inet6.ipsec6
275 tree have similar meanings to those described above.
276 .\"
277 .Sh PROTOCOLS
278 The
279 .Nm
280 protocol acts as a plug-in to the
281 .Xr inet 4
282 and
283 .Xr inet6 4
284 protocols and therefore supports most of the protocols defined upon
285 those IP-layer protocols.
286 The
287 .Xr icmp 4
288 and
289 .Xr icmp6 4
290 protocols may behave differently with
291 .Nm
292 because
293 .Nm
294 can prevent
295 .Xr icmp 4
296 or
297 .Xr icmp6 4
298 routines from looking into the IP payload.
299 .\"
300 .Sh SEE ALSO
301 .Xr ioctl 2 ,
302 .Xr socket 2 ,
303 .Xr ipsec_set_policy 3 ,
304 .Xr crypto 4 ,
305 .Xr enc 4 ,
306 .Xr icmp6 4 ,
307 .Xr intro 4 ,
308 .Xr ip6 4 ,
309 .Xr setkey 8 ,
310 .Xr sysctl 8
311 .\".Xr racoon 8
312 .Rs
313 .%A "S. Kent"
314 .%A "R. Atkinson"
315 .%T "IP Authentication Header"
316 .%O "RFC 2404"
317 .Re
318 .Rs
319 .%A "S. Kent"
320 .%A "R. Atkinson"
321 .%T "IP Encapsulating Security Payload (ESP)"
322 .%O "RFC 2406"
323 .Re
324 .Sh STANDARDS
325 .Rs
326 .%A Daniel L. McDonald
327 .%A Craig Metz
328 .%A Bao G. Phan
329 .%T "PF_KEY Key Management API, Version 2"
330 .%R RFC
331 .%N 2367
332 .Re
333 .Pp
334 .Rs
335 .%A "D. L. McDonald"
336 .%T "A Simple IP Security API Extension to BSD Sockets"
337 .%R internet draft
338 .%N "draft-mcdonald-simple-ipsec-api-03.txt"
339 .%O work in progress material
340 .Re
341 .Sh HISTORY
342 The original
343 .Nm
344 implementation appeared in the WIDE/KAME IPv6/IPsec stack.
345 .Pp
346 For
347 .Fx 5.0
348 a fully locked IPsec implementation called fast_ipsec was brought in.
349 The protocols drew heavily on the
350 .Ox
351 implementation of the
352 .Tn IPsec
353 protocols.
354 The policy management code was derived from the
355 .Tn KAME
356 implementation found
357 in their
358 .Tn IPsec
359 protocols.
360 The fast_ipsec implementation lacked
361 .Xr ip6 4
362 support but made use of the
363 .Xr crypto 4
364 subsystem.
365 .Pp
366 For
367 .Fx 7.0
368 .Xr ip6 4
369 support was added to fast_ipsec.
370 After this the old KAME IPsec implementation was dropped and fast_ipsec
371 became what now is the only
372 .Nm
373 implementation in
374 .Fx .
375 .Sh BUGS
376 There is no single standard for the policy engine API,
377 so the policy engine API described herein is just for this implementation.
378 .Pp
379 AH and tunnel mode encapsulation may not work as you might expect.
380 If you configure inbound
381 .Dq require
382 policy with an AH tunnel or any IPsec encapsulating policy with AH
383 (like
384 .Dq Li esp/tunnel/A-B/use ah/transport/A-B/require ) ,
385 tunnelled packets will be rejected.
386 This is because the policy check is enforced on the inner packet on reception,
387 and AH authenticates encapsulating
388 (outer)
389 packet, not the encapsulated
390 (inner)
391 packet
392 (so for the receiving kernel there is no sign of authenticity).
393 The issue will be solved when we revamp our policy engine to keep all the
394 packet decapsulation history.
395 .Pp
396 When a large database of security associations or policies is present
397 in the kernel the
398 .Dv SADB_DUMP
399 and
400 .Dv SADB_SPDDUMP
401 operations on
402 .Dv PF_KEY
403 sockets may fail due to lack of space.
404 Increasing the socket buffer
405 size may alleviate this problem.
406 .Pp
407 The
408 .Tn IPcomp
409 protocol support is currently broken.
410 .Pp
411 This documentation needs more review.