Home | History | Annotate | Download | only in minadbd
      1 /*
      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>
     19 #include <string.h>
     20 #include <errno.h>
     21 
     22 #include "sysdeps.h"
     23 
     24 #include "adb.h"
     25 #include "adb_io.h"
     26 #include "fuse_adb_provider.h"
     27 #include "fuse_sideload.h"
     28 
     29 int read_block_adb(void* data, uint32_t block, uint8_t* buffer, uint32_t fetch_size) {
     30     adb_data* ad = reinterpret_cast<adb_data*>(data);
     31 
     32     if (!WriteFdFmt(ad->sfd, "%08u", block)) {
     33         fprintf(stderr, "failed to write to adb host: %s\n", strerror(errno));
     34         return -EIO;
     35     }
     36 
     37     if (!ReadFdExactly(ad->sfd, buffer, fetch_size)) {
     38         fprintf(stderr, "failed to read from adb host: %s\n", strerror(errno));
     39         return -EIO;
     40     }
     41 
     42     return 0;
     43 }
     44 
     45 static void close_adb(void* data) {
     46     adb_data* ad = reinterpret_cast<adb_data*>(data);
     47     WriteFdExactly(ad->sfd, "DONEDONE");
     48 }
     49 
     50 int run_adb_fuse(int sfd, uint64_t file_size, uint32_t block_size) {
     51     adb_data ad;
     52     ad.sfd = sfd;
     53     ad.file_size = file_size;
     54     ad.block_size = block_size;
     55 
     56     provider_vtab vtab;
     57     vtab.read_block = read_block_adb;
     58     vtab.close = close_adb;
     59 
     60     return run_fuse_sideload(&vtab, &ad, file_size, block_size);
     61 }
     62