blob: a1d192dd6628dcb11f316a470038b51a949a409b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/fat/misc.c
3 *
4 * Written 1992,1993 by Werner Almesberger
5 * 22/11/2000 - Fixed fat_date_unix2dos for dates earlier than 01/01/1980
6 * and date_dos2unix for date==0 by Igor Zhbanov(bsg@uniyar.ac.ru)
7 */
8
9#include <linux/module.h>
10#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/buffer_head.h>
Zhaolei1d81a182009-12-15 16:46:57 -080012#include <linux/time.h>
OGAWA Hirofumi9e975da2008-11-06 12:53:46 -080013#include "fat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15/*
Denis Karpov85c78592009-06-04 02:34:22 +090016 * fat_fs_error reports a file system problem that might indicate fa data
17 * corruption/inconsistency. Depending on 'errors' mount option the
18 * panic() is called, or error message is printed FAT and nothing is done,
19 * or filesystem is remounted read-only (default behavior).
20 * In case the file system is remounted read-only, it can be made writable
21 * again by remounting it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
Alexey Fisher2c8a5ff2011-04-12 21:08:38 +090023void __fat_fs_error(struct super_block *sb, int report, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024{
Alexey Fisher2c8a5ff2011-04-12 21:08:38 +090025 struct fat_mount_options *opts = &MSDOS_SB(sb)->options;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 va_list args;
Alexey Fisher2c8a5ff2011-04-12 21:08:38 +090027 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
OGAWA Hirofumiaaa04b42010-05-24 14:33:12 -070029 if (report) {
OGAWA Hirofumiaaa04b42010-05-24 14:33:12 -070030 va_start(args, fmt);
Alexey Fisher2c8a5ff2011-04-12 21:08:38 +090031 vaf.fmt = fmt;
32 vaf.va = &args;
33 printk(KERN_ERR "FAT-fs (%s): error, %pV\n", sb->s_id, &vaf);
OGAWA Hirofumiaaa04b42010-05-24 14:33:12 -070034 va_end(args);
OGAWA Hirofumiaaa04b42010-05-24 14:33:12 -070035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Denis Karpov85c78592009-06-04 02:34:22 +090037 if (opts->errors == FAT_ERRORS_PANIC)
Alexey Fisher2c8a5ff2011-04-12 21:08:38 +090038 panic("FAT-fs (%s): fs panic from previous error\n", sb->s_id);
39 else if (opts->errors == FAT_ERRORS_RO && !(sb->s_flags & MS_RDONLY)) {
40 sb->s_flags |= MS_RDONLY;
41 printk(KERN_ERR "FAT-fs (%s): Filesystem has been "
42 "set read-only\n", sb->s_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 }
44}
OGAWA Hirofumiaaa04b42010-05-24 14:33:12 -070045EXPORT_SYMBOL_GPL(__fat_fs_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Alexey Fisher81ac21d2011-04-12 21:08:38 +090047/**
48 * fat_msg() - print preformated FAT specific messages. Every thing what is
49 * not fat_fs_error() should be fat_msg().
50 */
51void fat_msg(struct super_block *sb, const char *level, const char *fmt, ...)
52{
53 struct va_format vaf;
54 va_list args;
55
56 va_start(args, fmt);
57 vaf.fmt = fmt;
58 vaf.va = &args;
Subhash Jadavania872b712012-05-28 18:30:35 +053059 if (!strncmp(level, KERN_ERR, sizeof(KERN_ERR)))
60 printk_ratelimited("%sFAT-fs (%s): %pV\n", level,
61 sb->s_id, &vaf);
62 else
63 printk("%sFAT-fs (%s): %pV\n", level, sb->s_id, &vaf);
Alexey Fisher81ac21d2011-04-12 21:08:38 +090064 va_end(args);
65}
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/* Flushes the number of free clusters on FAT32 */
68/* XXX: Need to write one per FSINFO block. Currently only writes 1 */
OGAWA Hirofumied248b22009-09-20 01:31:58 +090069int fat_clusters_flush(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 struct msdos_sb_info *sbi = MSDOS_SB(sb);
72 struct buffer_head *bh;
73 struct fat_boot_fsinfo *fsinfo;
74
75 if (sbi->fat_bits != 32)
OGAWA Hirofumied248b22009-09-20 01:31:58 +090076 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 bh = sb_bread(sb, sbi->fsinfo_sector);
79 if (bh == NULL) {
Alexey Fisher869f58c2011-04-12 21:08:38 +090080 fat_msg(sb, KERN_ERR, "bread failed in fat_clusters_flush");
OGAWA Hirofumied248b22009-09-20 01:31:58 +090081 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
83
84 fsinfo = (struct fat_boot_fsinfo *)bh->b_data;
85 /* Sanity check */
86 if (!IS_FSINFO(fsinfo)) {
Alexey Fisher869f58c2011-04-12 21:08:38 +090087 fat_msg(sb, KERN_ERR, "Invalid FSINFO signature: "
88 "0x%08x, 0x%08x (sector = %lu)",
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 le32_to_cpu(fsinfo->signature1),
90 le32_to_cpu(fsinfo->signature2),
91 sbi->fsinfo_sector);
92 } else {
93 if (sbi->free_clusters != -1)
94 fsinfo->free_clusters = cpu_to_le32(sbi->free_clusters);
95 if (sbi->prev_free != -1)
96 fsinfo->next_cluster = cpu_to_le32(sbi->prev_free);
97 mark_buffer_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 }
99 brelse(bh);
OGAWA Hirofumied248b22009-09-20 01:31:58 +0900100
101 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
104/*
105 * fat_chain_add() adds a new cluster to the chain of clusters represented
106 * by inode.
107 */
108int fat_chain_add(struct inode *inode, int new_dclus, int nr_cluster)
109{
110 struct super_block *sb = inode->i_sb;
111 struct msdos_sb_info *sbi = MSDOS_SB(sb);
112 int ret, new_fclus, last;
113
114 /*
115 * We must locate the last cluster of the file to add this new
116 * one (new_dclus) to the end of the link list (the FAT).
117 */
118 last = new_fclus = 0;
119 if (MSDOS_I(inode)->i_start) {
120 int fclus, dclus;
121
122 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
123 if (ret < 0)
124 return ret;
125 new_fclus = fclus + 1;
126 last = dclus;
127 }
128
129 /* add new one to the last of the cluster chain */
130 if (last) {
131 struct fat_entry fatent;
132
133 fatent_init(&fatent);
134 ret = fat_ent_read(inode, &fatent, last);
135 if (ret >= 0) {
136 int wait = inode_needs_sync(inode);
137 ret = fat_ent_write(inode, &fatent, new_dclus, wait);
138 fatent_brelse(&fatent);
139 }
140 if (ret < 0)
141 return ret;
142// fat_cache_add(inode, new_fclus, new_dclus);
143 } else {
144 MSDOS_I(inode)->i_start = new_dclus;
145 MSDOS_I(inode)->i_logstart = new_dclus;
146 /*
Jan Kara2f3d6752009-08-17 17:00:02 +0200147 * Since generic_write_sync() synchronizes regular files later,
148 * we sync here only directories.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 */
150 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode)) {
151 ret = fat_sync_inode(inode);
152 if (ret)
153 return ret;
154 } else
155 mark_inode_dirty(inode);
156 }
157 if (new_fclus != (inode->i_blocks >> (sbi->cluster_bits - 9))) {
Denis Karpov85c78592009-06-04 02:34:22 +0900158 fat_fs_error(sb, "clusters badly computed (%d != %llu)",
OGAWA Hirofumic3302932008-11-06 12:53:58 -0800159 new_fclus,
160 (llu)(inode->i_blocks >> (sbi->cluster_bits - 9)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 fat_cache_inval_inode(inode);
162 }
163 inode->i_blocks += nr_cluster << (sbi->cluster_bits - 9);
164
165 return 0;
166}
167
168extern struct timezone sys_tz;
169
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800170/*
171 * The epoch of FAT timestamp is 1980.
172 * : bits : value
173 * date: 0 - 4: day (1 - 31)
174 * date: 5 - 8: month (1 - 12)
175 * date: 9 - 15: year (0 - 127) from 1980
176 * time: 0 - 4: sec (0 - 29) 2sec counts
177 * time: 5 - 10: min (0 - 59)
178 * time: 11 - 15: hour (0 - 23)
179 */
180#define SECS_PER_MIN 60
181#define SECS_PER_HOUR (60 * 60)
182#define SECS_PER_DAY (SECS_PER_HOUR * 24)
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800183/* days between 1.1.70 and 1.1.80 (2 leap days) */
184#define DAYS_DELTA (365 * 10 + 2)
185/* 120 (2100 - 1980) isn't leap year */
186#define YEAR_2100 120
187#define IS_LEAP_YEAR(y) (!((y) & 3) && (y) != YEAR_2100)
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/* Linear day numbers of the respective 1sts in non-leap years. */
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800190static time_t days_in_year[] = {
191 /* Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec */
192 0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 0, 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193};
194
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800195/* Convert a FAT time/date pair to a UNIX date (seconds since 1 1 70). */
196void fat_time_fat2unix(struct msdos_sb_info *sbi, struct timespec *ts,
197 __le16 __time, __le16 __date, u8 time_cs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800199 u16 time = le16_to_cpu(__time), date = le16_to_cpu(__date);
200 time_t second, day, leap_day, month, year;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800202 year = date >> 9;
203 month = max(1, (date >> 5) & 0xf);
204 day = max(1, date & 0x1f) - 1;
205
206 leap_day = (year + 3) / 4;
207 if (year > YEAR_2100) /* 2100 isn't leap year */
208 leap_day--;
209 if (IS_LEAP_YEAR(year) && month > 2)
210 leap_day++;
211
212 second = (time & 0x1f) << 1;
213 second += ((time >> 5) & 0x3f) * SECS_PER_MIN;
214 second += (time >> 11) * SECS_PER_HOUR;
215 second += (year * 365 + leap_day
216 + days_in_year[month] + day
217 + DAYS_DELTA) * SECS_PER_DAY;
218
219 if (!sbi->options.tz_utc)
220 second += sys_tz.tz_minuteswest * SECS_PER_MIN;
221
222 if (time_cs) {
223 ts->tv_sec = second + (time_cs / 100);
224 ts->tv_nsec = (time_cs % 100) * 10000000;
225 } else {
226 ts->tv_sec = second;
227 ts->tv_nsec = 0;
228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800231/* Convert linear UNIX date to a FAT time/date pair. */
232void fat_time_unix2fat(struct msdos_sb_info *sbi, struct timespec *ts,
233 __le16 *time, __le16 *date, u8 *time_cs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Zhaolei1d81a182009-12-15 16:46:57 -0800235 struct tm tm;
236 time_to_tm(ts->tv_sec, sbi->options.tz_utc ? 0 :
237 -sys_tz.tz_minuteswest * 60, &tm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Zhaolei1d81a182009-12-15 16:46:57 -0800239 /* FAT can only support year between 1980 to 2107 */
240 if (tm.tm_year < 1980 - 1900) {
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800241 *time = 0;
242 *date = cpu_to_le16((0 << 9) | (1 << 5) | 1);
243 if (time_cs)
244 *time_cs = 0;
245 return;
246 }
Zhaolei1d81a182009-12-15 16:46:57 -0800247 if (tm.tm_year > 2107 - 1900) {
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800248 *time = cpu_to_le16((23 << 11) | (59 << 5) | 29);
249 *date = cpu_to_le16((127 << 9) | (12 << 5) | 31);
250 if (time_cs)
251 *time_cs = 199;
252 return;
253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Zhaolei1d81a182009-12-15 16:46:57 -0800255 /* from 1900 -> from 1980 */
256 tm.tm_year -= 80;
257 /* 0~11 -> 1~12 */
258 tm.tm_mon++;
259 /* 0~59 -> 0~29(2sec counts) */
260 tm.tm_sec >>= 1;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800261
Zhaolei1d81a182009-12-15 16:46:57 -0800262 *time = cpu_to_le16(tm.tm_hour << 11 | tm.tm_min << 5 | tm.tm_sec);
263 *date = cpu_to_le16(tm.tm_year << 9 | tm.tm_mon << 5 | tm.tm_mday);
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800264 if (time_cs)
265 *time_cs = (ts->tv_sec & 1) * 100 + ts->tv_nsec / 10000000;
266}
267EXPORT_SYMBOL_GPL(fat_time_unix2fat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269int fat_sync_bhs(struct buffer_head **bhs, int nr_bhs)
270{
OGAWA Hirofumi5b002262006-02-03 03:04:42 -0800271 int i, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Christoph Hellwig9cb569d2010-08-11 17:06:24 +0200273 for (i = 0; i < nr_bhs; i++)
274 write_dirty_buffer(bhs[i], WRITE);
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 for (i = 0; i < nr_bhs; i++) {
277 wait_on_buffer(bhs[i]);
Christoph Hellwig0edd55f2010-08-18 05:29:23 -0400278 if (!err && !buffer_uptodate(bhs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 err = -EIO;
280 }
281 return err;
282}