| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482 | 
							- /**************************************************************************
 - Etherboot -  Network Bootstrap Program
 - 
 - Literature dealing with the network protocols:
 - 	ARP - RFC826
 - 	RARP - RFC903
 - 	UDP - RFC768
 - 	BOOTP - RFC951, RFC2132 (vendor extensions)
 - 	DHCP - RFC2131, RFC2132 (options)
 - 	TFTP - RFC1350, RFC2347 (options), RFC2348 (blocksize), RFC2349 (tsize)
 - 	RPC - RFC1831, RFC1832 (XDR), RFC1833 (rpcbind/portmapper)
 - 	NFS - RFC1094, RFC1813 (v3, useful for clarifications, not implemented)
 - 	IGMP - RFC1112
 - 
 - **************************************************************************/
 - 
 - /* #define MDEBUG */
 - 
 - #include "etherboot.h"
 - #include "dev.h"
 - #include "nic.h"
 - #include "disk.h"
 - #include "http.h"
 - #include "timer.h"
 - #include "cpu.h"
 - #include "console.h"
 - #include "init.h"
 - #include <stdarg.h>
 - 
 - #ifdef CONFIG_FILO
 - #include <lib.h>
 - #endif
 - 
 - jmp_buf	restart_etherboot;
 - int	url_port;		
 - 
 - char as_main_program = 1;
 - 
 - #ifdef	IMAGE_FREEBSD
 - int freebsd_howto = 0;
 - char freebsd_kernel_env[FREEBSD_KERNEL_ENV_SIZE];
 - #endif
 - 
 - #if 0
 - 
 - static inline unsigned long ask_boot(unsigned *index)
 - {
 - 	unsigned long order = DEFAULT_BOOT_ORDER;
 - 	*index = DEFAULT_BOOT_INDEX;
 - #ifdef LINUXBIOS
 - 	order = get_boot_order(order, index);
 - #endif
 - #if defined(ASK_BOOT)
 - #if ASK_BOOT >= 0
 - 	while(1) {
 - 		int c = 0;
 - 		printf(ASK_PROMPT);
 - #if ASK_BOOT > 0
 - 		{
 - 			unsigned long time;
 - 			for ( time = currticks() + ASK_BOOT*TICKS_PER_SEC;
 - 			      !c && !iskey(); ) {
 - 				if (currticks() > time) c = ANS_DEFAULT;
 - 			}
 - 		}
 - #endif /* ASK_BOOT > 0 */
 - 		if ( !c ) c = getchar();
 - 		if ((c >= 'a') && (c <= 'z')) c &= 0x5F;
 - 		if ((c >= ' ') && (c <= '~')) putchar(c);
 - 		putchar('\n');
 - 
 - 		switch(c) {
 - 		default:
 - 			/* Nothing useful try again */
 - 			continue;
 - 		case ANS_QUIT:
 - 			order = BOOT_NOTHING;
 - 			*index = 0;
 - 			break;
 - 		case ANS_DEFAULT:
 - 			/* Preserve the default boot order */
 - 			break;
 - 		case ANS_NETWORK:
 - 			order = (BOOT_NIC     << (0*BOOT_BITS)) | 
 - 				(BOOT_NOTHING << (1*BOOT_BITS));
 - 			*index = 0;
 - 			break;
 - 		case ANS_DISK:
 - 			order = (BOOT_DISK    << (0*BOOT_BITS)) | 
 - 				(BOOT_NOTHING << (1*BOOT_BITS));
 - 			*index = 0;
 - 			break;
 - 		case ANS_FLOPPY:
 - 			order = (BOOT_FLOPPY  << (0*BOOT_BITS)) | 
 - 				(BOOT_NOTHING << (1*BOOT_BITS));
 - 			*index = 0;
 - 			break;
 - 		}
 - 		break;
 - 	}
 - 	putchar('\n');
 - #endif /* ASK_BOOT >= 0 */
 - #endif /* defined(ASK_BOOT) */
 - 	return order;
 - }
 - 
 - static inline void try_floppy_first(void)
 - {
 - #if (TRY_FLOPPY_FIRST > 0)
 - 	int i;
 - 	printf("Trying floppy");
 - 	disk_init();
 - 	for (i = TRY_FLOPPY_FIRST; i-- > 0; ) {
 - 		putchar('.');
 - 		if (pcbios_disk_read(0, 0, 0, 0, ((char *)FLOPPY_BOOT_LOCATION)) != 0x8000) {
 - 			printf("using floppy\n");
 - 			exit(0);
 - 		}
 - 	}
 - 	printf("no floppy\n");
 - #endif /* TRY_FLOPPY_FIRST */	
 - }
 - 
 - static struct class_operations {
 - 	struct dev *dev;
 - 	int (*probe)(struct dev *dev);
 - 	int (*load_configuration)(struct dev *dev);
 - 	int (*load)(struct dev *dev);
 - }
 - operations[] = {
 - 	{ &nic.dev,  eth_probe,  eth_load_configuration,  eth_load  },
 - 	{ &disk.dev, disk_probe, disk_load_configuration, disk_load },
 - 	{ &disk.dev, disk_probe, disk_load_configuration, disk_load },
 - };
 - 
 - #endif
 - 
 - 
 - 
 - static int main_loop(int state);
 - static int exit_ok;
 - static int exit_status;
 - static int initialized;
 - 
 - 
 - /**************************************************************************
 -  * initialise() - perform any C-level initialisation
 -  *
 -  * This does not include initialising the NIC, but it does include
 -  * e.g. getting the memory map, relocating to high memory,
 -  * initialising the console, etc.
 -  **************************************************************************
 -  */
 - void initialise ( void ) {
 - 	/* Zero the BSS */
 - 	memset ( _bss, 0, _ebss - _bss );
 - 
 - 	/* Call all registered initialisation functions */
 - 	call_init_fns ();
 - }
 - 
 - /**************************************************************************
 - MAIN - Kick off routine
 - **************************************************************************/
 - int main ( void ) {
 - 	int skip = 0;
 - 
 - 	/* Print out configuration */
 - 	print_config();
 - 
 - 	/*
 - 	 * Trivial main loop: we need to think about how we want to
 - 	 * prompt the user etc.
 - 	 *
 - 	 */
 - 	for ( ; ; disable ( &dev ), call_reset_fns() ) {
 - 
 - 		/* Get next boot device */
 - 		if ( ! find_any_with_driver ( &dev, skip ) ) {
 - 			/* Reached end of device list */
 - 			printf ( "No more boot devices\n" );
 - 			skip = 0;
 - 			sleep ( 2 );
 - 			continue;
 - 		}
 - 
 - 		/* Skip this device the next time we encounter it */
 - 		skip = 1;
 - 
 - 		/* Print out device information */
 - 		printf ( "%s (%s) %s at %s\n",
 - 			 dev.bus_driver->name_device ( &dev.bus_dev ),
 - 			 dev.device_driver->name,
 - 			 dev.type_driver->name,
 - 			 dev.bus_driver->describe_device ( &dev.bus_dev ) );
 - 
 - 		/* Probe boot device */
 - 		if ( ! probe ( &dev ) ) {
 - 			/* Device found on bus, but probe failed */
 - 			printf ( "...probe failed\n" );
 - 			continue;
 - 		}
 - 
 - 		/* Print out device information */
 - 		printf ( "%s %s has %s\n",
 - 			 dev.bus_driver->name_device ( &dev.bus_dev ),
 - 			 dev.type_driver->name,
 - 			 dev.type_driver->describe_device ( dev.type_dev ) );
 - 
 - 		/* Configure boot device */
 - 		if ( ! configure ( &dev ) ) {
 - 			/* Configuration (e.g. DHCP) failed */
 - 			printf ( "...configuration failed\n" );
 - 			continue;
 - 		}
 - 
 - 		/* Boot from the device */
 - 		load ( &dev, load_block );
 - 
 - 	}
 - 
 - 	/* Call registered per-object exit functions */
 - 	call_exit_fns ();
 - 
 - 	return exit_status;
 - }
 - 
 - void exit(int status)
 - {
 - 	while(!exit_ok)
 - 		;
 - 	exit_status = status;
 - 	longjmp(restart_etherboot, 255);
 - }
 - 
 - 
 - #if 0
 - 
 - static int main_loop(int state)
 - {
 - 	/* Splitting main into 2 pieces makes the semantics of 
 - 	 * which variables are preserved across a longjmp clean
 - 	 * and predictable.
 - 	 */
 - 	static unsigned long order;
 - 	static unsigned boot_index;
 - 	static struct dev * dev = 0;
 - 	static struct class_operations *ops;
 - 	static int type;
 - 	static int i;
 - 
 - 	if (!initialized) {
 - 		initialized = 1;
 - 		if (dev && (state >= 1) && (state <= 2)) {
 - 			dev->how_probe = PROBE_AWAKE;
 - 			dev->how_probe = ops->probe(dev);
 - 			if (dev->how_probe == PROBE_FAILED) {
 - 				state = -1;
 - 			}
 - 		}
 - 	}
 - 	switch(state) {
 - 	case 0:
 - 	{
 - 		static int firsttime = 1;
 - 		/* First time through */
 - 		if (firsttime) {
 - 			cleanup();
 - 			firsttime = 0;
 - 		} 
 - #ifdef	EXIT_IF_NO_OFFER
 - 		else {
 - 			cleanup();
 - 			exit(0);
 - 		}
 - #endif
 - 		i = -1;
 - 		state = 4;
 - 		dev = 0;
 - 
 - 		/* We just called setjmp ... */
 - 		order = ask_boot(&boot_index);
 - 		try_floppy_first();
 - 		break;
 - 	}
 - 	case 4:
 - 		cleanup();
 - 		call_reset_fns();
 - 		/* Find a dev entry to probe with */
 - 		if (!dev) {
 - 			int boot;
 - 			int failsafe;
 - 
 - 			/* Advance to the next device type */
 - 			i++;
 - 			boot = (order >> (i * BOOT_BITS)) & BOOT_MASK;
 - 			type = boot & BOOT_TYPE_MASK;
 - 			failsafe = (boot & BOOT_FAILSAFE) != 0;
 - 			if (i >= MAX_BOOT_ENTRIES) {
 - 				type = BOOT_NOTHING;
 - 			}
 - 			if ((i == 0) && (type == BOOT_NOTHING)) {
 - 				/* Return to caller */
 - 				exit(0);
 - 			}
 - 			if (type >= BOOT_NOTHING) {
 - 				interruptible_sleep(2);
 - 				state = 0;
 - 				break;
 - 			}
 - 			ops = &operations[type];
 - 			dev = ops->dev;
 - 			dev->how_probe = PROBE_FIRST;
 - 			dev->type = type;
 - 			dev->failsafe = failsafe;
 - 			dev->type_index = 0;
 - 		} else {
 - 			/* Advance to the next device of the same type */
 - 			dev->how_probe = PROBE_NEXT;
 - 		}
 - 		state = 3;
 - 		break;
 - 	case 3:
 - 		state = -1;
 - 		/* Removed the following line because it was causing
 - 		 * heap.o to be dragged in unnecessarily.  It's also
 - 		 * slightly puzzling: by resetting heap_base, doesn't
 - 		 * this mean that we permanently leak memory?
 - 		 */
 - 		/* heap_base = allot(0); */
 - 		dev->how_probe = ops->probe(dev);
 - 		if (dev->how_probe == PROBE_FAILED) {
 - 			dev = 0;
 - 			state = 4;
 - 		} else if (boot_index && (i == 0) && (boot_index != (unsigned)dev->type_index)) {
 - 			printf("Wrong index\n");
 - 			state = 4;
 - 		}
 - 		else {
 - 			state = 2;
 - 		}
 - 		break;
 - 	case 2:
 - 		state = -1;
 - 		if (ops->load_configuration(dev) >= 0) {
 - 			state = 1;
 - 		}
 - 		break;
 - 	case 1:
 - 		/* Any return from load is a failure */
 - 		ops->load(dev);
 - 		state = -1;
 - 		break;
 - 	case 256:
 - 		state = 0;
 - 		break;
 - 	case -3:
 - 		i = MAX_BOOT_ENTRIES;
 - 		type = BOOT_NOTHING;
 - 		/* fall through */
 - 	default:
 - 		printf("<abort>\n");
 - 		state = 4;
 - 		/* At the end goto state 0 */
 - 		if ((type >= BOOT_NOTHING) || (i >= MAX_BOOT_ENTRIES)) {
 - 			state = 0;
 - 		}
 - 		break;
 - 	}
 - 	return state;
 - }
 - 
 - 
 - #endif
 - 
 - 
 - /**************************************************************************
 - LOADKERNEL - Try to load kernel image
 - **************************************************************************/
 - struct proto {
 - 	char *name;
 - 	int (*load)(const char *name,
 - 		int (*fnc)(unsigned char *, unsigned int, unsigned int, int));
 - };
 - static const struct proto protos[] = {
 - #ifdef DOWNLOAD_PROTO_TFTM
 - 	{ "x-tftm", url_tftm },
 - #endif
 - #ifdef DOWNLOAD_PROTO_SLAM
 - 	{ "x-slam", url_slam },
 - #endif
 - #ifdef DOWNLOAD_PROTO_NFS
 - 	{ "nfs", nfs },
 - #endif
 - #ifdef DOWNLOAD_PROTO_DISK
 - 	{ "file", url_file },
 - #endif
 - #ifdef DOWNLOAD_PROTO_TFTP
 - 	{ "tftp", tftp },
 - #endif
 - #ifdef DOWNLOAD_PROTO_HTTP
 -         { "http", http },
 - #endif
 - };
 - 
 - int loadkernel ( const char *fname,
 - 		 int ( * load_block ) ( unsigned char *data,
 - 					unsigned int blocknum,
 - 					unsigned int len, int eof ) ) {
 - 	static const struct proto * const last_proto = 
 - 		&protos[sizeof(protos)/sizeof(protos[0])];
 - 	const struct proto *proto;
 - 	in_addr ip;
 - 	int len;
 - 	const char *name;
 - #ifdef	DNS_RESOLVER
 - 	const char *resolvt;
 - #endif
 - 	ip.s_addr = arptable[ARP_SERVER].ipaddr.s_addr;
 - 	name = fname;
 - 	url_port = -1;
 - 	len = 0;
 - 	while(fname[len] && fname[len] != ':') {
 - 		len++;
 - 	}
 - 	for(proto = &protos[0]; proto < last_proto; proto++) {
 - 		if (memcmp(name, proto->name, len) == 0) {
 - 			break;
 - 		}
 - 	}
 - 	if ((proto < last_proto) && (memcmp(fname + len, "://", 3) == 0)) {
 - 		name += len + 3;
 - 		if (name[0] != '/') {
 - #ifdef DNS_RESOLVER
 - 			resolvt = dns_resolver ( name );
 - 			if ( NULL != resolvt ) {
 - 				//printf ("Resolved host name [%s] to [%s]\n",
 - 				//	name, resolvt );
 - 				inet_aton(resolvt, &ip);
 - 				while ( ( '/' != name[0] ) && ( 0 != name[0]))
 - 					++name;
 - 			} else
 - #endif	/* DNS_RESOLVER */
 - 			name += inet_aton(name, &ip);
 - 			if (name[0] == ':') {
 - 				name++;
 - 				url_port = strtoul(name, &name, 10);
 - 			}
 - 		}
 - 		if (name[0] == '/') {
 - 			arptable[ARP_SERVER].ipaddr.s_addr = ip.s_addr;
 - 			printf( "Loading %s ", fname );
 - 			return proto->load(name + 1, load_block);
 - 		}
 - 	}
 - 	printf("Loading %@:%s ", arptable[ARP_SERVER].ipaddr, fname);
 - #ifdef	DEFAULT_PROTO_NFS
 - 	return nfs(fname, load_block);
 - #else
 - 	return tftp(fname, load_block);
 - #endif
 - }
 - 
 - 
 - /**************************************************************************
 - CLEANUP - shut down networking and console so that the OS may be called 
 - **************************************************************************/
 - void cleanup(void)
 - {
 - #ifdef	DOWNLOAD_PROTO_NFS
 - 	nfs_umountall(ARP_SERVER);
 - #endif
 - 	/* Stop receiving packets */
 - 	disable ( &dev );
 - 	initialized = 0;
 - }
 - 
 - /*
 -  * Local variables:
 -  *  c-basic-offset: 8
 -  * End:
 -  */
 
 
  |