The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | /* this file contains system-dependent definitions used by ADB |
| 18 | * they're related to threads, sockets and file descriptors |
| 19 | */ |
| 20 | #ifndef _ADB_SYSDEPS_H |
| 21 | #define _ADB_SYSDEPS_H |
| 22 | |
| 23 | #ifdef __CYGWIN__ |
| 24 | # undef _WIN32 |
| 25 | #endif |
| 26 | |
Elliott Hughes | 43df109 | 2015-07-23 17:12:58 -0700 | [diff] [blame] | 27 | #include <errno.h> |
| 28 | |
Spencer Low | 753d485 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 29 | #include <string> |
Josh Gao | f0c4403 | 2018-12-12 16:12:28 -0800 | [diff] [blame] | 30 | #include <string_view> |
Spencer Low | f373c35 | 2015-11-15 16:29:36 -0800 | [diff] [blame] | 31 | #include <vector> |
Spencer Low | 753d485 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 32 | |
Josh Gao | d91139c | 2016-05-13 14:52:06 -0700 | [diff] [blame] | 33 | // Include this before open/close/unlink are defined as macros below. |
Josh Gao | a4f5e03 | 2016-02-09 14:59:09 -0800 | [diff] [blame] | 34 | #include <android-base/errors.h> |
Elliott Hughes | 8bddf24 | 2017-11-28 18:05:27 -0800 | [diff] [blame] | 35 | #include <android-base/macros.h> |
Adrian Roos | dbfe01d | 2019-08-19 14:37:19 +0200 | [diff] [blame] | 36 | #include <android-base/off64_t.h> |
Josh Gao | d91139c | 2016-05-13 14:52:06 -0700 | [diff] [blame] | 37 | #include <android-base/unique_fd.h> |
Elliott Hughes | f55ead9 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 38 | #include <android-base/utf8.h> |
Spencer Low | 50f5bf1 | 2015-11-12 15:20:15 -0800 | [diff] [blame] | 39 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 40 | #include "adb_unique_fd.h" |
Josh Gao | 75e96bb | 2016-12-05 13:24:48 -0800 | [diff] [blame] | 41 | #include "sysdeps/errno.h" |
Josh Gao | 1f6a57a | 2017-04-12 13:57:06 -0700 | [diff] [blame] | 42 | #include "sysdeps/network.h" |
Josh Gao | a4f9c17 | 2016-07-28 18:09:48 -0700 | [diff] [blame] | 43 | #include "sysdeps/stat.h" |
| 44 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 45 | #ifdef _WIN32 |
| 46 | |
Josh Gao | 23f6f2b | 2016-01-29 12:08:34 -0800 | [diff] [blame] | 47 | // Clang-only nullability specifiers |
| 48 | #define _Nonnull |
| 49 | #define _Nullable |
| 50 | |
Dan Albert | bbbbea6 | 2014-11-24 23:34:35 -0800 | [diff] [blame] | 51 | #include <ctype.h> |
| 52 | #include <direct.h> |
Spencer Low | 6815c07 | 2015-05-11 01:08:48 -0700 | [diff] [blame] | 53 | #include <dirent.h> |
Dan Albert | bbbbea6 | 2014-11-24 23:34:35 -0800 | [diff] [blame] | 54 | #include <errno.h> |
| 55 | #include <fcntl.h> |
| 56 | #include <io.h> |
| 57 | #include <process.h> |
Elliott Hughes | 9dcbc21 | 2018-09-20 13:59:49 -0700 | [diff] [blame] | 58 | #include <stdint.h> |
Dan Albert | bbbbea6 | 2014-11-24 23:34:35 -0800 | [diff] [blame] | 59 | #include <sys/stat.h> |
Spencer Low | 6815c07 | 2015-05-11 01:08:48 -0700 | [diff] [blame] | 60 | #include <utime.h> |
Stephen Hines | b117085 | 2014-10-01 17:37:06 -0700 | [diff] [blame] | 61 | #include <windows.h> |
Elliott Hughes | 9dcbc21 | 2018-09-20 13:59:49 -0700 | [diff] [blame] | 62 | #include <winsock2.h> |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 63 | #include <ws2tcpip.h> |
Dan Albert | bbbbea6 | 2014-11-24 23:34:35 -0800 | [diff] [blame] | 64 | |
Spencer Low | 2bbb3a9 | 2015-08-26 18:46:09 -0700 | [diff] [blame] | 65 | #include <memory> // unique_ptr |
Spencer Low | 50f5bf1 | 2015-11-12 15:20:15 -0800 | [diff] [blame] | 66 | #include <string> |
Alex Vallée | 28d1f8d | 2015-05-06 16:26:00 -0400 | [diff] [blame] | 67 | |
Elliott Hughes | d189cfb | 2015-07-30 17:42:01 -0700 | [diff] [blame] | 68 | #define OS_PATH_SEPARATORS "\\/" |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 69 | #define OS_PATH_SEPARATOR '\\' |
| 70 | #define OS_PATH_SEPARATOR_STR "\\" |
Benoit Goby | 2cc19e4 | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 71 | #define ENV_PATH_SEPARATOR_STR ";" |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 72 | |
Josh Gao | 8acf06c | 2015-11-07 15:38:19 -0800 | [diff] [blame] | 73 | static __inline__ bool adb_is_separator(char c) { |
| 74 | return c == '\\' || c == '/'; |
| 75 | } |
| 76 | |
Spencer Low | ae37a31 | 2018-09-03 16:03:22 -0700 | [diff] [blame] | 77 | extern int adb_thread_setname(const std::string& name); |
Siva Velusamy | 2669cf9 | 2015-08-28 16:37:29 -0700 | [diff] [blame] | 78 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 79 | static __inline__ void close_on_exec(borrowed_fd fd) { |
David 'Digit' Turner | 1f1efb5 | 2009-05-18 17:36:28 +0200 | [diff] [blame] | 80 | /* nothing really */ |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 81 | } |
| 82 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 83 | extern int adb_unlink(const char* path); |
| 84 | #undef unlink |
| 85 | #define unlink ___xxx_unlink |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 86 | |
Spencer Low | 6815c07 | 2015-05-11 01:08:48 -0700 | [diff] [blame] | 87 | extern int adb_mkdir(const std::string& path, int mode); |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 88 | #undef mkdir |
| 89 | #define mkdir ___xxx_mkdir |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 90 | |
Spencer Low | 3a2421b | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 91 | // See the comments for the !defined(_WIN32) versions of adb_*(). |
Josh Gao | 96049b9 | 2018-03-23 13:03:28 -0700 | [diff] [blame] | 92 | extern int adb_open(const char* path, int options); |
| 93 | extern int adb_creat(const char* path, int mode); |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 94 | extern int adb_read(borrowed_fd fd, void* buf, int len); |
Yurii Zubrytskyi | 243d248 | 2019-07-10 17:59:34 -0700 | [diff] [blame] | 95 | extern int adb_pread(borrowed_fd fd, void* buf, int len, off64_t offset); |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 96 | extern int adb_write(borrowed_fd fd, const void* buf, int len); |
Yurii Zubrytskyi | 243d248 | 2019-07-10 17:59:34 -0700 | [diff] [blame] | 97 | extern int adb_pwrite(borrowed_fd fd, const void* buf, int len, off64_t offset); |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 98 | extern int64_t adb_lseek(borrowed_fd fd, int64_t pos, int where); |
| 99 | extern int adb_shutdown(borrowed_fd fd, int direction = SHUT_RDWR); |
Josh Gao | 96049b9 | 2018-03-23 13:03:28 -0700 | [diff] [blame] | 100 | extern int adb_close(int fd); |
| 101 | extern int adb_register_socket(SOCKET s); |
Yurii Zubrytskyi | 243d248 | 2019-07-10 17:59:34 -0700 | [diff] [blame] | 102 | extern HANDLE adb_get_os_handle(borrowed_fd fd); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 103 | |
Spencer Low | 3a2421b | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 104 | // See the comments for the !defined(_WIN32) version of unix_close(). |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 105 | static __inline__ int unix_close(int fd) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 106 | return close(fd); |
| 107 | } |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 108 | #undef close |
| 109 | #define close ____xxx_close |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 110 | |
Spencer Low | 5544140 | 2015-11-07 17:34:39 -0800 | [diff] [blame] | 111 | // Like unix_read(), but may return EINTR. |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 112 | extern int unix_read_interruptible(borrowed_fd fd, void* buf, size_t len); |
Spencer Low | 5544140 | 2015-11-07 17:34:39 -0800 | [diff] [blame] | 113 | |
Spencer Low | 3a2421b | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 114 | // See the comments for the !defined(_WIN32) version of unix_read(). |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 115 | static __inline__ int unix_read(borrowed_fd fd, void* buf, size_t len) { |
Spencer Low | 5544140 | 2015-11-07 17:34:39 -0800 | [diff] [blame] | 116 | return TEMP_FAILURE_RETRY(unix_read_interruptible(fd, buf, len)); |
| 117 | } |
Spencer Low | beb6198 | 2015-03-01 15:06:21 -0800 | [diff] [blame] | 118 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 119 | #undef read |
| 120 | #define read ___xxx_read |
| 121 | |
Yurii Zubrytskyi | 243d248 | 2019-07-10 17:59:34 -0700 | [diff] [blame] | 122 | #undef pread |
| 123 | #define pread ___xxx_pread |
| 124 | |
Spencer Low | 3a2421b | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 125 | // See the comments for the !defined(_WIN32) version of unix_write(). |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 126 | static __inline__ int unix_write(borrowed_fd fd, const void* buf, size_t len) { |
| 127 | return write(fd.get(), buf, len); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 128 | } |
| 129 | #undef write |
| 130 | #define write ___xxx_write |
| 131 | |
Yurii Zubrytskyi | 243d248 | 2019-07-10 17:59:34 -0700 | [diff] [blame] | 132 | #undef pwrite |
| 133 | #define pwrite ___xxx_pwrite |
| 134 | |
Spencer Low | 04b575d | 2018-09-02 19:19:39 -0700 | [diff] [blame] | 135 | // See the comments for the !defined(_WIN32) version of unix_lseek(). |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 136 | static __inline__ int unix_lseek(borrowed_fd fd, int pos, int where) { |
| 137 | return lseek(fd.get(), pos, where); |
Spencer Low | 04b575d | 2018-09-02 19:19:39 -0700 | [diff] [blame] | 138 | } |
| 139 | #undef lseek |
| 140 | #define lseek ___xxx_lseek |
| 141 | |
Spencer Low | 3a2421b | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 142 | // See the comments for the !defined(_WIN32) version of adb_open_mode(). |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 143 | static __inline__ int adb_open_mode(const char* path, int options, int mode) { |
David 'Digit' Turner | 1f1efb5 | 2009-05-18 17:36:28 +0200 | [diff] [blame] | 144 | return adb_open(path, options); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 145 | } |
| 146 | |
Spencer Low | 3a2421b | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 147 | // See the comments for the !defined(_WIN32) version of unix_open(). |
Josh Gao | f0c4403 | 2018-12-12 16:12:28 -0800 | [diff] [blame] | 148 | extern int unix_open(std::string_view path, int options, ...); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 149 | #define open ___xxx_unix_open |
| 150 | |
David Pursell | 5880536 | 2015-10-28 14:29:51 -0700 | [diff] [blame] | 151 | // Checks if |fd| corresponds to a console. |
| 152 | // Standard Windows isatty() returns 1 for both console FDs and character |
| 153 | // devices like NUL. unix_isatty() performs some extra checking to only match |
| 154 | // console FDs. |
| 155 | // |fd| must be a real file descriptor, meaning STDxx_FILENO or unix_open() FDs |
| 156 | // will work but adb_open() FDs will not. Additionally the OS handle associated |
| 157 | // with |fd| must have GENERIC_READ access (which console FDs have by default). |
| 158 | // Returns 1 if |fd| is a console FD, 0 otherwise. The value of errno after |
| 159 | // calling this function is unreliable and should not be used. |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 160 | int unix_isatty(borrowed_fd fd); |
David Pursell | 5880536 | 2015-10-28 14:29:51 -0700 | [diff] [blame] | 161 | #define isatty ___xxx_isatty |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 162 | |
Spencer Low | 753d485 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 163 | int network_inaddr_any_server(int port, int type, std::string* error); |
Josh Gao | 4a5a95d | 2016-08-24 18:38:44 -0700 | [diff] [blame] | 164 | |
| 165 | inline int network_local_client(const char* name, int namespace_id, int type, std::string* error) { |
| 166 | abort(); |
| 167 | } |
| 168 | |
| 169 | inline int network_local_server(const char* name, int namespace_id, int type, std::string* error) { |
| 170 | abort(); |
| 171 | } |
| 172 | |
Spencer Low | 753d485 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 173 | int network_connect(const std::string& host, int port, int type, int timeout, |
| 174 | std::string* error); |
| 175 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 176 | extern int adb_socket_accept(borrowed_fd serverfd, struct sockaddr* addr, socklen_t* addrlen); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 177 | |
| 178 | #undef accept |
| 179 | #define accept ___xxx_accept |
| 180 | |
David Pursell | 19d0c23 | 2016-04-07 11:25:48 -0700 | [diff] [blame] | 181 | // Returns the local port number of a bound socket, or -1 on failure. |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 182 | int adb_socket_get_local_port(borrowed_fd fd); |
David Pursell | 19d0c23 | 2016-04-07 11:25:48 -0700 | [diff] [blame] | 183 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 184 | extern int adb_setsockopt(borrowed_fd fd, int level, int optname, const void* optval, |
| 185 | socklen_t optlen); |
Spencer Low | 31aafa6 | 2015-01-25 14:40:16 -0800 | [diff] [blame] | 186 | |
| 187 | #undef setsockopt |
| 188 | #define setsockopt ___xxx_setsockopt |
| 189 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 190 | extern int adb_socketpair(int sv[2]); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 191 | |
Josh Gao | e738812 | 2016-02-16 17:34:53 -0800 | [diff] [blame] | 192 | struct adb_pollfd { |
| 193 | int fd; |
| 194 | short events; |
| 195 | short revents; |
| 196 | }; |
| 197 | extern int adb_poll(adb_pollfd* fds, size_t nfds, int timeout); |
| 198 | #define poll ___xxx_poll |
| 199 | |
Elliott Hughes | d189cfb | 2015-07-30 17:42:01 -0700 | [diff] [blame] | 200 | static __inline__ int adb_is_absolute_host_path(const char* path) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 201 | return isalpha(path[0]) && path[1] == ':' && path[2] == '\\'; |
| 202 | } |
| 203 | |
Spencer Low | 6815c07 | 2015-05-11 01:08:48 -0700 | [diff] [blame] | 204 | // UTF-8 versions of POSIX APIs. |
| 205 | extern DIR* adb_opendir(const char* dirname); |
| 206 | extern struct dirent* adb_readdir(DIR* dir); |
| 207 | extern int adb_closedir(DIR* dir); |
| 208 | |
| 209 | extern int adb_utime(const char *, struct utimbuf *); |
| 210 | extern int adb_chmod(const char *, int); |
| 211 | |
Elliott Hughes | 874c941 | 2018-06-26 13:06:15 -0700 | [diff] [blame] | 212 | extern int adb_vfprintf(FILE* stream, const char* format, va_list ap) |
| 213 | __attribute__((__format__(__printf__, 2, 0))); |
| 214 | extern int adb_vprintf(const char* format, va_list ap) __attribute__((__format__(__printf__, 1, 0))); |
| 215 | extern int adb_fprintf(FILE* stream, const char* format, ...) |
| 216 | __attribute__((__format__(__printf__, 2, 3))); |
| 217 | extern int adb_printf(const char* format, ...) __attribute__((__format__(__printf__, 1, 2))); |
Spencer Low | 6815c07 | 2015-05-11 01:08:48 -0700 | [diff] [blame] | 218 | |
| 219 | extern int adb_fputs(const char* buf, FILE* stream); |
| 220 | extern int adb_fputc(int ch, FILE* stream); |
Spencer Low | f373c35 | 2015-11-15 16:29:36 -0800 | [diff] [blame] | 221 | extern int adb_putchar(int ch); |
| 222 | extern int adb_puts(const char* buf); |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 223 | extern size_t adb_fwrite(const void* ptr, size_t size, size_t nmemb, FILE* stream); |
Spencer Low | 6815c07 | 2015-05-11 01:08:48 -0700 | [diff] [blame] | 224 | |
| 225 | extern FILE* adb_fopen(const char* f, const char* m); |
| 226 | |
| 227 | extern char* adb_getenv(const char* name); |
| 228 | |
| 229 | extern char* adb_getcwd(char* buf, int size); |
| 230 | |
| 231 | // Remap calls to POSIX APIs to our UTF-8 versions. |
| 232 | #define opendir adb_opendir |
| 233 | #define readdir adb_readdir |
| 234 | #define closedir adb_closedir |
| 235 | #define rewinddir rewinddir_utf8_not_yet_implemented |
| 236 | #define telldir telldir_utf8_not_yet_implemented |
Spencer Low | 28bc2cb | 2015-11-07 18:51:54 -0800 | [diff] [blame] | 237 | // Some compiler's C++ headers have members named seekdir, so we can't do the |
| 238 | // macro technique and instead cause a link error if seekdir is called. |
| 239 | inline void seekdir(DIR*, long) { |
| 240 | extern int seekdir_utf8_not_yet_implemented; |
| 241 | seekdir_utf8_not_yet_implemented = 1; |
| 242 | } |
Spencer Low | 6815c07 | 2015-05-11 01:08:48 -0700 | [diff] [blame] | 243 | |
| 244 | #define utime adb_utime |
| 245 | #define chmod adb_chmod |
| 246 | |
| 247 | #define vfprintf adb_vfprintf |
Spencer Low | f373c35 | 2015-11-15 16:29:36 -0800 | [diff] [blame] | 248 | #define vprintf adb_vprintf |
Spencer Low | 6815c07 | 2015-05-11 01:08:48 -0700 | [diff] [blame] | 249 | #define fprintf adb_fprintf |
| 250 | #define printf adb_printf |
| 251 | #define fputs adb_fputs |
| 252 | #define fputc adb_fputc |
Spencer Low | f373c35 | 2015-11-15 16:29:36 -0800 | [diff] [blame] | 253 | // putc may be a macro, so if so, undefine it, so that we can redefine it. |
| 254 | #undef putc |
| 255 | #define putc(c, s) adb_fputc(c, s) |
| 256 | #define putchar adb_putchar |
| 257 | #define puts adb_puts |
Spencer Low | 6815c07 | 2015-05-11 01:08:48 -0700 | [diff] [blame] | 258 | #define fwrite adb_fwrite |
| 259 | |
| 260 | #define fopen adb_fopen |
Spencer Low | f373c35 | 2015-11-15 16:29:36 -0800 | [diff] [blame] | 261 | #define freopen freopen_utf8_not_yet_implemented |
Spencer Low | 6815c07 | 2015-05-11 01:08:48 -0700 | [diff] [blame] | 262 | |
| 263 | #define getenv adb_getenv |
| 264 | #define putenv putenv_utf8_not_yet_implemented |
| 265 | #define setenv setenv_utf8_not_yet_implemented |
| 266 | #define unsetenv unsetenv_utf8_not_yet_implemented |
| 267 | |
| 268 | #define getcwd adb_getcwd |
| 269 | |
Spencer Low | 6815c07 | 2015-05-11 01:08:48 -0700 | [diff] [blame] | 270 | // Helper class to convert UTF-16 argv from wmain() to UTF-8 args that can be |
| 271 | // passed to main(). |
| 272 | class NarrowArgs { |
| 273 | public: |
| 274 | NarrowArgs(int argc, wchar_t** argv); |
| 275 | ~NarrowArgs(); |
| 276 | |
| 277 | inline char** data() { |
| 278 | return narrow_args; |
| 279 | } |
| 280 | |
| 281 | private: |
| 282 | char** narrow_args; |
| 283 | }; |
| 284 | |
Spencer Low | b28812f | 2015-08-08 15:07:07 -0700 | [diff] [blame] | 285 | // Windows HANDLE values only use 32-bits of the type, even on 64-bit machines, |
| 286 | // so they can fit in an int. To convert back, we just need to sign-extend. |
| 287 | // https://msdn.microsoft.com/en-us/library/windows/desktop/aa384203%28v=vs.85%29.aspx |
| 288 | // Note that this does not make a HANDLE value work with APIs like open(), nor |
| 289 | // does this make a value from open() passable to APIs taking a HANDLE. This |
| 290 | // just lets you take a HANDLE, pass it around as an int, and then use it again |
| 291 | // as a HANDLE. |
| 292 | inline int cast_handle_to_int(const HANDLE h) { |
| 293 | // truncate |
| 294 | return static_cast<int>(reinterpret_cast<INT_PTR>(h)); |
| 295 | } |
| 296 | |
| 297 | inline HANDLE cast_int_to_handle(const int fd) { |
| 298 | // sign-extend |
| 299 | return reinterpret_cast<HANDLE>(static_cast<INT_PTR>(fd)); |
| 300 | } |
| 301 | |
Spencer Low | 2bbb3a9 | 2015-08-26 18:46:09 -0700 | [diff] [blame] | 302 | // Deleter for unique_handle. Adapted from many sources, including: |
| 303 | // http://stackoverflow.com/questions/14841396/stdunique-ptr-deleters-and-the-win32-api |
| 304 | // https://visualstudiomagazine.com/articles/2013/09/01/get-a-handle-on-the-windows-api.aspx |
| 305 | class handle_deleter { |
| 306 | public: |
| 307 | typedef HANDLE pointer; |
| 308 | |
| 309 | void operator()(HANDLE h); |
| 310 | }; |
| 311 | |
| 312 | // Like std::unique_ptr, but for Windows HANDLE objects that should be |
| 313 | // CloseHandle()'d. Operator bool() only checks if the handle != nullptr, |
| 314 | // but does not check if the handle != INVALID_HANDLE_VALUE. |
| 315 | typedef std::unique_ptr<HANDLE, handle_deleter> unique_handle; |
| 316 | |
Spencer Low | f373c35 | 2015-11-15 16:29:36 -0800 | [diff] [blame] | 317 | namespace internal { |
| 318 | |
| 319 | size_t ParseCompleteUTF8(const char* first, const char* last, std::vector<char>* remaining_bytes); |
| 320 | |
| 321 | } |
| 322 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 323 | #else /* !_WIN32 a.k.a. Unix */ |
| 324 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 325 | #include <fcntl.h> |
Spencer Low | 753d485 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 326 | #include <netdb.h> |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 327 | #include <netinet/in.h> |
| 328 | #include <netinet/tcp.h> |
Elliott Hughes | 9dcbc21 | 2018-09-20 13:59:49 -0700 | [diff] [blame] | 329 | #include <poll.h> |
| 330 | #include <pthread.h> |
| 331 | #include <signal.h> |
| 332 | #include <stdarg.h> |
| 333 | #include <stdint.h> |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 334 | #include <string.h> |
Elliott Hughes | 9dcbc21 | 2018-09-20 13:59:49 -0700 | [diff] [blame] | 335 | #include <sys/stat.h> |
| 336 | #include <sys/wait.h> |
Kenny Root | eac025c | 2012-10-12 15:26:45 -0700 | [diff] [blame] | 337 | #include <unistd.h> |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 338 | |
Alex Vallée | 28d1f8d | 2015-05-06 16:26:00 -0400 | [diff] [blame] | 339 | #include <string> |
| 340 | |
Elliott Hughes | 9dcbc21 | 2018-09-20 13:59:49 -0700 | [diff] [blame] | 341 | #include <cutils/sockets.h> |
| 342 | |
Elliott Hughes | d189cfb | 2015-07-30 17:42:01 -0700 | [diff] [blame] | 343 | #define OS_PATH_SEPARATORS "/" |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 344 | #define OS_PATH_SEPARATOR '/' |
| 345 | #define OS_PATH_SEPARATOR_STR "/" |
Benoit Goby | 2cc19e4 | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 346 | #define ENV_PATH_SEPARATOR_STR ":" |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 347 | |
Josh Gao | 8acf06c | 2015-11-07 15:38:19 -0800 | [diff] [blame] | 348 | static __inline__ bool adb_is_separator(char c) { |
| 349 | return c == '/'; |
| 350 | } |
| 351 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 352 | static __inline__ void close_on_exec(borrowed_fd fd) { |
| 353 | fcntl(fd.get(), F_SETFD, FD_CLOEXEC); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 354 | } |
| 355 | |
Spencer Low | 3a2421b | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 356 | // Open a file and return a file descriptor that may be used with unix_read(), |
| 357 | // unix_write(), unix_close(), but not adb_read(), adb_write(), adb_close(). |
| 358 | // |
| 359 | // On Unix, this is based on open(), so the file descriptor is a real OS file |
| 360 | // descriptor, but the Windows implementation (in sysdeps_win32.cpp) returns a |
| 361 | // file descriptor that can only be used with C Runtime APIs (which are wrapped |
| 362 | // by unix_read(), unix_write(), unix_close()). Also, the C Runtime has |
| 363 | // configurable CR/LF translation which defaults to text mode, but is settable |
| 364 | // with _setmode(). |
Josh Gao | f0c4403 | 2018-12-12 16:12:28 -0800 | [diff] [blame] | 365 | static __inline__ int unix_open(std::string_view path, int options, ...) { |
| 366 | std::string zero_terminated(path.begin(), path.end()); |
| 367 | if ((options & O_CREAT) == 0) { |
| 368 | return TEMP_FAILURE_RETRY(open(zero_terminated.c_str(), options)); |
| 369 | } else { |
| 370 | int mode; |
| 371 | va_list args; |
| 372 | va_start(args, options); |
| 373 | mode = va_arg(args, int); |
| 374 | va_end(args); |
| 375 | return TEMP_FAILURE_RETRY(open(zero_terminated.c_str(), options, mode)); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 376 | } |
| 377 | } |
| 378 | |
Spencer Low | 3a2421b | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 379 | // Similar to the two-argument adb_open(), but takes a mode parameter for file |
| 380 | // creation. See adb_open() for more info. |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 381 | static __inline__ int adb_open_mode(const char* pathname, int options, int mode) { |
| 382 | return TEMP_FAILURE_RETRY(open(pathname, options, mode)); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 383 | } |
| 384 | |
Spencer Low | 3a2421b | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 385 | // Open a file and return a file descriptor that may be used with adb_read(), |
| 386 | // adb_write(), adb_close(), but not unix_read(), unix_write(), unix_close(). |
| 387 | // |
| 388 | // On Unix, this is based on open(), but the Windows implementation (in |
| 389 | // sysdeps_win32.cpp) uses Windows native file I/O and bypasses the C Runtime |
| 390 | // and its CR/LF translation. The returned file descriptor should be used with |
| 391 | // adb_read(), adb_write(), adb_close(), etc. |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 392 | static __inline__ int adb_open(const char* pathname, int options) { |
| 393 | int fd = TEMP_FAILURE_RETRY(open(pathname, options)); |
| 394 | if (fd < 0) return -1; |
| 395 | close_on_exec(fd); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 396 | return fd; |
| 397 | } |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 398 | #undef open |
| 399 | #define open ___xxx_open |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 400 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 401 | static __inline__ int adb_shutdown(borrowed_fd fd, int direction = SHUT_RDWR) { |
| 402 | return shutdown(fd.get(), direction); |
David Pursell | 3fe11f6 | 2015-10-06 15:30:03 -0700 | [diff] [blame] | 403 | } |
Josh Gao | 96049b9 | 2018-03-23 13:03:28 -0700 | [diff] [blame] | 404 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 405 | #undef shutdown |
| 406 | #define shutdown ____xxx_shutdown |
Mike Lockwood | 81ffe17 | 2009-10-11 23:04:18 -0400 | [diff] [blame] | 407 | |
Spencer Low | 3a2421b | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 408 | // Closes a file descriptor that came from adb_open() or adb_open_mode(), but |
| 409 | // not designed to take a file descriptor from unix_open(). See the comments |
| 410 | // for adb_open() for more info. |
Josh Gao | 1b533c8 | 2016-03-04 15:15:56 -0800 | [diff] [blame] | 411 | __inline__ int adb_close(int fd) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 412 | return close(fd); |
| 413 | } |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 414 | #undef close |
| 415 | #define close ____xxx_close |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 416 | |
Casey Dahlin | 20238f2 | 2016-09-21 14:03:39 -0700 | [diff] [blame] | 417 | // On Windows, ADB has an indirection layer for file descriptors. If we get a |
| 418 | // Win32 SOCKET object from an external library, we have to map it in to that |
| 419 | // indirection layer, which this does. |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 420 | __inline__ int adb_register_socket(int s) { |
Casey Dahlin | 20238f2 | 2016-09-21 14:03:39 -0700 | [diff] [blame] | 421 | return s; |
| 422 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 423 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 424 | static __inline__ int adb_read(borrowed_fd fd, void* buf, size_t len) { |
| 425 | return TEMP_FAILURE_RETRY(read(fd.get(), buf, len)); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 426 | } |
| 427 | |
Yurii Zubrytskyi | 243d248 | 2019-07-10 17:59:34 -0700 | [diff] [blame] | 428 | static __inline__ int adb_pread(int fd, void* buf, size_t len, off64_t offset) { |
| 429 | #if defined(__APPLE__) |
| 430 | return TEMP_FAILURE_RETRY(pread(fd, buf, len, offset)); |
| 431 | #else |
| 432 | return TEMP_FAILURE_RETRY(pread64(fd, buf, len, offset)); |
| 433 | #endif |
| 434 | } |
| 435 | |
Spencer Low | 5544140 | 2015-11-07 17:34:39 -0800 | [diff] [blame] | 436 | // Like unix_read(), but does not handle EINTR. |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 437 | static __inline__ int unix_read_interruptible(borrowed_fd fd, void* buf, size_t len) { |
| 438 | return read(fd.get(), buf, len); |
Spencer Low | 5544140 | 2015-11-07 17:34:39 -0800 | [diff] [blame] | 439 | } |
| 440 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 441 | #undef read |
| 442 | #define read ___xxx_read |
Yurii Zubrytskyi | 243d248 | 2019-07-10 17:59:34 -0700 | [diff] [blame] | 443 | #undef pread |
| 444 | #define pread ___xxx_pread |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 445 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 446 | static __inline__ int adb_write(borrowed_fd fd, const void* buf, size_t len) { |
| 447 | return TEMP_FAILURE_RETRY(write(fd.get(), buf, len)); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 448 | } |
Yurii Zubrytskyi | 243d248 | 2019-07-10 17:59:34 -0700 | [diff] [blame] | 449 | |
| 450 | static __inline__ int adb_pwrite(int fd, const void* buf, size_t len, off64_t offset) { |
| 451 | #if defined(__APPLE__) |
| 452 | return TEMP_FAILURE_RETRY(pwrite(fd, buf, len, offset)); |
| 453 | #else |
| 454 | return TEMP_FAILURE_RETRY(pwrite64(fd, buf, len, offset)); |
| 455 | #endif |
| 456 | } |
| 457 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 458 | #undef write |
| 459 | #define write ___xxx_write |
Yurii Zubrytskyi | 243d248 | 2019-07-10 17:59:34 -0700 | [diff] [blame] | 460 | #undef pwrite |
| 461 | #define pwrite ___xxx_pwrite |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 462 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 463 | static __inline__ int64_t adb_lseek(borrowed_fd fd, int64_t pos, int where) { |
Elliott Hughes | 9dcbc21 | 2018-09-20 13:59:49 -0700 | [diff] [blame] | 464 | #if defined(__APPLE__) |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 465 | return lseek(fd.get(), pos, where); |
Elliott Hughes | 9dcbc21 | 2018-09-20 13:59:49 -0700 | [diff] [blame] | 466 | #else |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 467 | return lseek64(fd.get(), pos, where); |
Elliott Hughes | 9dcbc21 | 2018-09-20 13:59:49 -0700 | [diff] [blame] | 468 | #endif |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 469 | } |
Elliott Hughes | 9dcbc21 | 2018-09-20 13:59:49 -0700 | [diff] [blame] | 470 | #undef lseek |
| 471 | #define lseek ___xxx_lseek |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 472 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 473 | static __inline__ int adb_unlink(const char* path) { |
| 474 | return unlink(path); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 475 | } |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 476 | #undef unlink |
| 477 | #define unlink ___xxx_unlink |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 478 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 479 | static __inline__ int adb_creat(const char* path, int mode) { |
| 480 | int fd = TEMP_FAILURE_RETRY(creat(path, mode)); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 481 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 482 | if (fd < 0) return -1; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 483 | |
| 484 | close_on_exec(fd); |
David 'Digit' Turner | 1f1efb5 | 2009-05-18 17:36:28 +0200 | [diff] [blame] | 485 | return fd; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 486 | } |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 487 | #undef creat |
| 488 | #define creat ___xxx_creat |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 489 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 490 | static __inline__ int unix_isatty(borrowed_fd fd) { |
| 491 | return isatty(fd.get()); |
David Pursell | 5880536 | 2015-10-28 14:29:51 -0700 | [diff] [blame] | 492 | } |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 493 | #define isatty ___xxx_isatty |
David Pursell | 5880536 | 2015-10-28 14:29:51 -0700 | [diff] [blame] | 494 | |
Spencer Low | 753d485 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 495 | // Helper for network_* functions. |
| 496 | inline int _fd_set_error_str(int fd, std::string* error) { |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 497 | if (fd == -1) { |
| 498 | *error = strerror(errno); |
| 499 | } |
| 500 | return fd; |
Spencer Low | 753d485 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 501 | } |
| 502 | |
Spencer Low | 753d485 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 503 | inline int network_inaddr_any_server(int port, int type, std::string* error) { |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 504 | return _fd_set_error_str(socket_inaddr_any_server(port, type), error); |
Spencer Low | 753d485 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 505 | } |
| 506 | |
Josh Gao | 4a5a95d | 2016-08-24 18:38:44 -0700 | [diff] [blame] | 507 | inline int network_local_client(const char* name, int namespace_id, int type, std::string* error) { |
| 508 | return _fd_set_error_str(socket_local_client(name, namespace_id, type), error); |
| 509 | } |
| 510 | |
| 511 | inline int network_local_server(const char* name, int namespace_id, int type, std::string* error) { |
| 512 | return _fd_set_error_str(socket_local_server(name, namespace_id, type), error); |
Spencer Low | 753d485 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 513 | } |
| 514 | |
Josh Gao | 8d7080c | 2018-08-10 16:03:09 -0700 | [diff] [blame] | 515 | int network_connect(const std::string& host, int port, int type, int timeout, std::string* error); |
Spencer Low | 753d485 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 516 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 517 | static __inline__ int adb_socket_accept(borrowed_fd serverfd, struct sockaddr* addr, |
| 518 | socklen_t* addrlen) { |
Benoit Goby | f4ded74 | 2011-02-01 18:57:41 -0800 | [diff] [blame] | 519 | int fd; |
| 520 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 521 | fd = TEMP_FAILURE_RETRY(accept(serverfd.get(), addr, addrlen)); |
| 522 | if (fd >= 0) close_on_exec(fd); |
Benoit Goby | f4ded74 | 2011-02-01 18:57:41 -0800 | [diff] [blame] | 523 | |
| 524 | return fd; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 525 | } |
| 526 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 527 | #undef accept |
| 528 | #define accept ___xxx_accept |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 529 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 530 | inline int adb_socket_get_local_port(borrowed_fd fd) { |
| 531 | return socket_get_local_port(fd.get()); |
David Pursell | 19d0c23 | 2016-04-07 11:25:48 -0700 | [diff] [blame] | 532 | } |
| 533 | |
Spencer Low | 3a2421b | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 534 | // Operate on a file descriptor returned from unix_open() or a well-known file |
| 535 | // descriptor such as STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO. |
| 536 | // |
| 537 | // On Unix, unix_read(), unix_write(), unix_close() map to adb_read(), |
| 538 | // adb_write(), adb_close() (which all map to Unix system calls), but the |
| 539 | // Windows implementations (in the ifdef above and in sysdeps_win32.cpp) call |
| 540 | // into the C Runtime and its configurable CR/LF translation (which is settable |
| 541 | // via _setmode()). |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 542 | #define unix_read adb_read |
| 543 | #define unix_write adb_write |
Spencer Low | 04b575d | 2018-09-02 19:19:39 -0700 | [diff] [blame] | 544 | #define unix_lseek adb_lseek |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 545 | #define unix_close adb_close |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 546 | |
Siva Velusamy | 2669cf9 | 2015-08-28 16:37:29 -0700 | [diff] [blame] | 547 | static __inline__ int adb_thread_setname(const std::string& name) { |
| 548 | #ifdef __APPLE__ |
| 549 | return pthread_setname_np(name.c_str()); |
| 550 | #else |
Elliott Hughes | 3bb1b57 | 2017-08-02 13:22:38 -0700 | [diff] [blame] | 551 | // Both bionic and glibc's pthread_setname_np fails rather than truncating long strings. |
| 552 | // glibc doesn't have strlcpy, so we have to fake it. |
| 553 | char buf[16]; // MAX_TASK_COMM_LEN, but that's not exported by the kernel headers. |
| 554 | strncpy(buf, name.c_str(), sizeof(buf) - 1); |
| 555 | buf[sizeof(buf) - 1] = '\0'; |
| 556 | return pthread_setname_np(pthread_self(), buf); |
Siva Velusamy | 2669cf9 | 2015-08-28 16:37:29 -0700 | [diff] [blame] | 557 | #endif |
| 558 | } |
| 559 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 560 | static __inline__ int adb_setsockopt(borrowed_fd fd, int level, int optname, const void* optval, |
| 561 | socklen_t optlen) { |
| 562 | return setsockopt(fd.get(), level, optname, optval, optlen); |
Spencer Low | 31aafa6 | 2015-01-25 14:40:16 -0800 | [diff] [blame] | 563 | } |
| 564 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 565 | #undef setsockopt |
| 566 | #define setsockopt ___xxx_setsockopt |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 567 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 568 | static __inline__ int unix_socketpair(int d, int type, int protocol, int sv[2]) { |
| 569 | return socketpair(d, type, protocol, sv); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 570 | } |
| 571 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 572 | static __inline__ int adb_socketpair(int sv[2]) { |
| 573 | int rc; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 574 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 575 | rc = unix_socketpair(AF_UNIX, SOCK_STREAM, 0, sv); |
| 576 | if (rc < 0) return -1; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 577 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 578 | close_on_exec(sv[0]); |
| 579 | close_on_exec(sv[1]); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 580 | return 0; |
| 581 | } |
| 582 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 583 | #undef socketpair |
| 584 | #define socketpair ___xxx_socketpair |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 585 | |
Josh Gao | e738812 | 2016-02-16 17:34:53 -0800 | [diff] [blame] | 586 | typedef struct pollfd adb_pollfd; |
| 587 | static __inline__ int adb_poll(adb_pollfd* fds, size_t nfds, int timeout) { |
| 588 | return TEMP_FAILURE_RETRY(poll(fds, nfds, timeout)); |
| 589 | } |
| 590 | |
| 591 | #define poll ___xxx_poll |
| 592 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 593 | static __inline__ int adb_mkdir(const std::string& path, int mode) { |
Alex Vallée | 28d1f8d | 2015-05-06 16:26:00 -0400 | [diff] [blame] | 594 | return mkdir(path.c_str(), mode); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 595 | } |
Alex Vallée | 28d1f8d | 2015-05-06 16:26:00 -0400 | [diff] [blame] | 596 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 597 | #undef mkdir |
| 598 | #define mkdir ___xxx_mkdir |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 599 | |
Alex Vallée | 28d1f8d | 2015-05-06 16:26:00 -0400 | [diff] [blame] | 600 | static __inline__ int adb_is_absolute_host_path(const char* path) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 601 | return path[0] == '/'; |
| 602 | } |
| 603 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 604 | #endif /* !_WIN32 */ |
| 605 | |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 606 | static inline void disable_tcp_nagle(borrowed_fd fd) { |
Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 607 | int off = 1; |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 608 | adb_setsockopt(fd.get(), IPPROTO_TCP, TCP_NODELAY, &off, sizeof(off)); |
Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 609 | } |
| 610 | |
David Pursell | c25a34e | 2016-02-22 14:27:23 -0800 | [diff] [blame] | 611 | // Sets TCP socket |fd| to send a keepalive TCP message every |interval_sec| seconds. Set |
| 612 | // |interval_sec| to 0 to disable keepalives. If keepalives are enabled, the connection will be |
| 613 | // configured to drop after 10 missed keepalives. Returns true on success. |
Josh Gao | 90228a6 | 2019-04-25 14:04:57 -0700 | [diff] [blame] | 614 | bool set_tcp_keepalive(borrowed_fd fd, int interval_sec); |
David Pursell | c25a34e | 2016-02-22 14:27:23 -0800 | [diff] [blame] | 615 | |
Elliott Hughes | 801066a | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 616 | #if defined(_WIN32) |
| 617 | // Win32 defines ERROR, which we don't need, but which conflicts with google3 logging. |
| 618 | #undef ERROR |
| 619 | #endif |
| 620 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 621 | #endif /* _ADB_SYSDEPS_H */ |