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 | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 44 | #include <base/file.h> |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 45 | #include <base/strings.h> |
Elliott Hughes | d189cfb | 2015-07-30 17:42:01 -0700 | [diff] [blame] | 46 | #include <base/stringprintf.h> |
| 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 | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 106 | const char* rpath, |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 107 | const char* data, size_t data_length, |
| 108 | unsigned mtime) { |
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 | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 119 | sizeof(SyncRequest) + data_length + |
Elliott Hughes | 6c73bfc | 2015-10-27 13:40:35 -0700 | [diff] [blame] | 120 | sizeof(SyncRequest)); |
| 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 | 6c73bfc | 2015-10-27 13:40:35 -0700 | [diff] [blame] | 142 | if (!WriteFdExactly(fd, &buf[0], (p - &buf[0]))) return false; |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 143 | |
| 144 | total_bytes += data_length; |
| 145 | return true; |
| 146 | } |
| 147 | |
| 148 | bool CopyDone(const char* from, const char* to) { |
| 149 | syncmsg msg; |
| 150 | if (!ReadFdExactly(fd, &msg.status, sizeof(msg.status))) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 151 | 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] | 152 | return false; |
| 153 | } |
| 154 | if (msg.status.id == ID_OKAY) { |
| 155 | return true; |
| 156 | } |
| 157 | if (msg.status.id != ID_FAIL) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 158 | 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] | 159 | return false; |
| 160 | } |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 161 | return ReportCopyFailure(from, to, msg); |
| 162 | } |
| 163 | |
| 164 | bool ReportCopyFailure(const char* from, const char* to, const syncmsg& msg) { |
Elliott Hughes | 6c73bfc | 2015-10-27 13:40:35 -0700 | [diff] [blame] | 165 | std::vector<char> buf(msg.status.msglen + 1); |
| 166 | if (!ReadFdExactly(fd, &buf[0], msg.status.msglen)) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 167 | Error("failed to copy '%s' to '%s'; failed to read reason (!): %s", |
| 168 | from, to, strerror(errno)); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 169 | return false; |
| 170 | } |
Elliott Hughes | 6c73bfc | 2015-10-27 13:40:35 -0700 | [diff] [blame] | 171 | buf[msg.status.msglen] = 0; |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 172 | Error("failed to copy '%s' to '%s': %s", from, to, &buf[0]); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 173 | return false; |
| 174 | } |
| 175 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 176 | std::string TransferRate() { |
| 177 | uint64_t ms = CurrentTimeMs() - start_time_ms_; |
| 178 | if (total_bytes == 0 || ms == 0) return ""; |
| 179 | |
| 180 | double s = static_cast<double>(ms) / 1000LL; |
| 181 | double rate = (static_cast<double>(total_bytes) / s) / (1024*1024); |
| 182 | return android::base::StringPrintf(" %.1f MB/s (%" PRId64 " bytes in %.3fs)", |
| 183 | rate, total_bytes, s); |
| 184 | } |
| 185 | |
| 186 | void Print(const std::string& s) { |
| 187 | // TODO: we actually don't want ELIDE; we want "ELIDE if smart, FULL if dumb". |
| 188 | line_printer_.Print(s, LinePrinter::ELIDE); |
| 189 | } |
| 190 | |
Josh Gao | cbf485f | 2015-11-02 17:15:57 -0800 | [diff] [blame] | 191 | void Printf(const char* fmt, ...) __attribute__((__format__(ADB_FORMAT_ARCHETYPE, 2, 3))) { |
| 192 | std::string s; |
| 193 | va_list ap; |
| 194 | va_start(ap, fmt); |
| 195 | android::base::StringAppendV(&s, fmt, ap); |
| 196 | va_end(ap); |
| 197 | |
| 198 | Print(s); |
| 199 | } |
| 200 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 201 | void Error(const char* fmt, ...) __attribute__((__format__(ADB_FORMAT_ARCHETYPE, 2, 3))) { |
| 202 | std::string s = "adb: error: "; |
| 203 | |
| 204 | va_list ap; |
| 205 | va_start(ap, fmt); |
| 206 | android::base::StringAppendV(&s, fmt, ap); |
| 207 | va_end(ap); |
| 208 | |
| 209 | line_printer_.Print(s, LinePrinter::FULL); |
| 210 | } |
| 211 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 212 | uint64_t total_bytes; |
| 213 | |
| 214 | // TODO: add a char[max] buffer here, to replace syncsendbuf... |
| 215 | int fd; |
| 216 | size_t max; |
| 217 | |
| 218 | private: |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 219 | uint64_t start_time_ms_; |
| 220 | |
| 221 | LinePrinter line_printer_; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 222 | |
Spencer Low | cc4a4b1 | 2015-10-14 17:32:44 -0700 | [diff] [blame] | 223 | bool SendQuit() { |
| 224 | return SendRequest(ID_QUIT, ""); // TODO: add a SendResponse? |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 225 | } |
| 226 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 227 | static uint64_t CurrentTimeMs() { |
| 228 | struct timeval tv; |
| 229 | gettimeofday(&tv, 0); // (Not clock_gettime because of Mac/Windows.) |
| 230 | 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] | 231 | } |
| 232 | }; |
| 233 | |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 234 | 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] | 235 | |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 236 | static bool sync_ls(SyncConnection& sc, const char* path, |
| 237 | std::function<sync_ls_cb> func) { |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 238 | if (!sc.SendRequest(ID_LIST, path)) return false; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 239 | |
| 240 | while (true) { |
| 241 | syncmsg msg; |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 242 | if (!ReadFdExactly(sc.fd, &msg.dent, sizeof(msg.dent))) return false; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 243 | |
| 244 | if (msg.dent.id == ID_DONE) return true; |
| 245 | if (msg.dent.id != ID_DENT) return false; |
| 246 | |
Elliott Hughes | 9e8e355 | 2015-08-24 14:27:03 -0700 | [diff] [blame] | 247 | size_t len = msg.dent.namelen; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 248 | if (len > 256) return false; // TODO: resize buffer? continue? |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 249 | |
Elliott Hughes | d189cfb | 2015-07-30 17:42:01 -0700 | [diff] [blame] | 250 | char buf[257]; |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 251 | if (!ReadFdExactly(sc.fd, buf, len)) return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 252 | buf[len] = 0; |
| 253 | |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 254 | 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] | 255 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 256 | } |
| 257 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 258 | static bool sync_finish_stat(SyncConnection& sc, unsigned int* timestamp, |
| 259 | unsigned int* mode, unsigned int* size) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 260 | syncmsg msg; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 261 | if (!ReadFdExactly(sc.fd, &msg.stat, sizeof(msg.stat)) || msg.stat.id != ID_STAT) { |
| 262 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 263 | } |
| 264 | |
Elliott Hughes | 9e8e355 | 2015-08-24 14:27:03 -0700 | [diff] [blame] | 265 | if (timestamp) *timestamp = msg.stat.time; |
| 266 | if (mode) *mode = msg.stat.mode; |
| 267 | if (size) *size = msg.stat.size; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 268 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 269 | return true; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 270 | } |
| 271 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 272 | static bool sync_stat(SyncConnection& sc, const char* path, |
| 273 | unsigned int* timestamp, unsigned int* mode, unsigned int* size) { |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 274 | 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] | 275 | } |
| 276 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 277 | static bool SendLargeFile(SyncConnection& sc, const char* path_and_mode, |
| 278 | const char* lpath, const char* rpath, |
| 279 | unsigned mtime) { |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 280 | if (!sc.SendRequest(ID_SEND, path_and_mode)) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 281 | sc.Error("failed to send ID_SEND message '%s': %s", path_and_mode, strerror(errno)); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 282 | return false; |
| 283 | } |
| 284 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 285 | struct stat st; |
| 286 | if (stat(lpath, &st) == -1) { |
| 287 | sc.Error("cannot stat '%s': %s", lpath, strerror(errno)); |
| 288 | return false; |
Spencer Low | c1a3133 | 2015-08-28 01:07:30 -0700 | [diff] [blame] | 289 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 290 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 291 | uint64_t total_size = st.st_size; |
| 292 | uint64_t bytes_copied = 0; |
| 293 | |
| 294 | int lfd = adb_open(lpath, O_RDONLY); |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 295 | if (lfd < 0) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 296 | sc.Error("cannot open '%s': %s", lpath, strerror(errno)); |
Spencer Low | c1a3133 | 2015-08-28 01:07:30 -0700 | [diff] [blame] | 297 | return false; |
Mark Lindner | 9f9d145 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 298 | } |
| 299 | |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 300 | syncsendbuf sbuf; |
| 301 | sbuf.id = ID_DATA; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 302 | while (true) { |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 303 | int ret = adb_read(lfd, sbuf.data, sc.max); |
Elliott Hughes | 0bd8587 | 2015-08-25 10:59:45 -0700 | [diff] [blame] | 304 | if (ret <= 0) { |
Spencer Low | c1a3133 | 2015-08-28 01:07:30 -0700 | [diff] [blame] | 305 | if (ret < 0) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 306 | sc.Error("cannot read '%s': %s", lpath, strerror(errno)); |
Spencer Low | c1a3133 | 2015-08-28 01:07:30 -0700 | [diff] [blame] | 307 | adb_close(lfd); |
| 308 | return false; |
| 309 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 310 | break; |
| 311 | } |
| 312 | |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 313 | sbuf.size = ret; |
| 314 | if (!WriteFdExactly(sc.fd, &sbuf, sizeof(unsigned) * 2 + ret)) { |
Spencer Low | c1a3133 | 2015-08-28 01:07:30 -0700 | [diff] [blame] | 315 | adb_close(lfd); |
| 316 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 317 | } |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 318 | sc.total_bytes += ret; |
Mark Lindner | 9f9d145 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 319 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 320 | bytes_copied += ret; |
| 321 | |
| 322 | int percentage = static_cast<int>(bytes_copied * 100 / total_size); |
Josh Gao | cbf485f | 2015-11-02 17:15:57 -0800 | [diff] [blame] | 323 | sc.Printf("%s: %d%%", rpath, percentage); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | adb_close(lfd); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 327 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 328 | syncmsg msg; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 329 | msg.data.id = ID_DONE; |
Elliott Hughes | 9e8e355 | 2015-08-24 14:27:03 -0700 | [diff] [blame] | 330 | msg.data.size = mtime; |
Elliott Hughes | c5d5162 | 2015-09-03 11:06:00 -0700 | [diff] [blame] | 331 | if (!WriteFdExactly(sc.fd, &msg.data, sizeof(msg.data))) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 332 | sc.Error("failed to send ID_DONE message for '%s': %s", rpath, strerror(errno)); |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 333 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 334 | } |
| 335 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 336 | return true; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 337 | } |
| 338 | |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 339 | static bool sync_send(SyncConnection& sc, const char* lpath, const char* rpath, |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 340 | unsigned mtime, mode_t mode) |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 341 | { |
| 342 | std::string path_and_mode = android::base::StringPrintf("%s,%d", rpath, mode); |
| 343 | |
| 344 | if (S_ISLNK(mode)) { |
| 345 | #if !defined(_WIN32) |
| 346 | char buf[PATH_MAX]; |
| 347 | ssize_t data_length = readlink(lpath, buf, PATH_MAX - 1); |
| 348 | if (data_length == -1) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 349 | sc.Error("readlink '%s' failed: %s", lpath, strerror(errno)); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 350 | return false; |
| 351 | } |
| 352 | buf[data_length++] = '\0'; |
| 353 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 354 | if (!sc.SendSmallFile(path_and_mode.c_str(), rpath, buf, data_length, mtime)) return false; |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 355 | return sc.CopyDone(lpath, rpath); |
| 356 | #endif |
| 357 | } |
| 358 | |
| 359 | if (!S_ISREG(mode)) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 360 | sc.Error("local file '%s' has unsupported mode: 0o%o", lpath, mode); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 361 | return false; |
| 362 | } |
| 363 | |
| 364 | struct stat st; |
| 365 | if (stat(lpath, &st) == -1) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 366 | sc.Error("failed to stat local file '%s': %s", lpath, strerror(errno)); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 367 | return false; |
| 368 | } |
| 369 | if (st.st_size < SYNC_DATA_MAX) { |
| 370 | std::string data; |
| 371 | if (!android::base::ReadFileToString(lpath, &data)) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 372 | sc.Error("failed to read all of '%s': %s", lpath, strerror(errno)); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 373 | return false; |
| 374 | } |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 375 | if (!sc.SendSmallFile(path_and_mode.c_str(), rpath, data.data(), data.size(), mtime)) { |
| 376 | return false; |
| 377 | } |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 378 | } else { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 379 | if (!SendLargeFile(sc, path_and_mode.c_str(), lpath, rpath, mtime)) { |
| 380 | return false; |
| 381 | } |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 382 | } |
| 383 | return sc.CopyDone(lpath, rpath); |
| 384 | } |
| 385 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 386 | static bool sync_recv(SyncConnection& sc, const char* rpath, const char* lpath) { |
| 387 | sc.Print(rpath); |
| 388 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 389 | unsigned size = 0; |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 390 | if (!sync_stat(sc, rpath, nullptr, nullptr, &size)) return false; |
Mark Lindner | 9f9d145 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 391 | |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 392 | if (!sc.SendRequest(ID_RECV, rpath)) return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 393 | |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 394 | adb_unlink(lpath); |
Josh Gao | fe1a612 | 2015-11-04 14:51:23 -0800 | [diff] [blame] | 395 | if (!mkdirs(adb_dirname(lpath))) { |
| 396 | sc.Error("failed to create parent directory '%s': %s", |
| 397 | adb_dirname(lpath).c_str(), strerror(errno)); |
| 398 | return false; |
| 399 | } |
| 400 | |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 401 | int lfd = adb_creat(lpath, 0644); |
| 402 | if (lfd < 0) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 403 | sc.Error("cannot create '%s': %s", lpath, strerror(errno)); |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 404 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 405 | } |
| 406 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 407 | uint64_t bytes_copied = 0; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 408 | while (true) { |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 409 | syncmsg msg; |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 410 | if (!ReadFdExactly(sc.fd, &msg.data, sizeof(msg.data))) { |
Spencer Low | c1a3133 | 2015-08-28 01:07:30 -0700 | [diff] [blame] | 411 | adb_close(lfd); |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 412 | adb_unlink(lpath); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 413 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 414 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 415 | |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 416 | if (msg.data.id == ID_DONE) break; |
| 417 | |
| 418 | if (msg.data.id != ID_DATA) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 419 | adb_close(lfd); |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 420 | adb_unlink(lpath); |
| 421 | sc.ReportCopyFailure(rpath, lpath, msg); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 422 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 423 | } |
| 424 | |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 425 | if (msg.data.size > sc.max) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 426 | 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] | 427 | adb_close(lfd); |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 428 | adb_unlink(lpath); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 429 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 430 | } |
| 431 | |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 432 | char buffer[SYNC_DATA_MAX]; |
| 433 | if (!ReadFdExactly(sc.fd, buffer, msg.data.size)) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 434 | adb_close(lfd); |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 435 | adb_unlink(lpath); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -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 | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 439 | if (!WriteFdExactly(lfd, buffer, msg.data.size)) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 440 | sc.Error("cannot write '%s': %s", lpath, strerror(errno)); |
Elliott Hughes | e4ed32f | 2015-10-23 21:06:11 -0700 | [diff] [blame] | 441 | adb_close(lfd); |
| 442 | adb_unlink(lpath); |
| 443 | return false; |
| 444 | } |
| 445 | |
| 446 | sc.total_bytes += msg.data.size; |
Mark Lindner | 9f9d145 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 447 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 448 | bytes_copied += msg.data.size; |
| 449 | |
| 450 | int percentage = static_cast<int>(bytes_copied * 100 / size); |
Josh Gao | cbf485f | 2015-11-02 17:15:57 -0800 | [diff] [blame] | 451 | sc.Printf("%s: %d%%", rpath, percentage); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | adb_close(lfd); |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 455 | return true; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 456 | } |
| 457 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 458 | bool do_sync_ls(const char* path) { |
| 459 | SyncConnection sc; |
| 460 | if (!sc.IsValid()) return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 461 | |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 462 | return sync_ls(sc, path, [](unsigned mode, unsigned size, unsigned time, |
| 463 | const char* name) { |
| 464 | printf("%08x %08x %08x %s\n", mode, size, time, name); |
| 465 | }); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 466 | } |
| 467 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 468 | struct copyinfo |
| 469 | { |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 470 | std::string src; |
| 471 | std::string dst; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 472 | unsigned int time; |
| 473 | unsigned int mode; |
Elliott Hughes | dde00be | 2015-09-27 12:55:37 -0700 | [diff] [blame] | 474 | uint64_t size; |
Josh Gao | cb094c6 | 2015-11-03 14:44:04 -0800 | [diff] [blame] | 475 | bool skip; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 476 | }; |
| 477 | |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 478 | static copyinfo mkcopyinfo(const std::string& spath, const std::string& dpath, |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 479 | const std::string& name, unsigned int mode) { |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 480 | copyinfo result; |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 481 | result.src = spath; |
| 482 | result.dst = dpath; |
| 483 | if (result.src.back() != '/') { |
| 484 | result.src.push_back('/'); |
| 485 | } |
| 486 | if (result.dst.back() != '/') { |
| 487 | result.dst.push_back('/'); |
| 488 | } |
| 489 | result.src.append(name); |
| 490 | result.dst.append(name); |
| 491 | |
| 492 | bool isdir = S_ISDIR(mode); |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 493 | if (isdir) { |
| 494 | result.src.push_back('/'); |
| 495 | result.dst.push_back('/'); |
| 496 | } |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 497 | |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 498 | result.time = 0; |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 499 | result.mode = mode; |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 500 | result.size = 0; |
Josh Gao | cb094c6 | 2015-11-03 14:44:04 -0800 | [diff] [blame] | 501 | result.skip = false; |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 502 | return result; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 503 | } |
| 504 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 505 | static bool IsDotOrDotDot(const char* name) { |
| 506 | return name[0] == '.' && (name[1] == '\0' || (name[1] == '.' && name[2] == '\0')); |
| 507 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 508 | |
Josh Gao | 8efa646 | 2015-11-03 15:26:38 -0800 | [diff] [blame] | 509 | static bool local_build_list(SyncConnection& sc, std::vector<copyinfo>* filelist, |
| 510 | const std::string& lpath, |
| 511 | const std::string& rpath) { |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 512 | std::vector<copyinfo> dirlist; |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 513 | std::unique_ptr<DIR, int (*)(DIR*)> dir(opendir(lpath.c_str()), closedir); |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 514 | if (!dir) { |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 515 | sc.Error("cannot open '%s': %s", lpath.c_str(), strerror(errno)); |
Josh Gao | 8efa646 | 2015-11-03 15:26:38 -0800 | [diff] [blame] | 516 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 517 | } |
| 518 | |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 519 | bool empty_dir = true; |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 520 | dirent* de; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 521 | while ((de = readdir(dir.get()))) { |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 522 | if (IsDotOrDotDot(de->d_name)) { |
| 523 | continue; |
| 524 | } |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 525 | |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 526 | empty_dir = false; |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 527 | std::string stat_path = lpath + de->d_name; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 528 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 529 | struct stat st; |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 530 | if (!lstat(stat_path.c_str(), &st)) { |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 531 | copyinfo ci = mkcopyinfo(lpath, rpath, de->d_name, st.st_mode); |
Daniel Rosenberg | e9a1c9c | 2014-06-30 20:29:40 -0700 | [diff] [blame] | 532 | if (S_ISDIR(st.st_mode)) { |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 533 | dirlist.push_back(ci); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 534 | } else { |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 535 | if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode)) { |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 536 | sc.Error("skipping special file '%s'", lpath.c_str()); |
Daniel Rosenberg | e9a1c9c | 2014-06-30 20:29:40 -0700 | [diff] [blame] | 537 | } else { |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 538 | ci.time = st.st_mtime; |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 539 | ci.size = st.st_size; |
| 540 | filelist->push_back(ci); |
Daniel Rosenberg | e9a1c9c | 2014-06-30 20:29:40 -0700 | [diff] [blame] | 541 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 542 | } |
Daniel Rosenberg | e9a1c9c | 2014-06-30 20:29:40 -0700 | [diff] [blame] | 543 | } else { |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 544 | sc.Error("cannot lstat '%s': %s", stat_path.c_str(), |
| 545 | strerror(errno)); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 546 | } |
| 547 | } |
| 548 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 549 | // Close this directory and recurse. |
| 550 | dir.reset(); |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 551 | |
| 552 | // Add the current directory to the list if it was empty, to ensure that |
| 553 | // it gets created. |
| 554 | if (empty_dir) { |
| 555 | // TODO(b/25566053): Make pushing empty directories work. |
| 556 | // TODO(b/25457350): We don't preserve permissions on directories. |
| 557 | sc.Error("skipping empty directory '%s'", lpath.c_str()); |
| 558 | copyinfo ci = mkcopyinfo(adb_dirname(lpath), adb_dirname(rpath), |
| 559 | adb_basename(lpath), S_IFDIR); |
| 560 | ci.skip = true; |
| 561 | filelist->push_back(ci); |
| 562 | return true; |
| 563 | } |
| 564 | |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 565 | for (const copyinfo& ci : dirlist) { |
| 566 | local_build_list(sc, filelist, ci.src.c_str(), ci.dst.c_str()); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 567 | } |
| 568 | |
Josh Gao | 8efa646 | 2015-11-03 15:26:38 -0800 | [diff] [blame] | 569 | return true; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 570 | } |
| 571 | |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 572 | static bool copy_local_dir_remote(SyncConnection& sc, std::string lpath, |
| 573 | std::string rpath, bool check_timestamps, |
| 574 | bool list_only) { |
| 575 | // Make sure that both directory paths end in a slash. |
Josh Gao | 5940994 | 2015-11-06 15:19:53 -0800 | [diff] [blame] | 576 | // Both paths are known to exist, so they cannot be empty. |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 577 | if (lpath.back() != '/') { |
| 578 | lpath.push_back('/'); |
| 579 | } |
| 580 | if (rpath.back() != '/') { |
| 581 | rpath.push_back('/'); |
| 582 | } |
| 583 | |
| 584 | // Recursively build the list of files to copy. |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 585 | std::vector<copyinfo> filelist; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 586 | int pushed = 0; |
| 587 | int skipped = 0; |
Josh Gao | 8efa646 | 2015-11-03 15:26:38 -0800 | [diff] [blame] | 588 | if (!local_build_list(sc, &filelist, lpath, rpath)) { |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 589 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 590 | } |
| 591 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 592 | if (check_timestamps) { |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 593 | for (const copyinfo& ci : filelist) { |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 594 | if (!sc.SendRequest(ID_STAT, ci.dst.c_str())) { |
| 595 | return false; |
| 596 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 597 | } |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 598 | for (copyinfo& ci : filelist) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 599 | unsigned int timestamp, mode, size; |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 600 | if (!sync_finish_stat(sc, ×tamp, &mode, &size)) { |
| 601 | return false; |
| 602 | } |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 603 | if (size == ci.size) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 604 | /* for links, we cannot update the atime/mtime */ |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 605 | if ((S_ISREG(ci.mode & mode) && timestamp == ci.time) || |
| 606 | (S_ISLNK(ci.mode & mode) && timestamp >= ci.time)) { |
Josh Gao | cb094c6 | 2015-11-03 14:44:04 -0800 | [diff] [blame] | 607 | ci.skip = true; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 608 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 609 | } |
| 610 | } |
| 611 | } |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 612 | |
| 613 | for (const copyinfo& ci : filelist) { |
Josh Gao | cb094c6 | 2015-11-03 14:44:04 -0800 | [diff] [blame] | 614 | if (!ci.skip) { |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 615 | if (list_only) { |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 616 | sc.Error("would push: %s -> %s", ci.src.c_str(), |
| 617 | ci.dst.c_str()); |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 618 | } else { |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 619 | if (!sync_send(sc, ci.src.c_str(), ci.dst.c_str(), ci.time, |
| 620 | ci.mode)) { |
| 621 | return false; |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 622 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 623 | } |
| 624 | pushed++; |
| 625 | } else { |
| 626 | skipped++; |
| 627 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 628 | } |
| 629 | |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 630 | sc.Printf("%s: %d file%s pushed. %d file%s skipped.%s\n", rpath.c_str(), |
| 631 | pushed, (pushed == 1) ? "" : "s", skipped, |
| 632 | (skipped == 1) ? "" : "s", sc.TransferRate().c_str()); |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 633 | return true; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 634 | } |
| 635 | |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 636 | 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] | 637 | SyncConnection sc; |
| 638 | if (!sc.IsValid()) return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 639 | |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 640 | bool success = true; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 641 | unsigned mode; |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 642 | if (!sync_stat(sc, dst, nullptr, &mode, nullptr)) return false; |
| 643 | bool dst_isdir = mode != 0 && S_ISDIR(mode); |
| 644 | |
| 645 | if (!dst_isdir) { |
| 646 | if (srcs.size() > 1) { |
| 647 | sc.Error("target '%s' is not a directory", dst); |
| 648 | return false; |
| 649 | } else { |
| 650 | size_t dst_len = strlen(dst); |
| 651 | if (dst[dst_len - 1] == '/') { |
| 652 | sc.Error("failed to access '%s': Not a directory", dst); |
| 653 | return false; |
| 654 | } |
| 655 | } |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 656 | } |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 657 | |
| 658 | for (const char* src_path : srcs) { |
| 659 | const char* dst_path = dst; |
| 660 | struct stat st; |
| 661 | if (stat(src_path, &st)) { |
| 662 | sc.Error("cannot stat '%s': %s", src_path, strerror(errno)); |
| 663 | success = false; |
| 664 | continue; |
| 665 | } |
| 666 | |
| 667 | if (S_ISDIR(st.st_mode)) { |
| 668 | success &= copy_local_dir_remote(sc, src_path, dst, false, false); |
| 669 | continue; |
| 670 | } |
| 671 | |
| 672 | std::string path_holder; |
| 673 | if (mode != 0 && S_ISDIR(mode)) { |
| 674 | // If we're copying a local file to a remote directory, |
| 675 | // we really want to copy to remote_dir + "/" + local_filename. |
| 676 | path_holder = android::base::StringPrintf( |
| 677 | "%s/%s", dst_path, adb_basename(src_path).c_str()); |
| 678 | dst_path = path_holder.c_str(); |
| 679 | } |
| 680 | success &= sync_send(sc, src_path, dst_path, st.st_mtime, st.st_mode); |
| 681 | } |
| 682 | |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 683 | sc.Print("\n"); |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 684 | return success; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 685 | } |
| 686 | |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 687 | static bool remote_build_list(SyncConnection& sc, |
| 688 | std::vector<copyinfo>* filelist, |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 689 | const std::string& rpath, |
| 690 | const std::string& lpath) { |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 691 | std::vector<copyinfo> dirlist; |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 692 | bool empty_dir = true; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 693 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 694 | // Put the files/dirs in rpath on the lists. |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 695 | auto callback = [&](unsigned mode, unsigned size, unsigned time, |
| 696 | const char* name) { |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 697 | if (IsDotOrDotDot(name)) { |
| 698 | return; |
| 699 | } |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 700 | |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 701 | // We found a child that isn't '.' or '..'. |
| 702 | empty_dir = false; |
| 703 | |
| 704 | copyinfo ci = mkcopyinfo(rpath, lpath, name, mode); |
| 705 | if (S_ISDIR(mode)) { |
| 706 | dirlist.push_back(ci); |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 707 | } else if (S_ISREG(mode) || S_ISLNK(mode)) { |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 708 | ci.time = time; |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 709 | ci.size = size; |
| 710 | filelist->push_back(ci); |
| 711 | } else { |
| 712 | sc.Print(android::base::StringPrintf("skipping special file '%s'\n", |
| 713 | name)); |
| 714 | } |
| 715 | }; |
| 716 | |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 717 | if (!sync_ls(sc, rpath.c_str(), callback)) { |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 718 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 719 | } |
| 720 | |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 721 | // Add the current directory to the list if it was empty, to ensure that |
| 722 | // it gets created. |
| 723 | if (empty_dir) { |
| 724 | auto rdname = adb_dirname(rpath); |
| 725 | auto ldname = adb_dirname(lpath); |
| 726 | auto rbasename = adb_basename(rpath); |
| 727 | auto lbasename = adb_basename(lpath); |
| 728 | filelist->push_back(mkcopyinfo(adb_dirname(rpath), adb_dirname(lpath), |
| 729 | adb_basename(rpath), S_IFDIR)); |
| 730 | return true; |
| 731 | } |
| 732 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 733 | // Recurse into each directory we found. |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 734 | while (!dirlist.empty()) { |
| 735 | copyinfo current = dirlist.back(); |
| 736 | dirlist.pop_back(); |
| 737 | if (!remote_build_list(sc, filelist, current.src.c_str(), |
| 738 | current.dst.c_str())) { |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 739 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 740 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 741 | } |
| 742 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 743 | return true; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 744 | } |
| 745 | |
Dan Albert | f30d73c | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 746 | static int set_time_and_mode(const char *lpath, time_t time, unsigned int mode) |
Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 747 | { |
Greg Hackmann | 8b68914 | 2014-05-06 08:48:18 -0700 | [diff] [blame] | 748 | struct utimbuf times = { time, time }; |
| 749 | int r1 = utime(lpath, ×); |
Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 750 | |
| 751 | /* use umask for permissions */ |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 752 | mode_t mask = umask(0000); |
Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 753 | umask(mask); |
| 754 | int r2 = chmod(lpath, mode & ~mask); |
| 755 | |
Spencer Low | 28bc2cb | 2015-11-07 18:51:54 -0800 | [diff] [blame] | 756 | return r1 ? r1 : r2; |
Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 757 | } |
| 758 | |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 759 | static bool copy_remote_dir_local(SyncConnection& sc, std::string rpath, |
| 760 | std::string lpath, bool copy_attrs) { |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 761 | // Make sure that both directory paths end in a slash. |
Josh Gao | 5940994 | 2015-11-06 15:19:53 -0800 | [diff] [blame] | 762 | // Both paths are known to exist, so they cannot be empty. |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 763 | if (rpath.back() != '/') { |
| 764 | rpath.push_back('/'); |
| 765 | } |
| 766 | if (lpath.back() != '/') { |
| 767 | lpath.push_back('/'); |
| 768 | } |
Riley Andrews | c736a94 | 2014-12-12 13:12:36 -0800 | [diff] [blame] | 769 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 770 | // Recursively build the list of files to copy. |
Elliott Hughes | f5cdc1d | 2015-10-27 16:03:15 -0700 | [diff] [blame] | 771 | sc.Print("pull: building file list..."); |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 772 | std::vector<copyinfo> filelist; |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 773 | if (!remote_build_list(sc, &filelist, rpath.c_str(), lpath.c_str())) { |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 774 | return false; |
| 775 | } |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 776 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 777 | int pulled = 0; |
| 778 | int skipped = 0; |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 779 | for (const copyinfo &ci : filelist) { |
Josh Gao | cb094c6 | 2015-11-03 14:44:04 -0800 | [diff] [blame] | 780 | if (!ci.skip) { |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 781 | sc.Printf("pull: %s -> %s", ci.src.c_str(), ci.dst.c_str()); |
Josh Gao | a90563e | 2015-11-04 14:57:04 -0800 | [diff] [blame] | 782 | |
| 783 | if (S_ISDIR(ci.mode)) { |
| 784 | // Entry is for an empty directory, create it and continue. |
| 785 | // TODO(b/25457350): We don't preserve permissions on directories. |
| 786 | if (!mkdirs(ci.dst)) { |
| 787 | sc.Error("failed to create directory '%s': %s", |
| 788 | ci.dst.c_str(), strerror(errno)); |
| 789 | return false; |
| 790 | } |
| 791 | pulled++; |
| 792 | continue; |
| 793 | } |
| 794 | |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 795 | if (!sync_recv(sc, ci.src.c_str(), ci.dst.c_str())) { |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 796 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 797 | } |
Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 798 | |
Josh Gao | 204d21e | 2015-11-02 16:45:47 -0800 | [diff] [blame] | 799 | if (copy_attrs && |
| 800 | set_time_and_mode(ci.dst.c_str(), ci.time, ci.mode)) { |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 801 | return false; |
Lajos Molnar | 4e23e3c | 2013-04-19 12:41:09 -0700 | [diff] [blame] | 802 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 803 | pulled++; |
| 804 | } else { |
| 805 | skipped++; |
| 806 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 807 | } |
| 808 | |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 809 | sc.Printf("%s: %d file%s pulled. %d file%s skipped.%s\n", rpath.c_str(), |
| 810 | pulled, (pulled == 1) ? "" : "s", skipped, |
| 811 | (skipped == 1) ? "" : "s", sc.TransferRate().c_str()); |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 812 | return true; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 813 | } |
| 814 | |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 815 | bool do_sync_pull(const std::vector<const char*>& srcs, const char* dst, |
| 816 | bool copy_attrs) { |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 817 | SyncConnection sc; |
| 818 | if (!sc.IsValid()) return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 819 | |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 820 | bool success = true; |
Elliott Hughes | d189cfb | 2015-07-30 17:42:01 -0700 | [diff] [blame] | 821 | unsigned mode, time; |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 822 | struct stat st; |
| 823 | if (stat(dst, &st)) { |
| 824 | // If we're only pulling one file, the destination path might point to |
| 825 | // a path that doesn't exist yet. |
| 826 | if (srcs.size() != 1 || errno != ENOENT) { |
| 827 | sc.Error("cannot stat '%s': %s", dst, strerror(errno)); |
| 828 | return false; |
| 829 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 830 | } |
| 831 | |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 832 | bool dst_isdir = S_ISDIR(st.st_mode); |
| 833 | if (!dst_isdir) { |
| 834 | if (srcs.size() > 1) { |
| 835 | sc.Error("target '%s' is not a directory", dst); |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 836 | return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 837 | } else { |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 838 | size_t dst_len = strlen(dst); |
| 839 | if (dst[dst_len - 1] == '/') { |
| 840 | sc.Error("failed to access '%s': Not a directory", dst); |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 841 | return false; |
Elliott Hughes | d189cfb | 2015-07-30 17:42:01 -0700 | [diff] [blame] | 842 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 843 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 844 | } |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 845 | |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 846 | for (const char* src_path : srcs) { |
| 847 | const char* dst_path = dst; |
| 848 | if (!sync_stat(sc, src_path, &time, &mode, nullptr)) return false; |
| 849 | if (mode == 0) { |
| 850 | sc.Error("remote object '%s' does not exist", src_path); |
| 851 | success = false; |
| 852 | continue; |
| 853 | } |
| 854 | |
| 855 | if (S_ISREG(mode) || S_ISLNK(mode) || S_ISCHR(mode) || S_ISBLK(mode)) { |
| 856 | std::string path_holder; |
| 857 | struct stat st; |
| 858 | if (stat(dst_path, &st) == 0) { |
| 859 | if (S_ISDIR(st.st_mode)) { |
| 860 | // If we're copying a remote file to a local directory, |
| 861 | // we really want to copy to local_dir + "/" + |
| 862 | // basename(remote). |
| 863 | path_holder = android::base::StringPrintf( |
| 864 | "%s/%s", dst_path, adb_basename(src_path).c_str()); |
| 865 | dst_path = path_holder.c_str(); |
| 866 | } |
| 867 | } |
| 868 | if (!sync_recv(sc, src_path, dst_path)) { |
| 869 | success = false; |
| 870 | continue; |
| 871 | } else { |
| 872 | if (copy_attrs && set_time_and_mode(dst_path, time, mode)) { |
| 873 | success = false; |
| 874 | continue; |
| 875 | } |
| 876 | } |
| 877 | } else if (S_ISDIR(mode)) { |
| 878 | success &= copy_remote_dir_local(sc, src_path, dst_path, copy_attrs); |
| 879 | continue; |
| 880 | } else { |
| 881 | sc.Error("remote object '%s' not a file or directory", src_path); |
| 882 | success = false; |
| 883 | continue; |
| 884 | } |
| 885 | } |
| 886 | |
| 887 | sc.Print("\n"); |
| 888 | return success; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 889 | } |
| 890 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 891 | 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] | 892 | SyncConnection sc; |
| 893 | if (!sc.IsValid()) return false; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 894 | |
Josh Gao | d20cf38 | 2015-11-03 15:23:03 -0800 | [diff] [blame] | 895 | 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] | 896 | } |