2016-03-02 01:08:54 +00:00
|
|
|
/* fat.h - Read/write access to the FAT
|
2008-08-03 18:50:46 +00:00
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
Copyright (C) 1993 Werner Almesberger <werner.almesberger@lrc.di.epfl.ch>
|
|
|
|
Copyright (C) 2008-2014 Daniel Baumann <mail@daniel-baumann.ch>
|
2008-08-03 18:50:46 +00:00
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
THe complete text of the GNU General Public License
|
|
|
|
can be found in /usr/share/common-licenses/GPL-3 file.
|
|
|
|
*/
|
2008-08-03 18:50:46 +00:00
|
|
|
|
|
|
|
#ifndef _FAT_H
|
|
|
|
#define _FAT_H
|
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
void read_fat(DOS_FS * fs);
|
2008-08-03 18:50:46 +00:00
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
/* Loads the FAT of the filesystem described by FS. Initializes the FAT,
|
2008-08-03 18:50:46 +00:00
|
|
|
replaces broken FATs and rejects invalid cluster entries. */
|
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
void get_fat(FAT_ENTRY * entry, void *fat, uint32_t cluster, DOS_FS * fs);
|
|
|
|
|
|
|
|
/* Retrieve the FAT entry (next chained cluster) for CLUSTER. */
|
|
|
|
|
|
|
|
void set_fat(DOS_FS * fs, uint32_t cluster, int32_t new);
|
2008-08-03 18:50:46 +00:00
|
|
|
|
|
|
|
/* Changes the value of the CLUSTERth cluster of the FAT of FS to NEW. Special
|
|
|
|
values of NEW are -1 (EOF, 0xff8 or 0xfff8) and -2 (bad sector, 0xff7 or
|
|
|
|
0xfff7) */
|
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
int bad_cluster(DOS_FS * fs, uint32_t cluster);
|
2008-08-03 18:50:46 +00:00
|
|
|
|
|
|
|
/* Returns a non-zero integer if the CLUSTERth cluster is marked as bad or zero
|
|
|
|
otherwise. */
|
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
uint32_t next_cluster(DOS_FS * fs, uint32_t cluster);
|
2008-08-03 18:50:46 +00:00
|
|
|
|
|
|
|
/* Returns the number of the cluster following CLUSTER, or -1 if this is the
|
|
|
|
last cluster of the respective cluster chain. CLUSTER must not be a bad
|
|
|
|
cluster. */
|
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
off_t cluster_start(DOS_FS * fs, uint32_t cluster);
|
2008-08-03 18:50:46 +00:00
|
|
|
|
|
|
|
/* Returns the byte offset of CLUSTER, relative to the respective device. */
|
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
void set_owner(DOS_FS * fs, uint32_t cluster, DOS_FILE * owner);
|
2008-08-03 18:50:46 +00:00
|
|
|
|
|
|
|
/* Sets the owner pointer of the respective cluster to OWNER. If OWNER was NULL
|
|
|
|
before, it can be set to NULL or any non-NULL value. Otherwise, only NULL is
|
|
|
|
accepted as the new value. */
|
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
DOS_FILE *get_owner(DOS_FS * fs, uint32_t cluster);
|
2008-08-03 18:50:46 +00:00
|
|
|
|
|
|
|
/* Returns the owner of the repective cluster or NULL if the cluster has no
|
|
|
|
owner. */
|
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
void fix_bad(DOS_FS * fs);
|
2008-08-03 18:50:46 +00:00
|
|
|
|
|
|
|
/* Scans the disk for currently unused bad clusters and marks them as bad. */
|
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
void reclaim_free(DOS_FS * fs);
|
2008-08-03 18:50:46 +00:00
|
|
|
|
|
|
|
/* Marks all allocated, but unused clusters as free. */
|
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
void reclaim_file(DOS_FS * fs);
|
2008-08-03 18:50:46 +00:00
|
|
|
|
|
|
|
/* Scans the FAT for chains of allocated, but unused clusters and creates files
|
|
|
|
for them in the root directory. Also tries to fix all inconsistencies (e.g.
|
|
|
|
loops, shared clusters, etc.) in the process. */
|
|
|
|
|
2016-03-02 01:08:54 +00:00
|
|
|
uint32_t update_free(DOS_FS * fs);
|
2008-08-03 18:50:46 +00:00
|
|
|
|
|
|
|
/* Updates free cluster count in FSINFO sector. */
|
|
|
|
|
|
|
|
#endif
|