9cf5c4557d
Add Linux-compatible rol32/ror32 functions. Amazingly, gcc will optimise these down to the correct single "roll"/"rorl" instruction.
Michael Brown
2007-01-24 23:31:58 +00:00
6a765fdc15
Use base "0" in strtoul for consistency with "mem="
Michael Brown
2007-01-24 22:54:08 +00:00
99cb46943f
"vga=" is specified in decimal, not hex.
Michael Brown
2007-01-22 23:56:24 +00:00
ebb00e032c
Misread the definition of the type_of_loader field; it should include a version.
Michael Brown
2007-01-19 15:40:01 +00:00
92a78c8e15
Added SIGKILL handler
Michael Brown
2007-01-19 15:19:52 +00:00
13d9a660ca
Zeroing out memory before using it can be so important.
Michael Brown
2007-01-19 14:44:59 +00:00
d6909f65f0
Actually, it's probably safer *not* to leave child processes hanging around which still hold pointers to variables belonging to our parent...
Michael Brown
2007-01-19 14:20:41 +00:00
b6194b8cb9
Note that the SIGCHLD handler could be re-entered.
Michael Brown
2007-01-19 14:10:13 +00:00
1411876e26
Propagate return status code from last child to fail.
Michael Brown
2007-01-19 14:00:51 +00:00
cde6d776e3
Handle structured error codes.
Michael Brown
2007-01-19 13:52:50 +00:00
18f9f939a8
Introduce structured error codes.
Michael Brown
2007-01-19 13:15:26 +00:00
c2352dc8de
Add POSIX prototypes for time functions, to allow external code to build more easily within gPXE.
Michael Brown
2007-01-19 03:09:22 +00:00
4256b3338a
Split random number generation out into core/random.c, and create the correct prototypes for srandom(), rand() and srand().
Michael Brown
2007-01-19 02:02:59 +00:00
f4c1e564a1
vsprintf.h is gPXE-specific; move it to include/gpxe
Michael Brown
2007-01-19 01:17:23 +00:00
73b09ecba6
Use stdio.h instead of vsprintf.h
Michael Brown
2007-01-19 01:13:12 +00:00
06475f7b69
Finally move the prototypes for printf() and friends to stdio.h
Michael Brown
2007-01-19 00:58:49 +00:00
1a0ca661c2
4.3BSD says that bcopy and bzero are defined in strings.h, not string.h
Michael Brown
2007-01-19 00:51:13 +00:00
a213876382
Typo
Michael Brown
2007-01-19 00:48:13 +00:00
b02a564297
Add missing prerequisite include
Michael Brown
2007-01-19 00:39:12 +00:00
4e3976711d
A working name resolution framework
Michael Brown
2007-01-18 22:38:13 +00:00
8bb9f726a0
When an async operation dies, orphan its children.
Michael Brown
2007-01-18 22:36:57 +00:00
075f8144ff
Have DHCP set the nameserver, rather than DNS read the DHCP nameserver value.
Michael Brown
2007-01-18 21:22:03 +00:00
c014f607a8
Use total free memory as advertised window. This seems to be sufficient to avoid drops even on slow NICs.
Michael Brown
2007-01-18 20:39:17 +00:00
6d4e37cf42
Move include/malloc.h to include/gpxe/malloc.h, since everything in there is now gPXE-specific. (The standard malloc() et al have been in stdlib.h for a while).
Michael Brown
2007-01-18 20:11:04 +00:00
5ff23aa406
Include stdlib.h rather than malloc.h
Michael Brown
2007-01-18 20:06:03 +00:00
d12770e254
console.h is no longer needed for debugging
Michael Brown
2007-01-18 19:13:25 +00:00
37f1b12587
Allow truly arbitrary debug levels to be specified via DEBUG=
Michael Brown
2007-01-18 19:00:09 +00:00
5d57cd47a2
Declaring the CPU architecture in the middle of an assembly file is somewhat redundant, and also causes gas to complain when we include the profiling code (which uses an i586 instruction).
Michael Brown
2007-01-18 18:53:32 +00:00
f781a98ac4
Add DBGLVL_PROFILE
Michael Brown
2007-01-18 17:59:59 +00:00
05f4c3d176
Remove the one-packet-per-poll-cycle limit; it seems to no longer be needed now that performance is up.
Michael Brown
2007-01-18 16:50:35 +00:00
5b00fbade3
Increase window size to 64kB. Line rate downloads on a 100Mbps link, anyone?
Michael Brown
2007-01-18 16:39:55 +00:00
bd95927386
Accelerate memcpy() by around 32% on large, dword-aligned copies.
Michael Brown
2007-01-18 15:18:02 +00:00
c8b3e969a0
Allow buffers to be pre-expanded on demand.
Michael Brown
2007-01-18 15:13:41 +00:00
6c72bf13a1
Presize the download buffer when we see the Content-Length header; this saves around 70us per received packet (which is around 50% of the overall packet processing time).
Michael Brown
2007-01-18 13:26:57 +00:00
08da93a311
Reorder functions to more closely reflect the flow of control
Michael Brown
2007-01-18 13:10:26 +00:00
35776f481c
Don't always zero memory in malloc(). This saves around 2us on a full-length PKB allocation.
Michael Brown
2007-01-18 12:54:18 +00:00
06630a3036
Switch from calloc() to malloc()+memset() to match the practices used almost everywhere else.
Michael Brown
2007-01-18 12:45:58 +00:00
48fe701716
Respect the RX quota. This improves poll time by about 0.7us when the quota is 1.
Michael Brown
2007-01-18 12:34:12 +00:00
dd6d94004f
HTTP/DNS now working fully asynchronously. HTTP/IP addresses and any other protocol won't work at the moment.
Michael Brown
2007-01-18 03:39:45 +00:00
0b11733b75
Replacement for fetch() which operates asynchronously and identifies protocols by URI scheme.
Michael Brown
2007-01-18 03:37:05 +00:00
99e58865c7
Use struct sockaddr rather than struct sockaddr_tcpip
Michael Brown
2007-01-18 03:35:00 +00:00
6601a7da6a
Added async_uninit() to simplify failure paths.
Michael Brown
2007-01-18 03:29:40 +00:00
5a807994d8
Add utility function to parse port from URI
Michael Brown
2007-01-18 03:28:55 +00:00
8ffbbebf11
Ensure that struct sockaddr is long enough...
Michael Brown
2007-01-18 03:28:29 +00:00
9828181e3b
Obsolete
Michael Brown
2007-01-18 01:05:09 +00:00
544fa25928
Rename e{malloc,realloc,free} to u{malloc,realloc,free}, to more obviously reflect the fact that they allocate and deallocate user memory (i.e. things reached through a userptr_t).
Michael Brown
2007-01-16 08:36:42 +00:00
ff8528ea9a
Create and use async_block() macro; it cuts down on the visual overhead of blocking on asynchronous operations, when that isn't an important aspect of the code.
Michael Brown
2007-01-16 08:10:54 +00:00
f11da20f25
When a network device is specified to tcpip_tx() or it's children, treat it as a fallback network device rather than an explicitly forced network device.
Michael Brown
2007-01-16 04:09:13 +00:00
1a1fc23417
Improve debugging
Michael Brown
2007-01-16 03:29:15 +00:00
bcdb6fad3e
Improve debug messages
Michael Brown
2007-01-16 03:19:40 +00:00
835d35749f
Improved debugging
Michael Brown
2007-01-16 03:10:37 +00:00
143d14614d
Quickly hack in DNS resolution as a proof of concept
Michael Brown
2007-01-15 17:32:52 +00:00
9af12d5fba
A working DNS resolver (not yet tied in to anything)
Michael Brown
2007-01-15 17:31:35 +00:00
df0397f334
Update TFTP and FTP to take the same temporary URI scheme as HTTP
Michael Brown
2007-01-15 09:58:26 +00:00
afa752f5fb
Protocol's get() method no longer takes ownership of the URI. HTTP is the exception rather than the rule; we may as well keep things clean for other protocols.
Michael Brown
2007-01-15 09:18:06 +00:00
1f92c6b3e8
Must free http on the error path; nothing else will do it
Michael Brown
2007-01-15 09:08:40 +00:00
c676591cd1
Unmaintained example code is probably worse than useless.
Michael Brown
2007-01-15 09:06:12 +00:00
4e20d73bb5
Gave asynchronous operations approximate POSIX signal semantics. This will enable us to cascade async operations, which is necessary in order to properly support DNS. (For example, an HTTP request may have to redirect to a new location and will have to perform a new DNS lookup, so we can't just rely on doing the name lookup at the time of parsing the initial URL).
Michael Brown
2007-01-15 08:49:10 +00:00
ec75b269d3
Add missing include
Michael Brown
2007-01-15 08:44:05 +00:00
90d859c34b
Add ETIMEDOUT
Michael Brown
2007-01-15 02:46:56 +00:00
26166cf5e0
Added a URI parser that should be standards conformant. (It can certainly handle something as convoluted as
Michael Brown
2007-01-14 23:48:31 +00:00
a5a330339b
Split DBG() statement containing two inet_ntoa() statements; they return a static buffer.
Michael Brown
2007-01-14 19:58:41 +00:00
ce7289a766
Dump buffer and packet information in PXENV_UDP_READ as well
Michael Brown
2007-01-14 18:22:37 +00:00
76aa9ad07d
Make TCP give up immediately when it receives -ENETUNREACH from tcpip_tx(). This avoids the irritating wait when you accidentally type "kernel pxelinux.0" before bringing up the network interface.
Michael Brown
2007-01-14 16:47:03 +00:00
c953c1a1c3
Use -ENETUNREACH to mean "no reachable network device exists, don't bother retrying".
Michael Brown
2007-01-14 16:22:10 +00:00
8edf8f6fa8
Add the "initrd" command
Michael Brown
2007-01-14 16:09:48 +00:00
a5f6408d8e
We can now load an initrd as well as a kernel
Michael Brown
2007-01-14 16:09:01 +00:00
b9f99858ab
Make the getmemsize() prototype available in memsizes.h, for code that doesn't want to go to the hassle of processing a full memory map.
Michael Brown
2007-01-14 15:32:25 +00:00
c1fd6e8dc7
Once image type has been set, do not autoprobe further
Michael Brown
2007-01-14 15:25:23 +00:00
99272f958b
Typo
Michael Brown
2007-01-14 15:13:33 +00:00
10c9b03cdb
Actually, the initrd image should be architecture-independent.
Michael Brown
2007-01-14 15:07:11 +00:00
f92e04dea4
Add dummy "initrd" image format, just so that images can be marked as initrds.
Michael Brown
2007-01-14 15:03:39 +00:00
7dc50167bb
Allow load() and exec() methods to be NULL.
Michael Brown
2007-01-14 14:59:36 +00:00
8a490146bf
Copy command line at execution time rather than load time.
Michael Brown
2007-01-14 14:29:30 +00:00
3ccd7335f0
Split bzimage_load into separate functions
Michael Brown
2007-01-14 13:36:33 +00:00
97a3037f76
Can start a Linux kernel directly (albeit with no initrd support)
Michael Brown
2007-01-14 12:34:35 +00:00
3cbf0db0a3
Remove some references to no-longer-existent source files.
Michael Brown
2007-01-14 11:52:22 +00:00
b04b0ddc31
.lilo and derived targets (e.g. .iso) now load properly.
Michael Brown
2007-01-14 11:50:44 +00:00
77d280968a
Obsoleted by arch/i386/image/multiboot.c
Michael Brown
2007-01-14 11:45:28 +00:00
784e10635a
Can almost start a kernel now. It dies with "No setup signature found"
Michael Brown
2007-01-14 06:36:20 +00:00
698bbe0155
Obsolete
Michael Brown
2007-01-14 04:28:42 +00:00
b07161f397
Placeholder bzImage support
Michael Brown
2007-01-14 04:27:25 +00:00
797edf28b7
Replace image->entry with image->priv.
Michael Brown
2007-01-14 04:04:28 +00:00
3bdbfe1f00
Mostly updated. Won't work yet.
Michael Brown
2007-01-14 03:49:07 +00:00
644f3674e6
Obsolete for some time
Michael Brown
2007-01-14 02:24:41 +00:00
6dcb182aee
Fill in BufferSize in PXENV_GET_CACHED_INFO
Michael Brown
2007-01-14 02:21:02 +00:00
7bc03d37a2
Select a PXE network device before starting PXE NBP.
Michael Brown
2007-01-14 02:20:10 +00:00
98240d99f0
Do not go past the end of the argv[] array.
Michael Brown
2007-01-14 02:01:26 +00:00
55e6d7b70c
Use debug autocolourisation.
Michael Brown
2007-01-14 00:57:43 +00:00
dca369ddc3
Call hide_etherboot() from startup(), rather than requiring the prefix to do it.
Michael Brown
2007-01-14 00:53:56 +00:00
c2708df14a
Make shutdown functions callable by OS image's exec methods.
Michael Brown
2007-01-14 00:16:41 +00:00
c088ecf042
Make "boot" a synonym for "imgexec", to match grub
Michael Brown
2007-01-14 00:08:13 +00:00
beb941ed81
Rename "boot" to "autoboot"
Michael Brown
2007-01-14 00:06:23 +00:00
ece4ff929e
Use _text, rather than assuming _text==0.
Michael Brown
2007-01-14 00:03:07 +00:00
f547f148d3
Use {get,set}_fbms() so that allocated base memory is correctly hidden.
Michael Brown
2007-01-14 00:01:16 +00:00
0b0e34e667
Provide {get,set}_fbms() in basemem.h.
Michael Brown
2007-01-13 23:57:31 +00:00
aaed3d50a8
Some operating systems get a nasty shock if a region of the E820 map seems to start on a non-page boundary. Make life safer by rounding out our edited regions.
Michael Brown
2007-01-13 23:38:33 +00:00
d0f4e9a54b
Add some trace messages for important events
Michael Brown
2007-01-13 17:54:41 +00:00
526d314266
Advertise a larger MSS to improve TCP performance.
Michael Brown
2007-01-13 17:36:17 +00:00
f11900a9c6
I prefer IMAGE_XXX to XXX_IMAGE.
Michael Brown
2007-01-13 17:28:51 +00:00