blob: 09e92bb6f836b2de575d685d5496426add07579e [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
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 Albert76649012015-02-24 15:51:19 -080017#include <dirent.h>
18#include <errno.h>
Spencer Low6001c872015-05-13 00:02:55 -070019#include <inttypes.h>
Dan Albert76649012015-02-24 15:51:19 -080020#include <limits.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080021#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080024#include <sys/stat.h>
25#include <sys/time.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026#include <sys/types.h>
Dan Albert76649012015-02-24 15:51:19 -080027#include <time.h>
Elliott Hughesae5a6c02015-09-27 12:55:37 -070028#include <unistd.h>
Greg Hackmann7a5e2bd2014-05-06 08:48:18 -070029#include <utime.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080030
Josh Gaocda6a2b2015-11-02 16:45:47 -080031#include <functional>
Elliott Hughesa925dba2015-08-24 14:49:43 -070032#include <memory>
Elliott Hughes6d929972015-10-27 13:40:35 -070033#include <vector>
Elliott Hughesa925dba2015-08-24 14:49:43 -070034
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080035#include "sysdeps.h"
Dan Albert76649012015-02-24 15:51:19 -080036
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080037#include "adb.h"
38#include "adb_client.h"
Dan Albertcc731cc2015-02-24 21:26:58 -080039#include "adb_io.h"
Alex Vallée14216142015-05-06 17:22:25 -040040#include "adb_utils.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080041#include "file_sync_service.h"
Elliott Hughesb708d162015-10-27 16:03:15 -070042#include "line_printer.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080043
Elliott Hughes4f713192015-12-04 22:00:26 -080044#include <android-base/file.h>
45#include <android-base/strings.h>
46#include <android-base/stringprintf.h>
Elliott Hughes5c742702015-07-30 17:42:01 -070047
Elliott Hughesaa245492015-08-03 10:38:08 -070048struct syncsendbuf {
49 unsigned id;
50 unsigned size;
51 char data[SYNC_DATA_MAX];
52};
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080053
Elliott Hughesa00e6ef2015-12-17 17:05:29 -080054static void ensure_trailing_separators(std::string& local_path, std::string& remote_path) {
55 if (!adb_is_separator(local_path.back())) {
56 local_path.push_back(OS_PATH_SEPARATOR);
57 }
58 if (remote_path.back() != '/') {
59 remote_path.push_back('/');
60 }
61}
62
Josh Gao48bc0d72016-03-02 16:11:13 -080063static bool should_pull_file(mode_t mode) {
64 return mode & (S_IFREG | S_IFBLK | S_IFCHR);
65}
66
67static bool should_push_file(mode_t mode) {
68 mode_t mask = S_IFREG;
69#if !defined(_WIN32)
70 mask |= S_IFLNK;
71#endif
72 return mode & mask;
73}
74
Elliott Hughesa00e6ef2015-12-17 17:05:29 -080075struct copyinfo {
76 std::string lpath;
77 std::string rpath;
78 unsigned int time = 0;
79 unsigned int mode;
80 uint64_t size = 0;
81 bool skip = false;
82
83 copyinfo(const std::string& local_path,
84 const std::string& remote_path,
85 const std::string& name,
86 unsigned int mode)
87 : lpath(local_path), rpath(remote_path), mode(mode) {
88 ensure_trailing_separators(lpath, rpath);
89 lpath.append(name);
90 rpath.append(name);
91 if (S_ISDIR(mode)) {
92 ensure_trailing_separators(lpath, rpath);
93 }
94 }
95};
96
Elliott Hughesaa245492015-08-03 10:38:08 -070097class SyncConnection {
98 public:
Elliott Hughesa00e6ef2015-12-17 17:05:29 -080099 SyncConnection()
100 : total_bytes_(0),
101 start_time_ms_(CurrentTimeMs()),
102 expected_total_bytes_(0),
Josh Gaoda811952016-02-19 15:55:55 -0800103 expect_multiple_files_(false),
104 expect_done_(false) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700105 max = SYNC_DATA_MAX; // TODO: decide at runtime.
106
107 std::string error;
108 fd = adb_connect("sync:", &error);
109 if (fd < 0) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700110 Error("connect failed: %s", error.c_str());
Elliott Hughesaa245492015-08-03 10:38:08 -0700111 }
112 }
113
114 ~SyncConnection() {
115 if (!IsValid()) return;
116
Spencer Low351ecd12015-10-14 17:32:44 -0700117 if (SendQuit()) {
118 // We sent a quit command, so the server should be doing orderly
119 // shutdown soon. But if we encountered an error while we were using
120 // the connection, the server might still be sending data (before
121 // doing orderly shutdown), in which case we won't wait for all of
122 // the data nor the coming orderly shutdown. In the common success
123 // case, this will wait for the server to do orderly shutdown.
124 ReadOrderlyShutdown(fd);
125 }
Elliott Hughesaa245492015-08-03 10:38:08 -0700126 adb_close(fd);
Elliott Hughes77f539a2015-12-08 16:01:15 -0800127
128 line_printer_.KeepInfoLine();
Elliott Hughesaa245492015-08-03 10:38:08 -0700129 }
130
131 bool IsValid() { return fd >= 0; }
132
Josh Gaoda811952016-02-19 15:55:55 -0800133 bool ReceivedError(const char* from, const char* to) {
134 adb_pollfd pfd = {.fd = fd, .events = POLLIN};
135 int rc = adb_poll(&pfd, 1, 0);
136 if (rc < 0) {
137 Error("failed to poll: %s", strerror(errno));
138 return true;
139 }
140 return rc != 0;
141 }
142
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700143 bool SendRequest(int id, const char* path_and_mode) {
144 size_t path_length = strlen(path_and_mode);
145 if (path_length > 1024) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700146 Error("SendRequest failed: path too long: %zu", path_length);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700147 errno = ENAMETOOLONG;
148 return false;
149 }
150
151 // Sending header and payload in a single write makes a noticeable
152 // difference to "adb sync" performance.
Elliott Hughes6d929972015-10-27 13:40:35 -0700153 std::vector<char> buf(sizeof(SyncRequest) + path_length);
154 SyncRequest* req = reinterpret_cast<SyncRequest*>(&buf[0]);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700155 req->id = id;
156 req->path_length = path_length;
157 char* data = reinterpret_cast<char*>(req + 1);
158 memcpy(data, path_and_mode, path_length);
159
Elliott Hughes6d929972015-10-27 13:40:35 -0700160 return WriteFdExactly(fd, &buf[0], buf.size());
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700161 }
162
163 // Sending header, payload, and footer in a single write makes a huge
164 // difference to "adb sync" performance.
165 bool SendSmallFile(const char* path_and_mode,
Elliott Hughescc65c3b2015-11-20 22:01:06 -0800166 const char* lpath, const char* rpath,
Elliott Hughes6aab58c2015-11-20 17:35:17 -0800167 unsigned mtime,
168 const char* data, size_t data_length) {
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700169 size_t path_length = strlen(path_and_mode);
170 if (path_length > 1024) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700171 Error("SendSmallFile failed: path too long: %zu", path_length);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700172 errno = ENAMETOOLONG;
173 return false;
174 }
175
Elliott Hughes6d929972015-10-27 13:40:35 -0700176 std::vector<char> buf(sizeof(SyncRequest) + path_length +
Elliott Hughes6aab58c2015-11-20 17:35:17 -0800177 sizeof(SyncRequest) + data_length +
178 sizeof(SyncRequest));
Elliott Hughes6d929972015-10-27 13:40:35 -0700179 char* p = &buf[0];
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700180
181 SyncRequest* req_send = reinterpret_cast<SyncRequest*>(p);
182 req_send->id = ID_SEND;
183 req_send->path_length = path_length;
184 p += sizeof(SyncRequest);
185 memcpy(p, path_and_mode, path_length);
186 p += path_length;
187
188 SyncRequest* req_data = reinterpret_cast<SyncRequest*>(p);
189 req_data->id = ID_DATA;
190 req_data->path_length = data_length;
191 p += sizeof(SyncRequest);
192 memcpy(p, data, data_length);
193 p += data_length;
194
195 SyncRequest* req_done = reinterpret_cast<SyncRequest*>(p);
196 req_done->id = ID_DONE;
197 req_done->path_length = mtime;
198 p += sizeof(SyncRequest);
199
Elliott Hughescc65c3b2015-11-20 22:01:06 -0800200 WriteOrDie(lpath, rpath, &buf[0], (p - &buf[0]));
Josh Gaoda811952016-02-19 15:55:55 -0800201 expect_done_ = true;
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800202 total_bytes_ += data_length;
Josh Gaof22bc602016-03-01 11:46:02 -0800203 ReportProgress(rpath, data_length, data_length);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700204 return true;
205 }
206
Elliott Hughes6aab58c2015-11-20 17:35:17 -0800207 bool SendLargeFile(const char* path_and_mode,
208 const char* lpath, const char* rpath,
209 unsigned mtime) {
210 if (!SendRequest(ID_SEND, path_and_mode)) {
211 Error("failed to send ID_SEND message '%s': %s", path_and_mode, strerror(errno));
212 return false;
213 }
214
215 struct stat st;
216 if (stat(lpath, &st) == -1) {
217 Error("cannot stat '%s': %s", lpath, strerror(errno));
218 return false;
219 }
220
221 uint64_t total_size = st.st_size;
222 uint64_t bytes_copied = 0;
223
224 int lfd = adb_open(lpath, O_RDONLY);
225 if (lfd < 0) {
Elliott Hughescc65c3b2015-11-20 22:01:06 -0800226 Error("opening '%s' locally failed: %s", lpath, strerror(errno));
Elliott Hughes6aab58c2015-11-20 17:35:17 -0800227 return false;
228 }
229
230 syncsendbuf sbuf;
231 sbuf.id = ID_DATA;
232 while (true) {
Elliott Hughescc65c3b2015-11-20 22:01:06 -0800233 int bytes_read = adb_read(lfd, sbuf.data, max);
234 if (bytes_read == -1) {
235 Error("reading '%s' locally failed: %s", lpath, strerror(errno));
236 adb_close(lfd);
237 return false;
238 } else if (bytes_read == 0) {
Elliott Hughes6aab58c2015-11-20 17:35:17 -0800239 break;
240 }
241
Elliott Hughescc65c3b2015-11-20 22:01:06 -0800242 sbuf.size = bytes_read;
243 WriteOrDie(lpath, rpath, &sbuf, sizeof(SyncRequest) + bytes_read);
Elliott Hughes6aab58c2015-11-20 17:35:17 -0800244
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800245 total_bytes_ += bytes_read;
Elliott Hughescc65c3b2015-11-20 22:01:06 -0800246 bytes_copied += bytes_read;
Elliott Hughes6aab58c2015-11-20 17:35:17 -0800247
Josh Gaoda811952016-02-19 15:55:55 -0800248 // Check to see if we've received an error from the other side.
249 if (ReceivedError(lpath, rpath)) {
250 break;
251 }
252
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800253 ReportProgress(rpath, bytes_copied, total_size);
Elliott Hughes6aab58c2015-11-20 17:35:17 -0800254 }
255
256 adb_close(lfd);
257
258 syncmsg msg;
259 msg.data.id = ID_DONE;
260 msg.data.size = mtime;
Josh Gaoda811952016-02-19 15:55:55 -0800261 expect_done_ = true;
Elliott Hughescc65c3b2015-11-20 22:01:06 -0800262 return WriteOrDie(lpath, rpath, &msg.data, sizeof(msg.data));
Elliott Hughes6aab58c2015-11-20 17:35:17 -0800263 }
264
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700265 bool CopyDone(const char* from, const char* to) {
266 syncmsg msg;
267 if (!ReadFdExactly(fd, &msg.status, sizeof(msg.status))) {
Josh Gaoda811952016-02-19 15:55:55 -0800268 Error("failed to copy '%s' to '%s': couldn't read from device", from, to);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700269 return false;
270 }
271 if (msg.status.id == ID_OKAY) {
Josh Gaoda811952016-02-19 15:55:55 -0800272 if (expect_done_) {
273 expect_done_ = false;
274 return true;
275 } else {
276 Error("failed to copy '%s' to '%s': received premature success", from, to);
277 return true;
278 }
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700279 }
280 if (msg.status.id != ID_FAIL) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700281 Error("failed to copy '%s' to '%s': unknown reason %d", from, to, msg.status.id);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700282 return false;
283 }
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700284 return ReportCopyFailure(from, to, msg);
285 }
286
287 bool ReportCopyFailure(const char* from, const char* to, const syncmsg& msg) {
Elliott Hughes6d929972015-10-27 13:40:35 -0700288 std::vector<char> buf(msg.status.msglen + 1);
289 if (!ReadFdExactly(fd, &buf[0], msg.status.msglen)) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700290 Error("failed to copy '%s' to '%s'; failed to read reason (!): %s",
291 from, to, strerror(errno));
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700292 return false;
293 }
Elliott Hughes6d929972015-10-27 13:40:35 -0700294 buf[msg.status.msglen] = 0;
Elliott Hughesb708d162015-10-27 16:03:15 -0700295 Error("failed to copy '%s' to '%s': %s", from, to, &buf[0]);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700296 return false;
297 }
298
Elliott Hughesb708d162015-10-27 16:03:15 -0700299 std::string TransferRate() {
300 uint64_t ms = CurrentTimeMs() - start_time_ms_;
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800301 if (total_bytes_ == 0 || ms == 0) return "";
Elliott Hughesb708d162015-10-27 16:03:15 -0700302
303 double s = static_cast<double>(ms) / 1000LL;
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800304 double rate = (static_cast<double>(total_bytes_) / s) / (1024*1024);
Elliott Hughesb708d162015-10-27 16:03:15 -0700305 return android::base::StringPrintf(" %.1f MB/s (%" PRId64 " bytes in %.3fs)",
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800306 rate, total_bytes_, s);
Elliott Hughesb708d162015-10-27 16:03:15 -0700307 }
308
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800309 void ReportProgress(const char* file, uint64_t file_copied_bytes, uint64_t file_total_bytes) {
310 char overall_percentage_str[5] = "?";
311 if (expected_total_bytes_ != 0) {
312 int overall_percentage = static_cast<int>(total_bytes_ * 100 / expected_total_bytes_);
313 // If we're pulling symbolic links, we'll pull the target of the link rather than
314 // just create a local link, and that will cause us to go over 100%.
315 if (overall_percentage <= 100) {
316 snprintf(overall_percentage_str, sizeof(overall_percentage_str), "%d%%",
317 overall_percentage);
318 }
319 }
320
321 if (file_copied_bytes > file_total_bytes || file_total_bytes == 0) {
322 // This case can happen if we're racing against something that wrote to the file
323 // between our stat and our read, or if we're reading a magic file that lies about
324 // its size. Just show how much we've copied.
325 Printf("[%4s] %s: %" PRId64 "/?", overall_percentage_str, file, file_copied_bytes);
326 } else {
327 // If we're transferring multiple files, we want to know how far through the current
328 // file we are, as well as the overall percentage.
329 if (expect_multiple_files_) {
330 int file_percentage = static_cast<int>(file_copied_bytes * 100 / file_total_bytes);
331 Printf("[%4s] %s: %d%%", overall_percentage_str, file, file_percentage);
332 } else {
333 Printf("[%4s] %s", overall_percentage_str, file);
334 }
335 }
Elliott Hughesb708d162015-10-27 16:03:15 -0700336 }
337
Josh Gao983c41c2015-11-02 17:15:57 -0800338 void Printf(const char* fmt, ...) __attribute__((__format__(ADB_FORMAT_ARCHETYPE, 2, 3))) {
339 std::string s;
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800340
Josh Gao983c41c2015-11-02 17:15:57 -0800341 va_list ap;
342 va_start(ap, fmt);
343 android::base::StringAppendV(&s, fmt, ap);
344 va_end(ap);
345
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800346 line_printer_.Print(s, LinePrinter::INFO);
Josh Gao983c41c2015-11-02 17:15:57 -0800347 }
348
Elliott Hughesb708d162015-10-27 16:03:15 -0700349 void Error(const char* fmt, ...) __attribute__((__format__(ADB_FORMAT_ARCHETYPE, 2, 3))) {
350 std::string s = "adb: error: ";
351
352 va_list ap;
353 va_start(ap, fmt);
354 android::base::StringAppendV(&s, fmt, ap);
355 va_end(ap);
356
Elliott Hughes77f539a2015-12-08 16:01:15 -0800357 line_printer_.Print(s, LinePrinter::ERROR);
Elliott Hughesb708d162015-10-27 16:03:15 -0700358 }
359
Josh Gao21abf5a2015-11-07 17:18:44 -0800360 void Warning(const char* fmt, ...) __attribute__((__format__(ADB_FORMAT_ARCHETYPE, 2, 3))) {
361 std::string s = "adb: warning: ";
362
363 va_list ap;
364 va_start(ap, fmt);
365 android::base::StringAppendV(&s, fmt, ap);
366 va_end(ap);
367
Elliott Hughes77f539a2015-12-08 16:01:15 -0800368 line_printer_.Print(s, LinePrinter::WARNING);
Josh Gao21abf5a2015-11-07 17:18:44 -0800369 }
370
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800371 void ComputeExpectedTotalBytes(const std::vector<copyinfo>& file_list) {
372 expected_total_bytes_ = 0;
373 for (const copyinfo& ci : file_list) {
374 // Unfortunately, this doesn't work for symbolic links, because we'll copy the
375 // target of the link rather than just creating a link. (But ci.size is the link size.)
376 if (!ci.skip) expected_total_bytes_ += ci.size;
377 }
378 expect_multiple_files_ = true;
379 }
380
381 void SetExpectedTotalBytes(uint64_t expected_total_bytes) {
382 expected_total_bytes_ = expected_total_bytes;
383 expect_multiple_files_ = false;
384 }
385
386 uint64_t total_bytes_;
Elliott Hughesaa245492015-08-03 10:38:08 -0700387
388 // TODO: add a char[max] buffer here, to replace syncsendbuf...
389 int fd;
390 size_t max;
391
392 private:
Elliott Hughesb708d162015-10-27 16:03:15 -0700393 uint64_t start_time_ms_;
394
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800395 uint64_t expected_total_bytes_;
396 bool expect_multiple_files_;
Josh Gaoda811952016-02-19 15:55:55 -0800397 bool expect_done_;
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800398
Elliott Hughesb708d162015-10-27 16:03:15 -0700399 LinePrinter line_printer_;
Elliott Hughesaa245492015-08-03 10:38:08 -0700400
Spencer Low351ecd12015-10-14 17:32:44 -0700401 bool SendQuit() {
402 return SendRequest(ID_QUIT, ""); // TODO: add a SendResponse?
Elliott Hughesaa245492015-08-03 10:38:08 -0700403 }
404
Elliott Hughescc65c3b2015-11-20 22:01:06 -0800405 bool WriteOrDie(const char* from, const char* to, const void* data, size_t data_length) {
406 if (!WriteFdExactly(fd, data, data_length)) {
407 if (errno == ECONNRESET) {
408 // Assume adbd told us why it was closing the connection, and
409 // try to read failure reason from adbd.
410 syncmsg msg;
411 if (!ReadFdExactly(fd, &msg.status, sizeof(msg.status))) {
412 Error("failed to copy '%s' to '%s': no response: %s", from, to, strerror(errno));
413 } else if (msg.status.id != ID_FAIL) {
414 Error("failed to copy '%s' to '%s': not ID_FAIL: %d", from, to, msg.status.id);
415 } else {
416 ReportCopyFailure(from, to, msg);
417 }
418 } else {
419 Error("%zu-byte write failed: %s", data_length, strerror(errno));
420 }
421 _exit(1);
422 }
423 return true;
424 }
425
Elliott Hughesb708d162015-10-27 16:03:15 -0700426 static uint64_t CurrentTimeMs() {
427 struct timeval tv;
428 gettimeofday(&tv, 0); // (Not clock_gettime because of Mac/Windows.)
429 return static_cast<uint64_t>(tv.tv_sec) * 1000 + tv.tv_usec / 1000;
Elliott Hughesaa245492015-08-03 10:38:08 -0700430 }
431};
432
Josh Gaocda6a2b2015-11-02 16:45:47 -0800433typedef void (sync_ls_cb)(unsigned mode, unsigned size, unsigned time, const char* name);
Elliott Hughesaa245492015-08-03 10:38:08 -0700434
Josh Gaocda6a2b2015-11-02 16:45:47 -0800435static bool sync_ls(SyncConnection& sc, const char* path,
436 std::function<sync_ls_cb> func) {
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700437 if (!sc.SendRequest(ID_LIST, path)) return false;
Elliott Hughesaa245492015-08-03 10:38:08 -0700438
439 while (true) {
440 syncmsg msg;
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700441 if (!ReadFdExactly(sc.fd, &msg.dent, sizeof(msg.dent))) return false;
Elliott Hughesaa245492015-08-03 10:38:08 -0700442
443 if (msg.dent.id == ID_DONE) return true;
444 if (msg.dent.id != ID_DENT) return false;
445
Elliott Hughesf4465202015-08-24 14:27:03 -0700446 size_t len = msg.dent.namelen;
Elliott Hughesaa245492015-08-03 10:38:08 -0700447 if (len > 256) return false; // TODO: resize buffer? continue?
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800448
Elliott Hughes5c742702015-07-30 17:42:01 -0700449 char buf[257];
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700450 if (!ReadFdExactly(sc.fd, buf, len)) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800451 buf[len] = 0;
452
Josh Gaocda6a2b2015-11-02 16:45:47 -0800453 func(msg.dent.mode, msg.dent.size, msg.dent.time, buf);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800454 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800455}
456
Elliott Hughesaa245492015-08-03 10:38:08 -0700457static bool sync_finish_stat(SyncConnection& sc, unsigned int* timestamp,
458 unsigned int* mode, unsigned int* size) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800459 syncmsg msg;
Elliott Hughesaa245492015-08-03 10:38:08 -0700460 if (!ReadFdExactly(sc.fd, &msg.stat, sizeof(msg.stat)) || msg.stat.id != ID_STAT) {
461 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800462 }
463
Elliott Hughesf4465202015-08-24 14:27:03 -0700464 if (timestamp) *timestamp = msg.stat.time;
465 if (mode) *mode = msg.stat.mode;
466 if (size) *size = msg.stat.size;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800467
Elliott Hughesaa245492015-08-03 10:38:08 -0700468 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800469}
470
Elliott Hughesaa245492015-08-03 10:38:08 -0700471static bool sync_stat(SyncConnection& sc, const char* path,
472 unsigned int* timestamp, unsigned int* mode, unsigned int* size) {
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700473 return sc.SendRequest(ID_STAT, path) && sync_finish_stat(sc, timestamp, mode, size);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800474}
475
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700476static bool sync_send(SyncConnection& sc, const char* lpath, const char* rpath,
Elliott Hughesb708d162015-10-27 16:03:15 -0700477 unsigned mtime, mode_t mode)
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700478{
479 std::string path_and_mode = android::base::StringPrintf("%s,%d", rpath, mode);
480
481 if (S_ISLNK(mode)) {
482#if !defined(_WIN32)
483 char buf[PATH_MAX];
484 ssize_t data_length = readlink(lpath, buf, PATH_MAX - 1);
485 if (data_length == -1) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700486 sc.Error("readlink '%s' failed: %s", lpath, strerror(errno));
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700487 return false;
488 }
489 buf[data_length++] = '\0';
490
Elliott Hughescc65c3b2015-11-20 22:01:06 -0800491 if (!sc.SendSmallFile(path_and_mode.c_str(), lpath, rpath, mtime, buf, data_length)) {
492 return false;
493 }
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700494 return sc.CopyDone(lpath, rpath);
495#endif
496 }
497
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700498 struct stat st;
499 if (stat(lpath, &st) == -1) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700500 sc.Error("failed to stat local file '%s': %s", lpath, strerror(errno));
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700501 return false;
502 }
503 if (st.st_size < SYNC_DATA_MAX) {
504 std::string data;
505 if (!android::base::ReadFileToString(lpath, &data)) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700506 sc.Error("failed to read all of '%s': %s", lpath, strerror(errno));
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700507 return false;
508 }
Elliott Hughescc65c3b2015-11-20 22:01:06 -0800509 if (!sc.SendSmallFile(path_and_mode.c_str(), lpath, rpath, mtime,
510 data.data(), data.size())) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700511 return false;
512 }
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700513 } else {
Elliott Hughes6aab58c2015-11-20 17:35:17 -0800514 if (!sc.SendLargeFile(path_and_mode.c_str(), lpath, rpath, mtime)) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700515 return false;
516 }
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700517 }
518 return sc.CopyDone(lpath, rpath);
519}
520
Elliott Hughesb708d162015-10-27 16:03:15 -0700521static bool sync_recv(SyncConnection& sc, const char* rpath, const char* lpath) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700522 unsigned size = 0;
Elliott Hughesb708d162015-10-27 16:03:15 -0700523 if (!sync_stat(sc, rpath, nullptr, nullptr, &size)) return false;
Mark Lindner76f2a932014-03-11 17:55:59 -0700524
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700525 if (!sc.SendRequest(ID_RECV, rpath)) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800526
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700527 adb_unlink(lpath);
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700528 int lfd = adb_creat(lpath, 0644);
529 if (lfd < 0) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700530 sc.Error("cannot create '%s': %s", lpath, strerror(errno));
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700531 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800532 }
533
Elliott Hughesb708d162015-10-27 16:03:15 -0700534 uint64_t bytes_copied = 0;
Elliott Hughesaa245492015-08-03 10:38:08 -0700535 while (true) {
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700536 syncmsg msg;
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700537 if (!ReadFdExactly(sc.fd, &msg.data, sizeof(msg.data))) {
Spencer Lowd8cce182015-08-28 01:07:30 -0700538 adb_close(lfd);
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700539 adb_unlink(lpath);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700540 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800541 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800542
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700543 if (msg.data.id == ID_DONE) break;
544
545 if (msg.data.id != ID_DATA) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800546 adb_close(lfd);
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700547 adb_unlink(lpath);
548 sc.ReportCopyFailure(rpath, lpath, msg);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700549 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800550 }
551
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700552 if (msg.data.size > sc.max) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700553 sc.Error("msg.data.size too large: %u (max %zu)", msg.data.size, sc.max);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800554 adb_close(lfd);
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700555 adb_unlink(lpath);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700556 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800557 }
558
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700559 char buffer[SYNC_DATA_MAX];
560 if (!ReadFdExactly(sc.fd, buffer, msg.data.size)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800561 adb_close(lfd);
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700562 adb_unlink(lpath);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700563 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800564 }
565
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700566 if (!WriteFdExactly(lfd, buffer, msg.data.size)) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700567 sc.Error("cannot write '%s': %s", lpath, strerror(errno));
Elliott Hughes8b43c3e2015-10-23 21:06:11 -0700568 adb_close(lfd);
569 adb_unlink(lpath);
570 return false;
571 }
572
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800573 sc.total_bytes_ += msg.data.size;
Mark Lindner76f2a932014-03-11 17:55:59 -0700574
Elliott Hughesb708d162015-10-27 16:03:15 -0700575 bytes_copied += msg.data.size;
576
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800577 sc.ReportProgress(rpath, bytes_copied, size);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800578 }
579
580 adb_close(lfd);
Elliott Hughesae5a6c02015-09-27 12:55:37 -0700581 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800582}
583
Elliott Hughesaa245492015-08-03 10:38:08 -0700584bool do_sync_ls(const char* path) {
585 SyncConnection sc;
586 if (!sc.IsValid()) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800587
Josh Gaocda6a2b2015-11-02 16:45:47 -0800588 return sync_ls(sc, path, [](unsigned mode, unsigned size, unsigned time,
589 const char* name) {
590 printf("%08x %08x %08x %s\n", mode, size, time, name);
591 });
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800592}
593
Elliott Hughesaa245492015-08-03 10:38:08 -0700594static bool IsDotOrDotDot(const char* name) {
595 return name[0] == '.' && (name[1] == '\0' || (name[1] == '.' && name[2] == '\0'));
596}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800597
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800598static bool local_build_list(SyncConnection& sc, std::vector<copyinfo>* file_list,
Josh Gaocd7c1ed2015-11-03 15:26:38 -0800599 const std::string& lpath,
600 const std::string& rpath) {
Josh Gaocda6a2b2015-11-02 16:45:47 -0800601 std::vector<copyinfo> dirlist;
Josh Gaod9731572015-11-03 15:23:03 -0800602 std::unique_ptr<DIR, int (*)(DIR*)> dir(opendir(lpath.c_str()), closedir);
Elliott Hughesaa245492015-08-03 10:38:08 -0700603 if (!dir) {
Josh Gaod9731572015-11-03 15:23:03 -0800604 sc.Error("cannot open '%s': %s", lpath.c_str(), strerror(errno));
Josh Gaocd7c1ed2015-11-03 15:26:38 -0800605 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800606 }
607
Josh Gao65800962015-11-04 14:57:04 -0800608 bool empty_dir = true;
Elliott Hughesb708d162015-10-27 16:03:15 -0700609 dirent* de;
Elliott Hughesaa245492015-08-03 10:38:08 -0700610 while ((de = readdir(dir.get()))) {
Josh Gao65800962015-11-04 14:57:04 -0800611 if (IsDotOrDotDot(de->d_name)) {
612 continue;
613 }
Elliott Hughesaa245492015-08-03 10:38:08 -0700614
Josh Gao65800962015-11-04 14:57:04 -0800615 empty_dir = false;
Josh Gaod9731572015-11-03 15:23:03 -0800616 std::string stat_path = lpath + de->d_name;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800617
Elliott Hughesaa245492015-08-03 10:38:08 -0700618 struct stat st;
Josh Gao12a2ae92015-11-07 15:27:26 -0800619 if (lstat(stat_path.c_str(), &st) == -1) {
Josh Gaod9731572015-11-03 15:23:03 -0800620 sc.Error("cannot lstat '%s': %s", stat_path.c_str(),
621 strerror(errno));
Josh Gao12a2ae92015-11-07 15:27:26 -0800622 continue;
623 }
624
Josh Gaof2642242015-12-09 14:03:30 -0800625 copyinfo ci(lpath, rpath, de->d_name, st.st_mode);
Josh Gao12a2ae92015-11-07 15:27:26 -0800626 if (S_ISDIR(st.st_mode)) {
627 dirlist.push_back(ci);
628 } else {
Josh Gao48bc0d72016-03-02 16:11:13 -0800629 if (!should_push_file(st.st_mode)) {
630 sc.Warning("skipping special file '%s' (mode = 0o%o)", lpath.c_str(), st.st_mode);
Josh Gaodd6cc4d2015-11-30 10:21:25 -0800631 ci.skip = true;
Josh Gao12a2ae92015-11-07 15:27:26 -0800632 }
Josh Gao48bc0d72016-03-02 16:11:13 -0800633 ci.time = st.st_mtime;
634 ci.size = st.st_size;
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800635 file_list->push_back(ci);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800636 }
637 }
638
Elliott Hughesaa245492015-08-03 10:38:08 -0700639 // Close this directory and recurse.
640 dir.reset();
Josh Gao65800962015-11-04 14:57:04 -0800641
642 // Add the current directory to the list if it was empty, to ensure that
643 // it gets created.
644 if (empty_dir) {
645 // TODO(b/25566053): Make pushing empty directories work.
646 // TODO(b/25457350): We don't preserve permissions on directories.
Josh Gao21abf5a2015-11-07 17:18:44 -0800647 sc.Warning("skipping empty directory '%s'", lpath.c_str());
Josh Gaof2642242015-12-09 14:03:30 -0800648 copyinfo ci(adb_dirname(lpath), adb_dirname(rpath), adb_basename(lpath), S_IFDIR);
Josh Gao65800962015-11-04 14:57:04 -0800649 ci.skip = true;
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800650 file_list->push_back(ci);
Josh Gao65800962015-11-04 14:57:04 -0800651 return true;
652 }
653
Josh Gaocda6a2b2015-11-02 16:45:47 -0800654 for (const copyinfo& ci : dirlist) {
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800655 local_build_list(sc, file_list, ci.lpath, ci.rpath);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800656 }
657
Josh Gaocd7c1ed2015-11-03 15:26:38 -0800658 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800659}
660
Josh Gaod9731572015-11-03 15:23:03 -0800661static bool copy_local_dir_remote(SyncConnection& sc, std::string lpath,
662 std::string rpath, bool check_timestamps,
663 bool list_only) {
664 // Make sure that both directory paths end in a slash.
Josh Gao1a025302015-11-09 11:12:14 -0800665 // Both paths are known to be nonempty, so we don't need to check.
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800666 ensure_trailing_separators(lpath, rpath);
Josh Gaod9731572015-11-03 15:23:03 -0800667
668 // Recursively build the list of files to copy.
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800669 std::vector<copyinfo> file_list;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800670 int pushed = 0;
671 int skipped = 0;
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800672 if (!local_build_list(sc, &file_list, lpath, rpath)) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700673 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800674 }
675
Elliott Hughesaa245492015-08-03 10:38:08 -0700676 if (check_timestamps) {
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800677 for (const copyinfo& ci : file_list) {
Josh Gao1a025302015-11-09 11:12:14 -0800678 if (!sc.SendRequest(ID_STAT, ci.rpath.c_str())) {
Josh Gaod9731572015-11-03 15:23:03 -0800679 return false;
680 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800681 }
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800682 for (copyinfo& ci : file_list) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800683 unsigned int timestamp, mode, size;
Josh Gaod9731572015-11-03 15:23:03 -0800684 if (!sync_finish_stat(sc, &timestamp, &mode, &size)) {
685 return false;
686 }
Josh Gaocda6a2b2015-11-02 16:45:47 -0800687 if (size == ci.size) {
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800688 // For links, we cannot update the atime/mtime.
Josh Gaocda6a2b2015-11-02 16:45:47 -0800689 if ((S_ISREG(ci.mode & mode) && timestamp == ci.time) ||
690 (S_ISLNK(ci.mode & mode) && timestamp >= ci.time)) {
Josh Gaofc7c3b62015-11-03 14:44:04 -0800691 ci.skip = true;
Elliott Hughesaa245492015-08-03 10:38:08 -0700692 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800693 }
694 }
695 }
Josh Gaocda6a2b2015-11-02 16:45:47 -0800696
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800697 sc.ComputeExpectedTotalBytes(file_list);
698
699 for (const copyinfo& ci : file_list) {
Josh Gaofc7c3b62015-11-03 14:44:04 -0800700 if (!ci.skip) {
Elliott Hughesb708d162015-10-27 16:03:15 -0700701 if (list_only) {
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800702 sc.Error("would push: %s -> %s", ci.lpath.c_str(), ci.rpath.c_str());
Elliott Hughesb708d162015-10-27 16:03:15 -0700703 } else {
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800704 if (!sync_send(sc, ci.lpath.c_str(), ci.rpath.c_str(), ci.time, ci.mode)) {
Josh Gaod9731572015-11-03 15:23:03 -0800705 return false;
Elliott Hughesb708d162015-10-27 16:03:15 -0700706 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800707 }
708 pushed++;
709 } else {
710 skipped++;
711 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800712 }
713
Elliott Hughes77f539a2015-12-08 16:01:15 -0800714 sc.Printf("%s: %d file%s pushed. %d file%s skipped.%s", rpath.c_str(),
Josh Gaod9731572015-11-03 15:23:03 -0800715 pushed, (pushed == 1) ? "" : "s", skipped,
716 (skipped == 1) ? "" : "s", sc.TransferRate().c_str());
Elliott Hughesaa245492015-08-03 10:38:08 -0700717 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800718}
719
Josh Gao05786772015-10-30 16:57:19 -0700720bool do_sync_push(const std::vector<const char*>& srcs, const char* dst) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700721 SyncConnection sc;
722 if (!sc.IsValid()) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800723
Josh Gao05786772015-10-30 16:57:19 -0700724 bool success = true;
Josh Gao12a2ae92015-11-07 15:27:26 -0800725 unsigned dst_mode;
726 if (!sync_stat(sc, dst, nullptr, &dst_mode, nullptr)) return false;
727 bool dst_exists = (dst_mode != 0);
Josh Gao07db1192015-11-07 15:38:19 -0800728 bool dst_isdir = S_ISDIR(dst_mode);
Josh Gao05786772015-10-30 16:57:19 -0700729
Josh Gao07db1192015-11-07 15:38:19 -0800730 if (!dst_isdir) {
Josh Gao05786772015-10-30 16:57:19 -0700731 if (srcs.size() > 1) {
732 sc.Error("target '%s' is not a directory", dst);
733 return false;
734 } else {
735 size_t dst_len = strlen(dst);
Josh Gao12a2ae92015-11-07 15:27:26 -0800736
737 // A path that ends with a slash doesn't have to be a directory if
738 // it doesn't exist yet.
739 if (dst[dst_len - 1] == '/' && dst_exists) {
Josh Gao05786772015-10-30 16:57:19 -0700740 sc.Error("failed to access '%s': Not a directory", dst);
741 return false;
742 }
743 }
Elliott Hughesaa245492015-08-03 10:38:08 -0700744 }
Josh Gao05786772015-10-30 16:57:19 -0700745
746 for (const char* src_path : srcs) {
747 const char* dst_path = dst;
748 struct stat st;
Josh Gao12a2ae92015-11-07 15:27:26 -0800749 if (stat(src_path, &st) == -1) {
Josh Gao05786772015-10-30 16:57:19 -0700750 sc.Error("cannot stat '%s': %s", src_path, strerror(errno));
751 success = false;
752 continue;
753 }
754
755 if (S_ISDIR(st.st_mode)) {
Josh Gao07db1192015-11-07 15:38:19 -0800756 std::string dst_dir = dst;
757
758 // If the destination path existed originally, the source directory
759 // should be copied as a child of the destination.
760 if (dst_exists) {
761 if (!dst_isdir) {
762 sc.Error("target '%s' is not a directory", dst);
763 return false;
764 }
765 // dst is a POSIX path, so we don't want to use the sysdeps
766 // helpers here.
767 if (dst_dir.back() != '/') {
768 dst_dir.push_back('/');
769 }
770 dst_dir.append(adb_basename(src_path));
771 }
772
773 success &= copy_local_dir_remote(sc, src_path, dst_dir.c_str(),
774 false, false);
Josh Gao05786772015-10-30 16:57:19 -0700775 continue;
Josh Gao48bc0d72016-03-02 16:11:13 -0800776 } else if (!should_push_file(st.st_mode)) {
777 sc.Warning("skipping special file '%s' (mode = 0o%o)", src_path, st.st_mode);
778 continue;
Josh Gao05786772015-10-30 16:57:19 -0700779 }
780
781 std::string path_holder;
Josh Gao07db1192015-11-07 15:38:19 -0800782 if (dst_isdir) {
Josh Gao05786772015-10-30 16:57:19 -0700783 // If we're copying a local file to a remote directory,
784 // we really want to copy to remote_dir + "/" + local_filename.
Josh Gao323899b2016-02-03 14:55:24 -0800785 path_holder = dst_path;
786 if (path_holder.back() != '/') {
787 path_holder.push_back('/');
788 }
789 path_holder += adb_basename(src_path);
Josh Gao05786772015-10-30 16:57:19 -0700790 dst_path = path_holder.c_str();
791 }
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800792 sc.SetExpectedTotalBytes(st.st_size);
Josh Gao05786772015-10-30 16:57:19 -0700793 success &= sync_send(sc, src_path, dst_path, st.st_mtime, st.st_mode);
794 }
795
Josh Gao05786772015-10-30 16:57:19 -0700796 return success;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800797}
798
Josh Gaof2642242015-12-09 14:03:30 -0800799static bool remote_symlink_isdir(SyncConnection& sc, const std::string& rpath) {
800 unsigned mode;
801 std::string dir_path = rpath;
802 dir_path.push_back('/');
803 if (!sync_stat(sc, dir_path.c_str(), nullptr, &mode, nullptr)) {
804 sc.Error("failed to stat remote symlink '%s'", dir_path.c_str());
805 return false;
806 }
807 return S_ISDIR(mode);
808}
809
Josh Gaoa63b17f2016-02-25 17:12:45 -0800810static bool remote_build_list(SyncConnection& sc, std::vector<copyinfo>* file_list,
811 const std::string& rpath, const std::string& lpath) {
Josh Gaocda6a2b2015-11-02 16:45:47 -0800812 std::vector<copyinfo> dirlist;
Josh Gaof2642242015-12-09 14:03:30 -0800813 std::vector<copyinfo> linklist;
Josh Gaoa63b17f2016-02-25 17:12:45 -0800814
815 // Add an entry for the current directory to ensure it gets created before pulling its contents.
816 copyinfo ci(adb_dirname(lpath), adb_dirname(rpath), adb_basename(rpath), S_IFDIR);
817 file_list->push_back(ci);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800818
Elliott Hughesaa245492015-08-03 10:38:08 -0700819 // Put the files/dirs in rpath on the lists.
Josh Gaodd6cc4d2015-11-30 10:21:25 -0800820 auto callback = [&](unsigned mode, unsigned size, unsigned time, const char* name) {
Josh Gao65800962015-11-04 14:57:04 -0800821 if (IsDotOrDotDot(name)) {
822 return;
823 }
Josh Gaocda6a2b2015-11-02 16:45:47 -0800824
Josh Gaof2642242015-12-09 14:03:30 -0800825 copyinfo ci(lpath, rpath, name, mode);
Josh Gao65800962015-11-04 14:57:04 -0800826 if (S_ISDIR(mode)) {
827 dirlist.push_back(ci);
Josh Gaof2642242015-12-09 14:03:30 -0800828 } else if (S_ISLNK(mode)) {
829 linklist.push_back(ci);
Josh Gaocda6a2b2015-11-02 16:45:47 -0800830 } else {
Josh Gao48bc0d72016-03-02 16:11:13 -0800831 if (!should_pull_file(ci.mode)) {
832 sc.Warning("skipping special file '%s' (mode = 0o%o)", ci.rpath.c_str(), ci.mode);
833 ci.skip = true;
834 }
Josh Gaof2642242015-12-09 14:03:30 -0800835 ci.time = time;
836 ci.size = size;
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800837 file_list->push_back(ci);
Josh Gaocda6a2b2015-11-02 16:45:47 -0800838 }
839 };
840
Josh Gaod9731572015-11-03 15:23:03 -0800841 if (!sync_ls(sc, rpath.c_str(), callback)) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700842 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800843 }
844
Josh Gaof2642242015-12-09 14:03:30 -0800845 // Check each symlink we found to see whether it's a file or directory.
846 for (copyinfo& link_ci : linklist) {
847 if (remote_symlink_isdir(sc, link_ci.rpath)) {
848 dirlist.emplace_back(std::move(link_ci));
849 } else {
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800850 file_list->emplace_back(std::move(link_ci));
Josh Gaof2642242015-12-09 14:03:30 -0800851 }
852 }
853
Elliott Hughesaa245492015-08-03 10:38:08 -0700854 // Recurse into each directory we found.
Josh Gaocda6a2b2015-11-02 16:45:47 -0800855 while (!dirlist.empty()) {
856 copyinfo current = dirlist.back();
857 dirlist.pop_back();
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800858 if (!remote_build_list(sc, file_list, current.rpath, current.lpath)) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700859 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800860 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800861 }
862
Elliott Hughesaa245492015-08-03 10:38:08 -0700863 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800864}
865
Josh Gao1a025302015-11-09 11:12:14 -0800866static int set_time_and_mode(const std::string& lpath, time_t time,
867 unsigned int mode) {
Greg Hackmann7a5e2bd2014-05-06 08:48:18 -0700868 struct utimbuf times = { time, time };
Josh Gao1a025302015-11-09 11:12:14 -0800869 int r1 = utime(lpath.c_str(), &times);
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700870
871 /* use umask for permissions */
Josh Gaocda6a2b2015-11-02 16:45:47 -0800872 mode_t mask = umask(0000);
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700873 umask(mask);
Josh Gao1a025302015-11-09 11:12:14 -0800874 int r2 = chmod(lpath.c_str(), mode & ~mask);
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700875
Spencer Low363af562015-11-07 18:51:54 -0800876 return r1 ? r1 : r2;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700877}
878
Josh Gaod9731572015-11-03 15:23:03 -0800879static bool copy_remote_dir_local(SyncConnection& sc, std::string rpath,
880 std::string lpath, bool copy_attrs) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700881 // Make sure that both directory paths end in a slash.
Josh Gao12a2ae92015-11-07 15:27:26 -0800882 // Both paths are known to be nonempty, so we don't need to check.
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800883 ensure_trailing_separators(lpath, rpath);
Riley Andrews4d04d242014-12-12 13:12:36 -0800884
Elliott Hughesaa245492015-08-03 10:38:08 -0700885 // Recursively build the list of files to copy.
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800886 sc.Printf("pull: building file list...");
887 std::vector<copyinfo> file_list;
888 if (!remote_build_list(sc, &file_list, rpath.c_str(), lpath.c_str())) {
Josh Gaocda6a2b2015-11-02 16:45:47 -0800889 return false;
890 }
Elliott Hughesaa245492015-08-03 10:38:08 -0700891
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800892 sc.ComputeExpectedTotalBytes(file_list);
893
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800894 int pulled = 0;
895 int skipped = 0;
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800896 for (const copyinfo &ci : file_list) {
Josh Gaofc7c3b62015-11-03 14:44:04 -0800897 if (!ci.skip) {
Josh Gao65800962015-11-04 14:57:04 -0800898 if (S_ISDIR(ci.mode)) {
899 // Entry is for an empty directory, create it and continue.
900 // TODO(b/25457350): We don't preserve permissions on directories.
Josh Gao1a025302015-11-09 11:12:14 -0800901 if (!mkdirs(ci.lpath)) {
Josh Gao65800962015-11-04 14:57:04 -0800902 sc.Error("failed to create directory '%s': %s",
Josh Gao1a025302015-11-09 11:12:14 -0800903 ci.lpath.c_str(), strerror(errno));
Josh Gao65800962015-11-04 14:57:04 -0800904 return false;
905 }
906 pulled++;
907 continue;
908 }
909
Josh Gao1a025302015-11-09 11:12:14 -0800910 if (!sync_recv(sc, ci.rpath.c_str(), ci.lpath.c_str())) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700911 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800912 }
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700913
Josh Gao1a025302015-11-09 11:12:14 -0800914 if (copy_attrs && set_time_and_mode(ci.lpath, ci.time, ci.mode)) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700915 return false;
Lajos Molnarde8ff4a2013-04-19 12:41:09 -0700916 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800917 pulled++;
918 } else {
919 skipped++;
920 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800921 }
922
Elliott Hughes77f539a2015-12-08 16:01:15 -0800923 sc.Printf("%s: %d file%s pulled. %d file%s skipped.%s", rpath.c_str(),
Josh Gaod9731572015-11-03 15:23:03 -0800924 pulled, (pulled == 1) ? "" : "s", skipped,
925 (skipped == 1) ? "" : "s", sc.TransferRate().c_str());
Elliott Hughesaa245492015-08-03 10:38:08 -0700926 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800927}
928
Josh Gao05786772015-10-30 16:57:19 -0700929bool do_sync_pull(const std::vector<const char*>& srcs, const char* dst,
930 bool copy_attrs) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700931 SyncConnection sc;
932 if (!sc.IsValid()) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800933
Josh Gao05786772015-10-30 16:57:19 -0700934 bool success = true;
Josh Gao05786772015-10-30 16:57:19 -0700935 struct stat st;
Josh Gao12a2ae92015-11-07 15:27:26 -0800936 bool dst_exists = true;
937
938 if (stat(dst, &st) == -1) {
939 dst_exists = false;
940
941 // If we're only pulling one path, the destination path might point to
Josh Gao05786772015-10-30 16:57:19 -0700942 // a path that doesn't exist yet.
Josh Gao12a2ae92015-11-07 15:27:26 -0800943 if (srcs.size() == 1 && errno == ENOENT) {
944 // However, its parent must exist.
945 struct stat parent_st;
946 if (stat(adb_dirname(dst).c_str(), &parent_st) == -1) {
947 sc.Error("cannot create file/directory '%s': %s", dst, strerror(errno));
948 return false;
949 }
950 } else {
951 sc.Error("failed to access '%s': %s", dst, strerror(errno));
Josh Gao05786772015-10-30 16:57:19 -0700952 return false;
953 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800954 }
955
Josh Gao07db1192015-11-07 15:38:19 -0800956 bool dst_isdir = dst_exists && S_ISDIR(st.st_mode);
957 if (!dst_isdir) {
Josh Gao05786772015-10-30 16:57:19 -0700958 if (srcs.size() > 1) {
959 sc.Error("target '%s' is not a directory", dst);
Elliott Hughesaa245492015-08-03 10:38:08 -0700960 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800961 } else {
Josh Gao05786772015-10-30 16:57:19 -0700962 size_t dst_len = strlen(dst);
Josh Gao12a2ae92015-11-07 15:27:26 -0800963
964 // A path that ends with a slash doesn't have to be a directory if
965 // it doesn't exist yet.
Josh Gao1a025302015-11-09 11:12:14 -0800966 if (adb_is_separator(dst[dst_len - 1]) && dst_exists) {
Josh Gao05786772015-10-30 16:57:19 -0700967 sc.Error("failed to access '%s': Not a directory", dst);
Elliott Hughesaa245492015-08-03 10:38:08 -0700968 return false;
Elliott Hughes5c742702015-07-30 17:42:01 -0700969 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800970 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800971 }
Elliott Hughesaa245492015-08-03 10:38:08 -0700972
Josh Gao05786772015-10-30 16:57:19 -0700973 for (const char* src_path : srcs) {
974 const char* dst_path = dst;
Elliott Hughesa00e6ef2015-12-17 17:05:29 -0800975 unsigned src_mode, src_time, src_size;
976 if (!sync_stat(sc, src_path, &src_time, &src_mode, &src_size)) {
Josh Gaof2642242015-12-09 14:03:30 -0800977 sc.Error("failed to stat remote object '%s'", src_path);
Josh Gao12a2ae92015-11-07 15:27:26 -0800978 return false;
979 }
980 if (src_mode == 0) {
Josh Gao05786772015-10-30 16:57:19 -0700981 sc.Error("remote object '%s' does not exist", src_path);
982 success = false;
983 continue;
984 }
985
Josh Gaof2642242015-12-09 14:03:30 -0800986 bool src_isdir = S_ISDIR(src_mode);
987 if (S_ISLNK(src_mode)) {
988 src_isdir = remote_symlink_isdir(sc, src_path);
989 }
990
Josh Gaof2642242015-12-09 14:03:30 -0800991 if (src_isdir) {
Josh Gao07db1192015-11-07 15:38:19 -0800992 std::string dst_dir = dst;
993
994 // If the destination path existed originally, the source directory
995 // should be copied as a child of the destination.
996 if (dst_exists) {
997 if (!dst_isdir) {
998 sc.Error("target '%s' is not a directory", dst);
999 return false;
1000 }
1001 if (!adb_is_separator(dst_dir.back())) {
1002 dst_dir.push_back(OS_PATH_SEPARATOR);
1003 }
1004 dst_dir.append(adb_basename(src_path));
1005 }
1006
Josh Gaof2642242015-12-09 14:03:30 -08001007 success &= copy_remote_dir_local(sc, src_path, dst_dir.c_str(), copy_attrs);
Josh Gao05786772015-10-30 16:57:19 -07001008 continue;
Josh Gao48bc0d72016-03-02 16:11:13 -08001009 } else if (!should_pull_file(src_mode)) {
1010 sc.Warning("skipping special file '%s' (mode = 0o%o)", src_path, src_mode);
1011 continue;
1012 }
Josh Gaof2642242015-12-09 14:03:30 -08001013
Josh Gao48bc0d72016-03-02 16:11:13 -08001014 std::string path_holder;
1015 if (dst_isdir) {
1016 // If we're copying a remote file to a local directory, we
1017 // really want to copy to local_dir + OS_PATH_SEPARATOR +
1018 // basename(remote).
1019 path_holder = android::base::StringPrintf("%s%c%s", dst_path, OS_PATH_SEPARATOR,
1020 adb_basename(src_path).c_str());
1021 dst_path = path_holder.c_str();
1022 }
Josh Gaof2642242015-12-09 14:03:30 -08001023
Josh Gao48bc0d72016-03-02 16:11:13 -08001024 sc.SetExpectedTotalBytes(src_size);
1025 if (!sync_recv(sc, src_path, dst_path)) {
1026 success = false;
1027 continue;
1028 }
1029
1030 if (copy_attrs && set_time_and_mode(dst_path, src_time, src_mode) != 0) {
1031 success = false;
1032 continue;
Josh Gao05786772015-10-30 16:57:19 -07001033 }
1034 }
1035
Josh Gao05786772015-10-30 16:57:19 -07001036 return success;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001037}
1038
Elliott Hughesaa245492015-08-03 10:38:08 -07001039bool do_sync_sync(const std::string& lpath, const std::string& rpath, bool list_only) {
Elliott Hughesaa245492015-08-03 10:38:08 -07001040 SyncConnection sc;
1041 if (!sc.IsValid()) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001042
Josh Gaod9731572015-11-03 15:23:03 -08001043 return copy_local_dir_remote(sc, lpath, rpath, true, list_only);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001044}