blob: 3e4644716e6c08e3d56ccca95b9a466bc182aba1 [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 Albert33134262015-03-19 15:21:08 -070017#define TRACE_TAG TRACE_SYNC
18
19#include "sysdeps.h"
20#include "file_sync_service.h"
21
Dan Albert76649012015-02-24 15:51:19 -080022#include <dirent.h>
23#include <errno.h>
24#include <selinux/android.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080025#include <stdio.h>
Dan Albert76649012015-02-24 15:51:19 -080026#include <stdlib.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080027#include <string.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028#include <sys/stat.h>
29#include <sys/types.h>
Liang Cheng20d33f42014-01-02 18:27:51 -080030#include <unistd.h>
Dan Albert76649012015-02-24 15:51:19 -080031#include <utime.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080032
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080033#include "adb.h"
Dan Albertcc731cc2015-02-24 21:26:58 -080034#include "adb_io.h"
Dan Albert76649012015-02-24 15:51:19 -080035#include "private/android_filesystem_config.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080036
Elliott Hughesaa245492015-08-03 10:38:08 -070037#include <base/stringprintf.h>
Elliott Hughes5c742702015-07-30 17:42:01 -070038#include <base/strings.h>
39
40static bool should_use_fs_config(const std::string& path) {
Elliott Hughesec7a6672015-03-16 21:58:32 +000041 // TODO: use fs_config to configure permissions on /data.
Elliott Hughes5c742702015-07-30 17:42:01 -070042 return android::base::StartsWith(path, "/system/") ||
43 android::base::StartsWith(path, "/vendor/") ||
44 android::base::StartsWith(path, "/oem/");
Daniel Rosenberg686bce62014-06-30 20:29:40 -070045}
46
Alex Vallée47d67c92015-05-06 16:26:00 -040047static bool secure_mkdirs(const std::string& path) {
Nick Kralevich72917832014-01-17 16:16:42 -080048 uid_t uid = -1;
49 gid_t gid = -1;
Liang Cheng20d33f42014-01-02 18:27:51 -080050 unsigned int mode = 0775;
51 uint64_t cap = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080052
Alex Vallée47d67c92015-05-06 16:26:00 -040053 if (path[0] != '/') return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080054
Elliott Hughes5c742702015-07-30 17:42:01 -070055 std::vector<std::string> path_components = android::base::Split(path, "/");
56 path_components.pop_back(); // For "/system/bin/sh", only create "/system/bin".
57
58 std::string partial_path;
59 for (auto& path_component : path_components) {
60 if (partial_path.back() != OS_PATH_SEPARATOR) partial_path += OS_PATH_SEPARATOR;
61 partial_path += path_component;
62
63 if (should_use_fs_config(partial_path)) {
64 fs_config(partial_path.c_str(), 1, &uid, &gid, &mode, &cap);
Liang Cheng20d33f42014-01-02 18:27:51 -080065 }
Elliott Hughes5c742702015-07-30 17:42:01 -070066 if (adb_mkdir(partial_path.c_str(), mode) == -1) {
Alex Vallée47d67c92015-05-06 16:26:00 -040067 if (errno != EEXIST) {
68 return false;
Liang Cheng20d33f42014-01-02 18:27:51 -080069 }
Alex Vallée47d67c92015-05-06 16:26:00 -040070 } else {
Elliott Hughes5c742702015-07-30 17:42:01 -070071 if (chown(partial_path.c_str(), uid, gid) == -1) {
Alex Vallée47d67c92015-05-06 16:26:00 -040072 return false;
73 }
Elliott Hughes5c742702015-07-30 17:42:01 -070074 selinux_android_restorecon(partial_path.c_str(), 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080075 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080076 }
Alex Vallée47d67c92015-05-06 16:26:00 -040077 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080078}
79
Elliott Hughesaa245492015-08-03 10:38:08 -070080static bool do_stat(int s, const char* path) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080081 syncmsg msg;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080082 msg.stat.id = ID_STAT;
83
Elliott Hughesaa245492015-08-03 10:38:08 -070084 struct stat st;
85 memset(&st, 0, sizeof(st));
86 // TODO: add a way to report that the stat failed!
87 lstat(path, &st);
Elliott Hughesf4465202015-08-24 14:27:03 -070088 msg.stat.mode = st.st_mode;
89 msg.stat.size = st.st_size;
90 msg.stat.time = st.st_mtime;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080091
Elliott Hughesaa245492015-08-03 10:38:08 -070092 return WriteFdExactly(s, &msg.stat, sizeof(msg.stat));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080093}
94
Elliott Hughesaa245492015-08-03 10:38:08 -070095static bool do_list(int s, const char* path) {
96 dirent* de;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080097
Elliott Hughes5c742702015-07-30 17:42:01 -070098 syncmsg msg;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080099 msg.dent.id = ID_DENT;
100
Elliott Hughes5c742702015-07-30 17:42:01 -0700101 std::unique_ptr<DIR, int(*)(DIR*)> d(opendir(path), closedir);
102 if (!d) goto done;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800103
Elliott Hughes5c742702015-07-30 17:42:01 -0700104 while ((de = readdir(d.get()))) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700105 std::string filename(android::base::StringPrintf("%s/%s", path, de->d_name));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800106
Elliott Hughesaa245492015-08-03 10:38:08 -0700107 struct stat st;
108 if (lstat(filename.c_str(), &st) == 0) {
109 size_t d_name_length = strlen(de->d_name);
Elliott Hughesf4465202015-08-24 14:27:03 -0700110 msg.dent.mode = st.st_mode;
111 msg.dent.size = st.st_size;
112 msg.dent.time = st.st_mtime;
113 msg.dent.namelen = d_name_length;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800114
Elliott Hughesaa245492015-08-03 10:38:08 -0700115 if (!WriteFdExactly(s, &msg.dent, sizeof(msg.dent)) ||
116 !WriteFdExactly(s, de->d_name, d_name_length)) {
117 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800118 }
119 }
120 }
121
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800122done:
123 msg.dent.id = ID_DONE;
124 msg.dent.mode = 0;
125 msg.dent.size = 0;
126 msg.dent.time = 0;
127 msg.dent.namelen = 0;
Elliott Hughesaa245492015-08-03 10:38:08 -0700128 return WriteFdExactly(s, &msg.dent, sizeof(msg.dent));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800129}
130
Elliott Hughesaa245492015-08-03 10:38:08 -0700131static bool fail_message(int s, const std::string& reason) {
132 D("sync: failure: %s\n", reason.c_str());
133
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800134 syncmsg msg;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800135 msg.data.id = ID_FAIL;
Elliott Hughesf4465202015-08-24 14:27:03 -0700136 msg.data.size = reason.size();
Elliott Hughesaa245492015-08-03 10:38:08 -0700137 return WriteFdExactly(s, &msg.data, sizeof(msg.data)) && WriteFdExactly(s, reason);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800138}
139
Elliott Hughesaa245492015-08-03 10:38:08 -0700140// TODO: callers of this have already failed, and should probably ignore its
141// return value (http://b/23437039).
142static bool fail_errno(int s) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800143 return fail_message(s, strerror(errno));
144}
145
Elliott Hughesaa245492015-08-03 10:38:08 -0700146static bool handle_send_file(int s, char *path, uid_t uid,
147 gid_t gid, mode_t mode, std::vector<char>& buffer, bool do_unlink) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800148 syncmsg msg;
149 unsigned int timestamp = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800150
Elliott Hughesaa245492015-08-03 10:38:08 -0700151 int fd = adb_open_mode(path, O_WRONLY | O_CREAT | O_EXCL | O_CLOEXEC, mode);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800152 if(fd < 0 && errno == ENOENT) {
Alex Vallée47d67c92015-05-06 16:26:00 -0400153 if (!secure_mkdirs(path)) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700154 if (fail_errno(s)) return false;
Liang Cheng20d33f42014-01-02 18:27:51 -0800155 fd = -1;
156 } else {
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700157 fd = adb_open_mode(path, O_WRONLY | O_CREAT | O_EXCL | O_CLOEXEC, mode);
Liang Cheng20d33f42014-01-02 18:27:51 -0800158 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800159 }
160 if(fd < 0 && errno == EEXIST) {
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700161 fd = adb_open_mode(path, O_WRONLY | O_CLOEXEC, mode);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800162 }
163 if(fd < 0) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700164 if (fail_errno(s)) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800165 fd = -1;
Liang Cheng20d33f42014-01-02 18:27:51 -0800166 } else {
167 if(fchown(fd, uid, gid) != 0) {
168 fail_errno(s);
169 errno = 0;
170 }
Nick Kralevich72917832014-01-17 16:16:42 -0800171
172 /*
173 * fchown clears the setuid bit - restore it if present.
174 * Ignore the result of calling fchmod. It's not supported
175 * by all filesystems. b/12441485
176 */
177 fchmod(fd, mode);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800178 }
179
Elliott Hughesaa245492015-08-03 10:38:08 -0700180 while (true) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800181 unsigned int len;
182
Dan Albertcc731cc2015-02-24 21:26:58 -0800183 if(!ReadFdExactly(s, &msg.data, sizeof(msg.data)))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800184 goto fail;
185
186 if(msg.data.id != ID_DATA) {
187 if(msg.data.id == ID_DONE) {
Elliott Hughesf4465202015-08-24 14:27:03 -0700188 timestamp = msg.data.size;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800189 break;
190 }
191 fail_message(s, "invalid data message");
192 goto fail;
193 }
Elliott Hughesf4465202015-08-24 14:27:03 -0700194 len = msg.data.size;
Elliott Hughesaa245492015-08-03 10:38:08 -0700195 if (len > buffer.size()) { // TODO: resize buffer?
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800196 fail_message(s, "oversize data message");
197 goto fail;
198 }
Elliott Hughesaa245492015-08-03 10:38:08 -0700199 if (!ReadFdExactly(s, &buffer[0], len)) goto fail;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800200
Elliott Hughesaa245492015-08-03 10:38:08 -0700201 if (fd < 0) continue;
202
203 if (!WriteFdExactly(fd, &buffer[0], len)) {
JP Abgrall408fa572011-03-16 15:57:42 -0700204 int saved_errno = errno;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800205 adb_close(fd);
JP Abgrall55b6c842014-03-07 17:31:25 -0800206 if (do_unlink) adb_unlink(path);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800207 fd = -1;
JP Abgrall408fa572011-03-16 15:57:42 -0700208 errno = saved_errno;
Elliott Hughesaa245492015-08-03 10:38:08 -0700209 if (fail_errno(s)) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800210 }
211 }
212
213 if(fd >= 0) {
214 struct utimbuf u;
215 adb_close(fd);
Stephen Smalley27a93652014-02-07 09:14:13 -0500216 selinux_android_restorecon(path, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800217 u.actime = timestamp;
218 u.modtime = timestamp;
219 utime(path, &u);
220
221 msg.status.id = ID_OKAY;
222 msg.status.msglen = 0;
Elliott Hughesaa245492015-08-03 10:38:08 -0700223 if (!WriteFdExactly(s, &msg.status, sizeof(msg.status))) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800224 }
Elliott Hughesaa245492015-08-03 10:38:08 -0700225 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800226
227fail:
Elliott Hughesaa245492015-08-03 10:38:08 -0700228 if (fd >= 0) adb_close(fd);
JP Abgrall55b6c842014-03-07 17:31:25 -0800229 if (do_unlink) adb_unlink(path);
Elliott Hughesaa245492015-08-03 10:38:08 -0700230 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800231}
232
Elliott Hughes0a049b12015-01-12 14:26:36 -0800233#if defined(_WIN32)
Elliott Hughesaa245492015-08-03 10:38:08 -0700234extern bool handle_send_link(int s, char *path, std::vector<char>& buffer) __attribute__((error("no symlinks on Windows")));
Elliott Hughes0a049b12015-01-12 14:26:36 -0800235#else
Elliott Hughesaa245492015-08-03 10:38:08 -0700236static bool handle_send_link(int s, char *path, std::vector<char>& buffer) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800237 syncmsg msg;
238 unsigned int len;
239 int ret;
240
Elliott Hughesaa245492015-08-03 10:38:08 -0700241 if (!ReadFdExactly(s, &msg.data, sizeof(msg.data))) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800242
Elliott Hughesaa245492015-08-03 10:38:08 -0700243 if (msg.data.id != ID_DATA) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800244 fail_message(s, "invalid data message: expected ID_DATA");
Elliott Hughesaa245492015-08-03 10:38:08 -0700245 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800246 }
247
Elliott Hughesf4465202015-08-24 14:27:03 -0700248 len = msg.data.size;
Elliott Hughesaa245492015-08-03 10:38:08 -0700249 if (len > buffer.size()) { // TODO: resize buffer?
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800250 fail_message(s, "oversize data message");
Elliott Hughesaa245492015-08-03 10:38:08 -0700251 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800252 }
Elliott Hughesaa245492015-08-03 10:38:08 -0700253 if (!ReadFdExactly(s, &buffer[0], len)) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800254
Elliott Hughesaa245492015-08-03 10:38:08 -0700255 ret = symlink(&buffer[0], path);
256 if (ret && errno == ENOENT) {
Alex Vallée47d67c92015-05-06 16:26:00 -0400257 if (!secure_mkdirs(path)) {
Liang Cheng20d33f42014-01-02 18:27:51 -0800258 fail_errno(s);
Elliott Hughesaa245492015-08-03 10:38:08 -0700259 return false;
Liang Cheng20d33f42014-01-02 18:27:51 -0800260 }
Elliott Hughesaa245492015-08-03 10:38:08 -0700261 ret = symlink(&buffer[0], path);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800262 }
Elliott Hughesaa245492015-08-03 10:38:08 -0700263 if (ret) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800264 fail_errno(s);
Elliott Hughesaa245492015-08-03 10:38:08 -0700265 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800266 }
267
Elliott Hughesaa245492015-08-03 10:38:08 -0700268 if (!ReadFdExactly(s, &msg.data, sizeof(msg.data))) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800269
Elliott Hughesaa245492015-08-03 10:38:08 -0700270 if (msg.data.id == ID_DONE) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800271 msg.status.id = ID_OKAY;
272 msg.status.msglen = 0;
Elliott Hughesaa245492015-08-03 10:38:08 -0700273 if (!WriteFdExactly(s, &msg.status, sizeof(msg.status))) return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800274 } else {
275 fail_message(s, "invalid data message: expected ID_DONE");
Elliott Hughesaa245492015-08-03 10:38:08 -0700276 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800277 }
278
Elliott Hughesaa245492015-08-03 10:38:08 -0700279 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800280}
Elliott Hughes0a049b12015-01-12 14:26:36 -0800281#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800282
Elliott Hughesaa245492015-08-03 10:38:08 -0700283static bool do_send(int s, char* path, std::vector<char>& buffer) {
Liang Cheng20d33f42014-01-02 18:27:51 -0800284 unsigned int mode;
Elliott Hughes0a049b12015-01-12 14:26:36 -0800285 bool is_link = false;
JP Abgrall55b6c842014-03-07 17:31:25 -0800286 bool do_unlink;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800287
Elliott Hughes0a049b12015-01-12 14:26:36 -0800288 char* tmp = strrchr(path,',');
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800289 if(tmp) {
290 *tmp = 0;
291 errno = 0;
292 mode = strtoul(tmp + 1, NULL, 0);
Liang Cheng20d33f42014-01-02 18:27:51 -0800293 is_link = S_ISLNK((mode_t) mode);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800294 mode &= 0777;
295 }
296 if(!tmp || errno) {
297 mode = 0644;
298 is_link = 0;
JP Abgrall55b6c842014-03-07 17:31:25 -0800299 do_unlink = true;
JP Abgrall4ce2f832013-12-03 14:52:39 -0800300 } else {
301 struct stat st;
302 /* Don't delete files before copying if they are not "regular" */
JP Abgrall55b6c842014-03-07 17:31:25 -0800303 do_unlink = lstat(path, &st) || S_ISREG(st.st_mode) || S_ISLNK(st.st_mode);
304 if (do_unlink) {
JP Abgrall4ce2f832013-12-03 14:52:39 -0800305 adb_unlink(path);
306 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800307 }
308
Elliott Hughes0a049b12015-01-12 14:26:36 -0800309 if (is_link) {
310 return handle_send_link(s, path, buffer);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800311 }
312
Elliott Hughes0a049b12015-01-12 14:26:36 -0800313 uid_t uid = -1;
314 gid_t gid = -1;
315 uint64_t cap = 0;
316
317 /* copy user permission bits to "group" and "other" permissions */
318 mode |= ((mode >> 3) & 0070);
319 mode |= ((mode >> 3) & 0007);
320
321 tmp = path;
322 if(*tmp == '/') {
323 tmp++;
324 }
Elliott Hughesec7a6672015-03-16 21:58:32 +0000325 if (should_use_fs_config(path)) {
Elliott Hughes0a049b12015-01-12 14:26:36 -0800326 fs_config(tmp, 0, &uid, &gid, &mode, &cap);
327 }
328 return handle_send_file(s, path, uid, gid, mode, buffer, do_unlink);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800329}
330
Elliott Hughesaa245492015-08-03 10:38:08 -0700331static bool do_recv(int s, const char* path, std::vector<char>& buffer) {
332 int fd = adb_open(path, O_RDONLY | O_CLOEXEC);
333 if (fd < 0) {
334 if (fail_errno(s)) return false;
335 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800336 }
337
Elliott Hughesaa245492015-08-03 10:38:08 -0700338 syncmsg msg;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800339 msg.data.id = ID_DATA;
Elliott Hughesaa245492015-08-03 10:38:08 -0700340 while (true) {
341 int r = adb_read(fd, &buffer[0], buffer.size());
342 if (r <= 0) {
343 if (r == 0) break;
344 if (errno == EINTR) continue;
345 bool status = fail_errno(s);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800346 adb_close(fd);
Elliott Hughesaa245492015-08-03 10:38:08 -0700347 return status;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800348 }
Elliott Hughesf4465202015-08-24 14:27:03 -0700349 msg.data.size = r;
Elliott Hughesaa245492015-08-03 10:38:08 -0700350 if (!WriteFdExactly(s, &msg.data, sizeof(msg.data)) || !WriteFdExactly(s, &buffer[0], r)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800351 adb_close(fd);
Elliott Hughesaa245492015-08-03 10:38:08 -0700352 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800353 }
354 }
355
356 adb_close(fd);
357
358 msg.data.id = ID_DONE;
359 msg.data.size = 0;
Elliott Hughesaa245492015-08-03 10:38:08 -0700360 return WriteFdExactly(s, &msg.data, sizeof(msg.data));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800361}
362
Elliott Hughesaa245492015-08-03 10:38:08 -0700363static bool handle_sync_command(int fd, std::vector<char>& buffer) {
364 D("sync: waiting for request\n");
365
366 SyncRequest request;
367 if (!ReadFdExactly(fd, &request, sizeof(request))) {
368 fail_message(fd, "command read failure");
369 return false;
370 }
Elliott Hughesf4465202015-08-24 14:27:03 -0700371 size_t path_length = request.path_length;
Elliott Hughesaa245492015-08-03 10:38:08 -0700372 if (path_length > 1024) {
373 fail_message(fd, "path too long");
374 return false;
375 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800376 char name[1025];
Elliott Hughesaa245492015-08-03 10:38:08 -0700377 if (!ReadFdExactly(fd, name, path_length)) {
378 fail_message(fd, "filename read failure");
379 return false;
380 }
381 name[path_length] = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800382
Elliott Hughesaa245492015-08-03 10:38:08 -0700383 const char* id = reinterpret_cast<const char*>(&request.id);
384 D("sync: '%.4s' '%s'\n", id, name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800385
Elliott Hughesaa245492015-08-03 10:38:08 -0700386 switch (request.id) {
387 case ID_STAT:
388 if (!do_stat(fd, name)) return false;
389 break;
390 case ID_LIST:
391 if (!do_list(fd, name)) return false;
392 break;
393 case ID_SEND:
394 if (!do_send(fd, name, buffer)) return false;
395 break;
396 case ID_RECV:
397 if (!do_recv(fd, name, buffer)) return false;
398 break;
399 case ID_QUIT:
400 return false;
401 default:
402 fail_message(fd, android::base::StringPrintf("unknown command '%.4s' (%08x)",
403 id, request.id));
404 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800405 }
406
Elliott Hughesaa245492015-08-03 10:38:08 -0700407 return true;
408}
409
410void file_sync_service(int fd, void* cookie) {
411 std::vector<char> buffer(SYNC_DATA_MAX);
412
413 while (handle_sync_command(fd, buffer)) {
414 }
415
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800416 D("sync: done\n");
417 adb_close(fd);
418}