The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 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 | * * Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * * Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in |
| 12 | * the documentation and/or other materials provided with the |
| 13 | * distribution. |
| 14 | * |
| 15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 16 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 17 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 18 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 19 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 20 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 21 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 22 | * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 23 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 24 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 25 | * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 26 | * SUCH DAMAGE. |
| 27 | */ |
Elliott Hughes | e989399 | 2013-10-17 11:45:22 -0700 | [diff] [blame] | 28 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 29 | #ifndef _FCNTL_H |
| 30 | #define _FCNTL_H |
| 31 | |
| 32 | #include <sys/cdefs.h> |
| 33 | #include <sys/types.h> |
| 34 | #include <linux/fcntl.h> |
| 35 | #include <unistd.h> /* this is not required, but makes client code much happier */ |
| 36 | |
| 37 | __BEGIN_DECLS |
| 38 | |
| 39 | #ifndef O_ASYNC |
| 40 | #define O_ASYNC FASYNC |
| 41 | #endif |
| 42 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 43 | extern int open(const char* path, int mode, ...); |
| 44 | extern int openat(int fd, const char* path, int mode, ...); |
| 45 | extern int unlinkat(int dirfd, const char *pathname, int flags); |
| 46 | extern int fcntl(int fd, int command, ...); |
| 47 | extern int creat(const char* path, mode_t mode); |
| 48 | |
Elliott Hughes | cd0609f | 2013-12-19 12:21:07 -0800 | [diff] [blame] | 49 | #if defined(__BIONIC_FORTIFY) |
| 50 | |
| 51 | extern int __open_2(const char*, int); |
| 52 | extern int __open_real(const char*, int, ...) __asm__(__USER_LABEL_PREFIX__ "open"); |
| 53 | extern int __openat_2(int, const char*, int); |
| 54 | extern int __openat_real(int, const char*, int, ...) __asm__(__USER_LABEL_PREFIX__ "openat"); |
Nick Kralevich | a641c18 | 2013-06-18 13:07:18 -0700 | [diff] [blame] | 55 | __errordecl(__creat_missing_mode, "called with O_CREAT, but missing mode"); |
| 56 | __errordecl(__creat_too_many_args, "too many arguments"); |
Elliott Hughes | cd0609f | 2013-12-19 12:21:07 -0800 | [diff] [blame] | 57 | |
| 58 | #if !defined(__clang__) |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 59 | |
| 60 | __BIONIC_FORTIFY_INLINE |
Elliott Hughes | cd0609f | 2013-12-19 12:21:07 -0800 | [diff] [blame] | 61 | int open(const char* pathname, int flags, ...) { |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 62 | if (__builtin_constant_p(flags)) { |
| 63 | if ((flags & O_CREAT) && __builtin_va_arg_pack_len() == 0) { |
Nick Kralevich | a641c18 | 2013-06-18 13:07:18 -0700 | [diff] [blame] | 64 | __creat_missing_mode(); // compile time error |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 65 | } |
| 66 | } |
| 67 | |
| 68 | if (__builtin_va_arg_pack_len() > 1) { |
Nick Kralevich | a641c18 | 2013-06-18 13:07:18 -0700 | [diff] [blame] | 69 | __creat_too_many_args(); // compile time error |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 70 | } |
| 71 | |
Nick Kralevich | a3e230d | 2012-07-02 12:24:42 -0700 | [diff] [blame] | 72 | if ((__builtin_va_arg_pack_len() == 0) && !__builtin_constant_p(flags)) { |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 73 | return __open_2(pathname, flags); |
| 74 | } |
| 75 | |
| 76 | return __open_real(pathname, flags, __builtin_va_arg_pack()); |
| 77 | } |
| 78 | |
Nick Kralevich | a3e230d | 2012-07-02 12:24:42 -0700 | [diff] [blame] | 79 | __BIONIC_FORTIFY_INLINE |
Elliott Hughes | cd0609f | 2013-12-19 12:21:07 -0800 | [diff] [blame] | 80 | int openat(int dirfd, const char* pathname, int flags, ...) { |
Nick Kralevich | a3e230d | 2012-07-02 12:24:42 -0700 | [diff] [blame] | 81 | if (__builtin_constant_p(flags)) { |
| 82 | if ((flags & O_CREAT) && __builtin_va_arg_pack_len() == 0) { |
Nick Kralevich | a641c18 | 2013-06-18 13:07:18 -0700 | [diff] [blame] | 83 | __creat_missing_mode(); // compile time error |
Nick Kralevich | a3e230d | 2012-07-02 12:24:42 -0700 | [diff] [blame] | 84 | } |
| 85 | } |
| 86 | |
| 87 | if (__builtin_va_arg_pack_len() > 1) { |
Nick Kralevich | a641c18 | 2013-06-18 13:07:18 -0700 | [diff] [blame] | 88 | __creat_too_many_args(); // compile time error |
Nick Kralevich | a3e230d | 2012-07-02 12:24:42 -0700 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | if ((__builtin_va_arg_pack_len() == 0) && !__builtin_constant_p(flags)) { |
| 92 | return __openat_2(dirfd, pathname, flags); |
| 93 | } |
| 94 | |
| 95 | return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack()); |
| 96 | } |
| 97 | |
Elliott Hughes | cd0609f | 2013-12-19 12:21:07 -0800 | [diff] [blame] | 98 | #endif /* !defined(__clang__) */ |
| 99 | |
| 100 | #endif /* defined(__BIONIC_FORTIFY) */ |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 101 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 102 | __END_DECLS |
| 103 | |
| 104 | #endif /* _FCNTL_H */ |