10d163575Sopenharmony_ci/* 20d163575Sopenharmony_ci * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved. 30d163575Sopenharmony_ci * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved. 40d163575Sopenharmony_ci * 50d163575Sopenharmony_ci * Redistribution and use in source and binary forms, with or without modification, 60d163575Sopenharmony_ci * are permitted provided that the following conditions are met: 70d163575Sopenharmony_ci * 80d163575Sopenharmony_ci * 1. Redistributions of source code must retain the above copyright notice, this list of 90d163575Sopenharmony_ci * conditions and the following disclaimer. 100d163575Sopenharmony_ci * 110d163575Sopenharmony_ci * 2. Redistributions in binary form must reproduce the above copyright notice, this list 120d163575Sopenharmony_ci * of conditions and the following disclaimer in the documentation and/or other materials 130d163575Sopenharmony_ci * provided with the distribution. 140d163575Sopenharmony_ci * 150d163575Sopenharmony_ci * 3. Neither the name of the copyright holder nor the names of its contributors may be used 160d163575Sopenharmony_ci * to endorse or promote products derived from this software without specific prior written 170d163575Sopenharmony_ci * permission. 180d163575Sopenharmony_ci * 190d163575Sopenharmony_ci * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 200d163575Sopenharmony_ci * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 210d163575Sopenharmony_ci * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 220d163575Sopenharmony_ci * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 230d163575Sopenharmony_ci * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 240d163575Sopenharmony_ci * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 250d163575Sopenharmony_ci * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 260d163575Sopenharmony_ci * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 270d163575Sopenharmony_ci * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 280d163575Sopenharmony_ci * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 290d163575Sopenharmony_ci * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 300d163575Sopenharmony_ci */ 310d163575Sopenharmony_ci 320d163575Sopenharmony_ci/**************************************************************************** 330d163575Sopenharmony_ci * Included Files 340d163575Sopenharmony_ci ****************************************************************************/ 350d163575Sopenharmony_ci 360d163575Sopenharmony_ci#include "assert.h" 370d163575Sopenharmony_ci#include "errno.h" 380d163575Sopenharmony_ci#include "fcntl.h" 390d163575Sopenharmony_ci#include "fs/file.h" 400d163575Sopenharmony_ci#include "sys/types.h" 410d163575Sopenharmony_ci#include "sched.h" 420d163575Sopenharmony_ci#include "unistd.h" 430d163575Sopenharmony_ci#include "vfs_config.h" 440d163575Sopenharmony_ci 450d163575Sopenharmony_ci/**************************************************************************** 460d163575Sopenharmony_ci * Name: file_fallocate 470d163575Sopenharmony_ci ****************************************************************************/ 480d163575Sopenharmony_ci 490d163575Sopenharmony_cistatic ssize_t file_fallocate(struct file *filep, int mode, off_t offset, off_t len) 500d163575Sopenharmony_ci{ 510d163575Sopenharmony_ci int ret; 520d163575Sopenharmony_ci 530d163575Sopenharmony_ci if (len <= 0) { 540d163575Sopenharmony_ci ret = EINVAL; 550d163575Sopenharmony_ci goto errout; 560d163575Sopenharmony_ci } 570d163575Sopenharmony_ci 580d163575Sopenharmony_ci /* Was this file opened for write access? */ 590d163575Sopenharmony_ci 600d163575Sopenharmony_ci if (((unsigned int)(filep->f_oflags) & O_ACCMODE) == O_RDONLY) { 610d163575Sopenharmony_ci ret = -EACCES; 620d163575Sopenharmony_ci goto errout; 630d163575Sopenharmony_ci } 640d163575Sopenharmony_ci 650d163575Sopenharmony_ci if (!filep->ops || !filep->ops->fallocate) { 660d163575Sopenharmony_ci ret = -EBADF; 670d163575Sopenharmony_ci goto errout; 680d163575Sopenharmony_ci } 690d163575Sopenharmony_ci 700d163575Sopenharmony_ci /* Yes, then let the driver perform the fallocate */ 710d163575Sopenharmony_ci 720d163575Sopenharmony_ci ret = filep->ops->fallocate(filep, mode, offset, len); 730d163575Sopenharmony_ci if (ret < 0) { 740d163575Sopenharmony_ci goto errout; 750d163575Sopenharmony_ci } 760d163575Sopenharmony_ci 770d163575Sopenharmony_ci return ret; 780d163575Sopenharmony_ci 790d163575Sopenharmony_cierrout: 800d163575Sopenharmony_ci set_errno(-ret); 810d163575Sopenharmony_ci return VFS_ERROR; 820d163575Sopenharmony_ci} 830d163575Sopenharmony_ci 840d163575Sopenharmony_ci/*************************************************************************** 850d163575Sopenharmony_ci * Name: fallocate 860d163575Sopenharmony_ci * 870d163575Sopenharmony_ci * Description: 880d163575Sopenharmony_ci * The fallocate() function prepares or allocates a contiguous data area to the file. 890d163575Sopenharmony_ci * Thus the write file is guaranteed be contiguous and no allocation delay until the 900d163575Sopenharmony_ci * size reaches that size at least unless any other changes to the volume is performed. 910d163575Sopenharmony_ci * 920d163575Sopenharmony_ci * Parameters: 930d163575Sopenharmony_ci * fp Pointer to the open file object. 940d163575Sopenharmony_ci * mode Operation mode. only support FALLOC_FL_KEEP_SIZE. 950d163575Sopenharmony_ci * offset offset of the file to allocated. 960d163575Sopenharmony_ci * len The size to allocate for the file. 970d163575Sopenharmony_ci * 980d163575Sopenharmony_ci * Returned Value: 990d163575Sopenharmony_ci * On success, allocate contiguous data area to the file . On error, -1 is returned, and errno is set appro- 1000d163575Sopenharmony_ci * priately: 1010d163575Sopenharmony_ci * 1020d163575Sopenharmony_ci * 1030d163575Sopenharmony_ci ********************************************************************************************/ 1040d163575Sopenharmony_ci 1050d163575Sopenharmony_ciint fallocate(int fd, int mode, off_t offset, off_t len) 1060d163575Sopenharmony_ci{ 1070d163575Sopenharmony_ci#if CONFIG_NFILE_DESCRIPTORS > 0 1080d163575Sopenharmony_ci struct file *filep = NULL; 1090d163575Sopenharmony_ci#endif 1100d163575Sopenharmony_ci 1110d163575Sopenharmony_ci/* Did we get a valid file descriptor? */ 1120d163575Sopenharmony_ci 1130d163575Sopenharmony_ci#if CONFIG_NFILE_DESCRIPTORS > 0 1140d163575Sopenharmony_ci if ((unsigned int)fd >= CONFIG_NFILE_DESCRIPTORS) 1150d163575Sopenharmony_ci#endif 1160d163575Sopenharmony_ci { 1170d163575Sopenharmony_ci set_errno(EBADF); 1180d163575Sopenharmony_ci return VFS_ERROR; 1190d163575Sopenharmony_ci } 1200d163575Sopenharmony_ci 1210d163575Sopenharmony_ci#if CONFIG_NFILE_DESCRIPTORS > 0 1220d163575Sopenharmony_ci 1230d163575Sopenharmony_ci /* The descriptor is in the right range to be a file descriptor... write to the file. */ 1240d163575Sopenharmony_ci 1250d163575Sopenharmony_ci int ret = fs_getfilep(fd, &filep); 1260d163575Sopenharmony_ci if (ret < 0) { 1270d163575Sopenharmony_ci /* The errno value has already been set */ 1280d163575Sopenharmony_ci return VFS_ERROR; 1290d163575Sopenharmony_ci } 1300d163575Sopenharmony_ci 1310d163575Sopenharmony_ci if (filep->f_oflags & O_DIRECTORY) { 1320d163575Sopenharmony_ci set_errno(EBADF); 1330d163575Sopenharmony_ci return VFS_ERROR; 1340d163575Sopenharmony_ci } 1350d163575Sopenharmony_ci 1360d163575Sopenharmony_ci /* Perform the fallocate operation using the file descriptor as an index */ 1370d163575Sopenharmony_ci return file_fallocate(filep, mode, offset, len); 1380d163575Sopenharmony_ci#endif 1390d163575Sopenharmony_ci} 140