iPXE
icmpv6.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2013 Michael Brown <mbrown@fensystems.co.uk>.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA.
18 *
19 * You can also choose to distribute this program under the terms of
20 * the Unmodified Binary Distribution Licence (as given in the file
21 * COPYING.UBDL), provided that you have satisfied its requirements.
22 */
23
24FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25FILE_SECBOOT ( PERMITTED );
26
27#include <string.h>
28#include <errno.h>
29#include <byteswap.h>
30#include <ipxe/in.h>
31#include <ipxe/iobuf.h>
32#include <ipxe/tcpip.h>
33#include <ipxe/ping.h>
34#include <ipxe/icmpv6.h>
35
36/** @file
37 *
38 * ICMPv6 protocol
39 *
40 */
41
42/* Disambiguate the various error causes */
43#define EHOSTUNREACH_ROUTE \
44 __einfo_error ( EINFO_EHOSTUNREACH_ROUTE )
45#define EINFO_EHOSTUNREACH_ROUTE \
46 __einfo_uniqify ( EINFO_EHOSTUNREACH, 0, \
47 "No route to destination" )
48#define EHOSTUNREACH_PROHIBITED \
49 __einfo_error ( EINFO_EHOSTUNREACH_PROHIBITED )
50#define EINFO_EHOSTUNREACH_PROHIBITED \
51 __einfo_uniqify ( EINFO_EHOSTUNREACH, 1, \
52 "Communication administratively prohibited" )
53#define EHOSTUNREACH_ADDRESS \
54 __einfo_error ( EINFO_EHOSTUNREACH_ADDRESS )
55#define EINFO_EHOSTUNREACH_ADDRESS \
56 __einfo_uniqify ( EINFO_EHOSTUNREACH, 3, \
57 "Address unreachable" )
58#define EHOSTUNREACH_PORT \
59 __einfo_error ( EINFO_EHOSTUNREACH_PORT )
60#define EINFO_EHOSTUNREACH_PORT \
61 __einfo_uniqify ( EINFO_EHOSTUNREACH, 4, \
62 "Port unreachable" )
63#define EHOSTUNREACH_CODE( code ) \
64 EUNIQ ( EINFO_EHOSTUNREACH, ( (code) & 0x1f ), \
65 EHOSTUNREACH_ROUTE, EHOSTUNREACH_PROHIBITED, \
66 EHOSTUNREACH_ADDRESS, EHOSTUNREACH_PORT )
67
68#define ETIMEDOUT_HOP \
69 __einfo_error ( EINFO_ETIMEDOUT_HOP )
70#define EINFO_ETIMEDOUT_HOP \
71 __einfo_uniqify ( EINFO_ETIMEDOUT, 0, \
72 "Hop limit exceeded in transit" )
73#define ETIMEDOUT_REASSEMBLY \
74 __einfo_error ( EINFO_ETIMEDOUT_REASSEMBLY )
75#define EINFO_ETIMEDOUT_REASSEMBLY \
76 __einfo_uniqify ( EINFO_ETIMEDOUT, 1, \
77 "Fragment reassembly time exceeded" )
78#define ETIMEDOUT_CODE( code ) \
79 EUNIQ ( EINFO_ETIMEDOUT, ( (code) & 0x1f ), \
80 ETIMEDOUT_HOP, ETIMEDOUT_REASSEMBLY )
81
82#define EPROTO_BAD_HEADER \
83 __einfo_error ( EINFO_EPROTO_BAD_HEADER )
84#define EINFO_EPROTO_BAD_HEADER \
85 __einfo_uniqify ( EINFO_EPROTO, 0, \
86 "Erroneous header field" )
87#define EPROTO_NEXT_HEADER \
88 __einfo_error ( EINFO_EPROTO_NEXT_HEADER )
89#define EINFO_EPROTO_NEXT_HEADER \
90 __einfo_uniqify ( EINFO_EPROTO, 1, \
91 "Unrecognised next header type" )
92#define EPROTO_OPTION \
93 __einfo_error ( EINFO_EPROTO_OPTION )
94#define EINFO_EPROTO_OPTION \
95 __einfo_uniqify ( EINFO_EPROTO, 2, \
96 "Unrecognised IPv6 option" )
97#define EPROTO_CODE( code ) \
98 EUNIQ ( EINFO_EPROTO, ( (code) & 0x1f ), \
99 EPROTO_BAD_HEADER, EPROTO_NEXT_HEADER, EPROTO_OPTION )
100
101struct icmp_echo_protocol icmpv6_echo_protocol __icmp_echo_protocol;
102
103/**
104 * Process received ICMPv6 echo request packet
105 *
106 * @v iobuf I/O buffer
107 * @v netdev Network device
108 * @v sin6_src Source socket address
109 * @v sin6_dest Destination socket address
110 * @ret rc Return status code
111 */
112static int icmpv6_rx_echo_request ( struct io_buffer *iobuf,
113 struct net_device *netdev __unused,
114 struct sockaddr_in6 *sin6_src,
115 struct sockaddr_in6 *sin6_dest __unused ) {
116 struct sockaddr_tcpip *st_src =
117 ( ( struct sockaddr_tcpip * ) sin6_src );
118
119 return icmp_rx_echo_request ( iobuf, st_src, &icmpv6_echo_protocol );
120}
121
122/** ICMPv6 echo request handler */
123struct icmpv6_handler icmpv6_echo_request_handler __icmpv6_handler = {
124 .type = ICMPV6_ECHO_REQUEST,
126};
127
128/**
129 * Process received ICMPv6 echo reply packet
130 *
131 * @v iobuf I/O buffer
132 * @v netdev Network device
133 * @v sin6_src Source socket address
134 * @v sin6_dest Destination socket address
135 * @ret rc Return status code
136 */
137static int icmpv6_rx_echo_reply ( struct io_buffer *iobuf,
138 struct net_device *netdev __unused,
139 struct sockaddr_in6 *sin6_src,
140 struct sockaddr_in6 *sin6_dest __unused ) {
141 struct sockaddr_tcpip *st_src =
142 ( ( struct sockaddr_tcpip * ) sin6_src );
143
144 return icmp_rx_echo_reply ( iobuf, st_src );
145}
146
147/** ICMPv6 echo reply handler */
148struct icmpv6_handler icmpv6_echo_reply_handler __icmpv6_handler = {
149 .type = ICMPV6_ECHO_REPLY,
151};
152
153/**
154 * Identify ICMPv6 handler
155 *
156 * @v type ICMPv6 type
157 * @ret handler ICMPv6 handler, or NULL if not found
158 */
159static struct icmpv6_handler * icmpv6_handler ( unsigned int type ) {
160 struct icmpv6_handler *handler;
161
163 if ( handler->type == type )
164 return handler;
165 }
166 return NULL;
167}
168
169/**
170 * Process a received packet
171 *
172 * @v iobuf I/O buffer
173 * @v netdev Network device
174 * @v st_src Partially-filled source address
175 * @v st_dest Partially-filled destination address
176 * @v pshdr_csum Pseudo-header checksum
177 * @ret rc Return status code
178 */
179static int icmpv6_rx ( struct io_buffer *iobuf, struct net_device *netdev,
180 struct sockaddr_tcpip *st_src,
181 struct sockaddr_tcpip *st_dest, uint16_t pshdr_csum ) {
182 struct sockaddr_in6 *sin6_src = ( ( struct sockaddr_in6 * ) st_src );
183 struct sockaddr_in6 *sin6_dest = ( ( struct sockaddr_in6 * ) st_dest );
184 struct icmp_header *icmp = iobuf->data;
185 size_t len = iob_len ( iobuf );
186 struct icmpv6_handler *handler;
187 unsigned int csum;
188 int rc;
189
190 /* Sanity check */
191 if ( len < sizeof ( *icmp ) ) {
192 DBGC ( netdev, "ICMPv6 packet too short at %zd bytes (min %zd "
193 "bytes)\n", len, sizeof ( *icmp ) );
194 rc = -EINVAL;
195 goto done;
196 }
197
198 /* Verify checksum */
199 csum = tcpip_continue_chksum ( pshdr_csum, icmp, len );
200 if ( csum != 0 ) {
201 DBGC ( netdev, "ICMPv6 checksum incorrect (is %04x, should be "
202 "0000)\n", csum );
203 DBGC_HDA ( netdev, 0, icmp, len );
204 rc = -EINVAL;
205 goto done;
206 }
207
208 /* Identify handler */
209 handler = icmpv6_handler ( icmp->type );
210 if ( ! handler ) {
211 switch ( icmp->type ) {
213 rc = -EHOSTUNREACH_CODE ( icmp->code );
214 break;
216 rc = -ERANGE;
217 break;
219 rc = -ETIMEDOUT_CODE ( icmp->code );
220 break;
222 rc = -EPROTO_CODE ( icmp->code );
223 break;
224 default:
225 DBGC ( netdev, "ICMPv6 unrecognised type %d code %d\n",
226 icmp->type, icmp->code );
227 rc = -ENOTSUP;
228 break;
229 };
230 goto done;
231 }
232
233 /* Pass to handler */
234 if ( ( rc = handler->rx ( iob_disown ( iobuf ), netdev, sin6_src,
235 sin6_dest ) ) != 0 ) {
236 DBGC ( netdev, "ICMPv6 could not handle type %d: %s\n",
237 icmp->type, strerror ( rc ) );
238 goto done;
239 }
240
241 done:
242 free_iob ( iobuf );
243 return rc;
244}
245
246/** ICMPv6 TCP/IP protocol */
247struct tcpip_protocol icmpv6_protocol __tcpip_protocol = {
248 .name = "ICMPv6",
249 .rx = icmpv6_rx,
250 .tcpip_proto = IP_ICMP6,
251};
252
253/** ICMPv6 echo protocol */
254struct icmp_echo_protocol icmpv6_echo_protocol __icmp_echo_protocol = {
255 .family = AF_INET6,
256 .request = ICMPV6_ECHO_REQUEST,
257 .reply = ICMPV6_ECHO_REPLY,
258 .tcpip_protocol = &icmpv6_protocol,
259 .net_checksum = 1,
260};
#define NULL
NULL pointer (VOID *)
Definition Base.h:322
struct arbelprm_rc_send_wqe rc
Definition arbel.h:3
unsigned short uint16_t
Definition stdint.h:11
struct bofm_section_header done
Definition bofm_test.c:46
ring len
Length.
Definition dwmac.h:226
uint32_t type
Operating system type.
Definition ena.h:1
Error codes.
static struct net_device * netdev
Definition gdbudp.c:53
#define AF_INET6
IPv6 Internet addresses.
Definition socket.h:65
#define __unused
Declare a variable or data structure as unused.
Definition compiler.h:573
#define DBGC(...)
Definition compiler.h:505
#define DBGC_HDA(...)
Definition compiler.h:506
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define EINVAL
Invalid argument.
Definition errno.h:429
#define ENOTSUP
Operation not supported.
Definition errno.h:590
#define ERANGE
Result too large.
Definition errno.h:640
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
int icmp_rx_echo_request(struct io_buffer *iobuf, struct sockaddr_tcpip *st_src, struct icmp_echo_protocol *echo_protocol)
Process a received ICMP echo request.
Definition icmp.c:166
int icmp_rx_echo_reply(struct io_buffer *iobuf, struct sockaddr_tcpip *st_src)
Process a received ICMP echo request.
Definition icmp.c:197
#define __icmp_echo_protocol
Declare an ICMP echo protocol.
Definition icmp.h:60
static int icmpv6_rx(struct io_buffer *iobuf, struct net_device *netdev, struct sockaddr_tcpip *st_src, struct sockaddr_tcpip *st_dest, uint16_t pshdr_csum)
Process a received packet.
Definition icmpv6.c:179
#define EHOSTUNREACH_CODE(code)
Definition icmpv6.c:63
static struct icmpv6_handler * icmpv6_handler(unsigned int type)
Identify ICMPv6 handler.
Definition icmpv6.c:159
static int icmpv6_rx_echo_reply(struct io_buffer *iobuf, struct net_device *netdev __unused, struct sockaddr_in6 *sin6_src, struct sockaddr_in6 *sin6_dest __unused)
Process received ICMPv6 echo reply packet.
Definition icmpv6.c:137
#define ETIMEDOUT_CODE(code)
Definition icmpv6.c:78
static int icmpv6_rx_echo_request(struct io_buffer *iobuf, struct net_device *netdev __unused, struct sockaddr_in6 *sin6_src, struct sockaddr_in6 *sin6_dest __unused)
Process received ICMPv6 echo request packet.
Definition icmpv6.c:112
#define EPROTO_CODE(code)
Definition icmpv6.c:97
ICMPv6 protocol.
#define ICMPV6_PACKET_TOO_BIG
ICMPv6 packet too big.
Definition icmpv6.h:48
#define __icmpv6_handler
Declare an ICMPv6 handler.
Definition icmpv6.h:42
#define ICMPV6_DESTINATION_UNREACHABLE
ICMPv6 destination unreachable.
Definition icmpv6.h:45
#define ICMPV6_TIME_EXCEEDED
ICMPv6 time exceeded.
Definition icmpv6.h:51
#define ICMPV6_ECHO_REQUEST
ICMPv6 echo request.
Definition icmpv6.h:57
#define ICMPV6_ECHO_REPLY
ICMPv6 echo reply.
Definition icmpv6.h:60
#define ICMPV6_HANDLERS
ICMPv6 handler table.
Definition icmpv6.h:39
#define ICMPV6_PARAMETER_PROBLEM
ICMPv6 parameter problem.
Definition icmpv6.h:54
#define IP_ICMP6
Definition in.h:16
Transport-network layer interface.
#define __tcpip_protocol
Declare a TCP/IP transport-layer protocol.
Definition tcpip.h:182
String functions.
void free_iob(struct io_buffer *iobuf)
Free I/O buffer.
Definition iobuf.c:153
I/O buffers.
#define iob_disown(iobuf)
Disown an I/O buffer.
Definition iobuf.h:217
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
Definition iobuf.h:160
ICMP ping protocol.
char * strerror(int errno)
Retrieve string representation of error number.
Definition strerror.c:79
An ICMP echo protocol.
Definition icmp.h:42
An ICMP header.
Definition icmp.h:20
uint8_t type
Type.
Definition icmp.h:22
uint8_t code
Code.
Definition icmp.h:24
An ICMPv6 handler.
Definition icmpv6.h:20
int(* rx)(struct io_buffer *iobuf, struct net_device *netdev, struct sockaddr_in6 *sin6_src, struct sockaddr_in6 *sin6_dest)
Process received packet.
Definition icmpv6.h:33
unsigned int type
Type.
Definition icmpv6.h:22
A persistent I/O buffer.
Definition iobuf.h:38
void * data
Start of data.
Definition iobuf.h:53
A network device.
Definition netdevice.h:353
IPv6 socket address.
Definition in.h:118
TCP/IP socket address.
Definition tcpip.h:76
A transport-layer protocol of the TCP/IP stack (eg.
Definition tcpip.h:105
#define for_each_table_entry(pointer, table)
Iterate through all entries within a linker table.
Definition tables.h:386
uint16_t tcpip_continue_chksum(uint16_t partial, const void *data, size_t len)
Calculate continued TCP/IP checkum.
Definition x86_tcpip.c:46