123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- /**
- * Copyright (c) 2014 - 2019, Nordic Semiconductor ASA
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form, except as embedded into a Nordic
- * Semiconductor ASA integrated circuit in a product or a software update for
- * such product, must reproduce the above copyright notice, this list of
- * conditions and the following disclaimer in the documentation and/or other
- * materials provided with the distribution.
- *
- * 3. Neither the name of Nordic Semiconductor ASA nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * 4. This software, with or without modification, must only be used with a
- * Nordic Semiconductor ASA integrated circuit.
- *
- * 5. Any software provided in binary form under this license must not be reverse
- * engineered, decompiled, modified and/or disassembled.
- *
- * THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
- * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
- * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- #include <stdint.h>
- #include "sdk_errors.h"
- #include "sdk_config.h"
- #include "iot_common.h"
- #include "coap_transport.h"
- #include "coap.h"
- #include "lwip/ip6_addr.h"
- /*lint -save -e607 Suppress warning 607 "Parameter p of macro found within string" */
- #include "lwip/udp.h"
- /*lint -restore */
- /**@brief UDP port information. */
- typedef struct
- {
- struct udp_pcb * p_socket; /**< Socket information provided by UDP. */
- uint16_t port_number; /**< Associated port number. */
- }udp_port_t;
- static udp_port_t m_port_table[COAP_PORT_COUNT]; /**< Table maintaining association between CoAP ports and corresponding UDP socket identifiers. */
- /**@brief Callback handler to receive data on the UDP port.
- *
- * @details Callback handler to receive data on the UDP port.
- *
- * @param[in] p_arg Receive argument associated with the UDP socket.
- * @param[in] p_socket Socket identifier.
- * @param[in] p_ip_header IPv6 header containing source and destination addresses.
- * @param[in] p_remote_addr IPv6 address of the remote device.
- * @param[in] port Port number identifying the remote endpoint.
- *
- * @retval NRF_SUCCESS Indicates received data was handled successfully, else an an
- * error code indicating reason for failure.
- */
- static void udp_recv_data_handler(void * p_arg,
- struct udp_pcb * p_socket,
- struct pbuf * p_buffer,
- const ip6_addr_t * p_remote_addr,
- u16_t port)
- {
- uint32_t index;
- coap_remote_t remote_endpoint;
- coap_port_t local_port = {p_socket->local_port};
- for (index = 0; index < COAP_PORT_COUNT; index++)
- {
- if (m_port_table[index].p_socket == p_socket)
- {
- memcpy (remote_endpoint.addr, p_remote_addr, 16);
- remote_endpoint.port_number = port;
- COAP_MUTEX_LOCK();
- UNUSED_VARIABLE(coap_transport_read(&local_port,
- &remote_endpoint,
- NULL,
- NRF_SUCCESS,
- (uint8_t *)p_buffer->payload,
- (uint32_t)p_buffer->len));
- COAP_MUTEX_UNLOCK();
- break;
- }
- }
- //Freeing packet (irrespective of matching p_socket is found or not
- //to avoid memory leaks in the system.
- UNUSED_VARIABLE(pbuf_free(p_buffer));
- }
- /**@brief Creates port as requested in p_port.
- *
- * @details Creates port as requested in p_port.
- *
- * @param[in] index Index to the m_port_table where entry of the port created is to be made.
- * @param[in] p_port Port information to be created.
- *
- * @retval NRF_SUCCESS Indicates if port was created successfully, else an an error code
- * indicating reason for failure.
- */
- static uint32_t port_create(uint32_t index, coap_port_t * p_port)
- {
- err_t err = NRF_ERROR_NO_MEM;
- ip6_addr_t any_addr;
- struct udp_pcb * p_socket = m_port_table[index].p_socket;
- ip6_addr_set_any(&any_addr);
- //Request new socket creation.
- p_socket = udp_new();
- if (NULL != p_socket)
- {
- // Bind the socket to the local port.
- err = udp_bind(p_socket, &any_addr, p_port->port_number);
- if (err == ERR_OK)
- {
- //Register data receive callback.
- udp_recv(p_socket, udp_recv_data_handler, &m_port_table[index]);
- //All procedure with respect to port creation succeeded, make entry in the table.
- m_port_table[index].port_number = p_port->port_number;
- m_port_table[index].p_socket = p_socket;
- }
- else
- {
- //Not all procedures succeeded with allocated socket, hence free it.
- err = NRF_ERROR_INVALID_PARAM;
- udp_remove(p_socket);
- }
- }
- return err;
- }
- uint32_t coap_transport_init(const coap_transport_init_t * p_param)
- {
- uint32_t err_code = NRF_SUCCESS;
- uint32_t index;
- NULL_PARAM_CHECK(p_param);
- NULL_PARAM_CHECK(p_param->p_port_table);
- for (index = 0; index < COAP_PORT_COUNT; index++)
- {
- // Create end point for each of the COAP ports.
- err_code = port_create(index, &p_param->p_port_table[index]);
- if (err_code != NRF_SUCCESS)
- {
- break;
- }
- }
- return err_code;
- }
- uint32_t coap_transport_write(const coap_port_t * p_port,
- const coap_remote_t * p_remote,
- const uint8_t * p_data,
- uint16_t datalen)
- {
- err_t err = NRF_ERROR_NOT_FOUND;
- uint32_t index;
- NULL_PARAM_CHECK(p_port);
- NULL_PARAM_CHECK(p_remote);
- NULL_PARAM_CHECK(p_data);
- //Search for the corresponding port.
- for (index = 0; index < COAP_PORT_COUNT; index++)
- {
- if (m_port_table[index].port_number == p_port->port_number)
- {
- //Allocate Buffer to send the data on port.
- struct pbuf * lwip_buffer = pbuf_alloc(PBUF_TRANSPORT, datalen, PBUF_RAM);
- if (NULL != lwip_buffer)
- {
- //Make a copy of the data onto the buffer.
- memcpy(lwip_buffer->payload, p_data, datalen);
- COAP_MUTEX_UNLOCK();
- //Send on UDP port.
- err = udp_sendto(m_port_table[index].p_socket,
- lwip_buffer,
- (ip6_addr_t *)p_remote->addr,
- p_remote->port_number);
- COAP_MUTEX_LOCK();
- if (err != ERR_OK)
- {
- //Free the allocated buffer as send procedure has failed.
- err = NRF_ERROR_INTERNAL;
- }
- UNUSED_VARIABLE(pbuf_free(lwip_buffer));
- }
- else
- {
- //Buffer allocation failed, cannot send data.
- err = NRF_ERROR_NO_MEM;
- }
- break;
- }
- }
- return err;
- }
- void coap_transport_process(void)
- {
- return;
- }
- uint32_t coap_security_setup(uint16_t local_port,
- nrf_tls_role_t role,
- coap_remote_t * const p_remote,
- nrf_tls_key_settings_t * const p_settings)
- {
- return NRF_ERROR_API_NOT_IMPLEMENTED;
- }
- uint32_t coap_security_destroy(uint16_t local_port,
- coap_remote_t * const p_remote)
- {
- return NRF_ERROR_API_NOT_IMPLEMENTED;
- }
|