blob: 2ce3dfcc231c86f56017234a1ed8ad8726f19e91 [file] [log] [blame]
Jed Estepa7b9a462015-12-15 16:04:53 -08001/*
2 * Copyright (C) 2015 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
Jed Estepa7b9a462015-12-15 16:04:53 -080017#include <map>
Jed Estepa7b9a462015-12-15 16:04:53 -080018
19#include <errno.h>
20#include <fcntl.h>
21#include <stdio.h>
22#include <sys/stat.h>
23#include <unistd.h>
24
Jed Estep39c1b5e2015-12-15 16:04:53 -080025#include "config.h"
Jed Estepa7b9a462015-12-15 16:04:53 -080026#include "ota_io.h"
27
Jed Estep39c1b5e2015-12-15 16:04:53 -080028static std::map<intptr_t, const char*> filename_cache;
29static std::string read_fault_file_name = "";
30static std::string write_fault_file_name = "";
31static std::string fsync_fault_file_name = "";
32
33static bool get_hit_file(const char* cached_path, std::string ffn) {
34 return should_hit_cache()
35 ? !strncmp(cached_path, OTAIO_CACHE_FNAME, strlen(cached_path))
36 : !strncmp(cached_path, ffn.c_str(), strlen(cached_path));
37}
38
39void ota_set_fault_files() {
40 if (should_fault_inject(OTAIO_READ)) {
41 read_fault_file_name = fault_fname(OTAIO_READ);
42 }
43 if (should_fault_inject(OTAIO_WRITE)) {
44 write_fault_file_name = fault_fname(OTAIO_WRITE);
45 }
46 if (should_fault_inject(OTAIO_FSYNC)) {
47 fsync_fault_file_name = fault_fname(OTAIO_FSYNC);
48 }
49}
Jed Estepa7b9a462015-12-15 16:04:53 -080050
51int ota_open(const char* path, int oflags) {
Jed Estepa7b9a462015-12-15 16:04:53 -080052 // Let the caller handle errors; we do not care if open succeeds or fails
53 int fd = open(path, oflags);
Jed Estep39c1b5e2015-12-15 16:04:53 -080054 filename_cache[fd] = path;
Jed Estepa7b9a462015-12-15 16:04:53 -080055 return fd;
Jed Estepa7b9a462015-12-15 16:04:53 -080056}
57
58int ota_open(const char* path, int oflags, mode_t mode) {
Jed Estepa7b9a462015-12-15 16:04:53 -080059 int fd = open(path, oflags, mode);
Jed Estep39c1b5e2015-12-15 16:04:53 -080060 filename_cache[fd] = path;
61 return fd; }
Jed Estepa7b9a462015-12-15 16:04:53 -080062
63FILE* ota_fopen(const char* path, const char* mode) {
Jed Estepa7b9a462015-12-15 16:04:53 -080064 FILE* fh = fopen(path, mode);
Jed Estep39c1b5e2015-12-15 16:04:53 -080065 filename_cache[(intptr_t)fh] = path;
Jed Estepa7b9a462015-12-15 16:04:53 -080066 return fh;
Jed Estepa7b9a462015-12-15 16:04:53 -080067}
68
69int ota_close(int fd) {
Jed Estep39c1b5e2015-12-15 16:04:53 -080070 // descriptors can be reused, so make sure not to leave them in the cache
71 filename_cache.erase(fd);
Jed Estepa7b9a462015-12-15 16:04:53 -080072 return close(fd);
73}
74
75int ota_fclose(FILE* fh) {
Jed Estep39c1b5e2015-12-15 16:04:53 -080076 filename_cache.erase((intptr_t)fh);
Jed Estepa7b9a462015-12-15 16:04:53 -080077 return fclose(fh);
78}
79
80size_t ota_fread(void* ptr, size_t size, size_t nitems, FILE* stream) {
Jed Estep39c1b5e2015-12-15 16:04:53 -080081 if (should_fault_inject(OTAIO_READ)) {
82 auto cached = filename_cache.find((intptr_t)stream);
83 const char* cached_path = cached->second;
84 if (cached != filename_cache.end() &&
85 get_hit_file(cached_path, read_fault_file_name)) {
86 read_fault_file_name = "";
87 errno = EIO;
88 return 0;
89 }
Jed Estepa7b9a462015-12-15 16:04:53 -080090 }
Jed Estepa7b9a462015-12-15 16:04:53 -080091 return fread(ptr, size, nitems, stream);
Jed Estepa7b9a462015-12-15 16:04:53 -080092}
93
94ssize_t ota_read(int fd, void* buf, size_t nbyte) {
Jed Estep39c1b5e2015-12-15 16:04:53 -080095 if (should_fault_inject(OTAIO_READ)) {
96 auto cached = filename_cache.find(fd);
97 const char* cached_path = cached->second;
98 if (cached != filename_cache.end()
99 && get_hit_file(cached_path, read_fault_file_name)) {
100 read_fault_file_name = "";
101 errno = EIO;
102 return -1;
103 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800104 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800105 return read(fd, buf, nbyte);
Jed Estepa7b9a462015-12-15 16:04:53 -0800106}
107
108size_t ota_fwrite(const void* ptr, size_t size, size_t count, FILE* stream) {
Jed Estep39c1b5e2015-12-15 16:04:53 -0800109 if (should_fault_inject(OTAIO_WRITE)) {
110 auto cached = filename_cache.find((intptr_t)stream);
111 const char* cached_path = cached->second;
112 if (cached != filename_cache.end() &&
113 get_hit_file(cached_path, write_fault_file_name)) {
114 write_fault_file_name = "";
115 errno = EIO;
116 return 0;
117 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800118 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800119 return fwrite(ptr, size, count, stream);
Jed Estepa7b9a462015-12-15 16:04:53 -0800120}
121
122ssize_t ota_write(int fd, const void* buf, size_t nbyte) {
Jed Estep39c1b5e2015-12-15 16:04:53 -0800123 if (should_fault_inject(OTAIO_WRITE)) {
124 auto cached = filename_cache.find(fd);
125 const char* cached_path = cached->second;
126 if (cached != filename_cache.end() &&
127 get_hit_file(cached_path, write_fault_file_name)) {
128 write_fault_file_name = "";
129 errno = EIO;
130 return -1;
131 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800132 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800133 return write(fd, buf, nbyte);
Jed Estepa7b9a462015-12-15 16:04:53 -0800134}
135
136int ota_fsync(int fd) {
Jed Estep39c1b5e2015-12-15 16:04:53 -0800137 if (should_fault_inject(OTAIO_FSYNC)) {
138 auto cached = filename_cache.find(fd);
139 const char* cached_path = cached->second;
140 if (cached != filename_cache.end() &&
141 get_hit_file(cached_path, fsync_fault_file_name)) {
142 fsync_fault_file_name = "";
143 errno = EIO;
144 return -1;
145 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800146 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800147 return fsync(fd);
Jed Estepa7b9a462015-12-15 16:04:53 -0800148}
Jed Estep39c1b5e2015-12-15 16:04:53 -0800149