2009-06-15 20:58:22 +02:00
|
|
|
/****************************************************************************
|
2020-01-31 09:44:28 +01:00
|
|
|
* net/socket/net_dup.c
|
2009-06-15 20:58:22 +02:00
|
|
|
*
|
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
|
2009-06-15 20:58:22 +02:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-06-15 20:58:22 +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.
|
2009-06-15 20:58:22 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sched.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2014-06-29 01:25:18 +02:00
|
|
|
#include "socket/socket.h"
|
2009-06-15 20:58:22 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-01-19 23:02:56 +01:00
|
|
|
* Public Functions
|
2009-06-15 20:58:22 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2020-01-31 09:44:28 +01:00
|
|
|
* Name: psock_dup
|
2009-06-15 20:58:22 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2020-05-03 21:07:01 +02:00
|
|
|
* Clone a socket descriptor to an arbitrary descriptor number.
|
2009-06-15 20:58:22 +02:00
|
|
|
*
|
2017-09-30 18:41:21 +02:00
|
|
|
* Returned Value:
|
2020-05-03 21:07:01 +02:00
|
|
|
* On success, returns the number of new socket. On any error,
|
|
|
|
* a negated errno value is returned.
|
2017-09-30 18:41:21 +02:00
|
|
|
*
|
2009-06-15 20:58:22 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2020-01-31 09:44:28 +01:00
|
|
|
int psock_dup(FAR struct socket *psock, int minsd)
|
2009-06-15 20:58:22 +02:00
|
|
|
{
|
|
|
|
FAR struct socket *psock2;
|
|
|
|
int sockfd2;
|
|
|
|
int ret;
|
|
|
|
|
2009-07-19 02:14:46 +02:00
|
|
|
/* Make sure that the minimum socket descriptor is within the legal range.
|
2015-03-12 15:11:08 +01:00
|
|
|
* The minimum value we receive is relative to file descriptor 0; we need
|
2009-07-19 02:14:46 +02:00
|
|
|
* map it relative of the first socket descriptor.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (minsd >= CONFIG_NFILE_DESCRIPTORS)
|
|
|
|
{
|
|
|
|
minsd -= CONFIG_NFILE_DESCRIPTORS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
minsd = 0;
|
|
|
|
}
|
|
|
|
|
2009-06-15 20:58:22 +02:00
|
|
|
/* Lock the scheduler throughout the following */
|
|
|
|
|
|
|
|
sched_lock();
|
|
|
|
|
2015-10-04 23:04:00 +02:00
|
|
|
/* Verify that the sockfd corresponds to valid, allocated socket */
|
2009-06-15 20:58:22 +02:00
|
|
|
|
2018-08-26 21:31:18 +02:00
|
|
|
if (!psock || psock->s_crefs <= 0)
|
2009-06-15 20:58:22 +02:00
|
|
|
{
|
2017-09-30 18:41:21 +02:00
|
|
|
ret = -EBADF;
|
2009-06-15 20:58:22 +02:00
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate a new socket descriptor */
|
|
|
|
|
2009-07-19 02:14:46 +02:00
|
|
|
sockfd2 = sockfd_allocate(minsd);
|
2009-06-15 20:58:22 +02:00
|
|
|
if (sockfd2 < 0)
|
|
|
|
{
|
2017-09-30 18:41:21 +02:00
|
|
|
ret = -ENFILE;
|
2009-06-15 20:58:22 +02:00
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the socket structure underlying the new descriptor */
|
|
|
|
|
|
|
|
psock2 = sockfd_socket(sockfd2);
|
|
|
|
if (!psock2)
|
|
|
|
{
|
2017-09-30 18:41:21 +02:00
|
|
|
ret = -ENOSYS; /* Should not happen */
|
|
|
|
goto errout_with_sockfd;
|
2009-06-15 20:58:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Duplicate the socket state */
|
|
|
|
|
2020-01-31 09:44:28 +01:00
|
|
|
ret = psock_dup2(psock, psock2);
|
2009-06-15 20:58:22 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2017-09-30 18:41:21 +02:00
|
|
|
goto errout_with_sockfd;
|
2009-06-15 20:58:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sched_unlock();
|
|
|
|
return sockfd2;
|
|
|
|
|
2017-09-30 18:41:21 +02:00
|
|
|
errout_with_sockfd:
|
|
|
|
sockfd_release(sockfd2);
|
|
|
|
|
2009-06-15 20:58:22 +02:00
|
|
|
errout:
|
|
|
|
sched_unlock();
|
2017-09-30 18:41:21 +02:00
|
|
|
return ret;
|
2009-06-15 20:58:22 +02:00
|
|
|
}
|
|
|
|
|
2018-08-26 21:31:18 +02:00
|
|
|
/****************************************************************************
|
2020-01-31 09:44:28 +01:00
|
|
|
* Name: net_dup
|
2018-08-26 21:31:18 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2020-05-03 21:07:01 +02:00
|
|
|
* Clone a socket descriptor to an arbitrary descriptor number.
|
2018-08-26 21:31:18 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2020-05-03 21:07:01 +02:00
|
|
|
* On success, returns the number of new socket. On any error,
|
|
|
|
* a negated errno value is returned.
|
2018-08-26 21:31:18 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-01-31 09:44:28 +01:00
|
|
|
int net_dup(int sockfd, int minsd)
|
2018-08-26 21:31:18 +02:00
|
|
|
{
|
2020-01-31 09:44:28 +01:00
|
|
|
return psock_dup(sockfd_socket(sockfd), minsd);
|
2018-08-26 21:31:18 +02:00
|
|
|
}
|