📄 bootp.c
字号:
/* * Based on LiMon - BOOTP. * * Copyright 1994, 1995, 2000 Neil Russell. * (See License) * Copyright 2000 Roland Borde * Copyright 2000 Paolo Scaffardi * * (C) Copyright 2002 * Sysgo Real-Time Solutions, GmbH <www.elinos.com> * Marius Groeger <mgroeger@sysgo.de> */#if 0#define DEBUG 1 /* general debug */#define DEBUG_BOOTP_EXT 1 /* Debug received vendor fields */#endif#ifdef DEBUG_BOOTP_EXT#define debug_ext(fmt,args...) printf (fmt ,##args)#else#define debug_ext(fmt,args...)#endif#include <armboot.h>#include <command.h>#include "net.h"#include "bootp.h"#include "tftp.h"#include "arp.h"#ifdef CONFIG_STATUS_LED#include <status_led.h>#endif#define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */#if (CONFIG_COMMANDS & CFG_CMD_NET)#define TIMEOUT 5 /* Seconds before trying BOOTP again */#define PORT_BOOTPS 67 /* BOOTP server UDP port */#define PORT_BOOTPC 68 /* BOOTP client UDP port */ulong BootpID;int BootpTry;#ifdef CONFIG_BOOTP_RANDOM_DELAYulong seed1, seed2;#endif#if (CONFIG_COMMANDS & CFG_CMD_DHCP)dhcp_state_t dhcp_state = INIT;unsigned int dhcp_leasetime = 0;static void DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len);/* For Debug */char *dhcpmsg2str(int type){ switch (type) { case 1: return "DHCPDISCOVER"; break; case 2: return "DHCPOFFER"; break; case 3: return "DHCPREQUEST"; break; case 4: return "DHCPDECLINE"; break; case 5: return "DHCPACK"; break; case 6: return "DHCPNACK"; break; case 7: return "DHCPRELEASE"; break; default: return "UNKNOWN/INVALID MSG TYPE"; break; }}#endifstatic int BootpCheckPkt(uchar *pkt, unsigned dest, unsigned src, unsigned len){ Bootp_t *bp = (Bootp_t *) pkt; int retval = 0; ulong id; if (dest != PORT_BOOTPC || src != PORT_BOOTPS) retval = -1; if (len < sizeof (Bootp_t) - OPT_SIZE) retval = -2; if (bp->bp_op != OP_BOOTREQUEST && bp->bp_op != OP_BOOTREPLY && bp->bp_op != DHCP_OFFER && bp->bp_op != DHCP_ACK && bp->bp_op != DHCP_NAK ) { retval = -3; } if (bp->bp_htype != HWT_ETHER) retval = -4; if (bp->bp_hlen != HWL_ETHER) retval = -5; memcpy(&id, &bp->bp_id, sizeof(bp->bp_id)); if (id != BootpID) retval = -6; debug ("Filtering pkt = %d\n", retval); return retval;}/* * Copy parameters of interest from BOOTP_REPLY/DHCP_OFFER packet */void BootpCopyNetParams(Bootp_t *bp){ NetOurIP = NetReadIP((vuchar*)&bp->bp_yiaddr); NetServerIP = NetReadIP((vuchar*)&bp->bp_siaddr); NetCopyEther(NetServerEther, ((Ethernet_t *)NetRxPkt)->et_src); copy_filename (BootFile, bp->bp_file, sizeof(BootFile)); debug ("Bootfile: %s\n", BootFile); /* Propagate to environment */ setenv (Net_bd, "bootfile", BootFile);}static int truncate_sz (const char *name, int maxlen, int curlen){ if (curlen >= maxlen) { printf("*** WARNING: %s is too long (%d - max: %d) - truncated\n", name, curlen, maxlen); curlen = maxlen - 1; } return (curlen);}#if !(CONFIG_COMMANDS & CFG_CMD_DHCP)static void BootpVendorFieldProcess(u8 *ext){ int size = *(ext+1) ; debug_ext ("[BOOTP] Processing extension %d... (%d bytes)\n", *ext, *(ext+1)); NetBootFileSize = 0; switch (*ext) { /* Fixed length fields */ case 1: /* Subnet mask */ if (NetOurSubnetMask == 0) memcpy(&NetOurSubnetMask, ext+2, 4); break; case 2: /* Time offset - Not yet supported */ break; /* Variable length fields */ case 3: /* Gateways list */ if (NetOurGatewayIP == 0) { memcpy(&NetOurGatewayIP, ext+2, 4); } break; case 4: /* Time server - Not yet supported */ break; case 5: /* IEN-116 name server - Not yet supported */ break; case 6: if (NetOurDNSIP == 0) { memcpy(&NetOurDNSIP, ext+2, 4); } break; case 7: /* Log server - Not yet supported */ break; case 8: /* Cookie/Quote server - Not yet supported */ break; case 9: /* LPR server - Not yet supported */ break; case 10: /* Impress server - Not yet supported */ break; case 11: /* RPL server - Not yet supported */ break; case 12: /* Host name */ if (NetOurHostName[0] == 0) { size = truncate_sz("Host Name", sizeof(NetOurHostName), size); memcpy(&NetOurHostName, ext+2, size); NetOurHostName[size] = 0 ; } break; case 13: /* Boot file size */ memcpy(&NetBootFileSize, ext+2, size); break; case 14: /* Merit dump file - Not yet supported */ break; case 15: /* Domain name - Not yet supported */ break; case 16: /* Swap server - Not yet supported */ break; case 17: /* Root path */ if (NetOurRootPath[0] == 0) { size = truncate_sz("Root Path", sizeof(NetOurRootPath), size); memcpy(&NetOurRootPath, ext+2, size); NetOurRootPath[size] = 0 ; } break; case 18: /* Extension path - Not yet supported */ /* * This can be used to send the informations of the * vendor area in another file that the client can * access via TFTP. */ break; /* IP host layer fields */ case 40: /* NIS Domain name */ if (NetOurNISDomain[0] == 0) { size = truncate_sz ("NIS Domain Name", sizeof(NetOurNISDomain), size); memcpy(&NetOurNISDomain, ext+2, size); NetOurNISDomain[size] = 0 ; } break; /* Application layer fields */ case 43: /* Vendor specific info - Not yet supported */ /* * Binary informations to exchange specific * product information. */ break; /* Reserved (custom) fields (128..254) */ }}static void BootpVendorProcess(u8 *ext, int size){ u8 *end = ext + size ; debug_ext ("[BOOTP] Checking extension (%d bytes)...\n", size); while ((ext < end) && (*ext != 0xff)) { if (*ext == 0) { ext ++ ; } else { u8 *opt = ext ; ext += ext[1] + 2 ; if (ext <= end) BootpVendorFieldProcess (opt) ; } }#ifdef DEBUG_BOOTP_EXT printf("[BOOTP] Received fields: \n"); if (NetOurSubnetMask) { puts ("NetOurSubnetMask : "); print_IPaddr (NetOurSubnetMask); putc('\n'); } if (NetOurGatewayIP) { puts ("NetOurGatewayIP : "); print_IPaddr (NetOurGatewayIP); putc('\n'); } if (NetBootFileSize) { printf("NetBootFileSize : %d\n", NetBootFileSize); } if (NetOurHostName[0]) { printf("NetOurHostName : %s\n", NetOurHostName); } if (NetOurRootPath[0]) { printf("NetOurRootPath : %s\n", NetOurRootPath); } if (NetOurNISDomain[0]) { printf("NetOurNISDomain : %s\n", NetOurNISDomain); }#endif}/* * Handle a BOOTP received packet. */static voidBootpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len){ Bootp_t *bp; char *s; ulong vendmagic; debug ("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%d)\n", src, dest, len, sizeof (Bootp_t)); bp = (Bootp_t *)pkt; if (BootpCheckPkt(pkt, dest, src, len)) /* Filter out pkts we don't want */ return; /* * Got a good BOOTP reply. Copy the data into our variables. */#ifdef CONFIG_STATUS_LED status_led_set (STATUS_LED_BOOT, STATUS_LED_OFF);#endif BootpCopyNetParams(bp); /* Store net parameters from reply */ /* Retrieve extended informations (we must parse the vendor area) */ memcpy(&vendmagic, bp->bp_vend, 4); if (SWAP32(vendmagic) == BOOTP_VENDOR_MAGIC) BootpVendorProcess(&bp->bp_vend[4], len); NetSetTimeout(0, (thand_f *)0); debug ("Got good BOOTP\n"); if (((s = getenv(Net_bd, "autoload")) != NULL) && (*s == 'n')) { /* * Just use BOOTP to configure system; * Do not use TFTP to load the bootfile. */ NetState = NETLOOP_SUCCESS; return; } /* Send ARP request to get TFTP server ethernet address. * This automagically starts TFTP, too. */ ArpRequest();}#endif /* !CFG_CMD_DHCP *//* * Timeout on BOOTP/DHCP request. Try again, forever. */static voidBootpTimeout(void){ BootpRequest ();}/* * Initialize BOOTP extension fields in the request. */#if (CONFIG_COMMANDS & CFG_CMD_DHCP)static int DhcpExtended(u8 *e, int message_type, IPaddr_t ServerID, IPaddr_t RequestedIP){ u8 *start = e ; u8 *cnt; *e++ = 99; /* RFC1048 Magic Cookie */ *e++ = 130; *e++ = 83; *e++ = 99; *e++ = 53; /* DHCP Message Type */ *e++ = 1; *e++ = message_type; *e++ = 57; /* Maximum DHCP Message Size */ *e++ = 2; *e++ = (576-312+OPT_SIZE) >> 8; *e++ = (576-312+OPT_SIZE) & 0xff; if ( ServerID ) { *e++ = 54; /* ServerID */ *e++ = 4; *e++ = ServerID >> 24; *e++ = ServerID >> 16; *e++ = ServerID >> 8; *e++ = ServerID & 0xff; } if ( RequestedIP ) { *e++ = 50; /* Requested IP */ *e++ = 4; *e++ = RequestedIP >> 24; *e++ = RequestedIP >> 16; *e++ = RequestedIP >> 8; *e++ = RequestedIP & 0xff; } *e++ = 55; /* Parameter Request List */ cnt = e++; /* Pointer to count of requested items */ *cnt = 0;#if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_SUBNETMASK) *e++ = 1; /* Subnet Mask */ *cnt += 1;#endif#if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_GATEWAY)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -