1
2
3
4
5
6
7
8
9
10#include "fat.h"
11#include <linux/iversion.h>
12
13
14
15
16
17
18
19
20
21void __fat_fs_error(struct super_block *sb, int report, const char *fmt, ...)
22{
23 struct fat_mount_options *opts = &MSDOS_SB(sb)->options;
24 va_list args;
25 struct va_format vaf;
26
27 if (report) {
28 va_start(args, fmt);
29 vaf.fmt = fmt;
30 vaf.va = &args;
31 fat_msg(sb, KERN_ERR, "error, %pV", &vaf);
32 va_end(args);
33 }
34
35 if (opts->errors == FAT_ERRORS_PANIC)
36 panic("FAT-fs (%s): fs panic from previous error\n", sb->s_id);
37 else if (opts->errors == FAT_ERRORS_RO && !sb_rdonly(sb)) {
38 sb->s_flags |= SB_RDONLY;
39 fat_msg(sb, KERN_ERR, "Filesystem has been set read-only");
40 }
41}
42EXPORT_SYMBOL_GPL(__fat_fs_error);
43
44
45
46
47
48void fat_msg(struct super_block *sb, const char *level, const char *fmt, ...)
49{
50 struct va_format vaf;
51 va_list args;
52
53 va_start(args, fmt);
54 vaf.fmt = fmt;
55 vaf.va = &args;
56 printk("%sFAT-fs (%s): %pV\n", level, sb->s_id, &vaf);
57 va_end(args);
58}
59
60
61
62int fat_clusters_flush(struct super_block *sb)
63{
64 struct msdos_sb_info *sbi = MSDOS_SB(sb);
65 struct buffer_head *bh;
66 struct fat_boot_fsinfo *fsinfo;
67
68 if (!is_fat32(sbi))
69 return 0;
70
71 bh = sb_bread(sb, sbi->fsinfo_sector);
72 if (bh == NULL) {
73 fat_msg(sb, KERN_ERR, "bread failed in fat_clusters_flush");
74 return -EIO;
75 }
76
77 fsinfo = (struct fat_boot_fsinfo *)bh->b_data;
78
79 if (!IS_FSINFO(fsinfo)) {
80 fat_msg(sb, KERN_ERR, "Invalid FSINFO signature: "
81 "0x%08x, 0x%08x (sector = %lu)",
82 le32_to_cpu(fsinfo->signature1),
83 le32_to_cpu(fsinfo->signature2),
84 sbi->fsinfo_sector);
85 } else {
86 if (sbi->free_clusters != -1)
87 fsinfo->free_clusters = cpu_to_le32(sbi->free_clusters);
88 if (sbi->prev_free != -1)
89 fsinfo->next_cluster = cpu_to_le32(sbi->prev_free);
90 mark_buffer_dirty(bh);
91 }
92 brelse(bh);
93
94 return 0;
95}
96
97
98
99
100
101int fat_chain_add(struct inode *inode, int new_dclus, int nr_cluster)
102{
103 struct super_block *sb = inode->i_sb;
104 struct msdos_sb_info *sbi = MSDOS_SB(sb);
105 int ret, new_fclus, last;
106
107
108
109
110
111 last = new_fclus = 0;
112 if (MSDOS_I(inode)->i_start) {
113 int fclus, dclus;
114
115 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
116 if (ret < 0)
117 return ret;
118 new_fclus = fclus + 1;
119 last = dclus;
120 }
121
122
123 if (last) {
124 struct fat_entry fatent;
125
126 fatent_init(&fatent);
127 ret = fat_ent_read(inode, &fatent, last);
128 if (ret >= 0) {
129 int wait = inode_needs_sync(inode);
130 ret = fat_ent_write(inode, &fatent, new_dclus, wait);
131 fatent_brelse(&fatent);
132 }
133 if (ret < 0)
134 return ret;
135
136
137
138
139
140 } else {
141 MSDOS_I(inode)->i_start = new_dclus;
142 MSDOS_I(inode)->i_logstart = new_dclus;
143
144
145
146
147 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode)) {
148 ret = fat_sync_inode(inode);
149 if (ret)
150 return ret;
151 } else
152 mark_inode_dirty(inode);
153 }
154 if (new_fclus != (inode->i_blocks >> (sbi->cluster_bits - 9))) {
155 fat_fs_error(sb, "clusters badly computed (%d != %llu)",
156 new_fclus,
157 (llu)(inode->i_blocks >> (sbi->cluster_bits - 9)));
158 fat_cache_inval_inode(inode);
159 }
160 inode->i_blocks += nr_cluster << (sbi->cluster_bits - 9);
161
162 return 0;
163}
164
165
166
167
168
169
170
171
172
173
174
175#define SECS_PER_MIN 60
176#define SECS_PER_HOUR (60 * 60)
177#define SECS_PER_DAY (SECS_PER_HOUR * 24)
178
179#define DAYS_DELTA (365 * 10 + 2)
180
181#define YEAR_2100 120
182#define IS_LEAP_YEAR(y) (!((y) & 3) && (y) != YEAR_2100)
183
184
185static long days_in_year[] = {
186
187 0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 0, 0, 0,
188};
189
190static inline int fat_tz_offset(struct msdos_sb_info *sbi)
191{
192 return (sbi->options.tz_set ?
193 -sbi->options.time_offset :
194 sys_tz.tz_minuteswest) * SECS_PER_MIN;
195}
196
197
198void fat_time_fat2unix(struct msdos_sb_info *sbi, struct timespec64 *ts,
199 __le16 __time, __le16 __date, u8 time_cs)
200{
201 u16 time = le16_to_cpu(__time), date = le16_to_cpu(__date);
202 time64_t second;
203 long day, leap_day, month, year;
204
205 year = date >> 9;
206 month = max(1, (date >> 5) & 0xf);
207 day = max(1, date & 0x1f) - 1;
208
209 leap_day = (year + 3) / 4;
210 if (year > YEAR_2100)
211 leap_day--;
212 if (IS_LEAP_YEAR(year) && month > 2)
213 leap_day++;
214
215 second = (time & 0x1f) << 1;
216 second += ((time >> 5) & 0x3f) * SECS_PER_MIN;
217 second += (time >> 11) * SECS_PER_HOUR;
218 second += (time64_t)(year * 365 + leap_day
219 + days_in_year[month] + day
220 + DAYS_DELTA) * SECS_PER_DAY;
221
222 second += fat_tz_offset(sbi);
223
224 if (time_cs) {
225 ts->tv_sec = second + (time_cs / 100);
226 ts->tv_nsec = (time_cs % 100) * 10000000;
227 } else {
228 ts->tv_sec = second;
229 ts->tv_nsec = 0;
230 }
231}
232
233
234EXPORT_SYMBOL_GPL(fat_time_fat2unix);
235
236
237void fat_time_unix2fat(struct msdos_sb_info *sbi, struct timespec64 *ts,
238 __le16 *time, __le16 *date, u8 *time_cs)
239{
240 struct tm tm;
241 time64_to_tm(ts->tv_sec, -fat_tz_offset(sbi), &tm);
242
243
244 if (tm.tm_year < 1980 - 1900) {
245 *time = 0;
246 *date = cpu_to_le16((0 << 9) | (1 << 5) | 1);
247 if (time_cs)
248 *time_cs = 0;
249 return;
250 }
251 if (tm.tm_year > 2107 - 1900) {
252 *time = cpu_to_le16((23 << 11) | (59 << 5) | 29);
253 *date = cpu_to_le16((127 << 9) | (12 << 5) | 31);
254 if (time_cs)
255 *time_cs = 199;
256 return;
257 }
258
259
260 tm.tm_year -= 80;
261
262 tm.tm_mon++;
263
264 tm.tm_sec >>= 1;
265
266 *time = cpu_to_le16(tm.tm_hour << 11 | tm.tm_min << 5 | tm.tm_sec);
267 *date = cpu_to_le16(tm.tm_year << 9 | tm.tm_mon << 5 | tm.tm_mday);
268 if (time_cs)
269 *time_cs = (ts->tv_sec & 1) * 100 + ts->tv_nsec / 10000000;
270}
271EXPORT_SYMBOL_GPL(fat_time_unix2fat);
272
273static inline struct timespec64 fat_timespec64_trunc_2secs(struct timespec64 ts)
274{
275 return (struct timespec64){ ts.tv_sec & ~1ULL, 0 };
276}
277
278static inline struct timespec64 fat_timespec64_trunc_10ms(struct timespec64 ts)
279{
280 if (ts.tv_nsec)
281 ts.tv_nsec -= ts.tv_nsec % 10000000UL;
282 return ts;
283}
284
285
286
287
288
289
290
291
292
293
294
295
296int fat_truncate_time(struct inode *inode, struct timespec64 *now, int flags)
297{
298 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
299 struct timespec64 ts;
300
301 if (inode->i_ino == MSDOS_ROOT_INO)
302 return 0;
303
304 if (now == NULL) {
305 now = &ts;
306 ts = current_time(inode);
307 }
308
309 if (flags & S_ATIME) {
310
311 time64_t seconds = now->tv_sec - fat_tz_offset(sbi);
312 s32 remainder;
313
314 div_s64_rem(seconds, SECS_PER_DAY, &remainder);
315
316 seconds = seconds + fat_tz_offset(sbi) - remainder;
317
318 inode->i_atime = (struct timespec64){ seconds, 0 };
319 }
320 if (flags & S_CTIME) {
321 if (sbi->options.isvfat)
322 inode->i_ctime = fat_timespec64_trunc_10ms(*now);
323 else
324 inode->i_ctime = fat_timespec64_trunc_2secs(*now);
325 }
326 if (flags & S_MTIME)
327 inode->i_mtime = fat_timespec64_trunc_2secs(*now);
328
329 return 0;
330}
331EXPORT_SYMBOL_GPL(fat_truncate_time);
332
333int fat_update_time(struct inode *inode, struct timespec64 *now, int flags)
334{
335 int dirty_flags = 0;
336
337 if (inode->i_ino == MSDOS_ROOT_INO)
338 return 0;
339
340 if (flags & (S_ATIME | S_CTIME | S_MTIME)) {
341 fat_truncate_time(inode, now, flags);
342 if (inode->i_sb->s_flags & SB_LAZYTIME)
343 dirty_flags |= I_DIRTY_TIME;
344 else
345 dirty_flags |= I_DIRTY_SYNC;
346 }
347
348 if ((flags & S_VERSION) && inode_maybe_inc_iversion(inode, false))
349 dirty_flags |= I_DIRTY_SYNC;
350
351 __mark_inode_dirty(inode, dirty_flags);
352 return 0;
353}
354EXPORT_SYMBOL_GPL(fat_update_time);
355
356int fat_sync_bhs(struct buffer_head **bhs, int nr_bhs)
357{
358 int i, err = 0;
359
360 for (i = 0; i < nr_bhs; i++)
361 write_dirty_buffer(bhs[i], 0);
362
363 for (i = 0; i < nr_bhs; i++) {
364 wait_on_buffer(bhs[i]);
365 if (!err && !buffer_uptodate(bhs[i]))
366 err = -EIO;
367 }
368 return err;
369}
370