]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Output.c
code scrub fix
[mirror_edk2.git] / MdeModulePkg / Universal / Network / Ip4Dxe / Ip4Output.c
1 /** @file
2 Transmit the IP4 packet.
3
4 Copyright (c) 2005 - 2006, Intel Corporation.<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "Ip4Impl.h"
16
17 UINT16 mIp4Id;
18
19
20 /**
21 Prepend an IP4 head to the Packet. It will copy the options and
22 build the IP4 header fields. Used for IP4 fragmentation.
23
24 @param Packet The packet to prepend IP4 header to
25 @param Head The caller supplied header. The caller should set
26 the following header fields: Tos, TotalLen, Id,
27 Fragment, Ttl, Protocol, Src and Dst. All the fields
28 are in host byte order. This function will fill in
29 the Ver, HeadLen, and checksum.
30 @param Option The orginal IP4 option to copy from
31 @param OptLen The length of the IP4 option
32
33 @retval EFI_BAD_BUFFER_SIZE There is no enought room in the head space of
34 Packet.
35 @retval EFI_SUCCESS The IP4 header is successfully added to the packet.
36
37 **/
38 EFI_STATUS
39 Ip4PrependHead (
40 IN OUT NET_BUF *Packet,
41 IN IP4_HEAD *Head,
42 IN UINT8 *Option,
43 IN UINT32 OptLen
44 )
45 {
46 UINT32 HeadLen;
47 UINT32 Len;
48 IP4_HEAD *PacketHead;
49 BOOLEAN FirstFragment;
50
51 //
52 // Prepend the options: first get the option length, then copy it over.
53 //
54 HeadLen = 0;
55 FirstFragment = IP4_FIRST_FRAGMENT (Head->Fragment);
56
57 Ip4CopyOption (Option, OptLen, FirstFragment, NULL, &Len);
58
59 HeadLen = IP4_MIN_HEADLEN + Len;
60 ASSERT (((Len % 4) == 0) && (HeadLen <= IP4_MAX_HEADLEN));
61
62 PacketHead = (IP4_HEAD *) NetbufAllocSpace (Packet, HeadLen, NET_BUF_HEAD);
63
64 if (PacketHead == NULL) {
65 return EFI_BAD_BUFFER_SIZE;
66 }
67
68 Ip4CopyOption (Option, OptLen, FirstFragment, (UINT8 *) (PacketHead + 1), &Len);
69
70 //
71 // Set the head up, convert the host byte order to network byte order
72 //
73 PacketHead->Ver = 4;
74 PacketHead->HeadLen = (UINT8) (HeadLen >> 2);
75 PacketHead->Tos = Head->Tos;
76 PacketHead->TotalLen = HTONS (Packet->TotalSize);
77 PacketHead->Id = HTONS (Head->Id);
78 PacketHead->Fragment = HTONS (Head->Fragment);
79 PacketHead->Checksum = 0;
80 PacketHead->Ttl = Head->Ttl;
81 PacketHead->Protocol = Head->Protocol;
82 PacketHead->Src = HTONL (Head->Src);
83 PacketHead->Dst = HTONL (Head->Dst);
84 PacketHead->Checksum = (UINT16) (~NetblockChecksum ((UINT8 *) PacketHead, HeadLen));
85
86 Packet->Ip = PacketHead;
87 return EFI_SUCCESS;
88 }
89
90
91 /**
92 Select an interface to send the packet generated in the IP4 driver
93 itself, that is, not by the requests of IP4 child's consumer. Such
94 packets include the ICMP echo replies, and other ICMP error packets.
95
96 @param[in] IpSb The IP4 service that wants to send the packets.
97 @param[in] Dst The destination of the packet
98 @param[in] Src The source of the packet
99
100 @return NULL if no proper interface is found, otherwise the interface that
101 can be used to send the system packet from.
102
103 **/
104 IP4_INTERFACE *
105 Ip4SelectInterface (
106 IN IP4_SERVICE *IpSb,
107 IN IP4_ADDR Dst,
108 IN IP4_ADDR Src
109 )
110 {
111 IP4_INTERFACE *IpIf;
112 IP4_INTERFACE *Selected;
113 LIST_ENTRY *Entry;
114
115 //
116 // Select the interface the Dst is on if one of the connected
117 // network. Some IP instance may be configured with 0.0.0.0/0,
118 // don't select that interface now.
119 //
120 IpIf = Ip4FindNet (IpSb, Dst);
121
122 if ((IpIf != NULL) && (IpIf->Ip != IP4_ALLZERO_ADDRESS)) {
123 return IpIf;
124 }
125
126 //
127 // If source is one of the interface address, select it.
128 //
129 IpIf = Ip4FindInterface (IpSb, Src);
130
131 if ((IpIf != NULL) && (IpIf->Ip != IP4_ALLZERO_ADDRESS)) {
132 return IpIf;
133 }
134
135 //
136 // Select a configured interface as the fall back. Always prefer
137 // an interface with non-zero address.
138 //
139 Selected = NULL;
140
141 NET_LIST_FOR_EACH (Entry, &IpSb->Interfaces) {
142 IpIf = NET_LIST_USER_STRUCT (Entry, IP4_INTERFACE, Link);
143
144 if (IpIf->Configured && ((Selected == NULL) || (Selected->Ip == 0))) {
145 Selected = IpIf;
146 }
147 }
148
149 return Selected;
150 }
151
152
153 /**
154 The default callback function for system generated packet.
155 It will free the packet.
156
157 @param Ip4Instance The IP4 child that issued the transmission. It most
158 like is NULL.
159 @param Packet The packet that transmitted.
160 @param IoStatus The result of the transmission, succeeded or failed.
161 @param LinkFlag Not used when transmission. check IP4_FRAME_CALLBACK
162 for reference.
163 @param Context The context provided by us
164
165 **/
166 VOID
167 Ip4SysPacketSent (
168 IP4_PROTOCOL *Ip4Instance,
169 NET_BUF *Packet,
170 EFI_STATUS IoStatus,
171 UINT32 LinkFlag,
172 VOID *Context
173 )
174 {
175 NetbufFree (Packet);
176 }
177
178
179 /**
180 Transmit an IP4 packet. The packet comes either from the IP4
181 child's consumer (IpInstance != NULL) or the IP4 driver itself
182 (IpInstance == NULL). It will route the packet, fragment it,
183 then transmit all the fragments through some interface.
184
185 @param[in] IpSb The IP4 service instance to transmit the packet
186 @param[in] IpInstance The IP4 child that issues the transmission. It is
187 NULL if the packet is from the system.
188 @param[in] Packet The user data to send, excluding the IP header.
189 @param[in] Head The caller supplied header. The caller should set
190 the following header fields: Tos, TotalLen, Id, tl,
191 Fragment, Protocol, Src and Dst. All the fields are
192 in host byte order. This function will fill in the
193 Ver, HeadLen, Fragment, and checksum. The Fragment
194 only need to include the DF flag. Ip4Output will
195 compute the MF and offset for you.
196 @param[in] Option The original option to append to the IP headers
197 @param[in] OptLen The length of the option
198 @param[in] GateWay The next hop address to transmit packet to.
199 255.255.255.255 means broadcast.
200 @param[in] Callback The callback function to issue when transmission
201 completed.
202 @param[in] Context The opaque context for the callback
203
204 @retval EFI_NO_MAPPING There is no interface to the destination.
205 @retval EFI_NOT_FOUND There is no route to the destination
206 @retval EFI_SUCCESS The packet is successfully transmitted.
207 @retval Others Failed to transmit the packet.
208
209 **/
210 EFI_STATUS
211 Ip4Output (
212 IN IP4_SERVICE *IpSb,
213 IN IP4_PROTOCOL *IpInstance, OPTIONAL
214 IN NET_BUF *Packet,
215 IN IP4_HEAD *Head,
216 IN UINT8 *Option,
217 IN UINT32 OptLen,
218 IN IP4_ADDR GateWay,
219 IN IP4_FRAME_CALLBACK Callback,
220 IN VOID *Context
221 )
222 {
223 IP4_INTERFACE *IpIf;
224 IP4_ROUTE_CACHE_ENTRY *CacheEntry;
225 IP4_ADDR Dest;
226 EFI_STATUS Status;
227 NET_BUF *Fragment;
228 UINT32 Index;
229 UINT32 HeadLen;
230 UINT32 PacketLen;
231 UINT32 Offset;
232 UINT32 Mtu;
233 UINT32 Num;
234
235 //
236 // Select an interface/source for system packet, application
237 // should select them itself.
238 //
239 if (IpInstance == NULL) {
240 IpIf = Ip4SelectInterface (IpSb, Head->Dst, Head->Src);
241 } else {
242 IpIf = IpInstance->Interface;
243 }
244
245 if (IpIf == NULL) {
246 return EFI_NO_MAPPING;
247 }
248
249 if ((Head->Src == IP4_ALLZERO_ADDRESS) && (IpInstance == NULL)) {
250 Head->Src = IpIf->Ip;
251 }
252
253 //
254 // Route the packet unless overrided, that is, GateWay isn't zero.
255 //
256 if (GateWay == IP4_ALLZERO_ADDRESS) {
257 Dest = Head->Dst;
258
259 if (IP4_IS_BROADCAST (Ip4GetNetCast (Dest, IpIf)) || (Dest == IP4_ALLONE_ADDRESS)) {
260 //
261 // Set the gateway to local broadcast if the Dest is
262 // the broadcast address for the connected network or
263 // it is local broadcast.
264 //
265 GateWay = IP4_ALLONE_ADDRESS;
266
267 } else if (IP4_IS_MULTICAST (Dest)) {
268 //
269 // Set the gateway to the destination if it is an multicast
270 // address. The IP4_INTERFACE won't consult ARP to send local
271 // broadcast and multicast.
272 //
273 GateWay = Head->Dst;
274
275 } else {
276 //
277 // Consult the route table to route the packet
278 //
279 if (IpInstance == NULL) {
280 CacheEntry = Ip4Route (IpSb->DefaultRouteTable, Head->Dst, Head->Src);
281 } else {
282 CacheEntry = Ip4Route (IpInstance->RouteTable, Head->Dst, Head->Src);
283 }
284
285 if (CacheEntry == NULL) {
286 return EFI_NOT_FOUND;
287 }
288
289 GateWay = CacheEntry->NextHop;
290 Ip4FreeRouteCacheEntry (CacheEntry);
291 }
292 }
293
294 //
295 // OK, selected the source and route, fragment the packet then send
296 // them. Tag each fragment other than the first one as spawn from it.
297 //
298 Mtu = IpSb->SnpMode.MaxPacketSize;
299 HeadLen = sizeof (IP4_HEAD) + ((OptLen + 3) & (~0x03));
300 Head->Id = mIp4Id++;
301
302 if (Packet->TotalSize + HeadLen > Mtu) {
303 //
304 // Packet is fragmented from the tail to the head, that is, the
305 // first frame sent is the last fragment of the packet. The first
306 // fragment is NOT sent in this loop. First compute how many
307 // fragments there are.
308 //
309 Mtu = (Mtu - HeadLen) & (~0x07);
310 Num = (Packet->TotalSize + Mtu - 1) / Mtu;
311
312 //
313 // Initialize the packet length and Offset. Other than the last
314 // fragment, the packet length equals to MTU. The offset is always
315 // aligned to MTU.
316 //
317 PacketLen = Packet->TotalSize - (Num - 1) * Mtu;
318 Offset = Mtu * (Num - 1);
319
320 for (Index = 0; Index < Num - 1; Index++, Offset -= Mtu) {
321 Fragment = NetbufGetFragment (Packet, Offset, PacketLen, IP4_MAX_HEADLEN);
322
323 if (Fragment == NULL) {
324 Status = EFI_OUT_OF_RESOURCES;
325 goto ON_ERROR;
326 }
327
328 //
329 // Update the header's fragment. The caller fills the IP4 header
330 // fields that are required by Ip4PrependHead except the fragment.
331 //
332 Head->Fragment = IP4_HEAD_FRAGMENT_FIELD (FALSE, (Index != 0), Offset);
333 Ip4PrependHead (Fragment, Head, Option, OptLen);
334
335 //
336 // Transmit the fragments, pass the Packet address as the context.
337 // So, we can find all the fragments spawned from the Packet by
338 // compare the NetBuf and Context to the Packet.
339 //
340 Status = Ip4SendFrame (
341 IpIf,
342 IpInstance,
343 Fragment,
344 GateWay,
345 Ip4SysPacketSent,
346 Packet
347 );
348
349 if (EFI_ERROR (Status)) {
350 goto ON_ERROR;
351 }
352
353 PacketLen = Mtu;
354 }
355
356 //
357 // Trim the already sent data, then adjust the head's fragment field.
358 //
359 NetbufTrim (Packet, Packet->TotalSize - Mtu, FALSE);
360 Head->Fragment = IP4_HEAD_FRAGMENT_FIELD (FALSE, TRUE, 0);
361 }
362
363 //
364 // Send the first fragment, it is either the orginal packet, or the
365 // first fragment of a fragmented packet. It seems that there is a subtle
366 // bug here: what if the caller free the packet in Callback and IpIf (or
367 // MNP child used by that interface) still holds the fragments and try
368 // to access the data? The caller can free the packet if it recycles the
369 // consumer's (such as UDP) data in the Callback. But this can't happen.
370 // The detailed sequence is:
371 // 1. for the packets generated by IP4 driver itself:
372 // The Callback is Ip4SysPacketSent, which is the same as the
373 // fragments' callback. Ip4SysPacketSent simply calls NetbufFree
374 // to release its reference to the packet. So, no problem for
375 // system packets.
376 //
377 // 2. for the upper layer's packets (use UDP as an example):
378 // UDP requests the IP layer to transmit some data which is
379 // wrapped in an asynchronous token, the token is wrapped
380 // in IP4_TXTOKEN_WRAP by IP4. IP4 also wrap the user's data
381 // in a net buffer, which is Packet we get here. IP4_TXTOKEN_WRAP
382 // is bound with the Packet. It will only be freed when all
383 // the references to Packet have been released. Upon then, the
384 // Packet's OnFree callback will release the IP4_TXTOKEN_WRAP,
385 // and singal the user's recycle event. So, also no problem for
386 // upper layer's packets.
387 //
388 Ip4PrependHead (Packet, Head, Option, OptLen);
389 Status = Ip4SendFrame (IpIf, IpInstance, Packet, GateWay, Callback, Context);
390
391 if (EFI_ERROR (Status)) {
392 goto ON_ERROR;
393 }
394
395 return EFI_SUCCESS;
396
397 ON_ERROR:
398 Ip4CancelPacket (IpIf, Packet, Status);
399 return Status;
400 }
401
402
403 /**
404 The filter function to find a packet and all its fragments.
405 The packet's fragments have their Context set to the packet.
406
407 @param[in] Frame The frames hold by the low level interface
408 @param[in] Context Context to the function, which is the packet.
409
410 @retval TRUE This is the packet to cancel or its fragments.
411 @retval FALSE This is unrelated packet.
412
413 **/
414 BOOLEAN
415 Ip4CancelPacketFragments (
416 IN IP4_LINK_TX_TOKEN *Frame,
417 IN VOID *Context
418 )
419 {
420 if ((Frame->Packet == (NET_BUF *) Context) || (Frame->Context == Context)) {
421 return TRUE;
422 }
423
424 return FALSE;
425 }
426
427
428 /**
429 Cancel the Packet and all its fragments.
430
431 @param IpIf The interface from which the Packet is sent
432 @param Packet The Packet to cancel
433 @param IoStatus The status returns to the sender.
434
435 **/
436 VOID
437 Ip4CancelPacket (
438 IN IP4_INTERFACE *IpIf,
439 IN NET_BUF *Packet,
440 IN EFI_STATUS IoStatus
441 )
442 {
443 Ip4CancelFrames (IpIf, IoStatus, Ip4CancelPacketFragments, Packet);
444 }