- Timestamp:
- Feb 14, 2012 8:46:23 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76266
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/bootp.c
r40118 r40122 677 677 static void dhcp_decode(PNATState pData, struct bootp_t *bp, const uint8_t *buf, int size) 678 678 { 679 const uint8_t *p , *p_end;679 const uint8_t *pu8RawDhcpObject; 680 680 int rc; 681 681 struct in_addr req_ip; … … 684 684 struct mbuf *m = NULL; 685 685 686 p = buf; 687 p_end = buf + size; 686 pu8RawDhcpObject = buf; 688 687 if (size < 5) 689 688 return; 690 689 691 if (memcmp(p , rfc1533_cookie, 4) != 0)690 if (memcmp(pu8RawDhcpObject, rfc1533_cookie, 4) != 0) 692 691 return; 693 692 694 p = dhcp_find_option(bp->bp_vend, RFC2132_MSG_TYPE); 695 Assert(p); 696 if (!p) 693 /* note: pu8RawDhcpObject doesn't point to parameter buf */ 694 pu8RawDhcpObject = dhcp_find_option(bp->bp_vend, RFC2132_MSG_TYPE); 695 Assert(pu8RawDhcpObject); 696 if (!pu8RawDhcpObject) 697 697 return; 698 698 /* … … 725 725 } 726 726 727 switch (*(p +2))727 switch (*(pu8RawDhcpObject + 2)) 728 728 { 729 729 case DHCPDISCOVER: … … 748 748 749 749 case DHCPDECLINE: 750 p = dhcp_find_option(&bp->bp_vend[0], RFC2132_REQ_ADDR); 751 if (!p) 750 /* note: pu8RawDhcpObject doesn't point to DHCP header, now it's expected it points 751 * to Dhcp Option RFC2132_REQ_ADDR 752 */ 753 pu8RawDhcpObject = dhcp_find_option(&bp->bp_vend[0], RFC2132_REQ_ADDR); 754 if (!pu8RawDhcpObject) 752 755 { 753 756 Log(("NAT: RFC2132_REQ_ADDR not found\n")); 754 757 break; 755 758 } 756 req_ip.s_addr = *(uint32_t *)(p + 2);759 req_ip.s_addr = *(uint32_t *)(pu8RawDhcpObject + 2); 757 760 rc = bootp_cache_lookup_ether_by_ip(pData, req_ip.s_addr, NULL); 758 761 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.