lwip-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [lwip-users] broken DHCP/ARP interaction


From: Zach Smith
Subject: Re: [lwip-users] broken DHCP/ARP interaction
Date: Wed, 14 May 2014 16:17:29 +0000

I also have had a problem similar to this. I have lwip running in a wifi device and I was having problems because my router was echoing packets back to me. I can’t remember if this interfered with ARP working correctly or if it was causing some other problem. But what I did is put a function in the low level ethernet_input() that filters out any Ethernet packets that have a src MAC address equal to my MAC address. I would also be curious to hear if other folks have had to do this?

 

I also had a problem similar to this with IPv6 not working when I was plugged into an old hub rather than a switch. IPv6 auto-configuration and duplicate address detection wasn’t working right because I was getting my own transmitted packets echoed back to me. There is a thread about this on the lwip mailing list archives:

http://lists.nongnu.org/archive/html/lwip-users/2012-12/msg00020.html

 

It seems like you could be experiencing something similar maybe.

 

From: lwip-users-bounces+address@hidden [mailto:lwip-users-bounces+address@hidden On Behalf Of Radouch, Zdenek
Sent: Tuesday, May 13, 2014 1:20 PM
To: address@hidden
Subject: [lwip-users] broken DHCP/ARP interaction

 

I am having an LwIP problem where the local ARP erroneously answers its own who-has request

and by doing that prevents DHCP from working correctly. I would appreciate if anyone

familiar with the ARP code could comment on how this could possibly happen (and of

course help me fix it J).

 

The setup is an embedded WiFi device running FreeRTOS with LwIP, attempting to obtain

an IP address from the wireless network it just joined. I have a wireshark log I could provide

(it’s big and hard to read) capturing the following:

 

1.       The device associates with the network and requests IP address from the DHCP server

2.       The DHCP server gives IP address to the device

3.       The device runs an ARP IP check on the address

4.       The device erroneously answers its own ARP request

5.       The device consequently (ARP answered) rejects the IP address offered by the DHCP server

 

Obviously, the #4 is wrong, the device should have never answered its own ARP since the IP address

in question is still being validated (by that very ARP transaction).

I am not familiar with the code base so I have no idea how this could happen (appears obviously wrong).

I turned on some debugging in the stack and what I see simply confirms what I had decoded with wireshark.

This is easily reproducible (as in it happens every single time I run it) so I could instrument more of the stack,

if that would help with debugging.

 

Here is the log:

 

Aspen firmware: May 13 2014 13:58:05

[2.806917] : etharp_send_ip: sending packet 0x20004b34                                                                                             

[2.811492] : etharp_send_ip: sending packet 0x20004b34                                                                                             

[2.905013] : etharp_send_ip: sending packet 0x20004b34                                                                                             

[3.109013] : etharp_send_ip: sending packet 0x20004b34                                                                                              

[appln] listen: OK                                                                                                                                 

[wlcm] got wifi message: 8 0 0x00000000                                                                                                             

[wlcm] got event: scan result                                                                                                                      

[wlcm] Found better AP iRobot-Guest on channel 11                                                                                                  

[wlcm] starting association to "default"                                                                                                            

[wlcm] got wifi message: 10 0 0x00000000                                                                                                           

[wlcm] got event: association result: success                                                                                                       

[wlcm] got wifi message: 12 0 0x00000000                                                                                                           

[wlcm] got event: authentication result: success                                                                                                    

[net] configuring interface mlan (with DHCP client)                                                                                                

[4.824439] : dhcp_start(netif=0x20012024) ml1                                                                                                      

[4.828588] : dhcp_start(): starting new DHCP client                                                                                                 

[4.836495] : dhcp_start(): starting DHCP configuration                                                                                             

[4.841152] : dhcp_discover()                                                                                                                        

[4.843650] : transaction id xid(5542A27)                                                                                                           

[4.847158] : dhcp_discover: making request                                                                                                         

[4.850809] : dhcp_discover: realloc()ing                                                                                                            

[4.854298] : dhcp_discover: sendto(DISCOVER, IP_ADDR_BROADCAST, DHCP_SERVER_PORT)                                                                  

[4.861214] : etharp_send_ip: sending packet 0x20004b7c                                                                                              

[4.865908] : dhcp_discover: deleting()ing                                                                                                          

[4.869444] : dhcp_discover: SELECTING                                                                                                              

[4.872686] : dhcp_discover(): set request timeout 2000 msecs                                                                                        

[4.877847] : ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:44:ad:d9:02:a8:cd, type:800                                                               

[4.885014] : dhcp_recv(pbuf = 0x2000f7f8) from DHCP server 172.16.16.7 port 67                                                                      

[4.891654] : pbuf->len = 310                                                                                                                       

[4.894150] : pbuf->tot_len = 310                                                                                                                    

[4.896998] : searching DHCP_OPTION_MESSAGE_TYPE                                                                                                    

[4.901056] : DHCP_OFFER received in DHCP_SELECTING state                                                                                           

[4.905881] : dhcp_handle_offer(netif=0x20012024) ml1                                                                                                

[4.910375] : dhcp_handle_offer(): server 0x0B02460A                                                                                                

[4.914785] : dhcp_handle_offer(): offer for 0x641110AC                                                                                              

[4.919443] : dhcp_select(netif=0x20012024) ml1                                                                                                     

[4.923440] : transaction id xid(169C39E2)                                                                                                          

[4.927046] : etharp_send_ip: sending packet 0x20004b7c                                                                                              

[4.931723] : dhcp_select: REQUESTING                                                                                                               

[4.934837] : dhcp_select(): set request timeout 2000 msecs                                                                                          

[4.939831] : ethernet_input: dest:ff:ff:ff:ff:ff:ff, src:44:ad:d9:02:a8:cd, type:800                                                               

[4.946993] : dhcp_recv(pbuf = 0x2000f1bc) from DHCP server 172.16.16.7 port 67                                                                     

[4.953638] : pbuf->len = 310                                                                                                                       

[4.956135] : pbuf->tot_len = 310                                                                                                                   

[4.958980] : searching DHCP_OPTION_MESSAGE_TYPE                                                                                                     

[4.963038] : DHCP_ACK received                                                                                                                     

[4.965703] : dhcp_check(netif=0x20012024) ml                                                                                                        

[4.969530] : dhcp_check(): netif IP: 0x00000000                                                                                                    

[4.973606] : etharp_find_entry: found empty entry 0                                                                                                

[4.978017] : etharp_find_entry: selecting empty entry 0                                                                                             

[4.982759] : etharp_request: sending ARP request.                                                                                                  

[4.987007] : etharp_raw: sending raw ARP packet.                                                                                                    

[4.991203] : dhcp_check(): set request timeout 500 msecs                                                                                           

[4.995991] : ethernet_input: dest:6c:ad:f8:e5:27:fe, src:6c:ad:f8:e5:27:fe, type:806                                                               

[5.003142] : etharp_update_arp_entry: 172.16.17.100 - 6C:AD:F8:E5:27:FE                                                                             

[5.009217] : etharp_find_entry: found matching entry 0                                                                                             

[5.013879] : etharp_update_arp_entry: updating stable entry 0                                                                                       

[5.019116] : etharp_arp_input: incoming ARP reply                                                                                                  

[5.023360] : dhcp_arp_reply()                                                                                                                       

[5.025938] : dhcp_arp_reply(): CHECKING, arp reply for 0x641110AC                                                                                  

[5.031513] : dhcp_arp_reply(): arp reply matched with offered address, declining                                                                   

[5.038336] : dhcp_decline()                                                                                                                         

[5.040751] : transaction id xid(2EAB4956)                                                                                                          

[5.044358] : etharp_send_ip: sending packet 0x20004b7c                                                                                              

[5.049038] : dhcp_decline: BACKING OFF                                                                                                             

[5.052316] : dhcp_decline(): set request timeout 10000 msecs                                                                                       

 

 

Thanks for any pointers or help.

-Z


Confidentiality Notice: This e-mail may contain confidential and privileged material for the sole use of the intended recipient(s). Any review, use, distribution or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive from the recipient), please contact the sender by reply e-mail and delete all copies of the message.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]