OSDN Git Service

Merge tag 'android-8.1.0_r48' into oreo-x86
[android-x86/system-extras.git] / f2fs_utils / f2fs_ioutils.c
1 /*
2  * Copyright (C) 2014 The Android Open Source Project
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *  * Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  *  * Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in
12  *    the documentation and/or other materials provided with the
13  *    distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28
29 #define _LARGEFILE64_SOURCE
30
31 #include <assert.h>
32 #include <asm/types.h>
33 #include <dlfcn.h>
34 #include <errno.h>
35 #include <fcntl.h>
36 #include <linux/fs.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <string.h>  /* memset() */
40 #include <sys/param.h>
41 #include <sys/stat.h>
42 #include <sys/types.h>
43 #include <unistd.h>
44
45 #include <f2fs_fs.h>
46 #include <f2fs_format_utils.h>
47
48 #include <sparse/sparse.h>
49
50 struct selabel_handle;
51
52 #include "make_f2fs.h"
53
54 #ifdef _WIN32
55
56 #include <winsock2.h>
57
58 /* These match the Linux definitions of these flags.
59    L_xx is defined to avoid conflicting with the win32 versions.
60 */
61 #define L_S_IRUSR 00400
62 #define L_S_IWUSR 00200
63 #define L_S_IXUSR 00100
64 #define S_IRWXU (L_S_IRUSR | L_S_IWUSR | L_S_IXUSR)
65 #define S_IRGRP 00040
66 #define S_IWGRP 00020
67 #define S_IXGRP 00010
68 #define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
69 #define S_IROTH 00004
70 #define S_IWOTH 00002
71 #define S_IXOTH 00001
72 #define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
73 #define S_ISUID 0004000
74 #define S_ISGID 0002000
75 #define S_ISVTX 0001000
76
77 #else
78
79 #include <selinux/selinux.h>
80 #include <selinux/label.h>
81
82 #define O_BINARY 0
83
84 #endif
85
86 struct f2fs_configuration c;
87 struct sparse_file *f2fs_sparse_file;
88
89 struct buf_item {
90         void *buf;
91         size_t len;
92         struct buf_item *next;
93 };
94
95 struct buf_item *buf_list;
96
97 static int __get_device_fd(__u64 *offset)
98 {
99         __u64 blk_addr = *offset >> F2FS_BLKSIZE_BITS;
100         int i;
101
102         for (i = 0; i < c.ndevs; i++) {
103                 if (c.devices[i].start_blkaddr <= blk_addr &&
104                                 c.devices[i].end_blkaddr >= blk_addr) {
105                         *offset -=
106                                 c.devices[i].start_blkaddr << F2FS_BLKSIZE_BITS;
107                         return c.devices[i].fd;
108                 }
109         }
110         return -1;
111 }
112
113 static int dev_write_fd(void *buf, __u64 offset, size_t len)
114 {
115         int fd = __get_device_fd(&offset);
116
117         if (lseek64(fd, (off64_t)offset, SEEK_SET) < 0)
118                 return -1;
119         ssize_t written = write(fd, buf, len);
120         if (written == -1)
121                 return -1;
122         if ((size_t)written != len)
123                 return -1;
124         return 0;
125 }
126
127 void flush_sparse_buffs()
128 {
129         while (buf_list) {
130                 struct buf_item *bi = buf_list;
131                 buf_list = buf_list->next;
132                 free(bi->buf);
133                 free(bi);
134         }
135 }
136
137 static int dev_write_sparse(void *buf, __u64 byte_offset, size_t byte_len)
138 {
139         struct buf_item *bi = calloc(1, sizeof(struct buf_item));
140
141         if (bi == NULL) {
142                 return -ENOMEM;
143         }
144         bi->buf = malloc(byte_len);
145         if (bi->buf == NULL) {
146                 free(bi);
147                 return -ENOMEM;
148         }
149
150         bi->len = byte_len;
151         memcpy(bi->buf, buf, byte_len);
152         bi->next = buf_list;
153         buf_list = bi;
154
155         sparse_file_add_data(f2fs_sparse_file, bi->buf, byte_len, byte_offset/F2FS_BLKSIZE);
156         return 0;
157 }
158
159 void f2fs_finalize_device(void)
160 {
161 }
162
163 int f2fs_trim_devices(void)
164 {
165         return 0;
166 }
167
168 /*
169  * IO interfaces
170  */
171 int dev_read_version(void *buf, __u64 offset, size_t len)
172 {
173         return 0;
174 }
175
176 int dev_read(void  *buf, __u64 offset, size_t len)
177 {
178         return 0;
179 }
180
181 int dev_readahead(__u64 offset, size_t len)
182 {
183         return 0;
184 }
185
186 int dev_write(void *buf, __u64 offset, size_t len)
187 {
188         int fd = __get_device_fd(&offset);
189
190         if (fd >= 0) {
191                 return dev_write_fd(buf, offset, len);
192         } else {
193                 return dev_write_sparse(buf, offset, len);
194         }
195 }
196
197 int dev_write_block(void *buf, __u64 blk_addr)
198 {
199         assert(false); // Must not be invoked.
200         return 0;
201 }
202
203 int dev_write_dump(void *buf, __u64 offset, size_t len)
204 {
205         assert(false); // Must not be invoked.
206         return 0;
207 }
208
209 int dev_fill(void *buf, __u64 offset, size_t len)
210 {
211         int fd = __get_device_fd(&offset);
212         int ret;
213         if (fd >= 0) {
214                 return dev_write_fd(buf, offset, len);
215         }
216         // sparse file fills with zero by default.
217         // return sparse_file_add_fill(f2fs_sparse_file, ((__u8*)(bi->buf))[0], byte_len, byte_offset/F2FS_BLKSIZE);
218         return 0;
219 }
220
221 int dev_fill_block(void *buf, __u64 blk_addr)
222 {
223         assert(false); // Must not be invoked.
224         return 0;
225 }
226
227 int dev_read_block(void *buf, __u64 blk_addr)
228 {
229         assert(false); // Must not be invoked.
230         return 0;
231 }
232
233 int dev_read_blocks(void *buf, __u64 addr, __u32 nr_blks)
234 {
235         assert(false); // Must not be invoked.
236         return 0;
237 }
238
239 int dev_reada_block(__u64 blk_addr)
240 {
241         assert(false); // Must not be invoked.
242         return 0;
243 }