2014-07-10 16:31:46 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2015-01-30 05:50:08 +01:00
|
|
|
#include <string.h>
|
2014-07-10 16:31:46 +02:00
|
|
|
#include <errno.h>
|
|
|
|
|
2015-02-25 07:48:25 +01:00
|
|
|
#include "sysdeps.h"
|
|
|
|
|
2014-07-10 16:31:46 +02:00
|
|
|
#include "adb.h"
|
2015-02-25 07:48:25 +01:00
|
|
|
#include "adb_io.h"
|
2015-02-27 00:33:00 +01:00
|
|
|
#include "fuse_adb_provider.h"
|
2014-07-10 16:31:46 +02:00
|
|
|
#include "fuse_sideload.h"
|
|
|
|
|
2015-05-02 02:07:44 +02:00
|
|
|
int read_block_adb(void* data, uint32_t block, uint8_t* buffer, uint32_t fetch_size) {
|
|
|
|
adb_data* ad = reinterpret_cast<adb_data*>(data);
|
2014-07-10 16:31:46 +02:00
|
|
|
|
2015-05-02 02:07:44 +02:00
|
|
|
if (!WriteFdFmt(ad->sfd, "%08u", block)) {
|
2014-07-10 16:31:46 +02:00
|
|
|
fprintf(stderr, "failed to write to adb host: %s\n", strerror(errno));
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
2015-02-26 22:50:01 +01:00
|
|
|
if (!ReadFdExactly(ad->sfd, buffer, fetch_size)) {
|
2014-07-10 16:31:46 +02:00
|
|
|
fprintf(stderr, "failed to read from adb host: %s\n", strerror(errno));
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-05-02 02:07:44 +02:00
|
|
|
static void close_adb(void* data) {
|
|
|
|
adb_data* ad = reinterpret_cast<adb_data*>(data);
|
|
|
|
WriteFdExactly(ad->sfd, "DONEDONE");
|
2014-07-10 16:31:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int run_adb_fuse(int sfd, uint64_t file_size, uint32_t block_size) {
|
2015-05-02 02:07:44 +02:00
|
|
|
adb_data ad;
|
2014-07-10 16:31:46 +02:00
|
|
|
ad.sfd = sfd;
|
|
|
|
ad.file_size = file_size;
|
|
|
|
ad.block_size = block_size;
|
|
|
|
|
2015-05-02 02:07:44 +02:00
|
|
|
provider_vtab vtab;
|
2014-07-10 16:31:46 +02:00
|
|
|
vtab.read_block = read_block_adb;
|
|
|
|
vtab.close = close_adb;
|
|
|
|
|
|
|
|
return run_fuse_sideload(&vtab, &ad, file_size, block_size);
|
|
|
|
}
|