Subversion Repositories Kolibri OS

Rev

Rev 4805 | Rev 5419 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;                                                                 ;;
  3. ;; Copyright (C) KolibriOS team 2010-2015. All rights reserved.    ;;
  4. ;; Distributed under terms of the GNU General Public License       ;;
  5. ;;                                                                 ;;
  6. ;;  zeroconfig.asm - Zeroconfig service for KolibriOS              ;;
  7. ;;                                                                 ;;
  8. ;;  Written by hidnplayr@kolibrios.org                             ;;
  9. ;;    Some code contributed by Derpenguin                          ;;
  10. ;;                                                                 ;;
  11. ;;  DHCP code is based on that by Mike Hibbet                      ;;
  12. ;;      (DHCP client for menuetos)                                 ;;
  13. ;;                                                                 ;;
  14. ;;          GNU GENERAL PUBLIC LICENSE                             ;;
  15. ;;             Version 2, June 1991                                ;;
  16. ;;                                                                 ;;
  17. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  18.  
  19. format binary as ""
  20.  
  21. ; CONFIGURATION
  22.  
  23. TIMEOUT                 = 3             ; in seconds
  24. BUFFER                  = 1024          ; in bytes
  25. DHCP_TRIES              = 3             ; number of times to try contacting DHCP server
  26. __DEBUG__               = 1             ; enable/disable
  27. __DEBUG_LEVEL__         = 2             ; 1 = all, 2 = errors
  28.  
  29. ; CONFIGURATION FOR LINK-LOCAL
  30.  
  31. PROBE_WAIT              = 1             ; second  (initial random delay)
  32. PROBE_MIN               = 1             ; second  (minimum delay till repeated probe)
  33. PROBE_MAX               = 2             ; seconds (maximum delay till repeated probe)
  34. PROBE_NUM               = 3             ;         (number of probe packets)
  35.  
  36. ANNOUNCE_NUM            = 2             ;         (number of announcement packets)
  37. ANNOUNCE_INTERVAL       = 2             ; seconds (time between announcement packets)
  38. ANNOUNCE_WAIT           = 2             ; seconds (delay before announcing)
  39.  
  40. MAX_CONFLICTS           = 10            ;         (max conflicts before rate limiting)
  41.  
  42. RATE_LIMIT_INTERVAL     = 60            ; seconds (delay between successive attempts)
  43.  
  44. DEFEND_INTERVAL         = 10            ; seconds (min. wait between defensive ARPs)
  45.  
  46. use32
  47.         org     0x0
  48.  
  49.         db      'MENUET01'              ; 8 byte id
  50.         dd      0x01                    ; header version
  51.         dd      START                   ; start of code
  52.         dd      IM_END                  ; size of image
  53.         dd      (I_END+0x100)           ; memory for app
  54.         dd      (I_END+0x100)           ; esp
  55.         dd      0, 0                    ; I_Param, I_Path
  56.  
  57.  
  58. include '../../proc32.inc'
  59. include '../../macros.inc'
  60. include '../../debug-fdo.inc'
  61. include '../../network.inc'
  62. include 'dhcp.inc'
  63. include '../../dll.inc'
  64.  
  65. START:
  66.         mcall   68, 11
  67.  
  68.         stdcall dll.Load,@IMPORT
  69.         or      eax, eax
  70.         jnz     fail
  71.  
  72.         DEBUGF  2,"Zero-config service loaded\n"
  73.  
  74.         mcall   40, EVM_STACK2
  75.  
  76. wait_for_link_up:
  77.         mov     bh, [device]
  78.         mov     bl, 0           ; Get device type
  79.         mcall   74
  80.         cmp     eax, 1          ; Ethernet
  81.         jne     .wait
  82.  
  83.         mov     bl, 10          ; Get Link status
  84.         mcall   74
  85.         test    eax, eax
  86.         jnz     .go
  87.  
  88.   .wait:
  89.         mcall   10
  90.         jmp     wait_for_link_up
  91.  
  92.   .go:
  93.         mov     ebx, API_ETH + 0
  94.         mov     bh, [device]
  95.         mcall   76              ; get MAC of the ethernet interface
  96.         mov     word[MAC], bx
  97.         mov     dword[MAC+2], eax
  98.         DEBUGF  1,"MAC: %x-%x-%x-%x-%x-%x\n", [MAC+0]:2, [MAC+1]:2, [MAC+2]:2, [MAC+3]:2, [MAC+4]:2, [MAC+5]:2
  99.  
  100.         invoke  ini.get_str, path, str_ipconfig, str_type, inibuf, 16, 0
  101.  
  102.         cmp     dword[inibuf], 'stat'
  103.         je      static
  104.         jmp     try_dhcp
  105.  
  106. wait_for_link_down:
  107. ; TODO: detect ARP conflicts
  108.  
  109.         mcall   40, EVM_STACK2
  110.   .loop:
  111.         mcall   10
  112.         mov     bh, [device]
  113.         mov     bl, 0           ; Get device type
  114.         mcall   74
  115.         cmp     eax, 0          ; No device
  116.         je      .down
  117.  
  118.         mov     bl, 10          ; Get Link status
  119.         mcall   74
  120.         test    eax, eax
  121.         jnz     .loop
  122.  
  123.   .down:
  124.         xor     ecx, ecx
  125.         mov     ebx, API_IPv4 + 3
  126.         mov     bh, [device]
  127.         mcall   76              ; ip
  128.         mov     bl, 5
  129.         mcall   76              ; dns
  130.         mov     bl, 7
  131.         mcall   76              ; subnet
  132.         mov     bl, 9
  133.         mcall   76              ; gateway
  134.  
  135.         jmp     wait_for_link_up
  136.  
  137. static:
  138.         DEBUGF  1,"Applying Static IP settings\n"
  139.  
  140.         invoke  ini.get_str, path, str_ipconfig, str_ip, inibuf, 16, 0
  141.         mov     edx, inibuf
  142.         call    ip_str_to_dword
  143.         mov     ecx, edx
  144.         mov     ebx, API_IPv4 + 3       ; set IP
  145.         mov     bh, [device]
  146.         mcall   76
  147.  
  148.         invoke  ini.get_str, path, str_ipconfig, str_gateway, inibuf, 16, 0
  149.         mov     edx, inibuf
  150.         call    ip_str_to_dword
  151.         mov     ecx, edx
  152.         mov     ebx, API_IPv4 + 9       ; set gateway
  153.         mov     bh, [device]
  154.         mcall   76
  155.  
  156.         invoke  ini.get_str, path, str_ipconfig, str_dns, inibuf, 16, 0
  157.         mov     edx, inibuf
  158.         call    ip_str_to_dword
  159.         mov     ecx, edx
  160.         mov     ebx, API_IPv4 + 5       ; set DNS
  161.         mov     bh, [device]
  162.         mcall   76
  163.  
  164.         invoke  ini.get_str, path, str_ipconfig, str_subnet, inibuf, 16, 0
  165.         mov     edx, inibuf
  166.         call    ip_str_to_dword
  167.         mov     ecx, edx
  168.         mov     ebx, API_IPv4 + 7       ; set subnet
  169.         mov     bh, [device]
  170.         mcall   76
  171.  
  172.         mov     [notify_struct.msg], str_connected
  173.         mcall   70, notify_struct
  174.         jmp     wait_for_link_down
  175.  
  176.  
  177. try_dhcp:
  178.  
  179.         DEBUGF  2,"Trying to contact DHCP server\n"
  180.  
  181.         mcall   40, EVM_STACK
  182.  
  183.         mcall   75, 0, AF_INET4, SOCK_DGRAM, 0          ; open socket (parameters: domain, type, reserved)
  184.         cmp     eax, -1
  185.         je      socket_error
  186.         mov     [socketNum], eax
  187.  
  188.         DEBUGF  1,"Socket %x opened\n", eax
  189.  
  190.         mcall   75, 2, [socketNum], sockaddr1, 18       ; bind socket to local port 68
  191.         cmp     eax, -1
  192.         je      socket_error
  193.  
  194.         DEBUGF  1,"Socket Bound to local port 68\n"
  195.  
  196.         mcall   75, 4, [socketNum], sockaddr2, 18       ; connect to 255.255.255.255 on port 67
  197.         cmp     eax, -1
  198.         je      socket_error
  199.  
  200.         DEBUGF  1,"Connected to 255.255.255.255 on port 67\n"
  201.  
  202.         mov     [dhcpMsgType], 0x01                     ; DHCP discover
  203.         mov     [dhcpLease], esi                        ; esi is still -1 (-1 = forever)
  204.  
  205.         mcall   26, 9                                   ; Get system time
  206.         imul    eax, 100
  207.         mov     [currTime], eax
  208.  
  209. build_request:                                          ; Creates a DHCP request packet.
  210.  
  211.         mov     [tries], DHCP_TRIES
  212.  
  213.         DEBUGF  1,"Building request\n"
  214.  
  215.         stdcall mem.Alloc, BUFFER
  216.         test    eax, eax
  217.         jz      dhcp_fail2
  218.         mov     [dhcpMsg], eax
  219.  
  220.         mov     edi, eax
  221.         mov     ecx, BUFFER
  222.         xor     eax, eax
  223.         rep     stosb
  224.  
  225.             ;; todo: put this in one buffer we can copy, instead of writing bytes and words!
  226.  
  227.         mov     edx, [dhcpMsg]
  228.  
  229.         ; Boot protocol legacy
  230.         mov     [edx], byte 0x01                ; Boot request
  231.         mov     [edx+1], byte 0x01              ; Ethernet
  232.         mov     [edx+2], byte 0x06              ; Ethernet h/w len
  233.         mov     [edx+4], dword 0x11223344       ; xid                 ;;;;;;;  FIXME
  234.         mov     eax, [currTime]
  235.         mov     [edx+8], eax                    ; secs, our uptime
  236.         mov     [edx+10], byte 0x80             ; broadcast flag set
  237.         mov     eax, dword [MAC]                ; first 4 bytes of MAC
  238.         mov     [edx+28],dword eax
  239.         mov     ax, word [MAC+4]                ; last 2 bytes of MAC
  240.         mov     [edx+32],word ax
  241.  
  242.         ; DHCP extension
  243.         mov     [edx+236], dword 0x63538263     ; magic cookie
  244.         mov     [edx+240], word 0x0135          ; option DHCP msg type
  245.         mov     al, [dhcpMsgType]
  246.         mov     [edx+240+2], al
  247.         mov     [edx+240+3], word 0x0433        ; option Lease time = infinity
  248.         mov     eax, [dhcpLease]
  249.         mov     [edx+240+5], eax
  250.         mov     [edx+240+9], word 0x0432        ; option requested IP address
  251.         mov     eax, [dhcp.ip]
  252.         mov     [edx+240+11], eax
  253.         mov     [edx+240+15], word 0x0437       ; option request list
  254.         mov     [edx+240+17], dword 0x0f060301
  255.  
  256.         cmp     [dhcpMsgType], 0x01             ; Check which msg we are sending
  257.         jne     request_options
  258.  
  259.         mov     [edx+240+21], byte 0xff         ; end of options marker
  260.  
  261.         mov     [dhcpMsgLen], 262               ; length
  262.         jmp     send_dhcpmsg
  263.  
  264. request_options:
  265.         mov     [edx+240+21], word 0x0436       ; server IP
  266.         mov     eax, [dhcpServerIP]
  267.         mov     [edx+240+23], eax
  268.  
  269.         mov     [edx+240+27], byte 0xff         ; end of options marker
  270.  
  271.         mov     [dhcpMsgLen], 268               ; length
  272.  
  273. send_dhcpmsg:
  274.         DEBUGF  1,"Sending DHCP discover/request\n"
  275.         mcall   75, 6, [socketNum], [dhcpMsg], [dhcpMsgLen]             ; write to socket (send broadcast request)
  276.         mcall   26, 9
  277.         add     eax, TIMEOUT*100
  278.         mov     [timeout], eax
  279.   .wait:
  280.         mcall   23, TIMEOUT                                             ; wait for data (with timeout)
  281.  
  282. read_data:                                                              ; we have data - this will be the response
  283.         mcall   75, 7, [socketNum], [dhcpMsg], BUFFER, MSG_DONTWAIT     ; read data from socket
  284.         cmp     eax, -1
  285.         jne     @f
  286.  
  287.         mcall   26, 9
  288.         cmp     eax, [timeout]
  289.         jb      send_dhcpmsg.wait
  290.  
  291.         DEBUGF  2,"No answer from DHCP server\n"
  292.         dec     [tries]
  293.         jnz     send_dhcpmsg                    ; try again
  294.         jmp     dhcp_fail
  295.  
  296.   @@:
  297.         DEBUGF  1,"%d bytes received\n", eax
  298.         mov     [dhcpMsgLen], eax
  299.  
  300. ; depending on which msg we sent, handle the response
  301. ; accordingly.
  302. ; If the response is to a dhcp discover, then:
  303. ;  1) If response is DHCP OFFER then
  304. ;  1.1) record server IP, lease time & IP address.
  305. ;  1.2) send a request packet
  306. ; If the response is to a dhcp request, then:
  307. ;  1) If the response is DHCP ACK then
  308. ;  1.1) extract the DNS & subnet fields. Set them in the stack
  309.  
  310.         cmp     [dhcpMsgType], 0x01             ; did we send a discover?
  311.         je      discover
  312.  
  313.         cmp     [dhcpMsgType], 0x03             ; did we send a request?
  314.         je      request
  315.  
  316.         ; we should never reach here ;)
  317.         jmp     fail
  318.  
  319. discover:
  320.         call    parse_response
  321.  
  322.         cmp     [dhcpMsgType2], 0x02            ; Was the response an offer?
  323.         jne     dhcp_fail
  324.  
  325.         DEBUGF  1, "Got offer, making request\n"
  326.         mov     [dhcpMsgType], 0x03             ; make it a request
  327.         jmp     build_request
  328.  
  329. request:
  330.         call    parse_response
  331.  
  332.         cmp     [dhcpMsgType2], 0x05            ; Was the response an ACK? It should be
  333.         jne     read_data                       ; NO - read next packets
  334.  
  335.         DEBUGF  2, "IP assigned by DHCP server successfully\n"
  336.  
  337.         mov     [notify_struct.msg], str_connected
  338.         mcall   70, notify_struct
  339.         call    dhcp_fail
  340.  
  341.         mov     ebx, API_IPv4 + 3
  342.         mov     bh, [device]
  343.         mcall   76, , [dhcp.ip]                 ; ip
  344.         mov     bl, 5
  345.         mcall   76, , [dhcp.dns]                ; dns
  346.         mov     bl, 7
  347.         mcall   76, , [dhcp.subnet]             ; subnet
  348.         mov     bl, 9
  349.         mcall   76, , [dhcp.gateway]            ; gateway
  350.  
  351.         jmp     wait_for_link_down
  352.  
  353.  
  354. ;***************************************************************************
  355. ;   Function
  356. ;      parseResponse
  357. ;
  358. ;   Description
  359. ;      extracts the fields ( client IP address and options ) from
  360. ;      a DHCP response
  361. ;      The values go into
  362. ;       dhcpMsgType,dhcpLease,dhcpClientIP,dhcpServerIP,
  363. ;       dhcpDNSIP, dhcpSubnet
  364. ;      The message is stored in dhcpMsg
  365. ;
  366. ;***************************************************************************
  367. parse_response:
  368.  
  369.         DEBUGF  1,"Data received, parsing response\n"
  370.         mov     edx, [dhcpMsg]
  371.         mov     [dhcpMsgType2], 0
  372.  
  373.         push    dword [edx+16]
  374.         pop     [dhcp.ip]
  375.         DEBUGF  1,"Client: %u.%u.%u.%u\n", [edx+16]:1, [edx+17]:1, [edx+18]:1, [edx+19]:1
  376.  
  377. ; TODO: check if there really are options
  378.  
  379.         mov     al, 240                         ; Point to first option
  380.         movzx   ecx, al
  381.  
  382.   .next_option:
  383.         add     edx, ecx
  384.  
  385.         mov     al, [edx]                       ; get message identifier
  386.  
  387.         cmp     al, 0xff                        ; End of options?
  388.         je      .done
  389.  
  390.         cmp     al, 0
  391.         je      .pad
  392.  
  393. ; TODO: check if we still are inside the buffer
  394.  
  395.         inc     edx
  396.         movzx   ecx, byte [edx]                 ; get data length
  397.         inc     edx                             ; point to data
  398.  
  399.         cmp     al, dhcp_msg_type               ; Msg type is a single byte option
  400.         je      .msgtype
  401.  
  402.         cmp     al, dhcp_dhcp_server_id
  403.         je      .server
  404.  
  405.         cmp     al, dhcp_address_time
  406.         je      .lease
  407.  
  408.         cmp     al, dhcp_subnet_mask
  409.         je      .subnet
  410.  
  411.         cmp     al, dhcp_router
  412.         je      .router
  413.  
  414.         cmp     al, dhcp_domain_server
  415.         je      .dns
  416.  
  417.         DEBUGF  1,"Unsupported DHCP option: %u\n", al
  418.  
  419.         jmp     .next_option
  420.  
  421.   .pad:
  422.         xor     ecx, ecx
  423.         inc     ecx
  424.         jmp     .next_option
  425.  
  426.   .msgtype:
  427.         mov     al, [edx]
  428.         mov     [dhcpMsgType2], al
  429.  
  430.         DEBUGF  1,"DHCP Msg type: %u\n", al
  431.         jmp     .next_option                    ; Get next option
  432.  
  433.   .server:
  434.         mov     eax, [edx]
  435.         mov     [dhcpServerIP], eax
  436.         DEBUGF  1,"Server: %u.%u.%u.%u\n",[edx]:1,[edx+1]:1,[edx+2]:1,[edx+3]:1
  437.         jmp     .next_option
  438.  
  439.   .lease:
  440.         pusha
  441.         mov     eax,[edx]
  442.         bswap   eax
  443.         mov     [dhcpLease],eax
  444.         DEBUGF  1,"Lease: %d\n",eax
  445.         popa
  446.         jmp     .next_option
  447.  
  448.   .subnet:
  449.         push    dword [edx]
  450.         pop     [dhcp.subnet]
  451.         DEBUGF  1,"Subnet: %u.%u.%u.%u\n",[edx]:1,[edx+1]:1,[edx+2]:1,[edx+3]:1
  452.         jmp     .next_option
  453.  
  454.   .router:
  455.         push    dword [edx]
  456.         pop     [dhcp.gateway]
  457.         DEBUGF  1,"Gateway: %u.%u.%u.%u\n",[edx]:1,[edx+1]:1,[edx+2]:1,[edx+3]:1
  458.         jmp     .next_option
  459.  
  460.   .dns:
  461.         push    dword [edx]
  462.         pop     [dhcp.dns]
  463.         DEBUGF  1,"DNS: %u.%u.%u.%u\n",[edx]:1,[edx+1]:1,[edx+2]:1,[edx+3]:1
  464.         jmp     .next_option
  465.  
  466.   .done:
  467.         ret
  468.  
  469. dhcp_fail:
  470.  
  471.         mcall   close, [socketNum]
  472.         stdcall mem.Free, [dhcpMsg]
  473.  
  474. dhcp_fail2:
  475.         DEBUGF  1,"DHCP failed\n"
  476.  
  477. link_local:
  478.         call    random
  479.         mov     cx, ax
  480.         shl     ecx, 16
  481.         mov     cx, 0xfea9                              ; IP 169.254.0.0 link local net, see RFC3927
  482.         mov     ebx, API_IPv4 + 3
  483.         mov     bh, [device]
  484.         mcall   76, , ecx                   ; mask is 255.255.0.0
  485.         DEBUGF  2,"Link Local IP assigned: 169.254.%u.%u\n", [generator+0]:1, [generator+1]:1
  486.         mov     bl, 7
  487.         mcall   76, , 0xffff
  488.         mov     bl, 9
  489.         mcall   76, , 0x0
  490.         mov     bl, 5
  491.         mcall   76, , 0x0
  492.  
  493.         mcall   5, PROBE_WAIT*100
  494.  
  495.         xor     esi, esi
  496.    probe_loop:
  497.         call    random                                  ; create a pseudo random number in eax (seeded by MAC)
  498.  
  499.         cmp     al, PROBE_MIN*100                       ; check if al is bigger then PROBE_MIN
  500.         jae     @f                                      ; all ok
  501.         add     al, (PROBE_MAX-PROBE_MIN)*100           ; al is too small
  502.    @@:
  503.  
  504.         cmp     al, PROBE_MAX*100
  505.         jbe     @f
  506.         sub     al, (PROBE_MAX-PROBE_MIN)*100
  507.    @@:
  508.  
  509.         movzx   ebx,al
  510.         DEBUGF  1,"Waiting %u0ms\n",ebx
  511.         mcall   5
  512.  
  513.         DEBUGF  1,"Sending Probe\n"
  514.         mov     ebx, API_ARP + 6
  515.         mov     bh, [device]
  516.         mcall   76
  517.         inc     esi
  518.  
  519.         cmp     esi, PROBE_NUM
  520.         jb      probe_loop
  521.  
  522. ; now we wait further ANNOUNCE_WAIT seconds and send ANNOUNCE_NUM ARP announces. If any other host has assingned
  523. ; IP within this time, we should create another adress, that have to be done later
  524.  
  525.         DEBUGF  1,"Waiting %us\n", ANNOUNCE_WAIT
  526.         mcall   5, ANNOUNCE_WAIT*100
  527.         xor   esi, esi
  528.    announce_loop:
  529.  
  530.         DEBUGF  1,"Sending Announce\n"
  531.         mov     ebx, API_ARP + 6
  532.         mov     bh, [device]
  533.         mcall   76
  534.  
  535.         inc     esi
  536.         cmp     esi,ANNOUNCE_NUM
  537.         je      @f
  538.  
  539.         DEBUGF  1,"Waiting %us\n", ANNOUNCE_INTERVAL
  540.         mcall   5, ANNOUNCE_INTERVAL*100
  541.         jmp     announce_loop
  542.    @@:
  543.         jmp     wait_for_link_down
  544.  
  545.  
  546. socket_error:
  547.         DEBUGF  2,"Socket error\n"
  548. fail:
  549.         DEBUGF  2,"Zeroconf failed!\n"
  550.         mcall   -1
  551.  
  552.  
  553. random:  ; Pseudo random actually
  554.  
  555.         mov     eax, [generator]
  556.         add     eax, -43ab45b5h
  557.         ror     eax, 1
  558.         bswap   eax
  559.         xor     eax, dword[MAC]
  560.         ror     eax, 1
  561.         xor     eax, dword[MAC+2]
  562.         mov     [generator], eax
  563.  
  564.         ret
  565.  
  566.  
  567.  
  568. ip_str_to_dword:
  569.     push    edx
  570.  
  571.     ; This code validates if the query is an IP containing 4 numbers and 3 dots
  572.  
  573.     xor     al, al            ; make al (dot count) zero
  574.  
  575.    @@:
  576.     cmp     byte[edx],'0'     ; check if this byte is a number, if not jump to no_IP
  577.     jl      no_IP             ;
  578.     cmp     byte[edx],'9'     ;
  579.     jg      no_IP             ;
  580.  
  581.     inc     edx               ; the byte was a number, so lets check the next byte
  582.  
  583.     cmp     byte[edx],0       ; is this byte zero? (have we reached end of query?)
  584.     jz      @f                ; jump to next @@ then
  585.     cmp     byte[edx],':'
  586.     jz      @f
  587.  
  588.     cmp     byte[edx],'.'     ; is this byte a dot?
  589.     jne     @r                ; if not, jump to previous @@
  590.  
  591.     inc     al                ; the byte was a dot so increment al(dot count)
  592.     inc     edx               ; next byte
  593.     jmp     @r                ; lets check for numbers again (jump to previous @@)
  594.  
  595.    @@:                        ; we reach this when end of query reached
  596.     cmp     al,3              ; check if there where 3 dots
  597.     jnz     no_IP             ; if not, jump to no_IP
  598.  
  599.     ; The following code will convert this IP into a dword and output it in eax
  600.     ; If there is also a port number specified, this will be returned in ebx, otherwise ebx is -1
  601.  
  602.     pop     esi               ; edx (query address) was pushed onto stack and is now popped in esi
  603.  
  604.     xor     edx, edx          ; result
  605.     xor     eax, eax          ; current character
  606.     xor     ebx, ebx          ; current byte
  607.  
  608.   .outer_loop:
  609.     shl     edx, 8
  610.     add     edx, ebx
  611.     xor     ebx, ebx
  612.   .inner_loop:
  613.     lodsb
  614.     test    eax, eax
  615.     jz      .finish
  616.     cmp     al, '.'
  617.     jz      .outer_loop
  618.     sub     eax, '0'
  619.     imul    ebx, 10
  620.     add     ebx, eax
  621.     jmp     .inner_loop
  622.   .finish:
  623.     shl     edx, 8
  624.     add     edx, ebx
  625.  
  626.     bswap   edx               ; we want little endian order
  627.  
  628.     ret
  629.  
  630. no_IP:
  631.     pop     edx
  632.     xor     edx, edx
  633.  
  634.     ret
  635.  
  636. ; DATA AREA
  637.  
  638. align 16
  639. @IMPORT:
  640.  
  641. library \
  642.         libini,'libini.obj'
  643.  
  644. import  libini, \
  645.         ini.get_str,'ini_get_str'
  646.  
  647. include_debug_strings
  648.  
  649. str_ip          db 'ip', 0
  650. str_subnet      db 'subnet', 0
  651. str_gateway     db 'gateway', 0
  652. str_dns         db 'dns', 0
  653. str_ipconfig    db 'ipconfig', 0
  654. str_type        db 'type', 0
  655.  
  656.  
  657. sockaddr1:
  658.  
  659.         dw AF_INET4
  660.         dw 68 shl 8     ; local port
  661.         dd 0            ; local IP
  662.  
  663.         rb 10
  664.  
  665.  
  666. sockaddr2:
  667.  
  668.         dw AF_INET4
  669.         dw 67 shl 8     ; destination port
  670.         dd -1           ; destination IP
  671.  
  672.         rb 10
  673.  
  674. notify_struct:
  675.         dd 7            ; run application
  676.         dd 0
  677.  .msg   dd 0
  678.         dd 0
  679.         dd 0
  680.         db '/sys/@notify', 0
  681.  
  682. str_connected   db '"You are now connected to the network." -N', 0
  683. path            db '/sys/settings/network.ini',0
  684.  
  685. IM_END:
  686.  
  687. device          db 1
  688. inibuf          rb 16
  689. tries           db ?
  690.  
  691. dhcpMsgType     db ?    ; sent
  692. dhcpMsgType2    db ?    ; received
  693. dhcpLease       dd ?
  694. dhcpServerIP    dd ?
  695.  
  696. dhcp:
  697. .ip             dd ?
  698. .subnet         dd ?
  699. .dns            dd ?
  700. .gateway        dd ?
  701.  
  702.  
  703. dhcpMsgLen      dd ?
  704. socketNum       dd ?
  705.  
  706. MAC             dp ?
  707.  
  708. currTime        dd ?
  709. generator       dd ?
  710.  
  711. dhcpMsg         dd ?
  712.  
  713. timeout         dd ?
  714.  
  715. I_END: