summaryrefslogtreecommitdiff
path: root/networking/udhcp/packet.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/packet.c')
-rw-r--r--networking/udhcp/packet.c34
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 */
42int udhcp_get_packet(struct dhcpMessage *packet, int fd) 42int 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