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
|
|
|
*
|
2024-11-05 16:32:55 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
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>
|
2023-01-30 22:12:30 +08:00
|
|
|
#include <fcntl.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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2023-10-22 16:53:58 +08:00
|
|
|
int file_dup(FAR struct file *filep, int minfd, int flags)
|
2021-01-03 01:50:00 +08:00
|
|
|
{
|
2024-07-02 22:34:38 +08:00
|
|
|
FAR struct file *filep2;
|
2021-01-03 01:50:00 +08:00
|
|
|
int fd2;
|
|
|
|
int ret;
|
2024-07-04 23:27:45 +08:00
|
|
|
#ifdef CONFIG_FDSAN
|
|
|
|
uint64_t f_tag_fdsan; /* File owner fdsan tag, init to 0 */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_FDCHECK
|
|
|
|
uint8_t f_tag_fdcheck; /* File owner fdcheck tag, init to 0 */
|
|
|
|
#endif
|
2021-01-03 01:50:00 +08:00
|
|
|
|
2024-07-02 22:34:38 +08:00
|
|
|
fd2 = file_allocate(g_root_inode, 0, 0, NULL, minfd, true);
|
|
|
|
if (fd2 < 0)
|
2021-01-03 01:50:00 +08:00
|
|
|
{
|
2024-07-02 22:34:38 +08:00
|
|
|
return fd2;
|
2021-01-03 01:50:00 +08:00
|
|
|
}
|
|
|
|
|
2024-07-02 22:34:38 +08:00
|
|
|
ret = fs_getfilep(fd2, &filep2);
|
2024-07-04 23:27:45 +08:00
|
|
|
#ifdef CONFIG_FDSAN
|
|
|
|
f_tag_fdsan = filep2->f_tag_fdsan;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_FDCHECK
|
|
|
|
f_tag_fdcheck = filep2->f_tag_fdcheck;
|
|
|
|
#endif
|
2024-07-02 22:34:38 +08:00
|
|
|
DEBUGASSERT(ret >= 0);
|
|
|
|
|
|
|
|
ret = file_dup3(filep, filep2, flags);
|
2024-07-04 23:27:45 +08:00
|
|
|
#ifdef CONFIG_FDSAN
|
|
|
|
filep2->f_tag_fdsan = f_tag_fdsan;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_FDCHECK
|
|
|
|
filep2->f_tag_fdcheck = f_tag_fdcheck;
|
|
|
|
#endif
|
|
|
|
|
2024-07-02 22:34:38 +08:00
|
|
|
fs_putfilep(filep2);
|
|
|
|
if (ret >= 0)
|
2021-01-03 01:50:00 +08:00
|
|
|
{
|
2024-07-02 22:34:38 +08:00
|
|
|
return fd2;
|
2021-01-03 01:50:00 +08:00
|
|
|
}
|
|
|
|
|
2024-07-02 22:34:38 +08:00
|
|
|
fs_putfilep(filep2);
|
|
|
|
return ret;
|
2021-01-03 01:50:00 +08:00
|
|
|
}
|
|
|
|
|
2009-06-16 02:58:22 +08:00
|
|
|
/****************************************************************************
|
2022-10-26 17:28:39 +08:00
|
|
|
* Name: dup
|
2009-06-16 02:58:22 +08:00
|
|
|
*
|
|
|
|
* Description:
|
2022-10-26 17:28:39 +08:00
|
|
|
* Clone a file or socket descriptor to an arbitrary descriptor number
|
2009-06-16 02:58:22 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-10-26 17:28:39 +08:00
|
|
|
int 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)
|
|
|
|
{
|
2022-10-26 17:28:39 +08:00
|
|
|
goto err;
|
2021-02-23 18:04:13 +08:00
|
|
|
}
|
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
|
|
|
|
2023-01-30 22:12:30 +08:00
|
|
|
ret = file_dup(filep, 0, 0);
|
2023-12-25 15:04:01 +08:00
|
|
|
fs_putfilep(filep);
|
2020-05-04 03:07:01 +08:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2022-10-26 17:28:39 +08:00
|
|
|
goto err;
|
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;
|
2022-10-26 17:28:39 +08:00
|
|
|
|
|
|
|
err:
|
|
|
|
set_errno(-ret);
|
|
|
|
return ERROR;
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|