]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/Mtftp6Dxe/Mtftp6Rrq.c
Add NetworkPkg (P.UDK2010.UP3.Network.P1)
[mirror_edk2.git] / NetworkPkg / Mtftp6Dxe / Mtftp6Rrq.c
1 /** @file
2 Mtftp6 Rrq process functions implementation.
3
4 Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
5
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php.
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #include "Mtftp6Impl.h"
17
18
19 /**
20 Build and send a ACK packet for download.
21
22 @param[in] Instance The pointer to the Mtftp6 instance.
23 @param[in] BlockNum The block number to be acked.
24
25 @retval EFI_OUT_OF_RESOURCES Failed to allocate memory for the packet.
26 @retval EFI_SUCCESS The ACK has been sent.
27 @retval Others Failed to send the ACK.
28
29 **/
30 EFI_STATUS
31 Mtftp6RrqSendAck (
32 IN MTFTP6_INSTANCE *Instance,
33 IN UINT16 BlockNum
34 )
35 {
36 EFI_MTFTP6_PACKET *Ack;
37 NET_BUF *Packet;
38
39 //
40 // Allocate net buffer to create ack packet.
41 //
42 Packet = NetbufAlloc (sizeof (EFI_MTFTP6_ACK_HEADER));
43
44 if (Packet == NULL) {
45 return EFI_OUT_OF_RESOURCES;
46 }
47
48 Ack = (EFI_MTFTP6_PACKET *) NetbufAllocSpace (
49 Packet,
50 sizeof (EFI_MTFTP6_ACK_HEADER),
51 FALSE
52 );
53 ASSERT (Ack != NULL);
54
55 Ack->Ack.OpCode = HTONS (EFI_MTFTP6_OPCODE_ACK);
56 Ack->Ack.Block[0] = HTONS (BlockNum);
57
58 //
59 // Reset current retry count of the instance.
60 //
61 Instance->CurRetry = 0;
62
63 return Mtftp6TransmitPacket (Instance, Packet);
64 }
65
66
67 /**
68 Deliver the received data block to the user, which can be saved
69 in the user provide buffer or through the CheckPacket callback.
70
71 @param[in] Instance The pointer to the Mtftp6 instance.
72 @param[in] Packet The pointer to the received packet.
73 @param[in] Len The packet length.
74 @param[out] UdpPacket The net buf of the received packet.
75
76 @retval EFI_SUCCESS The data was saved successfully.
77 @retval EFI_ABORTED The user tells to abort by return an error through
78 CheckPacket.
79 @retval EFI_BUFFER_TOO_SMALL The user's buffer is too small, and buffer length is
80 updated to the actual buffer size needed.
81
82 **/
83 EFI_STATUS
84 Mtftp6RrqSaveBlock (
85 IN MTFTP6_INSTANCE *Instance,
86 IN EFI_MTFTP6_PACKET *Packet,
87 IN UINT32 Len,
88 OUT NET_BUF **UdpPacket
89 )
90 {
91 EFI_MTFTP6_TOKEN *Token;
92 EFI_STATUS Status;
93 UINT16 Block;
94 UINT64 Start;
95 UINT32 DataLen;
96 UINT64 TotalBlock;
97 BOOLEAN Completed;
98
99 Completed = FALSE;
100 Token = Instance->Token;
101 Block = NTOHS (Packet->Data.Block);
102 DataLen = Len - MTFTP6_DATA_HEAD_LEN;
103
104 //
105 // This is the last block, save the block num
106 //
107 if (DataLen < Instance->BlkSize) {
108 Completed = TRUE;
109 Instance->LastBlk = Block;
110 Mtftp6SetLastBlockNum (&Instance->BlkList, Block);
111 }
112
113 //
114 // Remove this block number from the file hole. If Mtftp6RemoveBlockNum
115 // returns EFI_NOT_FOUND, the block has been saved, don't save it again.
116 // Note that : For bigger files, allowing the block counter to roll over
117 // to accept transfers of unlimited size. So TotalBlock is memorised as
118 // continuous block counter.
119 //
120 Status = Mtftp6RemoveBlockNum (&Instance->BlkList, Block, Completed, &TotalBlock);
121
122 if (Status == EFI_NOT_FOUND) {
123 return EFI_SUCCESS;
124 } else if (EFI_ERROR (Status)) {
125 return Status;
126 }
127
128 if (Token->CheckPacket != NULL) {
129 //
130 // Callback to the check packet routine with the received packet.
131 //
132 Status = Token->CheckPacket (&Instance->Mtftp6, Token, (UINT16) Len, Packet);
133
134 if (EFI_ERROR (Status)) {
135 //
136 // Free the received packet before send new packet in ReceiveNotify,
137 // since the Udp6Io might need to be reconfigured.
138 //
139 NetbufFree (*UdpPacket);
140 *UdpPacket = NULL;
141 //
142 // Send the Mtftp6 error message if user aborted the current session.
143 //
144 Mtftp6SendError (
145 Instance,
146 EFI_MTFTP6_ERRORCODE_ILLEGAL_OPERATION,
147 (UINT8 *) "User aborted download"
148 );
149
150 return EFI_ABORTED;
151 }
152 }
153
154 if (Token->Buffer != NULL) {
155
156 Start = MultU64x32 (TotalBlock - 1, Instance->BlkSize);
157 if (Start + DataLen <= Token->BufferSize) {
158 CopyMem ((UINT8 *) Token->Buffer + Start, Packet->Data.Data, DataLen);
159 //
160 // Update the file size when received the last block
161 //
162 if ((Instance->LastBlk == Block) && Completed) {
163 Token->BufferSize = Start + DataLen;
164 }
165 } else if (Instance->LastBlk != 0) {
166 //
167 // Don't save the data if the buffer is too small, return
168 // EFI_BUFFER_TOO_SMALL if received the last packet. This
169 // will give a accurate file length.
170 //
171 Token->BufferSize = Start + DataLen;
172
173 //
174 // Free the received packet before send new packet in ReceiveNotify,
175 // since the udpio might need to be reconfigured.
176 //
177 NetbufFree (*UdpPacket);
178 *UdpPacket = NULL;
179 //
180 // Send the Mtftp6 error message if no enough buffer.
181 //
182 Mtftp6SendError (
183 Instance,
184 EFI_MTFTP6_ERRORCODE_DISK_FULL,
185 (UINT8 *) "User provided memory block is too small"
186 );
187
188 return EFI_BUFFER_TOO_SMALL;
189 }
190 }
191
192 return EFI_SUCCESS;
193 }
194
195
196 /**
197 Process the received data packets. It will save the block
198 then send back an ACK if it is active.
199
200 @param[in] Instance The pointer to the Mtftp6 instance.
201 @param[in] Packet The pointer to the received packet.
202 @param[in] Len The length of the packet.
203 @param[out] UdpPacket The net buf of received packet.
204 @param[out] IsCompleted If TRUE, the download has been completed.
205 Otherwise, the download has not been completed.
206
207 @retval EFI_SUCCESS The data packet was successfully processed.
208 @retval EFI_ABORTED The download was aborted by the user.
209 @retval EFI_BUFFER_TOO_SMALL The user-provided buffer is too small.
210
211 **/
212 EFI_STATUS
213 Mtftp6RrqHandleData (
214 IN MTFTP6_INSTANCE *Instance,
215 IN EFI_MTFTP6_PACKET *Packet,
216 IN UINT32 Len,
217 OUT NET_BUF **UdpPacket,
218 OUT BOOLEAN *IsCompleted
219 )
220 {
221 EFI_STATUS Status;
222 UINT16 BlockNum;
223 INTN Expected;
224
225 *IsCompleted = FALSE;
226 BlockNum = NTOHS (Packet->Data.Block);
227 Expected = Mtftp6GetNextBlockNum (&Instance->BlkList);
228
229 ASSERT (Expected >= 0);
230
231 //
232 // If we are active and received an unexpected packet, retransmit
233 // the last ACK then restart receiving. If we are passive, save
234 // the block.
235 //
236 if (Instance->IsMaster && (Expected != BlockNum)) {
237 //
238 // Free the received packet before send new packet in ReceiveNotify,
239 // since the udpio might need to be reconfigured.
240 //
241 NetbufFree (*UdpPacket);
242 *UdpPacket = NULL;
243
244 Mtftp6TransmitPacket (Instance, Instance->LastPacket);
245 return EFI_SUCCESS;
246 }
247
248 Status = Mtftp6RrqSaveBlock (Instance, Packet, Len, UdpPacket);
249
250 if (EFI_ERROR (Status)) {
251 return Status;
252 }
253
254 //
255 // Reset the passive client's timer whenever it received a valid data packet.
256 //
257 if (!Instance->IsMaster) {
258 Instance->PacketToLive = Instance->Timeout * 2;
259 }
260
261 //
262 // Check whether we have received all the blocks. Send the ACK if we
263 // are active (unicast client or master client for multicast download).
264 // If we have received all the blocks, send an ACK even if we are passive
265 // to tell the server that we are done.
266 //
267 Expected = Mtftp6GetNextBlockNum (&Instance->BlkList);
268
269 if (Instance->IsMaster || Expected < 0) {
270 if (Expected < 0) {
271 //
272 // If we are passive client, then the just received Block maybe
273 // isn't the last block. We need to send an ACK to the last block
274 // to inform the server that we are done. If we are active client,
275 // the Block == Instance->LastBlock.
276 //
277 BlockNum = Instance->LastBlk;
278 *IsCompleted = TRUE;
279
280 } else {
281 BlockNum = (UINT16) (Expected - 1);
282 }
283 //
284 // Free the received packet before send new packet in ReceiveNotify,
285 // since the udpio might need to be reconfigured.
286 //
287 NetbufFree (*UdpPacket);
288 *UdpPacket = NULL;
289
290 Mtftp6RrqSendAck (Instance, BlockNum);
291 }
292
293 return EFI_SUCCESS;
294 }
295
296
297 /**
298 Validate whether the options received in the server's OACK packet is valid.
299 The options are valid only if:
300 1. The server doesn't include options not requested by us.
301 2. The server can only use smaller blksize than that is requested.
302 3. The server can only use the same timeout as requested.
303 4. The server doesn't change its multicast channel.
304
305 @param[in] Instance The pointer to the Mtftp6 instance.
306 @param[in] ReplyInfo The pointer to options information in reply packet.
307 @param[in] RequestInfo The pointer to requested options info.
308
309 @retval TRUE If the option in the OACK is valid.
310 @retval FALSE If the option is invalid.
311
312 **/
313 BOOLEAN
314 Mtftp6RrqOackValid (
315 IN MTFTP6_INSTANCE *Instance,
316 IN MTFTP6_EXT_OPTION_INFO *ReplyInfo,
317 IN MTFTP6_EXT_OPTION_INFO *RequestInfo
318 )
319 {
320 //
321 // It is invalid for server to return options we don't request
322 //
323 if ((ReplyInfo->BitMap & ~RequestInfo->BitMap) != 0) {
324 return FALSE;
325 }
326
327 //
328 // Server can only specify a smaller block size to be used and
329 // return the timeout matches that requested.
330 //
331 if ((((ReplyInfo->BitMap & MTFTP6_OPT_BLKSIZE_BIT) != 0) && (ReplyInfo->BlkSize > RequestInfo->BlkSize)) ||
332 (((ReplyInfo->BitMap & MTFTP6_OPT_TIMEOUT_BIT) != 0) && (ReplyInfo->Timeout != RequestInfo->Timeout))
333 ) {
334 return FALSE;
335 }
336
337 //
338 // The server can send ",,master" to client to change its master
339 // setting. But if it use the specific multicast channel, it can't
340 // change the setting.
341 //
342 if (((ReplyInfo->BitMap & MTFTP6_OPT_MCAST_BIT) != 0) && !NetIp6IsUnspecifiedAddr (&Instance->McastIp)) {
343
344 if (!NetIp6IsUnspecifiedAddr (&ReplyInfo->McastIp) && CompareMem (
345 &ReplyInfo->McastIp,
346 &Instance->McastIp,
347 sizeof (EFI_IPv6_ADDRESS)
348 ) != 0) {
349 return FALSE;
350 }
351
352 if ((ReplyInfo->McastPort != 0) && (ReplyInfo->McastPort != Instance->McastPort)) {
353 return FALSE;
354 }
355 }
356
357 return TRUE;
358 }
359
360
361 /**
362 Configure Udp6Io to receive a packet from a multicast address.
363
364 @param[in] McastIo The pointer to the mcast Udp6Io.
365 @param[in] Context The pointer to the context.
366
367 @retval EFI_SUCCESS The mcast Udp6Io was successfully configured.
368 @retval Others Failed to configure the Udp6Io.
369
370 **/
371 EFI_STATUS
372 EFIAPI
373 Mtftp6RrqConfigMcastUdpIo (
374 IN UDP_IO *McastIo,
375 IN VOID *Context
376 )
377 {
378 EFI_STATUS Status;
379 EFI_UDP6_PROTOCOL *Udp6;
380 EFI_UDP6_CONFIG_DATA *Udp6Cfg;
381 EFI_IPv6_ADDRESS Group;
382 MTFTP6_INSTANCE *Instance;
383
384 Udp6 = McastIo->Protocol.Udp6;
385 Udp6Cfg = &(McastIo->Config.Udp6);
386 Instance = (MTFTP6_INSTANCE *) Context;
387
388 //
389 // Set the configure data for the mcast Udp6Io.
390 //
391 ZeroMem (Udp6Cfg, sizeof (EFI_UDP6_CONFIG_DATA));
392
393 Udp6Cfg->AcceptPromiscuous = FALSE;
394 Udp6Cfg->AcceptAnyPort = FALSE;
395 Udp6Cfg->AllowDuplicatePort = FALSE;
396 Udp6Cfg->TrafficClass = 0;
397 Udp6Cfg->HopLimit = 128;
398 Udp6Cfg->ReceiveTimeout = 0;
399 Udp6Cfg->TransmitTimeout = 0;
400 Udp6Cfg->StationPort = Instance->McastPort;
401 Udp6Cfg->RemotePort = 0;
402
403 CopyMem (
404 &Udp6Cfg->RemoteAddress,
405 &Instance->ServerIp,
406 sizeof (EFI_IPv6_ADDRESS)
407 );
408
409 //
410 // Configure the mcast Udp6Io.
411 //
412 Status = Udp6->Configure (Udp6, Udp6Cfg);
413
414 if (EFI_ERROR (Status)) {
415 return Status;
416 }
417
418 //
419 // Join the multicast group
420 //
421 CopyMem (&Group, &Instance->McastIp, sizeof (EFI_IPv6_ADDRESS));
422
423 return Udp6->Groups (Udp6, TRUE, &Group);
424 }
425
426
427 /**
428 Process the OACK packet for Rrq.
429
430 @param[in] Instance The pointer to the Mtftp6 instance.
431 @param[in] Packet The pointer to the received packet.
432 @param[in] Len The length of the packet.
433 @param[out] UdpPacket The net buf of received packet.
434 @param[out] IsCompleted If TRUE, the download has been completed.
435 Otherwise, the download has not been completed.
436
437 @retval EFI_DEVICE_ERROR Failed to create/start a multicast Udp6 child.
438 @retval EFI_TFTP_ERROR An error happened during the process.
439 @retval EFI_SUCCESS The OACK packet successfully processed.
440
441 **/
442 EFI_STATUS
443 Mtftp6RrqHandleOack (
444 IN MTFTP6_INSTANCE *Instance,
445 IN EFI_MTFTP6_PACKET *Packet,
446 IN UINT32 Len,
447 OUT NET_BUF **UdpPacket,
448 OUT BOOLEAN *IsCompleted
449 )
450 {
451 EFI_MTFTP6_OPTION *Options;
452 UINT32 Count;
453 MTFTP6_EXT_OPTION_INFO ExtInfo;
454 EFI_STATUS Status;
455 INTN Expected;
456
457 *IsCompleted = FALSE;
458
459 //
460 // If already started the master download, don't change the
461 // setting. Master download always succeeds.
462 //
463 Expected = Mtftp6GetNextBlockNum (&Instance->BlkList);
464 ASSERT (Expected != -1);
465
466 if (Instance->IsMaster && Expected != 1) {
467 return EFI_SUCCESS;
468 }
469
470 ZeroMem (&ExtInfo, sizeof (MTFTP6_EXT_OPTION_INFO));
471
472 //
473 // Parse the options in the packet.
474 //
475 Status = Mtftp6ParseStart (Packet, Len, &Count, &Options);
476
477 if (EFI_ERROR (Status)) {
478 return Status;
479 }
480
481 //
482 // Parse the extensive options in the packet.
483 //
484 Status = Mtftp6ParseExtensionOption (Options, Count, FALSE, &ExtInfo);
485
486 if (EFI_ERROR (Status) || !Mtftp6RrqOackValid (Instance, &ExtInfo, &Instance->ExtInfo)) {
487 //
488 // Don't send an ERROR packet if the error is EFI_OUT_OF_RESOURCES.
489 //
490 if (Status != EFI_OUT_OF_RESOURCES) {
491 //
492 // Free the received packet before send new packet in ReceiveNotify,
493 // since the udpio might need to be reconfigured.
494 //
495 NetbufFree (*UdpPacket);
496 *UdpPacket = NULL;
497 //
498 // Send the Mtftp6 error message if invalid packet.
499 //
500 Mtftp6SendError (
501 Instance,
502 EFI_MTFTP6_ERRORCODE_ILLEGAL_OPERATION,
503 (UINT8 *) "Mal-formated OACK packet"
504 );
505 }
506
507 return EFI_TFTP_ERROR;
508 }
509
510 if ((ExtInfo.BitMap & MTFTP6_OPT_MCAST_BIT) != 0) {
511
512 //
513 // Save the multicast info. Always update the Master, only update the
514 // multicast IP address, block size, timeoute at the first time. If IP
515 // address is updated, create a UDP child to receive the multicast.
516 //
517 Instance->IsMaster = ExtInfo.IsMaster;
518
519 if (NetIp6IsUnspecifiedAddr (&Instance->McastIp)) {
520 if (NetIp6IsUnspecifiedAddr (&ExtInfo.McastIp) || ExtInfo.McastPort == 0) {
521 //
522 // Free the received packet before send new packet in ReceiveNotify,
523 // since the udpio might need to be reconfigured.
524 //
525 NetbufFree (*UdpPacket);
526 *UdpPacket = NULL;
527 //
528 // Send the Mtftp6 error message if invalid multi-cast setting.
529 //
530 Mtftp6SendError (
531 Instance,
532 EFI_MTFTP6_ERRORCODE_ILLEGAL_OPERATION,
533 (UINT8 *) "Illegal multicast setting"
534 );
535
536 return EFI_TFTP_ERROR;
537 }
538
539 //
540 // Create a UDP child then start receive the multicast from it.
541 //
542 CopyMem (
543 &Instance->McastIp,
544 &ExtInfo.McastIp,
545 sizeof (EFI_IP_ADDRESS)
546 );
547
548 Instance->McastPort = ExtInfo.McastPort;
549 Instance->McastUdpIo = UdpIoCreateIo (
550 Instance->Service->Controller,
551 Instance->Service->Image,
552 Mtftp6RrqConfigMcastUdpIo,
553 UDP_IO_UDP6_VERSION,
554 Instance
555 );
556
557 if (Instance->McastUdpIo == NULL) {
558 return EFI_DEVICE_ERROR;
559 }
560
561 Status = UdpIoRecvDatagram (
562 Instance->McastUdpIo,
563 Mtftp6RrqInput,
564 Instance,
565 0
566 );
567
568 if (EFI_ERROR (Status)) {
569 //
570 // Free the received packet before send new packet in ReceiveNotify,
571 // since the udpio might need to be reconfigured.
572 //
573 NetbufFree (*UdpPacket);
574 *UdpPacket = NULL;
575 //
576 // Send the Mtftp6 error message if failed to create Udp6Io to receive.
577 //
578 Mtftp6SendError (
579 Instance,
580 EFI_MTFTP6_ERRORCODE_ACCESS_VIOLATION,
581 (UINT8 *) "Failed to create socket to receive multicast packet"
582 );
583
584 return Status;
585 }
586
587 //
588 // Update the parameters used.
589 //
590 if (ExtInfo.BlkSize != 0) {
591 Instance->BlkSize = ExtInfo.BlkSize;
592 }
593
594 if (ExtInfo.Timeout != 0) {
595 Instance->Timeout = ExtInfo.Timeout;
596 }
597 }
598
599 } else {
600
601 Instance->IsMaster = TRUE;
602
603 if (ExtInfo.BlkSize != 0) {
604 Instance->BlkSize = ExtInfo.BlkSize;
605 }
606
607 if (ExtInfo.Timeout != 0) {
608 Instance->Timeout = ExtInfo.Timeout;
609 }
610 }
611
612 //
613 // Free the received packet before send new packet in ReceiveNotify,
614 // since the udpio might need to be reconfigured.
615 //
616 NetbufFree (*UdpPacket);
617 *UdpPacket = NULL;
618 //
619 // Send an ACK to (Expected - 1) which is 0 for unicast download,
620 // or tell the server we want to receive the Expected block.
621 //
622 return Mtftp6RrqSendAck (Instance, (UINT16) (Expected - 1));
623 }
624
625
626 /**
627 The packet process callback for Mtftp6 download.
628
629 @param[in] UdpPacket The pointer to the packet received.
630 @param[in] UdpEpt The pointer to the Udp6 access point.
631 @param[in] IoStatus The status from Udp6 instance.
632 @param[in] Context The pointer to the context.
633
634 **/
635 VOID
636 EFIAPI
637 Mtftp6RrqInput (
638 IN NET_BUF *UdpPacket,
639 IN UDP_END_POINT *UdpEpt,
640 IN EFI_STATUS IoStatus,
641 IN VOID *Context
642 )
643 {
644 MTFTP6_INSTANCE *Instance;
645 EFI_MTFTP6_PACKET *Packet;
646 BOOLEAN IsCompleted;
647 BOOLEAN IsMcast;
648 EFI_STATUS Status;
649 UINT16 Opcode;
650 UINT32 TotalNum;
651 UINT32 Len;
652
653 Instance = (MTFTP6_INSTANCE *) Context;
654
655 NET_CHECK_SIGNATURE (Instance, MTFTP6_INSTANCE_SIGNATURE);
656
657 Status = EFI_SUCCESS;
658 Packet = NULL;
659 IsCompleted = FALSE;
660 IsMcast = FALSE;
661 TotalNum = 0;
662
663 //
664 // Return error status if Udp6 instance failed to receive.
665 //
666 if (EFI_ERROR (IoStatus)) {
667 Status = IoStatus;
668 goto ON_EXIT;
669 }
670
671 ASSERT (UdpPacket != NULL);
672
673 if (UdpPacket->TotalSize < MTFTP6_OPCODE_LEN) {
674 goto ON_EXIT;
675 }
676
677 //
678 // Find the port this packet is from to restart receive correctly.
679 //
680 if (CompareMem (
681 Ip6Swap128 (&UdpEpt->LocalAddr.v6),
682 &Instance->McastIp,
683 sizeof (EFI_IPv6_ADDRESS)
684 ) == 0) {
685 IsMcast = TRUE;
686 } else {
687 IsMcast = FALSE;
688 }
689
690 //
691 // Client send initial request to server's listening port. Server
692 // will select a UDP port to communicate with the client. The server
693 // is required to use the same port as RemotePort to multicast the
694 // data.
695 //
696 if (UdpEpt->RemotePort != Instance->ServerDataPort) {
697 if (Instance->ServerDataPort != 0) {
698 goto ON_EXIT;
699 } else {
700 //
701 // For the subsequent exchange of requests, reconfigure the udpio as
702 // (serverip, serverport, localip, localport).
703 // Ususally, the client set serverport as 0 to receive and reset it
704 // once the first packet arrives to send ack.
705 //
706 Instance->ServerDataPort = UdpEpt->RemotePort;
707 }
708 }
709
710 //
711 // Copy the MTFTP packet to a continuous buffer if it isn't already so.
712 //
713 Len = UdpPacket->TotalSize;
714 TotalNum = UdpPacket->BlockOpNum;
715
716 if (TotalNum > 1) {
717 Packet = AllocateZeroPool (Len);
718
719 if (Packet == NULL) {
720 Status = EFI_OUT_OF_RESOURCES;
721 goto ON_EXIT;
722 }
723
724 NetbufCopy (UdpPacket, 0, Len, (UINT8 *) Packet);
725
726 } else {
727 Packet = (EFI_MTFTP6_PACKET *) NetbufGetByte (UdpPacket, 0, NULL);
728 ASSERT (Packet != NULL);
729 }
730
731 Opcode = NTOHS (Packet->OpCode);
732
733 //
734 // Callback to the user's CheckPacket if provided. Abort the transmission
735 // if CheckPacket returns an EFI_ERROR code.
736 //
737 if ((Instance->Token->CheckPacket != NULL) &&
738 (Opcode == EFI_MTFTP6_OPCODE_OACK || Opcode == EFI_MTFTP6_OPCODE_ERROR)
739 ) {
740
741 Status = Instance->Token->CheckPacket (
742 &Instance->Mtftp6,
743 Instance->Token,
744 (UINT16) Len,
745 Packet
746 );
747
748 if (EFI_ERROR (Status)) {
749 //
750 // Send an error message to the server to inform it
751 //
752 if (Opcode != EFI_MTFTP6_OPCODE_ERROR) {
753 //
754 // Free the received packet before send new packet in ReceiveNotify,
755 // since the udpio might need to be reconfigured.
756 //
757 NetbufFree (UdpPacket);
758 UdpPacket = NULL;
759 //
760 // Send the Mtftp6 error message if user aborted the current session.
761 //
762 Mtftp6SendError (
763 Instance,
764 EFI_MTFTP6_ERRORCODE_REQUEST_DENIED,
765 (UINT8 *) "User aborted the transfer"
766 );
767 }
768
769 Status = EFI_ABORTED;
770 goto ON_EXIT;
771 }
772 }
773
774 //
775 // Switch the process routines by the operation code.
776 //
777 switch (Opcode) {
778 case EFI_MTFTP6_OPCODE_DATA:
779 if ((Len > (UINT32) (MTFTP6_DATA_HEAD_LEN + Instance->BlkSize)) || (Len < (UINT32) MTFTP6_DATA_HEAD_LEN)) {
780 goto ON_EXIT;
781 }
782 //
783 // Handle the data packet of Rrq.
784 //
785 Status = Mtftp6RrqHandleData (
786 Instance,
787 Packet,
788 Len,
789 &UdpPacket,
790 &IsCompleted
791 );
792 break;
793
794 case EFI_MTFTP6_OPCODE_OACK:
795 if (IsMcast || Len <= MTFTP6_OPCODE_LEN) {
796 goto ON_EXIT;
797 }
798 //
799 // Handle the Oack packet of Rrq.
800 //
801 Status = Mtftp6RrqHandleOack (
802 Instance,
803 Packet,
804 Len,
805 &UdpPacket,
806 &IsCompleted
807 );
808 break;
809
810 default:
811 //
812 // Drop and return eror if received error message.
813 //
814 Status = EFI_TFTP_ERROR;
815 break;
816 }
817
818 ON_EXIT:
819 //
820 // Free the resources, then if !EFI_ERROR (Status), restart the
821 // receive, otherwise end the session.
822 //
823 if (Packet != NULL && TotalNum > 1) {
824 FreePool (Packet);
825 }
826 if (UdpPacket != NULL) {
827 NetbufFree (UdpPacket);
828 }
829 if (!EFI_ERROR (Status) && !IsCompleted) {
830 if (IsMcast) {
831 Status = UdpIoRecvDatagram (
832 Instance->McastUdpIo,
833 Mtftp6RrqInput,
834 Instance,
835 0
836 );
837 } else {
838 Status = UdpIoRecvDatagram (
839 Instance->UdpIo,
840 Mtftp6RrqInput,
841 Instance,
842 0
843 );
844 }
845 }
846 //
847 // Clean up the current session if failed to continue.
848 //
849 if (EFI_ERROR (Status) || IsCompleted) {
850 Mtftp6OperationClean (Instance, Status);
851 }
852 }
853
854
855 /**
856 Start the Mtftp6 instance to download. It first initializes some
857 of the internal states, then builds and sends an RRQ reqeuest packet.
858 Finally, it starts receive for the downloading.
859
860 @param[in] Instance The pointer to the Mtftp6 instance.
861 @param[in] Operation The operation code of current packet.
862
863 @retval EFI_SUCCESS The Mtftp6 is started to download.
864 @retval Others Failed to start to download.
865
866 **/
867 EFI_STATUS
868 Mtftp6RrqStart (
869 IN MTFTP6_INSTANCE *Instance,
870 IN UINT16 Operation
871 )
872 {
873 EFI_STATUS Status;
874
875 //
876 // The valid block number range are [1, 0xffff]. For example:
877 // the client sends an RRQ request to the server, the server
878 // transfers the DATA1 block. If option negoitation is ongoing,
879 // the server will send back an OACK, then client will send ACK0.
880 //
881 Status = Mtftp6InitBlockRange (&Instance->BlkList, 1, 0xffff);
882
883 if (EFI_ERROR (Status)) {
884 return Status;
885 }
886
887 Status = Mtftp6SendRequest (Instance, Operation);
888
889 if (EFI_ERROR (Status)) {
890 return Status;
891 }
892
893 return UdpIoRecvDatagram (
894 Instance->UdpIo,
895 Mtftp6RrqInput,
896 Instance,
897 0
898 );
899 }
900