2007-11-20 21:32:33 +01:00
|
|
|
/****************************************************************************
|
2014-09-28 19:46:11 +02:00
|
|
|
* fs/vfs/fs_write.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-03 14:47:23 +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
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-03 14:47:23 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-03 14:47:23 +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.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2007-11-20 21:32:33 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-11-20 21:32:33 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2007-11-20 21:32:33 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2016-12-09 20:49:36 +01:00
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <sys/types.h>
|
2007-03-20 17:51:12 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <sched.h>
|
|
|
|
#include <errno.h>
|
2013-09-28 22:47:49 +02:00
|
|
|
#include <assert.h>
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2019-02-11 22:47:25 +01:00
|
|
|
#ifdef CONFIG_NET_TCP
|
2007-09-03 22:34:44 +02:00
|
|
|
# include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
|
2016-12-10 16:08:26 +01:00
|
|
|
#include <nuttx/cancelpt.h>
|
2017-10-11 17:25:43 +02:00
|
|
|
#include <nuttx/net/net.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-12-09 20:49:36 +01:00
|
|
|
#include "inode/inode.h"
|
2009-08-15 17:57:15 +02:00
|
|
|
|
2014-10-06 18:53:25 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: file_write
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Equivalent to the standard write() function except that is accepts a
|
2017-10-11 18:18:30 +02:00
|
|
|
* struct file instance instead of a file descriptor. It is functionally
|
|
|
|
* equivalent to write() except that in addition to the differences in
|
2020-01-20 13:32:36 +01:00
|
|
|
* input parameters:
|
2017-10-11 18:18:30 +02:00
|
|
|
*
|
|
|
|
* - It does not modify the errno variable,
|
|
|
|
* - It is not a cancellation point, and
|
|
|
|
* - It does not handle socket descriptors.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* filep - Instance of struct file to use with the write
|
|
|
|
* buf - Data to write
|
|
|
|
* nbytes - Length of data to write
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* On success, the number of bytes written are returned (zero indicates
|
|
|
|
* nothing was written). On any failure, a negated errno value is returned
|
|
|
|
* (see comments withwrite() for a description of the appropriate errno
|
|
|
|
* values).
|
2014-10-06 18:53:25 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-06-15 10:23:25 +02:00
|
|
|
ssize_t file_write(FAR struct file *filep, FAR const void *buf,
|
|
|
|
size_t nbytes)
|
2009-08-15 17:57:15 +02:00
|
|
|
{
|
|
|
|
FAR struct inode *inode;
|
|
|
|
|
|
|
|
/* Was this file opened for write access? */
|
|
|
|
|
2013-09-28 22:47:49 +02:00
|
|
|
if ((filep->f_oflags & O_WROK) == 0)
|
2009-08-15 17:57:15 +02:00
|
|
|
{
|
2017-09-28 22:49:05 +02:00
|
|
|
return -EBADF;
|
2009-08-15 17:57:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Is a driver registered? Does it support the write method? */
|
|
|
|
|
2013-09-28 22:47:49 +02:00
|
|
|
inode = filep->f_inode;
|
2009-08-15 17:57:15 +02:00
|
|
|
if (!inode || !inode->u.i_ops || !inode->u.i_ops->write)
|
|
|
|
{
|
2017-09-28 22:49:05 +02:00
|
|
|
return -EBADF;
|
2009-08-15 17:57:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Yes, then let the driver perform the write */
|
|
|
|
|
2017-09-28 22:49:05 +02:00
|
|
|
return inode->u.i_ops->write(filep, buf, nbytes);
|
2009-08-15 17:57:15 +02:00
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2017-10-11 18:18:30 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nx_write
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* nx_write() writes up to nytes bytes to the file referenced by the file
|
|
|
|
* descriptor fd from the buffer starting at buf. nx_write() is an
|
|
|
|
* internal OS function. It is functionally equivalent to write() except
|
|
|
|
* that:
|
|
|
|
*
|
|
|
|
* - It does not modify the errno variable, and
|
|
|
|
* - It is not a cancellation point.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* fd - file descriptor (or socket descriptor) to write to
|
|
|
|
* buf - Data to write
|
|
|
|
* nbytes - Length of data to write
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* On success, the number of bytes written are returned (zero indicates
|
|
|
|
* nothing was written). On any failure, a negated errno value is returned
|
|
|
|
* (see comments withwrite() for a description of the appropriate errno
|
|
|
|
* values).
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
ssize_t nx_write(int fd, FAR const void *buf, size_t nbytes)
|
|
|
|
{
|
|
|
|
FAR struct file *filep;
|
|
|
|
ssize_t ret;
|
|
|
|
|
|
|
|
if (buf == NULL)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Did we get a valid file descriptor? */
|
|
|
|
|
|
|
|
if ((unsigned int)fd >= CONFIG_NFILE_DESCRIPTORS)
|
|
|
|
{
|
2020-06-15 10:23:25 +02:00
|
|
|
#if defined(CONFIG_NET_TCP) || defined(CONFIG_NET_CAN)
|
|
|
|
/* Write to a socket descriptor is equivalent to
|
|
|
|
* send with flags == 0.
|
|
|
|
*/
|
2017-10-11 18:18:30 +02:00
|
|
|
|
|
|
|
ret = nx_send(fd, buf, nbytes, 0);
|
|
|
|
#else
|
|
|
|
ret = -EBADF;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* The descriptor is in the right range to be a file descriptor..
|
|
|
|
* write to the file. Note that fs_getfilep() will set the errno on
|
|
|
|
* failure.
|
|
|
|
*/
|
|
|
|
|
|
|
|
ret = (ssize_t)fs_getfilep(fd, &filep);
|
|
|
|
if (ret >= 0)
|
|
|
|
{
|
|
|
|
/* Perform the write operation using the file descriptor as an
|
|
|
|
* index. Note that file_write() will set the errno on failure.
|
|
|
|
*/
|
|
|
|
|
|
|
|
ret = file_write(filep, buf, nbytes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2012-07-14 23:05:40 +02:00
|
|
|
* Name: write
|
2007-09-03 22:34:44 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* write() writes up to nytes bytes to the file referenced by the file
|
|
|
|
* descriptor fd from the buffer starting at buf.
|
|
|
|
*
|
2017-10-11 18:18:30 +02:00
|
|
|
* Input Parameters:
|
|
|
|
* fd - file descriptor (or socket descriptor) to write to
|
|
|
|
* buf - Data to write
|
|
|
|
* nbytes - Length of data to write
|
2007-09-03 22:34:44 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2017-10-11 18:18:30 +02:00
|
|
|
* On success, the number of bytes written are returned (zero indicates
|
2009-08-15 17:57:15 +02:00
|
|
|
* nothing was written). On error, -1 is returned, and errno is set appro-
|
2007-09-03 22:34:44 +02:00
|
|
|
* priately:
|
|
|
|
*
|
|
|
|
* EAGAIN
|
|
|
|
* Non-blocking I/O has been selected using O_NONBLOCK and the write
|
|
|
|
* would block.
|
|
|
|
* EBADF
|
|
|
|
* fd is not a valid file descriptor or is not open for writing.
|
|
|
|
* EFAULT
|
|
|
|
* buf is outside your accessible address space.
|
|
|
|
* EFBIG
|
|
|
|
* An attempt was made to write a file that exceeds the implementation
|
2020-02-23 09:50:23 +01:00
|
|
|
* defined maximum file size or the process's file size limit, or
|
2007-09-03 22:34:44 +02:00
|
|
|
* to write at a position past the maximum allowed offset.
|
|
|
|
* EINTR
|
|
|
|
* The call was interrupted by a signal before any data was written.
|
|
|
|
* EINVAL
|
|
|
|
* fd is attached to an object which is unsuitable for writing; or
|
|
|
|
* the file was opened with the O_DIRECT flag, and either the address
|
|
|
|
* specified in buf, the value specified in count, or the current
|
|
|
|
* file offset is not suitably aligned.
|
|
|
|
* EIO
|
|
|
|
* A low-level I/O error occurred while modifying the inode.
|
|
|
|
* ENOSPC
|
|
|
|
* The device containing the file referred to by fd has no room for
|
|
|
|
* the data.
|
|
|
|
* EPIPE
|
|
|
|
* fd is connected to a pipe or socket whose reading end is closed.
|
|
|
|
* When this happens the writing process will also receive a SIGPIPE
|
|
|
|
* signal. (Thus, the write return value is seen only if the program
|
|
|
|
* catches, blocks or ignores this signal.)
|
|
|
|
*
|
2017-10-11 18:18:30 +02:00
|
|
|
****************************************************************************/
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2008-08-13 02:32:32 +02:00
|
|
|
ssize_t write(int fd, FAR const void *buf, size_t nbytes)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2016-12-09 20:49:36 +01:00
|
|
|
ssize_t ret;
|
|
|
|
|
|
|
|
/* write() is a cancellation point */
|
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
enter_cancellation_point();
|
2014-10-06 18:53:25 +02:00
|
|
|
|
2017-10-11 18:18:30 +02:00
|
|
|
/* Let nx_write() do all of the work */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2017-10-11 18:18:30 +02:00
|
|
|
ret = nx_write(fd, buf, nbytes);
|
|
|
|
if (ret < 0)
|
2014-10-06 18:53:25 +02:00
|
|
|
{
|
2017-10-18 18:17:55 +02:00
|
|
|
set_errno(-ret);
|
2017-10-11 18:18:30 +02:00
|
|
|
ret = ERROR;
|
2014-10-06 18:53:25 +02:00
|
|
|
}
|
|
|
|
|
2016-12-09 20:49:36 +01:00
|
|
|
leave_cancellation_point();
|
|
|
|
return ret;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|