yaffs: Skip checkpoint writing if mounted readonly
[yaffs2.git] / yportenv.h
1 /*
2  * YAFFS: Yet another Flash File System . A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2010 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Charles Manning <charles@aleph1.co.uk>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public License version 2.1 as
11  * published by the Free Software Foundation.
12  *
13  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
14  */
15
16
17 #ifndef __YPORTENV_H__
18 #define __YPORTENV_H__
19
20 /*
21  * Define the MTD version in terms of Linux Kernel versions
22  * This allows yaffs to be used independantly of the kernel
23  * as well as with it.
24  */
25
26 #define MTD_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
27
28 #if defined CONFIG_YAFFS_WINCE
29
30 #include "ywinceenv.h"
31
32 #elif defined __KERNEL__
33
34 #include "moduleconfig.h"
35
36 /* Linux kernel */
37
38 #include <linux/version.h>
39 #define MTD_VERSION_CODE LINUX_VERSION_CODE
40
41 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19))
42 #include <linux/config.h>
43 #endif
44 #include <linux/kernel.h>
45 #include <linux/mm.h>
46 #include <linux/sched.h>
47 #include <linux/string.h>
48 #include <linux/slab.h>
49 #include <linux/vmalloc.h>
50 #include <linux/xattr.h>
51
52 #define YCHAR char
53 #define YUCHAR unsigned char
54 #define _Y(x)     x
55 #define yaffs_strcat(a, b)     strcat(a, b)
56 #define yaffs_strcpy(a, b)     strcpy(a, b)
57 #define yaffs_strncpy(a, b, c) strncpy(a, b, c)
58 #define yaffs_strncmp(a, b, c) strncmp(a, b, c)
59 #define yaffs_strnlen(s,m)      strnlen(s,m)
60 #define yaffs_sprintf          sprintf
61 #define yaffs_toupper(a)       toupper(a)
62
63 #define Y_INLINE __inline__
64
65 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
66 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
67
68 /* #define YPRINTF(x) printk x */
69 #define YMALLOC(x) kmalloc(x, GFP_NOFS)
70 #define YFREE(x)   kfree(x)
71 #define YMALLOC_ALT(x) vmalloc(x)
72 #define YFREE_ALT(x)   vfree(x)
73 #define YMALLOC_DMA(x) YMALLOC(x)
74
75 #define YYIELD() schedule()
76 #define Y_DUMP_STACK() dump_stack()
77
78 #define YAFFS_ROOT_MODE                 0755
79 #define YAFFS_LOSTNFOUND_MODE           0700
80
81 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
82 #define Y_CURRENT_TIME CURRENT_TIME.tv_sec
83 #define Y_TIME_CONVERT(x) (x).tv_sec
84 #else
85 #define Y_CURRENT_TIME CURRENT_TIME
86 #define Y_TIME_CONVERT(x) (x)
87 #endif
88
89 #define yaffs_SumCompare(x, y) ((x) == (y))
90 #define yaffs_strcmp(a, b) strcmp(a, b)
91
92 #define TENDSTR "\n"
93 #define TSTR(x) KERN_DEBUG x
94 #define TCONT(x) x
95 #define TOUT(p) printk p
96
97 #define compile_time_assertion(assertion) \
98         ({ int x = __builtin_choose_expr(assertion, 0, (void)0); (void) x; })
99
100 #elif defined CONFIG_YAFFS_DIRECT
101
102 #define MTD_VERSION_CODE MTD_VERSION(2, 6, 22)
103
104 /* Direct interface */
105 #include "ydirectenv.h"
106
107 #elif defined CONFIG_YAFFS_UTIL
108
109 /* Stuff for YAFFS utilities */
110
111 #include "stdlib.h"
112 #include "stdio.h"
113 #include "string.h"
114
115
116 #define YMALLOC(x) malloc(x)
117 #define YFREE(x)   free(x)
118 #define YMALLOC_ALT(x) malloc(x)
119 #define YFREE_ALT(x) free(x)
120
121 #define YCHAR char
122 #define YUCHAR unsigned char
123 #define _Y(x)     x
124 #define yaffs_strcat(a, b)     strcat(a, b)
125 #define yaffs_strcpy(a, b)     strcpy(a, b)
126 #define yaffs_strncpy(a, b, c) strncpy(a, b, c)
127 #define yaffs_strnlen(s,m)             strnlen(s,m)
128 #define yaffs_sprintf          sprintf
129 #define yaffs_toupper(a)       toupper(a)
130
131 #define Y_INLINE inline
132
133 /* #define YINFO(s) YPRINTF(( __FILE__ " %d %s\n",__LINE__,s)) */
134 /* #define YALERT(s) YINFO(s) */
135
136 #define TENDSTR "\n"
137 #define TSTR(x) x
138 #define TOUT(p) printf p
139
140 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
141 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
142 /* #define YPRINTF(x) printf x */
143
144 #define YAFFS_ROOT_MODE                 0755
145 #define YAFFS_LOSTNFOUND_MODE           0700
146
147 #define yaffs_SumCompare(x, y) ((x) == (y))
148 #define yaffs_strcmp(a, b) strcmp(a, b)
149
150 #else
151 /* Should have specified a configuration type */
152 #error Unknown configuration
153
154 #endif
155
156 #if defined(CONFIG_YAFFS_DIRECT) || defined(CONFIG_YAFFS_WINCE)
157
158 #ifdef CONFIG_YAFFSFS_PROVIDE_VALUES
159
160 #ifndef O_RDONLY
161 #define O_RDONLY        00
162 #endif
163
164 #ifndef O_WRONLY
165 #define O_WRONLY        01
166 #endif
167
168 #ifndef O_RDWR
169 #define O_RDWR          02
170 #endif
171
172 #ifndef O_CREAT         
173 #define O_CREAT         0100
174 #endif
175
176 #ifndef O_EXCL
177 #define O_EXCL          0200
178 #endif
179
180 #ifndef O_TRUNC
181 #define O_TRUNC         01000
182 #endif
183
184 #ifndef O_APPEND
185 #define O_APPEND        02000
186 #endif
187
188 #ifndef SEEK_SET
189 #define SEEK_SET        0
190 #endif
191
192 #ifndef SEEK_CUR
193 #define SEEK_CUR        1
194 #endif
195
196 #ifndef SEEK_END
197 #define SEEK_END        2
198 #endif
199
200 #ifndef EBUSY
201 #define EBUSY   16
202 #endif
203
204 #ifndef ENODEV
205 #define ENODEV  19
206 #endif
207
208 #ifndef EINVAL
209 #define EINVAL  22
210 #endif
211
212 #ifndef EBADF
213 #define EBADF   9
214 #endif
215
216 #ifndef EACCES
217 #define EACCES  13
218 #endif
219
220 #ifndef EXDEV   
221 #define EXDEV   18
222 #endif
223
224 #ifndef ENOENT
225 #define ENOENT  2
226 #endif
227
228 #ifndef ENOSPC
229 #define ENOSPC  28
230 #endif
231
232 #ifndef ERANGE
233 #define ERANGE 34
234 #endif
235
236 #ifndef ENODATA
237 #define ENODATA 61
238 #endif
239
240 #ifndef ENOTEMPTY
241 #define ENOTEMPTY 39
242 #endif
243
244 #ifndef ENAMETOOLONG
245 #define ENAMETOOLONG 36
246 #endif
247
248 #ifndef ENOMEM
249 #define ENOMEM 12
250 #endif
251
252 #ifndef EEXIST
253 #define EEXIST 17
254 #endif
255
256 #ifndef ENOTDIR
257 #define ENOTDIR 20
258 #endif
259
260 #ifndef EISDIR
261 #define EISDIR 21
262 #endif
263
264
265 // Mode flags
266
267 #ifndef S_IFMT
268 #define S_IFMT          0170000
269 #endif
270
271 #ifndef S_IFLNK
272 #define S_IFLNK         0120000
273 #endif
274
275 #ifndef S_IFDIR
276 #define S_IFDIR         0040000
277 #endif
278
279 #ifndef S_IFREG
280 #define S_IFREG         0100000
281 #endif
282
283 #ifndef S_IREAD 
284 #define S_IREAD         0000400
285 #endif
286
287 #ifndef S_IWRITE
288 #define S_IWRITE        0000200
289 #endif
290
291 #ifndef S_IEXEC
292 #define S_IEXEC 0000100
293 #endif
294
295 #ifndef XATTR_CREATE
296 #define XATTR_CREATE 1
297 #endif
298
299 #ifndef XATTR_REPLACE
300 #define XATTR_REPLACE 2
301 #endif
302
303 #ifndef R_OK
304 #define R_OK    4
305 #define W_OK    2
306 #define X_OK    1
307 #define F_OK    0
308 #endif
309
310 #else
311 #include <errno.h>
312 #include <sys/stat.h>
313 #include <fcntl.h>
314 #endif
315
316 #endif
317
318 #ifndef Y_DUMP_STACK
319 #define Y_DUMP_STACK() do { } while (0)
320 #endif
321
322 #ifndef YBUG
323 #define YBUG() do {\
324         T(YAFFS_TRACE_BUG,\
325                 (TSTR("==>> yaffs bug: " __FILE__ " %d" TENDSTR),\
326                 __LINE__));\
327         Y_DUMP_STACK();\
328 } while (0)
329 #endif
330
331
332 #endif