123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
-
-
- #include <etherboot.h>
- #include <console.h>
- #include <stdlib.h>
- #include <stdio.h>
-
-
- uint16_t ipchksum(const void *data, unsigned long length)
- {
- unsigned long sum;
- unsigned long i;
- const uint8_t *ptr;
-
-
-
- sum = 0;
- ptr = data;
- for(i = 0; i < length; i++) {
- unsigned long value;
- value = ptr[i];
- if (i & 1) {
- value <<= 8;
- }
-
- sum += value;
-
- if (sum > 0xFFFF) {
- sum = (sum + (sum >> 16)) & 0xFFFF;
- }
- }
- return (~cpu_to_le16(sum)) & 0xFFFF;
- }
-
- uint16_t add_ipchksums(unsigned long offset, uint16_t sum, uint16_t new)
- {
- unsigned long checksum;
- sum = ~sum & 0xFFFF;
- new = ~new & 0xFFFF;
- if (offset & 1) {
-
-
- new = bswap_16(new);
- }
- checksum = sum + new;
- if (checksum > 0xFFFF) {
- checksum -= 0xFFFF;
- }
- return (~checksum) & 0xFFFF;
- }
-
-
- unsigned int sleep(unsigned int secs)
- {
- unsigned long tmo;
-
- for (tmo = currticks()+secs*TICKS_PER_SEC; currticks() < tmo; ) {
- }
- return 0;
- }
-
-
- void interruptible_sleep(int secs)
- {
- printf("<sleep>\n");
- sleep(secs);
- }
-
-
- int strcasecmp(const char *a, const char *b)
- {
- while (*a && *b && (*a & ~0x20) == (*b & ~0x20)) {a++; b++; }
- return((*a & ~0x20) - (*b & ~0x20));
- }
-
-
- int inet_aton ( const char *cp, struct in_addr *inp ) {
- const char *p = cp;
- const char *digits_start;
- unsigned long ip = 0;
- unsigned long val;
- int j;
- for(j = 0; j <= 3; j++) {
- digits_start = p;
- val = strtoul(p, ( char ** ) &p, 10);
- if ((p == digits_start) || (val > 255)) return 0;
- if ( ( j < 3 ) && ( *(p++) != '.' ) ) return 0;
- ip = (ip << 8) | val;
- }
- if ( *p == '\0' ) {
- inp->s_addr = htonl(ip);
- return 1;
- }
- return 0;
- }
-
- int isspace ( int c ) {
- switch ( c ) {
- case ' ':
- case '\f':
- case '\n':
- case '\r':
- case '\t':
- case '\v':
- return 1;
- default:
- return 0;
- }
- }
-
- unsigned long strtoul ( const char *p, char **endp, int base ) {
- unsigned long ret = 0;
- unsigned int charval;
-
- while ( isspace ( *p ) )
- p++;
-
- if ( base == 0 ) {
- base = 10;
- if ( *p == '0' ) {
- p++;
- base = 8;
- if ( ( *p | 0x20 ) == 'x' ) {
- p++;
- base = 16;
- }
- }
- }
-
- while ( 1 ) {
- charval = *p;
- if ( charval >= 'a' ) {
- charval = ( charval - 'a' + 10 );
- } else if ( charval >= 'A' ) {
- charval = ( charval - 'A' + 10 );
- } else {
- charval = ( charval - '0' );
- }
- if ( charval >= ( unsigned int ) base )
- break;
- ret = ( ( ret * base ) + charval );
- p++;
- }
-
- if ( endp )
- *endp = ( char * ) p;
-
- return ( ret );
- }
-
|