| 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 | |
| Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 17 | #include <dirent.h> |
| 18 | #include <errno.h> |
| Spencer Low | 803451e | 2015-05-13 00:02:55 -0700 | [diff] [blame] | 19 | #include <inttypes.h> |
| Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 20 | #include <limits.h> |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 21 | #include <stdio.h> |
| 22 | #include <stdlib.h> |
| 23 | #include <string.h> |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 24 | #include <sys/stat.h> |
| 25 | #include <sys/time.h> |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 26 | #include <sys/types.h> |
| Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 27 | #include <time.h> |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 28 | #include <unistd.h> |
| Greg Hackmann | 8b68914 | 2014-05-06 08:48:18 -0700 | [diff] [blame] | 29 | #include <utime.h> |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 30 | |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 31 | #include <functional> |
| Elliott Hughes | 4e7848d | 2015-08-24 14:49:43 -0700 | [diff] [blame] | 32 | #include <memory> |
| Elliott Hughes | 6c73bfc | 2015-10-27 13:40:35 -0700 | [diff] [blame] | 33 | #include <vector> |
| Elliott Hughes | 4e7848d | 2015-08-24 14:49:43 -0700 | [diff] [blame] | 34 | |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 35 | #include "sysdeps.h" |
| Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 36 | |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 37 | #include "adb.h" |
| 38 | #include "adb_client.h" |
| Dan Albert | 66a91b0 | 2015-02-24 21:26:58 -0800 | [diff] [blame] | 39 | #include "adb_io.h" |
| Alex Vallée | e916315 | 2015-05-06 17:22:25 -0400 | [diff] [blame] | 40 | #include "adb_utils.h" |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 41 | #include "file_sync_service.h" |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 42 | #include "line_printer.h" |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 43 | |
| Elliott Hughes | f55ead9 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 44 | #include <android-base/file.h> |
| 45 | #include <android-base/strings.h> |
| 46 | #include <android-base/stringprintf.h> |
| Elliott Hughes | d189cfb | 2015-07-30 17:42:01 -0700 | [diff] [blame] | 47 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 48 | struct syncsendbuf { |
| 49 | unsigned id; |
| 50 | unsigned size; |
| 51 | char data[SYNC_DATA_MAX]; |
| 52 | }; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 53 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 54 | class SyncConnection { |
| 55 | public: |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 56 | SyncConnection() : total_bytes(0), start_time_ms_(CurrentTimeMs()) { |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 57 | max = SYNC_DATA_MAX; // TODO: decide at runtime. |
| 58 | |
| 59 | std::string error; |
| 60 | fd = adb_connect("sync:", &error); |
| 61 | if (fd < 0) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 62 | Error("connect failed: %s", error.c_str()); |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 63 | } |
| 64 | } |
| 65 | |
| 66 | ~SyncConnection() { |
| 67 | if (!IsValid()) return; |
| 68 | |
| Spencer Low | cc4a4b1 | 2015-10-14 17:32:44 -0700 | [diff] [blame] | 69 | if (SendQuit()) { |
| 70 | // We sent a quit command, so the server should be doing orderly |
| 71 | // shutdown soon. But if we encountered an error while we were using |
| 72 | // the connection, the server might still be sending data (before |
| 73 | // doing orderly shutdown), in which case we won't wait for all of |
| 74 | // the data nor the coming orderly shutdown. In the common success |
| 75 | // case, this will wait for the server to do orderly shutdown. |
| 76 | ReadOrderlyShutdown(fd); |
| 77 | } |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 78 | adb_close(fd); |
| 79 | } |
| 80 | |
| 81 | bool IsValid() { return fd >= 0; } |
| 82 | |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 83 | bool SendRequest(int id, const char* path_and_mode) { |
| 84 | size_t path_length = strlen(path_and_mode); |
| 85 | if (path_length > 1024) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 86 | Error("SendRequest failed: path too long: %zu", path_length); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 87 | errno = ENAMETOOLONG; |
| 88 | return false; |
| 89 | } |
| 90 | |
| 91 | // Sending header and payload in a single write makes a noticeable |
| 92 | // difference to "adb sync" performance. |
| Elliott Hughes | 6c73bfc | 2015-10-27 13:40:35 -0700 | [diff] [blame] | 93 | std::vector<char> buf(sizeof(SyncRequest) + path_length); |
| 94 | SyncRequest* req = reinterpret_cast<SyncRequest*>(&buf[0]); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 95 | req->id = id; |
| 96 | req->path_length = path_length; |
| 97 | char* data = reinterpret_cast<char*>(req + 1); |
| 98 | memcpy(data, path_and_mode, path_length); |
| 99 | |
| Elliott Hughes | 6c73bfc | 2015-10-27 13:40:35 -0700 | [diff] [blame] | 100 | return WriteFdExactly(fd, &buf[0], buf.size()); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | // Sending header, payload, and footer in a single write makes a huge |
| 104 | // difference to "adb sync" performance. |
| 105 | bool SendSmallFile(const char* path_and_mode, |
| Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 106 | const char* lpath, const char* rpath, |
| Elliott Hughes | 7275d80 | 2015-11-20 17:35:17 -0800 | [diff] [blame] | 107 | unsigned mtime, |
| 108 | const char* data, size_t data_length) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 109 | Print(rpath); |
| 110 | |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 111 | size_t path_length = strlen(path_and_mode); |
| 112 | if (path_length > 1024) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 113 | Error("SendSmallFile failed: path too long: %zu", path_length); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 114 | errno = ENAMETOOLONG; |
| 115 | return false; |
| 116 | } |
| 117 | |
| Elliott Hughes | 6c73bfc | 2015-10-27 13:40:35 -0700 | [diff] [blame] | 118 | std::vector<char> buf(sizeof(SyncRequest) + path_length + |
| Elliott Hughes | 7275d80 | 2015-11-20 17:35:17 -0800 | [diff] [blame] | 119 | sizeof(SyncRequest) + data_length + |
| 120 | sizeof(SyncRequest)); |
| Elliott Hughes | 6c73bfc | 2015-10-27 13:40:35 -0700 | [diff] [blame] | 121 | char* p = &buf[0]; |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 122 | |
| 123 | SyncRequest* req_send = reinterpret_cast<SyncRequest*>(p); |
| 124 | req_send->id = ID_SEND; |
| 125 | req_send->path_length = path_length; |
| 126 | p += sizeof(SyncRequest); |
| 127 | memcpy(p, path_and_mode, path_length); |
| 128 | p += path_length; |
| 129 | |
| 130 | SyncRequest* req_data = reinterpret_cast<SyncRequest*>(p); |
| 131 | req_data->id = ID_DATA; |
| 132 | req_data->path_length = data_length; |
| 133 | p += sizeof(SyncRequest); |
| 134 | memcpy(p, data, data_length); |
| 135 | p += data_length; |
| 136 | |
| 137 | SyncRequest* req_done = reinterpret_cast<SyncRequest*>(p); |
| 138 | req_done->id = ID_DONE; |
| 139 | req_done->path_length = mtime; |
| 140 | p += sizeof(SyncRequest); |
| 141 | |
| Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 142 | WriteOrDie(lpath, rpath, &buf[0], (p - &buf[0])); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 143 | total_bytes += data_length; |
| 144 | return true; |
| 145 | } |
| 146 | |
| Elliott Hughes | 7275d80 | 2015-11-20 17:35:17 -0800 | [diff] [blame] | 147 | bool SendLargeFile(const char* path_and_mode, |
| 148 | const char* lpath, const char* rpath, |
| 149 | unsigned mtime) { |
| 150 | if (!SendRequest(ID_SEND, path_and_mode)) { |
| 151 | Error("failed to send ID_SEND message '%s': %s", path_and_mode, strerror(errno)); |
| 152 | return false; |
| 153 | } |
| 154 | |
| 155 | struct stat st; |
| 156 | if (stat(lpath, &st) == -1) { |
| 157 | Error("cannot stat '%s': %s", lpath, strerror(errno)); |
| 158 | return false; |
| 159 | } |
| 160 | |
| 161 | uint64_t total_size = st.st_size; |
| 162 | uint64_t bytes_copied = 0; |
| 163 | |
| 164 | int lfd = adb_open(lpath, O_RDONLY); |
| 165 | if (lfd < 0) { |
| Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 166 | Error("opening '%s' locally failed: %s", lpath, strerror(errno)); |
| Elliott Hughes | 7275d80 | 2015-11-20 17:35:17 -0800 | [diff] [blame] | 167 | return false; |
| 168 | } |
| 169 | |
| 170 | syncsendbuf sbuf; |
| 171 | sbuf.id = ID_DATA; |
| 172 | while (true) { |
| Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 173 | int bytes_read = adb_read(lfd, sbuf.data, max); |
| 174 | if (bytes_read == -1) { |
| 175 | Error("reading '%s' locally failed: %s", lpath, strerror(errno)); |
| 176 | adb_close(lfd); |
| 177 | return false; |
| 178 | } else if (bytes_read == 0) { |
| Elliott Hughes | 7275d80 | 2015-11-20 17:35:17 -0800 | [diff] [blame] | 179 | break; |
| 180 | } |
| 181 | |
| Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 182 | sbuf.size = bytes_read; |
| 183 | WriteOrDie(lpath, rpath, &sbuf, sizeof(SyncRequest) + bytes_read); |
| Elliott Hughes | 7275d80 | 2015-11-20 17:35:17 -0800 | [diff] [blame] | 184 | |
| Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 185 | total_bytes += bytes_read; |
| 186 | bytes_copied += bytes_read; |
| Elliott Hughes | 7275d80 | 2015-11-20 17:35:17 -0800 | [diff] [blame] | 187 | |
| Josh Gao | 9b52364 | 2015-11-30 10:53:22 -0800 | [diff] [blame] | 188 | if (total_size == 0) { |
| 189 | // This case can happen if we're racing against something that wrote to the file |
| 190 | // between our stat and our read, or if we're reading a magic file that lies about |
| 191 | // its size. |
| 192 | Printf("%s: ?%%", rpath); |
| 193 | } else { |
| 194 | int percentage = static_cast<int>(bytes_copied * 100 / total_size); |
| 195 | Printf("%s: %d%%", rpath, percentage); |
| 196 | } |
| Elliott Hughes | 7275d80 | 2015-11-20 17:35:17 -0800 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | adb_close(lfd); |
| 200 | |
| 201 | syncmsg msg; |
| 202 | msg.data.id = ID_DONE; |
| 203 | msg.data.size = mtime; |
| Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 204 | return WriteOrDie(lpath, rpath, &msg.data, sizeof(msg.data)); |
| Elliott Hughes | 7275d80 | 2015-11-20 17:35:17 -0800 | [diff] [blame] | 205 | } |
| 206 | |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 207 | bool CopyDone(const char* from, const char* to) { |
| 208 | syncmsg msg; |
| 209 | if (!ReadFdExactly(fd, &msg.status, sizeof(msg.status))) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 210 | Error("failed to copy '%s' to '%s': no ID_DONE: %s", from, to, strerror(errno)); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 211 | return false; |
| 212 | } |
| 213 | if (msg.status.id == ID_OKAY) { |
| 214 | return true; |
| 215 | } |
| 216 | if (msg.status.id != ID_FAIL) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 217 | Error("failed to copy '%s' to '%s': unknown reason %d", from, to, msg.status.id); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 218 | return false; |
| 219 | } |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 220 | return ReportCopyFailure(from, to, msg); |
| 221 | } |
| 222 | |
| 223 | bool ReportCopyFailure(const char* from, const char* to, const syncmsg& msg) { |
| Elliott Hughes | 6c73bfc | 2015-10-27 13:40:35 -0700 | [diff] [blame] | 224 | std::vector<char> buf(msg.status.msglen + 1); |
| 225 | if (!ReadFdExactly(fd, &buf[0], msg.status.msglen)) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 226 | Error("failed to copy '%s' to '%s'; failed to read reason (!): %s", |
| 227 | from, to, strerror(errno)); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 228 | return false; |
| 229 | } |
| Elliott Hughes | 6c73bfc | 2015-10-27 13:40:35 -0700 | [diff] [blame] | 230 | buf[msg.status.msglen] = 0; |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 231 | Error("failed to copy '%s' to '%s': %s", from, to, &buf[0]); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 232 | return false; |
| 233 | } |
| 234 | |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 235 | std::string TransferRate() { |
| 236 | uint64_t ms = CurrentTimeMs() - start_time_ms_; |
| 237 | if (total_bytes == 0 || ms == 0) return ""; |
| 238 | |
| 239 | double s = static_cast<double>(ms) / 1000LL; |
| 240 | double rate = (static_cast<double>(total_bytes) / s) / (1024*1024); |
| 241 | return android::base::StringPrintf(" %.1f MB/s (%" PRId64 " bytes in %.3fs)", |
| 242 | rate, total_bytes, s); |
| 243 | } |
| 244 | |
| 245 | void Print(const std::string& s) { |
| 246 | // TODO: we actually don't want ELIDE; we want "ELIDE if smart, FULL if dumb". |
| 247 | line_printer_.Print(s, LinePrinter::ELIDE); |
| 248 | } |
| 249 | |
| Josh Gao | cbf485f | 2015-11-02 17:15:57 -0800 | [diff] [blame] | 250 | void Printf(const char* fmt, ...) __attribute__((__format__(ADB_FORMAT_ARCHETYPE, 2, 3))) { |
| 251 | std::string s; |
| 252 | va_list ap; |
| 253 | va_start(ap, fmt); |
| 254 | android::base::StringAppendV(&s, fmt, ap); |
| 255 | va_end(ap); |
| 256 | |
| 257 | Print(s); |
| 258 | } |
| 259 | |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 260 | void Error(const char* fmt, ...) __attribute__((__format__(ADB_FORMAT_ARCHETYPE, 2, 3))) { |
| 261 | std::string s = "adb: error: "; |
| 262 | |
| 263 | va_list ap; |
| 264 | va_start(ap, fmt); |
| 265 | android::base::StringAppendV(&s, fmt, ap); |
| 266 | va_end(ap); |
| 267 | |
| 268 | line_printer_.Print(s, LinePrinter::FULL); |
| 269 | } |
| 270 | |
| Josh Gao | a544cc6 | 2015-11-07 17:18:44 -0800 | [diff] [blame] | 271 | void Warning(const char* fmt, ...) __attribute__((__format__(ADB_FORMAT_ARCHETYPE, 2, 3))) { |
| 272 | std::string s = "adb: warning: "; |
| 273 | |
| 274 | va_list ap; |
| 275 | va_start(ap, fmt); |
| 276 | android::base::StringAppendV(&s, fmt, ap); |
| 277 | va_end(ap); |
| 278 | |
| 279 | line_printer_.Print(s, LinePrinter::FULL); |
| 280 | } |
| 281 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 282 | uint64_t total_bytes; |
| 283 | |
| 284 | // TODO: add a char[max] buffer here, to replace syncsendbuf... |
| 285 | int fd; |
| 286 | size_t max; |
| 287 | |
| 288 | private: |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 289 | uint64_t start_time_ms_; |
| 290 | |
| 291 | LinePrinter line_printer_; |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 292 | |
| Spencer Low | cc4a4b1 | 2015-10-14 17:32:44 -0700 | [diff] [blame] | 293 | bool SendQuit() { |
| 294 | return SendRequest(ID_QUIT, ""); // TODO: add a SendResponse? |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 295 | } |
| 296 | |
| Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 297 | bool WriteOrDie(const char* from, const char* to, const void* data, size_t data_length) { |
| 298 | if (!WriteFdExactly(fd, data, data_length)) { |
| 299 | if (errno == ECONNRESET) { |
| 300 | // Assume adbd told us why it was closing the connection, and |
| 301 | // try to read failure reason from adbd. |
| 302 | syncmsg msg; |
| 303 | if (!ReadFdExactly(fd, &msg.status, sizeof(msg.status))) { |
| 304 | Error("failed to copy '%s' to '%s': no response: %s", from, to, strerror(errno)); |
| 305 | } else if (msg.status.id != ID_FAIL) { |
| 306 | Error("failed to copy '%s' to '%s': not ID_FAIL: %d", from, to, msg.status.id); |
| 307 | } else { |
| 308 | ReportCopyFailure(from, to, msg); |
| 309 | } |
| 310 | } else { |
| 311 | Error("%zu-byte write failed: %s", data_length, strerror(errno)); |
| 312 | } |
| 313 | _exit(1); |
| 314 | } |
| 315 | return true; |
| 316 | } |
| 317 | |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 318 | static uint64_t CurrentTimeMs() { |
| 319 | struct timeval tv; |
| 320 | gettimeofday(&tv, 0); // (Not clock_gettime because of Mac/Windows.) |
| 321 | return static_cast<uint64_t>(tv.tv_sec) * 1000 + tv.tv_usec / 1000; |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 322 | } |
| 323 | }; |
| 324 | |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 325 | typedef void (sync_ls_cb)(unsigned mode, unsigned size, unsigned time, const char* name); |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 326 | |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 327 | static bool sync_ls(SyncConnection& sc, const char* path, |
| 328 | std::function<sync_ls_cb> func) { |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 329 | if (!sc.SendRequest(ID_LIST, path)) return false; |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 330 | |
| 331 | while (true) { |
| 332 | syncmsg msg; |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 333 | if (!ReadFdExactly(sc.fd, &msg.dent, sizeof(msg.dent))) return false; |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 334 | |
| 335 | if (msg.dent.id == ID_DONE) return true; |
| 336 | if (msg.dent.id != ID_DENT) return false; |
| 337 | |
| Elliott Hughes | 9e8e355 | 2015-08-24 14:27:03 -0700 | [diff] [blame] | 338 | size_t len = msg.dent.namelen; |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 339 | if (len > 256) return false; // TODO: resize buffer? continue? |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 340 | |
| Elliott Hughes | d189cfb | 2015-07-30 17:42:01 -0700 | [diff] [blame] | 341 | char buf[257]; |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 342 | if (!ReadFdExactly(sc.fd, buf, len)) return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 343 | buf[len] = 0; |
| 344 | |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 345 | func(msg.dent.mode, msg.dent.size, msg.dent.time, buf); |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 346 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 347 | } |
| 348 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 349 | static bool sync_finish_stat(SyncConnection& sc, unsigned int* timestamp, |
| 350 | unsigned int* mode, unsigned int* size) { |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 351 | syncmsg msg; |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 352 | if (!ReadFdExactly(sc.fd, &msg.stat, sizeof(msg.stat)) || msg.stat.id != ID_STAT) { |
| 353 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 354 | } |
| 355 | |
| Elliott Hughes | 9e8e355 | 2015-08-24 14:27:03 -0700 | [diff] [blame] | 356 | if (timestamp) *timestamp = msg.stat.time; |
| 357 | if (mode) *mode = msg.stat.mode; |
| 358 | if (size) *size = msg.stat.size; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 359 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 360 | return true; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 361 | } |
| 362 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 363 | static bool sync_stat(SyncConnection& sc, const char* path, |
| 364 | unsigned int* timestamp, unsigned int* mode, unsigned int* size) { |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 365 | return sc.SendRequest(ID_STAT, path) && sync_finish_stat(sc, timestamp, mode, size); |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 366 | } |
| 367 | |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 368 | static bool sync_send(SyncConnection& sc, const char* lpath, const char* rpath, |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 369 | unsigned mtime, mode_t mode) |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 370 | { |
| 371 | std::string path_and_mode = android::base::StringPrintf("%s,%d", rpath, mode); |
| 372 | |
| 373 | if (S_ISLNK(mode)) { |
| 374 | #if !defined(_WIN32) |
| 375 | char buf[PATH_MAX]; |
| 376 | ssize_t data_length = readlink(lpath, buf, PATH_MAX - 1); |
| 377 | if (data_length == -1) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 378 | sc.Error("readlink '%s' failed: %s", lpath, strerror(errno)); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 379 | return false; |
| 380 | } |
| 381 | buf[data_length++] = '\0'; |
| 382 | |
| Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 383 | if (!sc.SendSmallFile(path_and_mode.c_str(), lpath, rpath, mtime, buf, data_length)) { |
| 384 | return false; |
| 385 | } |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 386 | return sc.CopyDone(lpath, rpath); |
| 387 | #endif |
| 388 | } |
| 389 | |
| 390 | if (!S_ISREG(mode)) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 391 | sc.Error("local file '%s' has unsupported mode: 0o%o", lpath, mode); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 392 | return false; |
| 393 | } |
| 394 | |
| 395 | struct stat st; |
| 396 | if (stat(lpath, &st) == -1) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 397 | sc.Error("failed to stat local file '%s': %s", lpath, strerror(errno)); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 398 | return false; |
| 399 | } |
| 400 | if (st.st_size < SYNC_DATA_MAX) { |
| 401 | std::string data; |
| 402 | if (!android::base::ReadFileToString(lpath, &data)) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 403 | sc.Error("failed to read all of '%s': %s", lpath, strerror(errno)); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 404 | return false; |
| 405 | } |
| Elliott Hughes | 54e3efe | 2015-11-20 22:01:06 -0800 | [diff] [blame] | 406 | if (!sc.SendSmallFile(path_and_mode.c_str(), lpath, rpath, mtime, |
| 407 | data.data(), data.size())) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 408 | return false; |
| 409 | } |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 410 | } else { |
| Elliott Hughes | 7275d80 | 2015-11-20 17:35:17 -0800 | [diff] [blame] | 411 | if (!sc.SendLargeFile(path_and_mode.c_str(), lpath, rpath, mtime)) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 412 | return false; |
| 413 | } |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 414 | } |
| 415 | return sc.CopyDone(lpath, rpath); |
| 416 | } |
| 417 | |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 418 | static bool sync_recv(SyncConnection& sc, const char* rpath, const char* lpath) { |
| 419 | sc.Print(rpath); |
| 420 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 421 | unsigned size = 0; |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 422 | if (!sync_stat(sc, rpath, nullptr, nullptr, &size)) return false; |
| Mark Lindner | 9f9d145 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 423 | |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 424 | if (!sc.SendRequest(ID_RECV, rpath)) return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 425 | |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 426 | adb_unlink(lpath); |
| Josh Gao | e3a1216 | 2015-11-17 14:08:20 -0800 | [diff] [blame] | 427 | const std::string dirpath = adb_dirname(lpath); |
| 428 | if (!mkdirs(dirpath.c_str())) { |
| 429 | sc.Error("failed to create parent directory '%s': %s", dirpath.c_str(), strerror(errno)); |
| Josh Gao | fe1a612 | 2015-11-04 14:51:23 -0800 | [diff] [blame] | 430 | return false; |
| 431 | } |
| 432 | |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 433 | int lfd = adb_creat(lpath, 0644); |
| 434 | if (lfd < 0) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 435 | sc.Error("cannot create '%s': %s", lpath, strerror(errno)); |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 436 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 437 | } |
| 438 | |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 439 | uint64_t bytes_copied = 0; |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 440 | while (true) { |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 441 | syncmsg msg; |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 442 | if (!ReadFdExactly(sc.fd, &msg.data, sizeof(msg.data))) { |
| Spencer Low | c1a3133 | 2015-08-28 01:07:30 -0700 | [diff] [blame] | 443 | adb_close(lfd); |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 444 | adb_unlink(lpath); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 445 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 446 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 447 | |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 448 | if (msg.data.id == ID_DONE) break; |
| 449 | |
| 450 | if (msg.data.id != ID_DATA) { |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 451 | adb_close(lfd); |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 452 | adb_unlink(lpath); |
| 453 | sc.ReportCopyFailure(rpath, lpath, msg); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 454 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 455 | } |
| 456 | |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 457 | if (msg.data.size > sc.max) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 458 | sc.Error("msg.data.size too large: %u (max %zu)", msg.data.size, sc.max); |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 459 | adb_close(lfd); |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 460 | adb_unlink(lpath); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 461 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 462 | } |
| 463 | |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 464 | char buffer[SYNC_DATA_MAX]; |
| 465 | if (!ReadFdExactly(sc.fd, buffer, msg.data.size)) { |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 466 | adb_close(lfd); |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 467 | adb_unlink(lpath); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 468 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 469 | } |
| 470 | |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 471 | if (!WriteFdExactly(lfd, buffer, msg.data.size)) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 472 | sc.Error("cannot write '%s': %s", lpath, strerror(errno)); |
| Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 473 | adb_close(lfd); |
| 474 | adb_unlink(lpath); |
| 475 | return false; |
| 476 | } |
| 477 | |
| 478 | sc.total_bytes += msg.data.size; |
| Mark Lindner | 9f9d145 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 479 | |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 480 | bytes_copied += msg.data.size; |
| 481 | |
| Josh Gao | 9b52364 | 2015-11-30 10:53:22 -0800 | [diff] [blame] | 482 | if (size == 0) { |
| 483 | // This case can happen if we're racing against something that wrote to the file between |
| 484 | // our stat and our read, or if we're reading a magic file that lies about its size. |
| 485 | sc.Printf("%s: ?%%", rpath); |
| 486 | } else { |
| 487 | int percentage = static_cast<int>(bytes_copied * 100 / size); |
| 488 | sc.Printf("%s: %d%%", rpath, percentage); |
| 489 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | adb_close(lfd); |
| Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 493 | return true; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 494 | } |
| 495 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 496 | bool do_sync_ls(const char* path) { |
| 497 | SyncConnection sc; |
| 498 | if (!sc.IsValid()) return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 499 | |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 500 | return sync_ls(sc, path, [](unsigned mode, unsigned size, unsigned time, |
| 501 | const char* name) { |
| 502 | printf("%08x %08x %08x %s\n", mode, size, time, name); |
| 503 | }); |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 504 | } |
| 505 | |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 506 | static void ensure_trailing_separator(std::string& lpath, std::string& rpath) { |
| 507 | if (!adb_is_separator(lpath.back())) { |
| 508 | lpath.push_back(OS_PATH_SEPARATOR); |
| 509 | } |
| 510 | if (rpath.back() != '/') { |
| 511 | rpath.push_back('/'); |
| 512 | } |
| 513 | } |
| 514 | |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 515 | struct copyinfo { |
| 516 | std::string lpath; |
| 517 | std::string rpath; |
| 518 | unsigned int time = 0; |
| 519 | unsigned int mode; |
| 520 | uint64_t size = 0; |
| 521 | bool skip = false; |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 522 | |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 523 | copyinfo(const std::string& lpath, const std::string& rpath, const std::string& name, |
| 524 | unsigned int mode) |
| 525 | : lpath(lpath), rpath(rpath), mode(mode) { |
| 526 | ensure_trailing_separator(this->lpath, this->rpath); |
| 527 | this->lpath.append(name); |
| 528 | this->rpath.append(name); |
| 529 | |
| 530 | if (S_ISDIR(mode)) { |
| 531 | ensure_trailing_separator(this->lpath, this->rpath); |
| 532 | } |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 533 | } |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 534 | }; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 535 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 536 | static bool IsDotOrDotDot(const char* name) { |
| 537 | return name[0] == '.' && (name[1] == '\0' || (name[1] == '.' && name[2] == '\0')); |
| 538 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 539 | |
| Josh Gao | 8efa646 | 2015-11-03 15:26:38 -0800 | [diff] [blame] | 540 | static bool local_build_list(SyncConnection& sc, std::vector<copyinfo>* filelist, |
| 541 | const std::string& lpath, |
| 542 | const std::string& rpath) { |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 543 | std::vector<copyinfo> dirlist; |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 544 | std::unique_ptr<DIR, int (*)(DIR*)> dir(opendir(lpath.c_str()), closedir); |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 545 | if (!dir) { |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 546 | sc.Error("cannot open '%s': %s", lpath.c_str(), strerror(errno)); |
| Josh Gao | 8efa646 | 2015-11-03 15:26:38 -0800 | [diff] [blame] | 547 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 548 | } |
| 549 | |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 550 | bool empty_dir = true; |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 551 | dirent* de; |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 552 | while ((de = readdir(dir.get()))) { |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 553 | if (IsDotOrDotDot(de->d_name)) { |
| 554 | continue; |
| 555 | } |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 556 | |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 557 | empty_dir = false; |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 558 | std::string stat_path = lpath + de->d_name; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 559 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 560 | struct stat st; |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 561 | if (lstat(stat_path.c_str(), &st) == -1) { |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 562 | sc.Error("cannot lstat '%s': %s", stat_path.c_str(), |
| 563 | strerror(errno)); |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 564 | continue; |
| 565 | } |
| 566 | |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 567 | copyinfo ci(lpath, rpath, de->d_name, st.st_mode); |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 568 | if (S_ISDIR(st.st_mode)) { |
| 569 | dirlist.push_back(ci); |
| 570 | } else { |
| 571 | if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode)) { |
| 572 | sc.Error("skipping special file '%s'", lpath.c_str()); |
| Josh Gao | b3cab93 | 2015-11-30 10:21:25 -0800 | [diff] [blame] | 573 | ci.skip = true; |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 574 | } else { |
| 575 | ci.time = st.st_mtime; |
| 576 | ci.size = st.st_size; |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 577 | } |
| Josh Gao | b3cab93 | 2015-11-30 10:21:25 -0800 | [diff] [blame] | 578 | filelist->push_back(ci); |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 579 | } |
| 580 | } |
| 581 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 582 | // Close this directory and recurse. |
| 583 | dir.reset(); |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 584 | |
| 585 | // Add the current directory to the list if it was empty, to ensure that |
| 586 | // it gets created. |
| 587 | if (empty_dir) { |
| 588 | // TODO(b/25566053): Make pushing empty directories work. |
| 589 | // TODO(b/25457350): We don't preserve permissions on directories. |
| Josh Gao | a544cc6 | 2015-11-07 17:18:44 -0800 | [diff] [blame] | 590 | sc.Warning("skipping empty directory '%s'", lpath.c_str()); |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 591 | copyinfo ci(adb_dirname(lpath), adb_dirname(rpath), adb_basename(lpath), S_IFDIR); |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 592 | ci.skip = true; |
| 593 | filelist->push_back(ci); |
| 594 | return true; |
| 595 | } |
| 596 | |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 597 | for (const copyinfo& ci : dirlist) { |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 598 | local_build_list(sc, filelist, ci.lpath, ci.rpath); |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 599 | } |
| 600 | |
| Josh Gao | 8efa646 | 2015-11-03 15:26:38 -0800 | [diff] [blame] | 601 | return true; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 602 | } |
| 603 | |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 604 | static bool copy_local_dir_remote(SyncConnection& sc, std::string lpath, |
| 605 | std::string rpath, bool check_timestamps, |
| 606 | bool list_only) { |
| 607 | // Make sure that both directory paths end in a slash. |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 608 | // Both paths are known to be nonempty, so we don't need to check. |
| 609 | ensure_trailing_separator(lpath, rpath); |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 610 | |
| 611 | // Recursively build the list of files to copy. |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 612 | std::vector<copyinfo> filelist; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 613 | int pushed = 0; |
| 614 | int skipped = 0; |
| Josh Gao | 8efa646 | 2015-11-03 15:26:38 -0800 | [diff] [blame] | 615 | if (!local_build_list(sc, &filelist, lpath, rpath)) { |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 616 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 617 | } |
| 618 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 619 | if (check_timestamps) { |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 620 | for (const copyinfo& ci : filelist) { |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 621 | if (!sc.SendRequest(ID_STAT, ci.rpath.c_str())) { |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 622 | return false; |
| 623 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 624 | } |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 625 | for (copyinfo& ci : filelist) { |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 626 | unsigned int timestamp, mode, size; |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 627 | if (!sync_finish_stat(sc, ×tamp, &mode, &size)) { |
| 628 | return false; |
| 629 | } |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 630 | if (size == ci.size) { |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 631 | /* for links, we cannot update the atime/mtime */ |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 632 | if ((S_ISREG(ci.mode & mode) && timestamp == ci.time) || |
| 633 | (S_ISLNK(ci.mode & mode) && timestamp >= ci.time)) { |
| Josh Gao | cb094c6 | 2015-11-03 14:44:04 -0800 | [diff] [blame] | 634 | ci.skip = true; |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 635 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 636 | } |
| 637 | } |
| 638 | } |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 639 | |
| 640 | for (const copyinfo& ci : filelist) { |
| Josh Gao | cb094c6 | 2015-11-03 14:44:04 -0800 | [diff] [blame] | 641 | if (!ci.skip) { |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 642 | if (list_only) { |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 643 | sc.Error("would push: %s -> %s", ci.lpath.c_str(), |
| 644 | ci.rpath.c_str()); |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 645 | } else { |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 646 | if (!sync_send(sc, ci.lpath.c_str(), ci.rpath.c_str(), ci.time, |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 647 | ci.mode)) { |
| 648 | return false; |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 649 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 650 | } |
| 651 | pushed++; |
| 652 | } else { |
| 653 | skipped++; |
| 654 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 655 | } |
| 656 | |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 657 | sc.Printf("%s: %d file%s pushed. %d file%s skipped.%s\n", rpath.c_str(), |
| 658 | pushed, (pushed == 1) ? "" : "s", skipped, |
| 659 | (skipped == 1) ? "" : "s", sc.TransferRate().c_str()); |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 660 | return true; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 661 | } |
| 662 | |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 663 | bool do_sync_push(const std::vector<const char*>& srcs, const char* dst) { |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 664 | SyncConnection sc; |
| 665 | if (!sc.IsValid()) return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 666 | |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 667 | bool success = true; |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 668 | unsigned dst_mode; |
| 669 | if (!sync_stat(sc, dst, nullptr, &dst_mode, nullptr)) return false; |
| 670 | bool dst_exists = (dst_mode != 0); |
| Josh Gao | 8acf06c | 2015-11-07 15:38:19 -0800 | [diff] [blame] | 671 | bool dst_isdir = S_ISDIR(dst_mode); |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 672 | |
| Josh Gao | 8acf06c | 2015-11-07 15:38:19 -0800 | [diff] [blame] | 673 | if (!dst_isdir) { |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 674 | if (srcs.size() > 1) { |
| 675 | sc.Error("target '%s' is not a directory", dst); |
| 676 | return false; |
| 677 | } else { |
| 678 | size_t dst_len = strlen(dst); |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 679 | |
| 680 | // A path that ends with a slash doesn't have to be a directory if |
| 681 | // it doesn't exist yet. |
| 682 | if (dst[dst_len - 1] == '/' && dst_exists) { |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 683 | sc.Error("failed to access '%s': Not a directory", dst); |
| 684 | return false; |
| 685 | } |
| 686 | } |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 687 | } |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 688 | |
| 689 | for (const char* src_path : srcs) { |
| 690 | const char* dst_path = dst; |
| 691 | struct stat st; |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 692 | if (stat(src_path, &st) == -1) { |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 693 | sc.Error("cannot stat '%s': %s", src_path, strerror(errno)); |
| 694 | success = false; |
| 695 | continue; |
| 696 | } |
| 697 | |
| 698 | if (S_ISDIR(st.st_mode)) { |
| Josh Gao | 8acf06c | 2015-11-07 15:38:19 -0800 | [diff] [blame] | 699 | std::string dst_dir = dst; |
| 700 | |
| 701 | // If the destination path existed originally, the source directory |
| 702 | // should be copied as a child of the destination. |
| 703 | if (dst_exists) { |
| 704 | if (!dst_isdir) { |
| 705 | sc.Error("target '%s' is not a directory", dst); |
| 706 | return false; |
| 707 | } |
| 708 | // dst is a POSIX path, so we don't want to use the sysdeps |
| 709 | // helpers here. |
| 710 | if (dst_dir.back() != '/') { |
| 711 | dst_dir.push_back('/'); |
| 712 | } |
| 713 | dst_dir.append(adb_basename(src_path)); |
| 714 | } |
| 715 | |
| 716 | success &= copy_local_dir_remote(sc, src_path, dst_dir.c_str(), |
| 717 | false, false); |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 718 | continue; |
| 719 | } |
| 720 | |
| 721 | std::string path_holder; |
| Josh Gao | 8acf06c | 2015-11-07 15:38:19 -0800 | [diff] [blame] | 722 | if (dst_isdir) { |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 723 | // If we're copying a local file to a remote directory, |
| 724 | // we really want to copy to remote_dir + "/" + local_filename. |
| 725 | path_holder = android::base::StringPrintf( |
| 726 | "%s/%s", dst_path, adb_basename(src_path).c_str()); |
| 727 | dst_path = path_holder.c_str(); |
| 728 | } |
| 729 | success &= sync_send(sc, src_path, dst_path, st.st_mtime, st.st_mode); |
| 730 | } |
| 731 | |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 732 | sc.Print("\n"); |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 733 | return success; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 734 | } |
| 735 | |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 736 | static bool remote_symlink_isdir(SyncConnection& sc, const std::string& rpath) { |
| 737 | unsigned mode; |
| 738 | std::string dir_path = rpath; |
| 739 | dir_path.push_back('/'); |
| 740 | if (!sync_stat(sc, dir_path.c_str(), nullptr, &mode, nullptr)) { |
| 741 | sc.Error("failed to stat remote symlink '%s'", dir_path.c_str()); |
| 742 | return false; |
| 743 | } |
| 744 | return S_ISDIR(mode); |
| 745 | } |
| 746 | |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 747 | static bool remote_build_list(SyncConnection& sc, |
| 748 | std::vector<copyinfo>* filelist, |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 749 | const std::string& rpath, |
| 750 | const std::string& lpath) { |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 751 | std::vector<copyinfo> dirlist; |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 752 | std::vector<copyinfo> linklist; |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 753 | bool empty_dir = true; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 754 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 755 | // Put the files/dirs in rpath on the lists. |
| Josh Gao | b3cab93 | 2015-11-30 10:21:25 -0800 | [diff] [blame] | 756 | auto callback = [&](unsigned mode, unsigned size, unsigned time, const char* name) { |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 757 | if (IsDotOrDotDot(name)) { |
| 758 | return; |
| 759 | } |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 760 | |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 761 | // We found a child that isn't '.' or '..'. |
| 762 | empty_dir = false; |
| 763 | |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 764 | copyinfo ci(lpath, rpath, name, mode); |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 765 | if (S_ISDIR(mode)) { |
| 766 | dirlist.push_back(ci); |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 767 | } else if (S_ISLNK(mode)) { |
| 768 | linklist.push_back(ci); |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 769 | } else { |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 770 | ci.time = time; |
| 771 | ci.size = size; |
| Josh Gao | b3cab93 | 2015-11-30 10:21:25 -0800 | [diff] [blame] | 772 | filelist->push_back(ci); |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 773 | } |
| 774 | }; |
| 775 | |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 776 | if (!sync_ls(sc, rpath.c_str(), callback)) { |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 777 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 778 | } |
| 779 | |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 780 | // Add the current directory to the list if it was empty, to ensure that it gets created. |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 781 | if (empty_dir) { |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 782 | copyinfo ci(adb_dirname(lpath), adb_dirname(rpath), adb_basename(rpath), S_IFDIR); |
| 783 | filelist->push_back(ci); |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 784 | return true; |
| 785 | } |
| 786 | |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 787 | // Check each symlink we found to see whether it's a file or directory. |
| 788 | for (copyinfo& link_ci : linklist) { |
| 789 | if (remote_symlink_isdir(sc, link_ci.rpath)) { |
| 790 | dirlist.emplace_back(std::move(link_ci)); |
| 791 | } else { |
| 792 | filelist->emplace_back(std::move(link_ci)); |
| 793 | } |
| 794 | } |
| 795 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 796 | // Recurse into each directory we found. |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 797 | while (!dirlist.empty()) { |
| 798 | copyinfo current = dirlist.back(); |
| 799 | dirlist.pop_back(); |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 800 | if (!remote_build_list(sc, filelist, current.rpath, current.lpath)) { |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 801 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 802 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 803 | } |
| 804 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 805 | return true; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 806 | } |
| 807 | |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 808 | static int set_time_and_mode(const std::string& lpath, time_t time, |
| 809 | unsigned int mode) { |
| Greg Hackmann | 8b68914 | 2014-05-06 08:48:18 -0700 | [diff] [blame] | 810 | struct utimbuf times = { time, time }; |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 811 | int r1 = utime(lpath.c_str(), ×); |
| Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 812 | |
| 813 | /* use umask for permissions */ |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 814 | mode_t mask = umask(0000); |
| Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 815 | umask(mask); |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 816 | int r2 = chmod(lpath.c_str(), mode & ~mask); |
| Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 817 | |
| Spencer Low | 28bc2cb | 2015-11-07 18:51:54 -0800 | [diff] [blame] | 818 | return r1 ? r1 : r2; |
| Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 819 | } |
| 820 | |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 821 | static bool copy_remote_dir_local(SyncConnection& sc, std::string rpath, |
| 822 | std::string lpath, bool copy_attrs) { |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 823 | // Make sure that both directory paths end in a slash. |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 824 | // Both paths are known to be nonempty, so we don't need to check. |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 825 | ensure_trailing_separator(lpath, rpath); |
| Riley Andrews | c736a94 | 2014-12-12 13:12:36 -0800 | [diff] [blame] | 826 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 827 | // Recursively build the list of files to copy. |
| Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 828 | sc.Print("pull: building file list..."); |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 829 | std::vector<copyinfo> filelist; |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 830 | if (!remote_build_list(sc, &filelist, rpath.c_str(), lpath.c_str())) { |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 831 | return false; |
| 832 | } |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 833 | |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 834 | int pulled = 0; |
| 835 | int skipped = 0; |
| Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 836 | for (const copyinfo &ci : filelist) { |
| Josh Gao | cb094c6 | 2015-11-03 14:44:04 -0800 | [diff] [blame] | 837 | if (!ci.skip) { |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 838 | sc.Printf("pull: %s -> %s", ci.rpath.c_str(), ci.lpath.c_str()); |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 839 | |
| 840 | if (S_ISDIR(ci.mode)) { |
| 841 | // Entry is for an empty directory, create it and continue. |
| 842 | // TODO(b/25457350): We don't preserve permissions on directories. |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 843 | if (!mkdirs(ci.lpath)) { |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 844 | sc.Error("failed to create directory '%s': %s", |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 845 | ci.lpath.c_str(), strerror(errno)); |
| Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 846 | return false; |
| 847 | } |
| 848 | pulled++; |
| 849 | continue; |
| 850 | } |
| 851 | |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 852 | if (!sync_recv(sc, ci.rpath.c_str(), ci.lpath.c_str())) { |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 853 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 854 | } |
| Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 855 | |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 856 | if (copy_attrs && set_time_and_mode(ci.lpath, ci.time, ci.mode)) { |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 857 | return false; |
| Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 858 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 859 | pulled++; |
| 860 | } else { |
| 861 | skipped++; |
| 862 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 863 | } |
| 864 | |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 865 | sc.Printf("%s: %d file%s pulled. %d file%s skipped.%s\n", rpath.c_str(), |
| 866 | pulled, (pulled == 1) ? "" : "s", skipped, |
| 867 | (skipped == 1) ? "" : "s", sc.TransferRate().c_str()); |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 868 | return true; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 869 | } |
| 870 | |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 871 | bool do_sync_pull(const std::vector<const char*>& srcs, const char* dst, |
| 872 | bool copy_attrs) { |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 873 | SyncConnection sc; |
| 874 | if (!sc.IsValid()) return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 875 | |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 876 | bool success = true; |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 877 | struct stat st; |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 878 | bool dst_exists = true; |
| 879 | |
| 880 | if (stat(dst, &st) == -1) { |
| 881 | dst_exists = false; |
| 882 | |
| 883 | // If we're only pulling one path, the destination path might point to |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 884 | // a path that doesn't exist yet. |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 885 | if (srcs.size() == 1 && errno == ENOENT) { |
| 886 | // However, its parent must exist. |
| 887 | struct stat parent_st; |
| 888 | if (stat(adb_dirname(dst).c_str(), &parent_st) == -1) { |
| 889 | sc.Error("cannot create file/directory '%s': %s", dst, strerror(errno)); |
| 890 | return false; |
| 891 | } |
| 892 | } else { |
| 893 | sc.Error("failed to access '%s': %s", dst, strerror(errno)); |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 894 | return false; |
| 895 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 896 | } |
| 897 | |
| Josh Gao | 8acf06c | 2015-11-07 15:38:19 -0800 | [diff] [blame] | 898 | bool dst_isdir = dst_exists && S_ISDIR(st.st_mode); |
| 899 | if (!dst_isdir) { |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 900 | if (srcs.size() > 1) { |
| 901 | sc.Error("target '%s' is not a directory", dst); |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 902 | return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 903 | } else { |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 904 | size_t dst_len = strlen(dst); |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 905 | |
| 906 | // A path that ends with a slash doesn't have to be a directory if |
| 907 | // it doesn't exist yet. |
| Josh Gao | a3b6a06 | 2015-11-09 11:12:14 -0800 | [diff] [blame] | 908 | if (adb_is_separator(dst[dst_len - 1]) && dst_exists) { |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 909 | sc.Error("failed to access '%s': Not a directory", dst); |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 910 | return false; |
| Elliott Hughes | d189cfb | 2015-07-30 17:42:01 -0700 | [diff] [blame] | 911 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 912 | } |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 913 | } |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 914 | |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 915 | for (const char* src_path : srcs) { |
| 916 | const char* dst_path = dst; |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 917 | unsigned src_mode, src_time; |
| 918 | if (!sync_stat(sc, src_path, &src_time, &src_mode, nullptr)) { |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 919 | sc.Error("failed to stat remote object '%s'", src_path); |
| Josh Gao | a5cea71 | 2015-11-07 15:27:26 -0800 | [diff] [blame] | 920 | return false; |
| 921 | } |
| 922 | if (src_mode == 0) { |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 923 | sc.Error("remote object '%s' does not exist", src_path); |
| 924 | success = false; |
| 925 | continue; |
| 926 | } |
| 927 | |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 928 | bool src_isdir = S_ISDIR(src_mode); |
| 929 | if (S_ISLNK(src_mode)) { |
| 930 | src_isdir = remote_symlink_isdir(sc, src_path); |
| 931 | } |
| 932 | |
| 933 | if ((src_mode & (S_IFREG | S_IFDIR | S_IFBLK | S_IFCHR)) == 0) { |
| 934 | sc.Error("skipping remote object '%s' (mode = 0o%o)", src_path, src_mode); |
| 935 | continue; |
| 936 | } |
| 937 | |
| 938 | if (src_isdir) { |
| Josh Gao | 8acf06c | 2015-11-07 15:38:19 -0800 | [diff] [blame] | 939 | std::string dst_dir = dst; |
| 940 | |
| 941 | // If the destination path existed originally, the source directory |
| 942 | // should be copied as a child of the destination. |
| 943 | if (dst_exists) { |
| 944 | if (!dst_isdir) { |
| 945 | sc.Error("target '%s' is not a directory", dst); |
| 946 | return false; |
| 947 | } |
| 948 | if (!adb_is_separator(dst_dir.back())) { |
| 949 | dst_dir.push_back(OS_PATH_SEPARATOR); |
| 950 | } |
| 951 | dst_dir.append(adb_basename(src_path)); |
| 952 | } |
| 953 | |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 954 | success &= copy_remote_dir_local(sc, src_path, dst_dir.c_str(), copy_attrs); |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 955 | continue; |
| 956 | } else { |
| Josh Gao | d9a2fd6 | 2015-12-09 14:03:30 -0800 | [diff] [blame^] | 957 | std::string path_holder; |
| 958 | if (dst_isdir) { |
| 959 | // If we're copying a remote file to a local directory, we |
| 960 | // really want to copy to local_dir + OS_PATH_SEPARATOR + |
| 961 | // basename(remote). |
| 962 | path_holder = android::base::StringPrintf("%s%c%s", dst_path, OS_PATH_SEPARATOR, |
| 963 | adb_basename(src_path).c_str()); |
| 964 | dst_path = path_holder.c_str(); |
| 965 | } |
| 966 | |
| 967 | if (!sync_recv(sc, src_path, dst_path)) { |
| 968 | success = false; |
| 969 | continue; |
| 970 | } |
| 971 | |
| 972 | if (copy_attrs && set_time_and_mode(dst_path, src_time, src_mode) != 0) { |
| 973 | success = false; |
| 974 | continue; |
| 975 | } |
| Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 976 | } |
| 977 | } |
| 978 | |
| 979 | sc.Print("\n"); |
| 980 | return success; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 981 | } |
| 982 | |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 983 | bool do_sync_sync(const std::string& lpath, const std::string& rpath, bool list_only) { |
| Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 984 | SyncConnection sc; |
| 985 | if (!sc.IsValid()) return false; |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 986 | |
| Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 987 | return copy_local_dir_remote(sc, lpath, rpath, true, list_only); |
| The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 988 | } |