2009-03-04 04:28:35 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
2013-10-22 22:28:46 +02:00
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdarg.h>
|
2012-07-02 21:24:42 +02:00
|
|
|
#include <stdlib.h>
|
2013-10-22 22:28:46 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2019-11-06 22:15:00 +01:00
|
|
|
#include "private/bionic_fdtrack.h"
|
2017-04-25 02:48:32 +02:00
|
|
|
#include "private/bionic_fortify.h"
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-10-22 22:28:46 +02:00
|
|
|
extern "C" int __openat(int, const char*, int, int);
|
|
|
|
|
2013-12-20 01:48:56 +01:00
|
|
|
static inline int force_O_LARGEFILE(int flags) {
|
2016-09-15 22:55:41 +02:00
|
|
|
#if defined(__LP64__)
|
2013-12-20 01:48:56 +01:00
|
|
|
return flags; // No need, and aarch64's strace gets confused.
|
|
|
|
#else
|
|
|
|
return flags | O_LARGEFILE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-08-04 18:34:19 +02:00
|
|
|
static inline bool needs_mode(int flags) {
|
|
|
|
return ((flags & O_CREAT) == O_CREAT) || ((flags & O_TMPFILE) == O_TMPFILE);
|
|
|
|
}
|
|
|
|
|
Implement some of the missing LFS64 support.
This gives us:
* <dirent.h>
struct dirent64
readdir64, readdir64_r, alphasort64, scandir64
* <fcntl.h>
creat64, openat64, open64.
* <sys/stat.h>
struct stat64
fstat64, fstatat64, lstat64, stat64.
* <sys/statvfs.h>
struct statvfs64
statvfs64, fstatvfs64.
* <sys/vfs.h>
struct statfs64
statfs64, fstatfs64.
This also removes some of the incorrect #define hacks we've had in the
past (for stat64, for example, which we promised to clean up way back
in bug 8472078).
Bug: 11865851
Bug: 8472078
Change-Id: Ia46443521918519f2dfa64d4621027dfd13ac566
2014-01-18 03:42:49 +01:00
|
|
|
int creat(const char* pathname, mode_t mode) {
|
|
|
|
return open(pathname, O_CREAT | O_TRUNC | O_WRONLY, mode);
|
|
|
|
}
|
|
|
|
__strong_alias(creat64, creat);
|
|
|
|
|
2013-10-22 22:28:46 +02:00
|
|
|
int open(const char* pathname, int flags, ...) {
|
|
|
|
mode_t mode = 0;
|
|
|
|
|
2017-08-04 18:34:19 +02:00
|
|
|
if (needs_mode(flags)) {
|
2013-10-22 22:28:46 +02:00
|
|
|
va_list args;
|
|
|
|
va_start(args, flags);
|
2015-01-22 01:19:07 +01:00
|
|
|
mode = static_cast<mode_t>(va_arg(args, int));
|
2013-10-22 22:28:46 +02:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2019-11-06 22:15:00 +01:00
|
|
|
return FDTRACK_CREATE(__openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), mode));
|
2013-10-22 22:28:46 +02:00
|
|
|
}
|
Implement some of the missing LFS64 support.
This gives us:
* <dirent.h>
struct dirent64
readdir64, readdir64_r, alphasort64, scandir64
* <fcntl.h>
creat64, openat64, open64.
* <sys/stat.h>
struct stat64
fstat64, fstatat64, lstat64, stat64.
* <sys/statvfs.h>
struct statvfs64
statvfs64, fstatvfs64.
* <sys/vfs.h>
struct statfs64
statfs64, fstatfs64.
This also removes some of the incorrect #define hacks we've had in the
past (for stat64, for example, which we promised to clean up way back
in bug 8472078).
Bug: 11865851
Bug: 8472078
Change-Id: Ia46443521918519f2dfa64d4621027dfd13ac566
2014-01-18 03:42:49 +01:00
|
|
|
__strong_alias(open64, open);
|
2013-10-22 22:28:46 +02:00
|
|
|
|
2013-12-19 21:02:16 +01:00
|
|
|
int __open_2(const char* pathname, int flags) {
|
2017-08-04 18:34:19 +02:00
|
|
|
if (needs_mode(flags)) __fortify_fatal("open: called with O_CREAT/O_TMPFILE but no mode");
|
2019-11-06 22:15:00 +01:00
|
|
|
return FDTRACK_CREATE_NAME("open", __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), 0));
|
2013-10-22 22:28:46 +02:00
|
|
|
}
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-10-16 01:43:38 +02:00
|
|
|
int openat(int fd, const char *pathname, int flags, ...) {
|
|
|
|
mode_t mode = 0;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2017-08-04 18:34:19 +02:00
|
|
|
if (needs_mode(flags)) {
|
2013-10-16 01:43:38 +02:00
|
|
|
va_list args;
|
|
|
|
va_start(args, flags);
|
2015-01-22 01:19:07 +01:00
|
|
|
mode = static_cast<mode_t>(va_arg(args, int));
|
2013-10-16 01:43:38 +02:00
|
|
|
va_end(args);
|
|
|
|
}
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2019-11-06 22:15:00 +01:00
|
|
|
return FDTRACK_CREATE_NAME("openat", __openat(fd, pathname, force_O_LARGEFILE(flags), mode));
|
2009-03-04 04:28:35 +01:00
|
|
|
}
|
Implement some of the missing LFS64 support.
This gives us:
* <dirent.h>
struct dirent64
readdir64, readdir64_r, alphasort64, scandir64
* <fcntl.h>
creat64, openat64, open64.
* <sys/stat.h>
struct stat64
fstat64, fstatat64, lstat64, stat64.
* <sys/statvfs.h>
struct statvfs64
statvfs64, fstatvfs64.
* <sys/vfs.h>
struct statfs64
statfs64, fstatfs64.
This also removes some of the incorrect #define hacks we've had in the
past (for stat64, for example, which we promised to clean up way back
in bug 8472078).
Bug: 11865851
Bug: 8472078
Change-Id: Ia46443521918519f2dfa64d4621027dfd13ac566
2014-01-18 03:42:49 +01:00
|
|
|
__strong_alias(openat64, openat);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-12-19 21:02:16 +01:00
|
|
|
int __openat_2(int fd, const char* pathname, int flags) {
|
2017-08-04 18:34:19 +02:00
|
|
|
if (needs_mode(flags)) __fortify_fatal("open: called with O_CREAT/O_TMPFILE but no mode");
|
2019-11-06 22:15:00 +01:00
|
|
|
return FDTRACK_CREATE_NAME("openat", __openat(fd, pathname, force_O_LARGEFILE(flags), 0));
|
2012-07-02 21:24:42 +02:00
|
|
|
}
|