blob: 5da7fd76c3c4205c70f5020195e9c72157ca68ad [file] [log] [blame]
Doug Zongker18a78e02014-07-10 07:31:46 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdlib.h>
18#include <stdio.h>
Elliott Hughescd3c55a2015-01-29 20:50:08 -080019#include <string.h>
Doug Zongker18a78e02014-07-10 07:31:46 -070020#include <errno.h>
21
Dan Albert432584f2015-02-24 22:48:25 -080022#include "sysdeps.h"
23
Doug Zongker18a78e02014-07-10 07:31:46 -070024#include "adb.h"
Dan Albert432584f2015-02-24 22:48:25 -080025#include "adb_io.h"
Dan Albertffd6c312015-02-26 15:33:00 -080026#include "fuse_adb_provider.h"
Doug Zongker18a78e02014-07-10 07:31:46 -070027#include "fuse_sideload.h"
Doug Zongker18a78e02014-07-10 07:31:46 -070028
Dan Albertffd6c312015-02-26 15:33:00 -080029int read_block_adb(void* cookie, uint32_t block, uint8_t* buffer,
30 uint32_t fetch_size) {
Doug Zongker18a78e02014-07-10 07:31:46 -070031 struct adb_data* ad = (struct adb_data*)cookie;
32
33 char buf[10];
34 snprintf(buf, sizeof(buf), "%08u", block);
Dan Albert432584f2015-02-24 22:48:25 -080035 if (!WriteStringFully(ad->sfd, buf)) {
Doug Zongker18a78e02014-07-10 07:31:46 -070036 fprintf(stderr, "failed to write to adb host: %s\n", strerror(errno));
37 return -EIO;
38 }
39
Dan Albert19097712015-02-26 13:50:01 -080040 if (!ReadFdExactly(ad->sfd, buffer, fetch_size)) {
Doug Zongker18a78e02014-07-10 07:31:46 -070041 fprintf(stderr, "failed to read from adb host: %s\n", strerror(errno));
42 return -EIO;
43 }
44
45 return 0;
46}
47
48static void close_adb(void* cookie) {
49 struct adb_data* ad = (struct adb_data*)cookie;
50
Dan Albert432584f2015-02-24 22:48:25 -080051 WriteStringFully(ad->sfd, "DONEDONE");
Doug Zongker18a78e02014-07-10 07:31:46 -070052}
53
54int run_adb_fuse(int sfd, uint64_t file_size, uint32_t block_size) {
55 struct adb_data ad;
56 struct provider_vtab vtab;
57
58 ad.sfd = sfd;
59 ad.file_size = file_size;
60 ad.block_size = block_size;
61
62 vtab.read_block = read_block_adb;
63 vtab.close = close_adb;
64
65 return run_fuse_sideload(&vtab, &ad, file_size, block_size);
66}