Changeset 11989 in vbox for trunk/src/VBox/Devices/PC/Etherboot-src/core
- Timestamp:
- Sep 2, 2008 1:43:18 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 35893
- Location:
- trunk/src/VBox/Devices/PC/Etherboot-src/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/Etherboot-src/core/proto_tftm.c
r11982 r11989 1 1 /************************************************************************** 2 2 * 3 * proto_tftm.c -- Etherboot Multicast TFTP 3 * proto_tftm.c -- Etherboot Multicast TFTP 4 4 * Written 2003-2003 by Timothy Legge <[email protected]> 5 5 * … … 18 18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 19 19 * 20 * This code is based on the DOWNLOAD_PROTO_TFTM section of 20 * This code is based on the DOWNLOAD_PROTO_TFTM section of 21 21 * Etherboot 5.3 core/nic.c and: 22 * 23 * Anselm Martin Hoffmeister's previous proto_tftm.c multicast work 24 * Eric Biederman's proto_slam.c 25 * 26 * REVISION HISTORY: 27 * ================ 28 * 09-07-2003 timlegge Release Version, Capable of Multicast Booting 29 * 08-30-2003 timlegge Initial version, Assumes consecutive blocks 30 * 31 * Indent Options: indent -kr -i8 32 ***************************************************************************/ 22 33 23 34 /* … … 29 40 * of the GPL is applied is otherwise unspecified. 30 41 */ 31 *32 * Anselm Martin Hoffmeister's previous proto_tftm.c multicast work33 * Eric Biederman's proto_slam.c34 *35 * $Revision$36 * $Author$37 * $Date$38 *39 * REVISION HISTORY:40 * ================41 * 09-07-2003 timlegge Release Version, Capable of Multicast Booting42 * 08-30-2003 timlegge Initial version, Assumes consecutive blocks43 *44 * Indent Options: indent -kr -i845 ***************************************************************************/46 42 47 43 #ifdef DOWNLOAD_PROTO_TFTM -
trunk/src/VBox/Devices/PC/Etherboot-src/core/pxe_export.c
r1 r11989 17 17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 18 18 */ 19 20 /* 21 * Sun GPL Disclaimer: For the avoidance of doubt, except that if any license choice 22 * other than GPL or LGPL is available it will apply instead, Sun elects to use only 23 * the General Public License version 2 (GPLv2) at this time for any software where 24 * a choice of GPL license versions is made available with the language indicating 25 * that GPLv2 or any later version may be used, or where a choice of which version 26 * of the GPL is applied is otherwise unspecified. 27 */ 28 19 29 20 30 /* Tags used in this file: … … 148 158 nic.dev.how_probe = PROBE_FIRST; 149 159 } 150 160 151 161 /* Call probe routine to bring up the NIC */ 152 162 if ( eth_probe ( &nic.dev ) != PROBE_WORKED ) { … … 400 410 /* Send the packet */ 401 411 eth_transmit ( dest, type, length, data ); 402 412 403 413 undi_transmit->Status = PXENV_STATUS_SUCCESS; 404 414 return PXENV_EXIT_SUCCESS; … … 561 571 *undi_get_nic_type ) { 562 572 struct dev *dev = &nic.dev; 563 573 564 574 DBG ( "PXENV_UNDI_GET_NIC_TYPE" ); 565 575 ENSURE_READY ( undi_get_nic_type ); 566 576 567 577 if ( dev->to_probe == PROBE_PCI ) { 568 578 struct pci_device *pci = &dev->state.pci.dev; … … 646 656 return PXENV_EXIT_FAILURE; 647 657 } 648 658 649 659 /* Just in case some idiot actually looks at these fields when 650 660 * we weren't meant to fill them in... … … 818 828 819 829 /* Change server address if different */ 820 if ( tftp_open->ServerIPAddress && 830 if ( tftp_open->ServerIPAddress && 821 831 tftp_open->ServerIPAddress!=arptable[ARP_SERVER].ipaddr.s_addr ) { 822 832 memset(arptable[ARP_SERVER].node, 0, ETH_ALEN ); /* kill arp */ … … 827 837 request.name = tftp_open->FileName; 828 838 request.port = ntohs(tftp_open->TFTPPort); 829 #ifdef WORK_AROUND_BPBATCH_BUG 830 /* Force use of port 69; BpBatch tries to use port 4 for some 831 * bizarre reason. */ 839 #ifdef WORK_AROUND_BPBATCH_BUG 840 /* Force use of port 69; BpBatch tries to use port 4 for some 841 * bizarre reason. */ 832 842 request.port = TFTP_PORT; 833 843 #endif … … 894 904 DBG ( " %d to %hx:%hx", block.len, tftp_read->Buffer.segment, 895 905 tftp_read->Buffer.offset ); 896 906 897 907 tftp_read->Status = PXENV_STATUS_SUCCESS; 898 908 return PXENV_EXIT_SUCCESS; … … 1015 1025 return 0; 1016 1026 } 1017 1027 1018 1028 /* Check dest_ip */ 1019 1029 if ( udp_read->dest_ip && ( udp_read->dest_ip != ip->dest.s_addr ) ) { … … 1089 1099 DBG ( " %d->%@:%d (%d)", src_port, udp_write->ip, dst_port, 1090 1100 udp_write->buffer_size ); 1091 1101 1092 1102 /* FIXME: we ignore the gateway specified, since we're 1093 1103 * confident of being able to do our own routing. We should 1094 1104 * probably allow for multiple gateways. 1095 1105 */ 1096 1106 1097 1107 /* Copy payload to packet buffer */ 1098 1108 packet_size = ( (void*)&packet->payload - (void*)packet ) … … 1198 1208 #else /* !VBOX */ 1199 1209 /* I don't think there's actually any way we can be called in 1200 * the middle of a DHCP request... 1210 * the middle of a DHCP request... 1201 1211 */ 1202 1212 cached_info->opcode = BOOTP_REP; … … 1225 1235 memcpy ( &cached_info->vendor.d, bootp_data.bootp_reply.bp_vend, 1226 1236 sizeof(cached_info->vendor.d) ); 1227 1237 1228 1238 /* Copy to user-specified buffer, or set pointer to our buffer */ 1229 1239 get_cached_info->BufferLimit = sizeof(*cached_info); … … 1325 1335 1326 1336 DBG ( "PXENV_UNDI_LOADER" ); 1327 1337 1328 1338 /* Set UNDI DS as our real-mode stack */ 1329 1339 use_undi_ds_for_rm_stack ( loader->undi_ds ); … … 1351 1361 /* Install PXE stack to area specified by NBP */ 1352 1362 install_pxe_stack ( VIRTUAL ( loader->undi_cs, 0 ) ); 1353 1363 1354 1364 /* Call pxenv_start_undi to set parameters. Why the hell PXE 1355 1365 * requires these parameters to be provided twice is beyond … … 1366 1376 PTR_TO_SEGOFF16 ( &pxe_stack->pxe, loader->pxe_ptr ); 1367 1377 PTR_TO_SEGOFF16 ( &pxe_stack->pxenv, loader->pxenv_ptr ); 1368 1378 1369 1379 loader->Status = PXENV_STATUS_SUCCESS; 1370 1380 return PXENV_EXIT_SUCCESS; … … 1506 1516 ret = pxenv_undi_loader ( ¶ms->loader ); 1507 1517 break; 1508 1518 1509 1519 default: 1510 1520 DBG ( "PXENV_UNKNOWN_%hx", opcode );
Note:
See TracChangeset
for help on using the changeset viewer.