2008-09-12 22:46:44 +08:00
|
|
|
/****************************************************************************
|
2014-09-29 01:46:11 +08:00
|
|
|
* fs/vfs/fs_dup.c
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-03 21:47:23 +08: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
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-03 21:47:23 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-03 21:47:23 +08: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.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2008-09-12 22:46:44 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-09-12 22:46:44 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Included Files
|
2008-09-12 22:46:44 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sched.h>
|
2021-05-18 14:59:14 +08:00
|
|
|
#include <assert.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <errno.h>
|
2009-06-16 02:58:22 +08:00
|
|
|
|
2012-03-22 02:01:07 +08:00
|
|
|
#include <nuttx/fs/fs.h>
|
2014-09-29 21:14:38 +08:00
|
|
|
#include "inode/inode.h"
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-09-12 22:46:44 +08:00
|
|
|
/****************************************************************************
|
2015-10-03 06:30:35 +08:00
|
|
|
* Public Functions
|
2008-09-12 22:46:44 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2021-01-03 01:50:00 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: file_dup
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Equivalent to the standard dup() function except that it
|
|
|
|
* accepts a struct file instance instead of a file descriptor.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The new file descriptor is returned on success; a negated errno value
|
|
|
|
* is returned on any failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int file_dup(FAR struct file *filep, int minfd)
|
|
|
|
{
|
|
|
|
struct file filep2;
|
|
|
|
int fd2;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Let file_dup2() do the real work */
|
|
|
|
|
|
|
|
memset(&filep2, 0, sizeof(filep2));
|
|
|
|
ret = file_dup2(filep, &filep2);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Then allocate a new file descriptor for the inode */
|
|
|
|
|
|
|
|
fd2 = files_allocate(filep2.f_inode, filep2.f_oflags,
|
|
|
|
filep2.f_pos, filep2.f_priv, minfd);
|
|
|
|
if (fd2 < 0)
|
|
|
|
{
|
|
|
|
file_close(&filep2);
|
|
|
|
return fd2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fd2;
|
|
|
|
}
|
|
|
|
|
2009-06-16 02:58:22 +08:00
|
|
|
/****************************************************************************
|
2020-05-04 03:07:01 +08:00
|
|
|
* Name: nx_dup
|
2009-06-16 02:58:22 +08:00
|
|
|
*
|
|
|
|
* Description:
|
2020-05-04 03:07:01 +08:00
|
|
|
* nx_dup() is similar to the standard 'dup' interface except that is
|
|
|
|
* not a cancellation point and it does not modify the errno variable.
|
|
|
|
*
|
|
|
|
* nx_dup() is an internal NuttX interface and should not be called from
|
|
|
|
* applications.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The new file descriptor is returned on success; a negated errno value is
|
|
|
|
* returned on any failure.
|
2009-06-16 02:58:22 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-05-04 03:07:01 +08:00
|
|
|
int nx_dup(int fd)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2021-02-23 18:04:13 +08:00
|
|
|
FAR struct file *filep;
|
|
|
|
int ret;
|
2021-01-03 01:50:00 +08:00
|
|
|
|
2021-02-23 18:04:13 +08:00
|
|
|
/* Get the file structure corresponding to the file descriptor. */
|
2021-01-03 01:50:00 +08:00
|
|
|
|
2021-02-23 18:04:13 +08:00
|
|
|
ret = fs_getfilep(fd, &filep);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
return ret;
|
|
|
|
}
|
2021-01-03 01:50:00 +08:00
|
|
|
|
2021-02-23 18:04:13 +08:00
|
|
|
DEBUGASSERT(filep != NULL);
|
2021-01-03 01:50:00 +08:00
|
|
|
|
2021-02-23 18:04:13 +08:00
|
|
|
/* Let file_dup() do the real work */
|
2009-07-19 08:14:46 +08:00
|
|
|
|
2021-02-23 18:04:13 +08:00
|
|
|
return file_dup(filep, 0);
|
2020-05-04 03:07:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: dup
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Clone a file or socket descriptor to an arbitrary descriptor number
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2017-10-01 00:41:21 +08:00
|
|
|
|
2020-05-04 03:07:01 +08:00
|
|
|
int dup(int fd)
|
|
|
|
{
|
|
|
|
int ret;
|
2017-10-01 00:41:21 +08:00
|
|
|
|
2020-05-04 03:07:01 +08:00
|
|
|
ret = nx_dup(fd);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
set_errno(-ret);
|
|
|
|
ret = ERROR;
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|
2012-07-15 05:05:40 +08:00
|
|
|
|
2009-07-19 08:14:46 +08:00
|
|
|
return ret;
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|