2018-06-25 20:41:28 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* net/udp/udp_setsockopt.c
|
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2018-06-25 20:41:28 +02:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2018-06-25 20:41:28 +02:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2018-06-25 20:41:28 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <netinet/udp.h>
|
|
|
|
|
|
|
|
#include <nuttx/net/net.h>
|
|
|
|
#include <nuttx/net/udp.h>
|
|
|
|
|
|
|
|
#include "socket/socket.h"
|
|
|
|
#include "utils/utils.h"
|
2018-06-25 23:07:53 +02:00
|
|
|
#include "netdev/netdev.h"
|
2018-06-25 20:41:28 +02:00
|
|
|
#include "udp/udp.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_UDPPROTO_OPTIONS
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: udp_setsockopt
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* udp_setsockopt() sets the UDP-protocol option specified by the
|
|
|
|
* 'option' argument to the value pointed to by the 'value' argument for
|
|
|
|
* the socket specified by the 'psock' argument.
|
|
|
|
*
|
|
|
|
* See <netinet/udp.h> for the a complete list of values of UDP protocol
|
|
|
|
* options.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* psock Socket structure of socket to operate on
|
|
|
|
* option identifies the option to set
|
|
|
|
* value Points to the argument value
|
|
|
|
* value_len The length of the argument value
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Returns zero (OK) on success. On failure, it returns a negated errno
|
|
|
|
* value to indicate the nature of the error. See psock_setcockopt() for
|
|
|
|
* the list of possible error values.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int udp_setsockopt(FAR struct socket *psock, int option,
|
|
|
|
FAR const void *value, socklen_t value_len)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_NET_UDP_BINDTODEVICE
|
|
|
|
/* Keep alive options are the only UDP protocol socket option currently
|
|
|
|
* supported.
|
|
|
|
*/
|
|
|
|
|
|
|
|
FAR struct udp_conn_s *conn;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
DEBUGASSERT(psock != NULL && value != NULL && psock->s_conn != NULL);
|
|
|
|
conn = (FAR struct udp_conn_s *)psock->s_conn;
|
|
|
|
|
|
|
|
/* All of the UDP protocol options apply only UDP sockets. The sockets
|
|
|
|
* do not have to be connected.. that might occur later with the KeepAlive
|
|
|
|
* already configured.
|
|
|
|
*/
|
|
|
|
|
2018-06-25 23:07:53 +02:00
|
|
|
if (psock->s_type != SOCK_DGRAM)
|
2018-06-25 20:41:28 +02:00
|
|
|
{
|
|
|
|
nerr("ERROR: Not a UDP socket\n");
|
|
|
|
return -ENOTCONN;
|
|
|
|
}
|
|
|
|
|
2018-06-25 23:07:53 +02:00
|
|
|
/* Handle the UDP-protocol options */
|
2018-06-25 20:41:28 +02:00
|
|
|
|
|
|
|
switch (option)
|
|
|
|
{
|
2018-06-25 23:07:53 +02:00
|
|
|
#ifdef CONFIG_NET_UDP_BINDTODEVICE
|
|
|
|
/* Handle the UDP_BINDTODEVICE socket-level option.
|
2018-06-25 20:41:28 +02:00
|
|
|
*
|
2018-06-25 23:07:53 +02:00
|
|
|
* NOTE: UDP_BINDTODEVICE is declared in linux as SO_BINDTODEVICE,
|
|
|
|
* but this option only makes sense for UDP sockets trying to broadcast
|
|
|
|
* while their local address is not set, eg, with DHCP requests.
|
|
|
|
* The problem is that we are not able to determine the interface to be
|
2021-02-19 15:01:46 +01:00
|
|
|
* used for sending packets when multiple interfaces do not have a
|
|
|
|
* local address yet. This option can be used to "force" the interface
|
|
|
|
* used to send the UDP traffic in this connection. Note that it does
|
|
|
|
* NOT only apply to broadcast packets.
|
2018-06-25 20:41:28 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
case UDP_BINDTODEVICE: /* Bind socket to a specific network device */
|
2018-06-25 23:07:53 +02:00
|
|
|
if (value == NULL || value_len == 0 ||
|
|
|
|
(value_len > 0 && ((FAR char *)value)[0] == 0))
|
|
|
|
{
|
|
|
|
conn->boundto = 0; /* This interface is no longer bound */
|
2018-07-05 02:28:17 +02:00
|
|
|
ret = OK;
|
2018-06-25 23:07:53 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int ifindex;
|
|
|
|
|
|
|
|
/* Get the interface index corresponding to the interface name */
|
|
|
|
|
|
|
|
ifindex = netdev_nametoindex(value);
|
|
|
|
if (ifindex >= 0)
|
|
|
|
{
|
2018-06-26 00:55:45 +02:00
|
|
|
DEBUGASSERT(ifindex > 0 && ifindex <= MAX_IFINDEX);
|
2018-06-25 23:07:53 +02:00
|
|
|
conn->boundto = ifindex;
|
2018-07-05 02:28:17 +02:00
|
|
|
ret = OK;
|
2018-06-25 23:07:53 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = ifindex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-25 20:41:28 +02:00
|
|
|
break;
|
2018-06-25 23:07:53 +02:00
|
|
|
#endif
|
2018-06-25 20:41:28 +02:00
|
|
|
|
|
|
|
default:
|
|
|
|
nerr("ERROR: Unrecognized UDP option: %d\n", option);
|
|
|
|
ret = -ENOPROTOOPT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
#else
|
|
|
|
return -ENOPROTOOPT;
|
|
|
|
#endif /* CONFIG_NET_UDP_BINDTODEVICE */
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_NET_UDPPROTO_OPTIONS */
|