source: mainline/uspace/srv/fs/fat/fat_fat.h@ cb052b4

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since cb052b4 was cb052b4, checked in by Oleg Romanenko <romanenko.oleg@…>, 15 years ago
  1. Add new macros for determining FAT32 (FAT_IS_FAT32) and change existing macros: FAT_CLST_LAST1,

FAT_CLST_LAST8, FAT_CLST_BAD to support FAT32

  1. Allow to mount FAT32 filesystem
  2. Known issue: FAT32 fs does not pass sanity checks because of support 32-bit fat_cluster_t is required.
  • Property mode set to 100644
File size: 4.6 KB
Line 
1/*
2 * Copyright (c) 2008 Jakub Jermar
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 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup fs
30 * @{
31 */
32
33#ifndef FAT_FAT_FAT_H_
34#define FAT_FAT_FAT_H_
35
36#include "../../vfs/vfs.h"
37#include <stdint.h>
38#include <libblock.h>
39
40#define FAT1 0
41
42#define FAT_CLST_RES0 0x0000
43#define FAT_CLST_RES1 0x0001
44#define FAT_CLST_FIRST 0x0002
45
46#define FAT12_CLST_BAD 0x0ff7
47#define FAT12_CLST_LAST1 0x0ff8
48#define FAT12_CLST_LAST8 0x0fff
49#define FAT16_CLST_BAD 0xfff7
50#define FAT16_CLST_LAST1 0xfff8
51#define FAT16_CLST_LAST8 0xffff
52#define FAT32_CLST_BAD 0x0ffffff7
53#define FAT32_CLST_LAST1 0x0ffffff8
54#define FAT32_CLST_LAST8 0x0fffffff
55
56#define FAT12_CLST_MAX 4085
57#define FAT16_CLST_MAX 65525
58
59/* internally used to mark root directory's parent */
60#define FAT_CLST_ROOTPAR FAT_CLST_RES0
61/* internally used to mark root directory */
62#define FAT_CLST_ROOT FAT_CLST_RES1
63
64/*
65 * Convenience macros for computing some frequently used values from the
66 * primitive boot sector members.
67 */
68#define RDS(bs) ((sizeof(fat_dentry_t) * RDE((bs))) / BPS((bs))) + \
69 (((sizeof(fat_dentry_t) * RDE((bs))) % BPS((bs))) != 0)
70#define SSA(bs) (RSCNT((bs)) + FATCNT((bs)) * SF((bs)) + RDS(bs))
71#define DS(bs) (TS(bs) - SSA(bs))
72#define CC(bs) (DS(bs) / SPC(bs))
73
74#define FAT_IS_FAT12(bs) (CC(bs) < FAT12_CLST_MAX)
75#define FAT_IS_FAT16(bs) \
76 ((CC(bs) >= FAT12_CLST_MAX) && (CC(bs) < FAT16_CLST_MAX))
77#define FAT_IS_FAT32(bs) (CC(bs) >= FAT16_CLST_MAX)
78
79#define FAT_CLST_LAST1(bs) \
80 (FAT_IS_FAT12(bs) ? FAT12_CLST_LAST1 : (FAT_IS_FAT32(bs) ? FAT32_CLST_LAST1 : FAT16_CLST_LAST1))
81#define FAT_CLST_LAST8(bs) \
82 (FAT_IS_FAT12(bs) ? FAT12_CLST_LAST8 : (FAT_IS_FAT32(bs) ? FAT32_CLST_LAST8 : FAT16_CLST_LAST8))
83#define FAT_CLST_BAD(bs) \
84 (FAT_IS_FAT12(bs) ? FAT12_CLST_BAD : (FAT_IS_FAT32(bs) ? FAT32_CLST_BAD : FAT16_CLST_BAD))
85
86/* forward declarations */
87struct block;
88struct fat_node;
89struct fat_bs;
90
91typedef uint16_t fat_cluster_t;
92
93#define fat_clusters_get(numc, bs, dh, fc) \
94 fat_cluster_walk((bs), (dh), (fc), NULL, (numc), (uint16_t) -1)
95extern int fat_cluster_walk(struct fat_bs *, devmap_handle_t, fat_cluster_t,
96 fat_cluster_t *, uint16_t *, uint16_t);
97
98extern int fat_block_get(block_t **, struct fat_bs *, struct fat_node *,
99 aoff64_t, int);
100extern int _fat_block_get(block_t **, struct fat_bs *, devmap_handle_t,
101 fat_cluster_t, fat_cluster_t *, aoff64_t, int);
102
103extern int fat_append_clusters(struct fat_bs *, struct fat_node *,
104 fat_cluster_t, fat_cluster_t);
105extern int fat_chop_clusters(struct fat_bs *, struct fat_node *,
106 fat_cluster_t);
107extern int fat_alloc_clusters(struct fat_bs *, devmap_handle_t, unsigned,
108 fat_cluster_t *, fat_cluster_t *);
109extern int fat_free_clusters(struct fat_bs *, devmap_handle_t, fat_cluster_t);
110extern int fat_alloc_shadow_clusters(struct fat_bs *, devmap_handle_t,
111 fat_cluster_t *, unsigned);
112extern int fat_get_cluster(struct fat_bs *, devmap_handle_t, unsigned,
113 fat_cluster_t, fat_cluster_t *);
114extern int fat_set_cluster(struct fat_bs *, devmap_handle_t, unsigned,
115 fat_cluster_t, fat_cluster_t);
116extern int fat_fill_gap(struct fat_bs *, struct fat_node *, fat_cluster_t,
117 aoff64_t);
118extern int fat_zero_cluster(struct fat_bs *, devmap_handle_t, fat_cluster_t);
119extern int fat_sanity_check(struct fat_bs *, devmap_handle_t);
120
121#endif
122
123/**
124 * @}
125 */
Note: See TracBrowser for help on using the repository browser.