[ad28599] | 1 | /*
|
---|
| 2 | * Copyright (c) 2011 Petr Koupy
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup libposix
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
[4cf8ca6] | 32 | /** @file File control.
|
---|
[ad28599] | 33 | */
|
---|
| 34 |
|
---|
| 35 | #define LIBPOSIX_INTERNAL
|
---|
[fdf97f6] | 36 | #define __POSIX_DEF__(x) posix_##x
|
---|
[ad28599] | 37 |
|
---|
[9b1503e] | 38 | #include "internal/common.h"
|
---|
[a3da2b2] | 39 | #include "posix/fcntl.h"
|
---|
[ec18957a] | 40 |
|
---|
[4ec6820] | 41 | #include "libc/vfs/vfs.h"
|
---|
[a3da2b2] | 42 | #include "posix/errno.h"
|
---|
[ad28599] | 43 |
|
---|
| 44 | /**
|
---|
[4ec6820] | 45 | * Performs set of operations on the opened files.
|
---|
| 46 | *
|
---|
| 47 | * @param fd File descriptor of the opened file.
|
---|
| 48 | * @param cmd Operation to carry out.
|
---|
| 49 | * @return Non-negative on success. Might have special meaning corresponding
|
---|
| 50 | * to the requested operation.
|
---|
[ad28599] | 51 | */
|
---|
| 52 | int posix_fcntl(int fd, int cmd, ...)
|
---|
| 53 | {
|
---|
[4ec6820] | 54 | int flags;
|
---|
| 55 |
|
---|
| 56 | switch (cmd) {
|
---|
| 57 | case F_DUPFD:
|
---|
[f00af83] | 58 | case F_DUPFD_CLOEXEC:
|
---|
| 59 | /* VFS currently does not provide the functionality to duplicate
|
---|
| 60 | * opened file descriptor. */
|
---|
| 61 | // FIXME: implement this once dup() is available
|
---|
| 62 | errno = ENOTSUP;
|
---|
| 63 | return -1;
|
---|
[4ec6820] | 64 | case F_GETFD:
|
---|
| 65 | /* FD_CLOEXEC is not supported. There are no other flags. */
|
---|
| 66 | return 0;
|
---|
| 67 | case F_SETFD:
|
---|
| 68 | /* FD_CLOEXEC is not supported. Ignore arguments and report success. */
|
---|
| 69 | return 0;
|
---|
| 70 | case F_GETFL:
|
---|
| 71 | /* File status flags (i.e. O_APPEND) are currently private to the
|
---|
| 72 | * VFS server so it cannot be easily retrieved. */
|
---|
| 73 | flags = 0;
|
---|
| 74 | /* File access flags are currently not supported for file descriptors.
|
---|
| 75 | * Provide full access. */
|
---|
| 76 | flags |= O_RDWR;
|
---|
| 77 | return flags;
|
---|
| 78 | case F_SETFL:
|
---|
| 79 | /* File access flags are currently not supported for file descriptors.
|
---|
| 80 | * Ignore arguments and report success. */
|
---|
| 81 | return 0;
|
---|
| 82 | case F_GETOWN:
|
---|
| 83 | case F_SETOWN:
|
---|
| 84 | case F_GETLK:
|
---|
| 85 | case F_SETLK:
|
---|
| 86 | case F_SETLKW:
|
---|
| 87 | /* Signals (SIGURG) and file locks are not supported. */
|
---|
| 88 | errno = ENOTSUP;
|
---|
| 89 | return -1;
|
---|
| 90 | default:
|
---|
| 91 | /* Unknown command */
|
---|
| 92 | errno = EINVAL;
|
---|
| 93 | return -1;
|
---|
| 94 | }
|
---|
[ad28599] | 95 | }
|
---|
| 96 |
|
---|
[ca4c6ec1] | 97 | /**
|
---|
| 98 | * Open, possibly create, a file.
|
---|
| 99 | *
|
---|
| 100 | * @param pathname Path to the file.
|
---|
[b19e892] | 101 | * @param posix_flags Access mode flags.
|
---|
[ca4c6ec1] | 102 | */
|
---|
[b19e892] | 103 | int posix_open(const char *pathname, int posix_flags, ...)
|
---|
[ca4c6ec1] | 104 | {
|
---|
[b19e892] | 105 | int rc;
|
---|
[8fe46a0] | 106 | posix_mode_t posix_mode = 0;
|
---|
[b19e892] | 107 | if (posix_flags & O_CREAT) {
|
---|
[ca4c6ec1] | 108 | va_list args;
|
---|
[b19e892] | 109 | va_start(args, posix_flags);
|
---|
[8fe46a0] | 110 | posix_mode = va_arg(args, posix_mode_t);
|
---|
[ca4c6ec1] | 111 | va_end(args);
|
---|
[b19e892] | 112 | (void) posix_mode;
|
---|
[ca4c6ec1] | 113 | }
|
---|
| 114 |
|
---|
[b19e892] | 115 | if (((posix_flags & (O_RDONLY | O_WRONLY | O_RDWR)) == 0) ||
|
---|
| 116 | ((posix_flags & (O_RDONLY | O_WRONLY)) == (O_RDONLY | O_WRONLY)) ||
|
---|
| 117 | ((posix_flags & (O_RDONLY | O_RDWR)) == (O_RDONLY | O_RDWR)) ||
|
---|
| 118 | ((posix_flags & (O_WRONLY | O_RDWR)) == (O_WRONLY | O_RDWR))) {
|
---|
| 119 | errno = EINVAL;
|
---|
| 120 | return -1;
|
---|
| 121 | }
|
---|
| 122 |
|
---|
| 123 | int flags = WALK_REGULAR;
|
---|
| 124 | if (posix_flags & O_CREAT) {
|
---|
| 125 | if (posix_flags & O_EXCL)
|
---|
| 126 | flags |= WALK_MUST_CREATE;
|
---|
| 127 | else
|
---|
| 128 | flags |= WALK_MAY_CREATE;
|
---|
| 129 | }
|
---|
| 130 |
|
---|
| 131 | int mode =
|
---|
| 132 | ((posix_flags & O_RDWR) ? MODE_READ | MODE_WRITE : 0) |
|
---|
| 133 | ((posix_flags & O_RDONLY) ? MODE_READ : 0) |
|
---|
| 134 | ((posix_flags & O_WRONLY) ? MODE_WRITE : 0) |
|
---|
| 135 | ((posix_flags & O_APPEND) ? MODE_APPEND : 0);
|
---|
| 136 |
|
---|
| 137 | int file = rcerrno(vfs_lookup, pathname, flags);
|
---|
| 138 | if (file < 0)
|
---|
| 139 | return -1;
|
---|
| 140 |
|
---|
| 141 | rc = rcerrno(vfs_open, file, mode);
|
---|
| 142 | if (rc != EOK) {
|
---|
[9c4cf0d] | 143 | vfs_put(file);
|
---|
[b19e892] | 144 | return -1;
|
---|
| 145 | }
|
---|
| 146 |
|
---|
| 147 | if (posix_flags & O_TRUNC) {
|
---|
| 148 | if (posix_flags & (O_RDWR | O_WRONLY)) {
|
---|
| 149 | rc = rcerrno(vfs_resize, file, 0);
|
---|
| 150 | if (rc != EOK) {
|
---|
[9c4cf0d] | 151 | vfs_put(file);
|
---|
[b19e892] | 152 | return -1;
|
---|
| 153 | }
|
---|
| 154 | }
|
---|
| 155 | }
|
---|
| 156 |
|
---|
| 157 | return file;
|
---|
[ca4c6ec1] | 158 | }
|
---|
| 159 |
|
---|
[ad28599] | 160 | /** @}
|
---|
| 161 | */
|
---|
[b19e892] | 162 |
|
---|