Daichi Hirono | c613476 | 2016-10-27 14:57:55 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 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 specic language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "libappfuse/FuseBridgeLoop.h" |
| 18 | |
| 19 | #include <android-base/logging.h> |
| 20 | #include <android-base/unique_fd.h> |
| 21 | |
| 22 | namespace android { |
| 23 | |
| 24 | bool FuseBridgeLoop::Start( |
| 25 | int raw_dev_fd, int raw_proxy_fd, FuseBridgeLoop::Callback* callback) { |
| 26 | base::unique_fd dev_fd(raw_dev_fd); |
| 27 | base::unique_fd proxy_fd(raw_proxy_fd); |
Daichi Hirono | a0aecda | 2016-11-08 10:17:51 +0900 | [diff] [blame^] | 28 | fuse::FuseBuffer buffer; |
Daichi Hirono | c613476 | 2016-10-27 14:57:55 +0900 | [diff] [blame] | 29 | |
| 30 | LOG(DEBUG) << "Start fuse loop."; |
| 31 | while (true) { |
Daichi Hirono | a0aecda | 2016-11-08 10:17:51 +0900 | [diff] [blame^] | 32 | if (!buffer.request.Read(dev_fd)) { |
Daichi Hirono | c613476 | 2016-10-27 14:57:55 +0900 | [diff] [blame] | 33 | return false; |
| 34 | } |
| 35 | |
Daichi Hirono | a0aecda | 2016-11-08 10:17:51 +0900 | [diff] [blame^] | 36 | const uint32_t opcode = buffer.request.header.opcode; |
Daichi Hirono | c613476 | 2016-10-27 14:57:55 +0900 | [diff] [blame] | 37 | LOG(VERBOSE) << "Read a fuse packet, opcode=" << opcode; |
| 38 | switch (opcode) { |
| 39 | case FUSE_FORGET: |
| 40 | // Do not reply to FUSE_FORGET. |
| 41 | continue; |
| 42 | |
| 43 | case FUSE_LOOKUP: |
| 44 | case FUSE_GETATTR: |
| 45 | case FUSE_OPEN: |
| 46 | case FUSE_READ: |
| 47 | case FUSE_WRITE: |
| 48 | case FUSE_RELEASE: |
Daichi Hirono | a0aecda | 2016-11-08 10:17:51 +0900 | [diff] [blame^] | 49 | case FUSE_FSYNC: |
| 50 | if (!buffer.request.Write(proxy_fd)) { |
Daichi Hirono | c613476 | 2016-10-27 14:57:55 +0900 | [diff] [blame] | 51 | LOG(ERROR) << "Failed to write a request to the proxy."; |
| 52 | return false; |
| 53 | } |
Daichi Hirono | a0aecda | 2016-11-08 10:17:51 +0900 | [diff] [blame^] | 54 | if (!buffer.response.Read(proxy_fd)) { |
Daichi Hirono | c613476 | 2016-10-27 14:57:55 +0900 | [diff] [blame] | 55 | LOG(ERROR) << "Failed to read a response from the proxy."; |
| 56 | return false; |
| 57 | } |
| 58 | break; |
| 59 | |
| 60 | case FUSE_INIT: |
Daichi Hirono | a0aecda | 2016-11-08 10:17:51 +0900 | [diff] [blame^] | 61 | buffer.HandleInit(); |
Daichi Hirono | c613476 | 2016-10-27 14:57:55 +0900 | [diff] [blame] | 62 | break; |
| 63 | |
| 64 | default: |
Daichi Hirono | a0aecda | 2016-11-08 10:17:51 +0900 | [diff] [blame^] | 65 | buffer.HandleNotImpl(); |
Daichi Hirono | c613476 | 2016-10-27 14:57:55 +0900 | [diff] [blame] | 66 | break; |
| 67 | } |
| 68 | |
Daichi Hirono | a0aecda | 2016-11-08 10:17:51 +0900 | [diff] [blame^] | 69 | if (!buffer.response.Write(dev_fd)) { |
Daichi Hirono | c613476 | 2016-10-27 14:57:55 +0900 | [diff] [blame] | 70 | LOG(ERROR) << "Failed to write a response to the device."; |
| 71 | return false; |
| 72 | } |
| 73 | |
| 74 | if (opcode == FUSE_INIT) { |
| 75 | callback->OnMount(); |
| 76 | } |
| 77 | } |
| 78 | } |
| 79 | |
Daichi Hirono | a0aecda | 2016-11-08 10:17:51 +0900 | [diff] [blame^] | 80 | namespace fuse { |
| 81 | |
| 82 | bool StartFuseBridgeLoop( |
| 83 | int raw_dev_fd, int raw_proxy_fd, FuseBridgeLoopCallback* callback) { |
| 84 | return FuseBridgeLoop().Start(raw_dev_fd, raw_proxy_fd, callback); |
| 85 | } |
| 86 | |
| 87 | } // namespace fuse |
Daichi Hirono | c613476 | 2016-10-27 14:57:55 +0900 | [diff] [blame] | 88 | } // namespace android |