OSDN Git Service

f2fs_utils: Add a static libf2fs_sparseblock for minvold
[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 <errno.h>
32 #ifdef __linux__
33 #include <asm/types.h>
34 #include <linux/fs.h>
35 #endif
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>  /* memset() */
39 #include <sys/param.h>
40 #include <sys/stat.h>
41 #include <sys/types.h>
42 #include <fcntl.h>
43 #include <dlfcn.h>
44
45 #include <assert.h>
46
47 #include <f2fs_fs.h>
48 #include <f2fs_format_utils.h>
49
50 #include <sparse/sparse.h>
51
52 struct selabel_handle;
53
54 #include "make_f2fs.h"
55
56 #ifdef USE_MINGW
57
58 #include <winsock2.h>
59
60 /* These match the Linux definitions of these flags.
61    L_xx is defined to avoid conflicting with the win32 versions.
62 */
63 #define L_S_IRUSR 00400
64 #define L_S_IWUSR 00200
65 #define L_S_IXUSR 00100
66 #define S_IRWXU (L_S_IRUSR | L_S_IWUSR | L_S_IXUSR)
67 #define S_IRGRP 00040
68 #define S_IWGRP 00020
69 #define S_IXGRP 00010
70 #define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
71 #define S_IROTH 00004
72 #define S_IWOTH 00002
73 #define S_IXOTH 00001
74 #define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
75 #define S_ISUID 0004000
76 #define S_ISGID 0002000
77 #define S_ISVTX 0001000
78
79 #else
80
81 #include <selinux/selinux.h>
82 #include <selinux/label.h>
83
84 #define O_BINARY 0
85
86 #endif
87
88 struct f2fs_configuration config;
89 struct sparse_file *f2fs_sparse_file;
90
91 struct buf_item {
92         void *buf;
93         size_t len;
94         struct buf_item *next;
95 };
96
97 struct buf_item *buf_list;
98
99 static int dev_write_fd(void *buf, __u64 offset, size_t len)
100 {
101         if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
102                 return -1;
103         if (write(config.fd, buf, len) != len)
104                 return -1;
105         return 0;
106 }
107
108 void flush_sparse_buffs()
109 {
110         while (buf_list) {
111                 struct buf_item *bi = buf_list;
112                 buf_list = buf_list->next;
113                 free(bi->buf);
114                 free(bi);
115         }
116 }
117
118 static int dev_write_sparse(void *buf, __u64 byte_offset, size_t byte_len)
119 {
120         struct buf_item *bi = calloc(1, sizeof(struct buf_item));
121
122         if (bi == NULL) {
123                 return -ENOMEM;
124         }
125         bi->buf = malloc(byte_len);
126         if (bi->buf == NULL) {
127                 free(bi);
128                 return -ENOMEM;
129         }
130
131         bi->len = byte_len;
132         memcpy(bi->buf, buf, byte_len);
133         bi->next = buf_list;
134         buf_list = bi;
135
136         sparse_file_add_data(f2fs_sparse_file, bi->buf, byte_len, byte_offset/F2FS_BLKSIZE);
137         return 0;
138 }
139
140 void init_sparse_file(unsigned int block_size, int64_t len)
141 {
142         f2fs_sparse_file = sparse_file_new(block_size, len);
143 }
144
145 void finalize_sparse_file(int fd)
146 {
147         sparse_file_write(f2fs_sparse_file, fd, /*gzip*/0, /*sparse*/1, /*crc*/0);
148         sparse_file_destroy(f2fs_sparse_file);
149 }
150
151 void f2fs_finalize_device(struct f2fs_configuration *c)
152 {
153 }
154
155 int f2fs_trim_device()
156 {
157         return 0;
158 }
159
160 /*
161  * IO interfaces
162  */
163 int dev_read_version(void *buf, __u64 offset, size_t len)
164 {
165         return 0;
166 }
167
168 int dev_read(void  *buf, __u64 offset, size_t len)
169 {
170         return 0;
171 }
172
173 int dev_write(void *buf, __u64 offset, size_t len)
174 {
175         if (config.fd >= 0) {
176                 return dev_write_fd(buf, offset, len);
177         } else {
178                 return dev_write_sparse(buf, offset, len);
179         }
180 }
181
182
183 int dev_fill(void *buf, __u64 offset, size_t len)
184 {
185         int ret;
186         if (config.fd >= 0) {
187                 return dev_write_fd(buf, offset, len);
188         }
189         // sparse file fills with zero by default.
190         // return sparse_file_add_fill(f2fs_sparse_file, ((__u8*)(bi->buf))[0], byte_len, byte_offset/F2FS_BLKSIZE);
191         return 0;
192 }
193
194 int dev_read_block(void *buf, __u64 blk_addr)
195 {
196         assert(false); // Must not be invoked.
197         return 0;
198 }
199
200 int dev_read_blocks(void *buf, __u64 addr, __u32 nr_blks)
201 {
202         assert(false); // Must not be invoked.
203         return 0;
204 }
205