1 /***************************************************************************
2  * Copyright (c) 2024 Microsoft Corporation
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the MIT License which is available at
6  * https://opensource.org/licenses/MIT.
7  *
8  * SPDX-License-Identifier: MIT
9  **************************************************************************/
10 
11 
12 /**************************************************************************/
13 /**************************************************************************/
14 /**                                                                       */
15 /** NetX Component                                                        */
16 /**                                                                       */
17 /**   Address Resolution Protocol (ARP)                                   */
18 /**                                                                       */
19 /**************************************************************************/
20 /**************************************************************************/
21 
22 #define NX_SOURCE_CODE
23 
24 
25 /* Include necessary system files.  */
26 
27 #include "nx_api.h"
28 #include "nx_ip.h"
29 #include "nx_arp.h"
30 
31 
32 /* Bring in externs for caller checking code.  */
33 
34 NX_CALLER_CHECKING_EXTERNS
35 
36 
37 /**************************************************************************/
38 /*                                                                        */
39 /*  FUNCTION                                               RELEASE        */
40 /*                                                                        */
41 /*    _nxe_arp_dynamic_entry_set                          PORTABLE C      */
42 /*                                                           6.1          */
43 /*  AUTHOR                                                                */
44 /*                                                                        */
45 /*    Yuxin Zhou, Microsoft Corporation                                   */
46 /*                                                                        */
47 /*  DESCRIPTION                                                           */
48 /*                                                                        */
49 /*    This function checks for errors in the ARP dynamic entry set        */
50 /*    function call.                                                      */
51 /*                                                                        */
52 /*  INPUT                                                                 */
53 /*                                                                        */
54 /*    ip_ptr                                IP instance pointer           */
55 /*    ip_address                            IP Address to bind to         */
56 /*    physical_msw                          Physical address MSW          */
57 /*    physical_lsw                          Physical address LSW          */
58 /*                                                                        */
59 /*  OUTPUT                                                                */
60 /*                                                                        */
61 /*    status                                Completion status             */
62 /*                                                                        */
63 /*  CALLS                                                                 */
64 /*                                                                        */
65 /*    _nx_arp_dynamic_entry_set             ARP dynamic entry set         */
66 /*                                                                        */
67 /*  CALLED BY                                                             */
68 /*                                                                        */
69 /*    Application Code                                                    */
70 /*                                                                        */
71 /*  RELEASE HISTORY                                                       */
72 /*                                                                        */
73 /*    DATE              NAME                      DESCRIPTION             */
74 /*                                                                        */
75 /*  05-19-2020     Yuxin Zhou               Initial Version 6.0           */
76 /*  09-30-2020     Yuxin Zhou               Modified comment(s),          */
77 /*                                            resulting in version 6.1    */
78 /*                                                                        */
79 /**************************************************************************/
_nxe_arp_dynamic_entry_set(NX_IP * ip_ptr,ULONG ip_address,ULONG physical_msw,ULONG physical_lsw)80 UINT  _nxe_arp_dynamic_entry_set(NX_IP *ip_ptr, ULONG ip_address,
81                                  ULONG physical_msw, ULONG physical_lsw)
82 {
83 
84 #ifndef NX_DISABLE_IPV4
85 UINT status;
86 
87 
88     /* Check for invalid input pointers.  */
89     if ((ip_ptr == NX_NULL) || (ip_ptr -> nx_ip_id != NX_IP_ID))
90     {
91         return(NX_PTR_ERROR);
92     }
93 
94     /* Check for invalid IP address.  */
95     if (!ip_address)
96     {
97         return(NX_IP_ADDRESS_ERROR);
98     }
99 
100     /* Determine if the IP address is multicast or directed broadcast.  */
101     if (((ip_address & NX_IP_CLASS_D_MASK) == NX_IP_CLASS_D_TYPE) ||
102         (ip_address  == NX_IP_LIMITED_BROADCAST))
103     {
104         return(NX_IP_ADDRESS_ERROR);
105     }
106 
107     /* Check to see if ARP is enabled.  */
108     if (!ip_ptr -> nx_ip_arp_allocate)
109     {
110         return(NX_NOT_ENABLED);
111     }
112 
113     /* Check for appropriate caller.  */
114     NX_THREADS_ONLY_CALLER_CHECKING
115 
116     /* Call actual ARP dynamic entry set function.  */
117     status =  _nx_arp_dynamic_entry_set(ip_ptr, ip_address, physical_msw, physical_lsw);
118 
119     /* Return completion status.  */
120     return(status);
121 #else /* NX_DISABLE_IPV4  */
122     NX_PARAMETER_NOT_USED(ip_ptr);
123     NX_PARAMETER_NOT_USED(ip_address);
124     NX_PARAMETER_NOT_USED(physical_msw);
125     NX_PARAMETER_NOT_USED(physical_lsw);
126 
127     return(NX_NOT_SUPPORTED);
128 #endif /* !NX_DISABLE_IPV4  */
129 }
130 
131