diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-03 15:47:50 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-03 15:47:50 +0000 |
commit | 42b3dea9bfb8ac595c71089ee23012f44dd43eb2 (patch) | |
tree | b7b86d06a574d2af72bc79536d399905b5619959 /networking/udhcp/packet.c | |
parent | 54e19da86d5496ec5f5787b85a2b6342be1d63d4 (diff) | |
download | busybox-w32-42b3dea9bfb8ac595c71089ee23012f44dd43eb2.tar.gz busybox-w32-42b3dea9bfb8ac595c71089ee23012f44dd43eb2.tar.bz2 busybox-w32-42b3dea9bfb8ac595c71089ee23012f44dd43eb2.zip |
udhcp: many small fixes:
* arpping(): smaller and even probably fixed
* lots of variables/params converted: ulong -> uint32_t
* uptime() nuked in favor of monotonic_sec()
* udhcp_get_packet(): only one "bad vendor", simplify
function old new delta
reservedIp 36 35 -1
udhcpc_main 2462 2460 -2
addStaticLease 64 62 -2
static.broken_vendors 16 - -16
uptime 19 - -19
udhcpd_main 1273 1238 -35
udhcp_get_packet 223 184 -39
.rodata 144162 144106 -56
arpping 690 609 -81
------------------------------------------------------------------------------
(add/remove: 0/2 grow/shrink: 0/7 up/down: 0/-251) Total: -251 bytes
text data bss dec hex filename
734241 3028 14400 751669 b7835 busybox_old
734005 3028 14400 751433 b7749 busybox_unstripped
Diffstat (limited to 'networking/udhcp/packet.c')
-rw-r--r-- | networking/udhcp/packet.c | 34 |
1 files changed, 24 insertions, 10 deletions
diff --git a/networking/udhcp/packet.c b/networking/udhcp/packet.c index da3807773..272e79df1 100644 --- a/networking/udhcp/packet.c +++ b/networking/udhcp/packet.c | |||
@@ -41,16 +41,17 @@ void udhcp_init_header(struct dhcpMessage *packet, char type) | |||
41 | /* read a packet from socket fd, return -1 on read error, -2 on packet error */ | 41 | /* read a packet from socket fd, return -1 on read error, -2 on packet error */ |
42 | int udhcp_get_packet(struct dhcpMessage *packet, int fd) | 42 | int udhcp_get_packet(struct dhcpMessage *packet, int fd) |
43 | { | 43 | { |
44 | #if 0 | ||
44 | static const char broken_vendors[][8] = { | 45 | static const char broken_vendors[][8] = { |
45 | "MSFT 98", | 46 | "MSFT 98", |
46 | "" | 47 | "" |
47 | }; | 48 | }; |
49 | #endif | ||
48 | int bytes; | 50 | int bytes; |
49 | int i; | 51 | unsigned char *vendor; |
50 | char unsigned *vendor; | ||
51 | 52 | ||
52 | memset(packet, 0, sizeof(struct dhcpMessage)); | 53 | memset(packet, 0, sizeof(*packet)); |
53 | bytes = read(fd, packet, sizeof(struct dhcpMessage)); | 54 | bytes = read(fd, packet, sizeof(*packet)); |
54 | if (bytes < 0) { | 55 | if (bytes < 0) { |
55 | DEBUG("cannot read on listening socket, ignoring"); | 56 | DEBUG("cannot read on listening socket, ignoring"); |
56 | return -1; | 57 | return -1; |
@@ -62,15 +63,28 @@ int udhcp_get_packet(struct dhcpMessage *packet, int fd) | |||
62 | } | 63 | } |
63 | DEBUG("Received a packet"); | 64 | DEBUG("Received a packet"); |
64 | 65 | ||
65 | if (packet->op == BOOTREQUEST && (vendor = get_option(packet, DHCP_VENDOR))) { | 66 | if (packet->op == BOOTREQUEST) { |
66 | for (i = 0; broken_vendors[i][0]; i++) { | 67 | vendor = get_option(packet, DHCP_VENDOR); |
67 | if (vendor[OPT_LEN - 2] == (uint8_t)strlen(broken_vendors[i]) | 68 | if (vendor) { |
68 | && !strncmp((char*)vendor, broken_vendors[i], vendor[OPT_LEN - 2]) | 69 | #if 0 |
70 | int i; | ||
71 | for (i = 0; broken_vendors[i][0]; i++) { | ||
72 | if (vendor[OPT_LEN - 2] == (uint8_t)strlen(broken_vendors[i]) | ||
73 | && !strncmp((char*)vendor, broken_vendors[i], vendor[OPT_LEN - 2]) | ||
74 | ) { | ||
75 | DEBUG("broken client (%s), forcing broadcast", | ||
76 | broken_vendors[i]); | ||
77 | packet->flags |= htons(BROADCAST_FLAG); | ||
78 | } | ||
79 | } | ||
80 | #else | ||
81 | if (vendor[OPT_LEN - 2] == (uint8_t)(sizeof("MSFT 98")-1) | ||
82 | && memcmp(vendor, "MSFT 98", sizeof("MSFT 98")-1) == 0 | ||
69 | ) { | 83 | ) { |
70 | DEBUG("broken client (%s), forcing broadcast", | 84 | DEBUG("broken client (%s), forcing broadcast", "MSFT 98"); |
71 | broken_vendors[i]); | ||
72 | packet->flags |= htons(BROADCAST_FLAG); | 85 | packet->flags |= htons(BROADCAST_FLAG); |
73 | } | 86 | } |
87 | #endif | ||
74 | } | 88 | } |
75 | } | 89 | } |
76 | 90 | ||