summaryrefslogtreecommitdiff
path: root/fs/fdos/fdos.h
blob: 2d8fe9d13d206133aec5a784983a4882b46e53e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 * (C) Copyright 2002
 * Stäubli Faverges - <www.staubli.com>
 * Pierre AUBERT  p.aubert@staubli.com
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#ifndef _FDOS_H_
#define _FDOS_H_


#undef	FDOS_DEBUG

#ifdef	FDOS_DEBUG
#define	PRINTF(fmt,args...)	printf (fmt ,##args)
#else
#define PRINTF(fmt,args...)
#endif

/* Data structure describing media                                           */
typedef struct fs
{
    unsigned long       tot_sectors;

    int                 cluster_size;
    int                 num_clus;

    int                 fat_start;
    int                 fat_len;
    int                 nb_fat;
    int                 num_fat;

    int                 dir_start;
    int                 dir_len;

    unsigned char       *fat_buf;

} Fs_t;

/* Data structure describing one file system slot                            */
typedef struct slot {
    int (*map) (struct fs *fs,
		struct slot *file,
		int where,
		int *len);
    unsigned long FileSize;

    unsigned short int FirstAbsCluNr;
    unsigned short int PreviousAbsCluNr;
    unsigned short int PreviousRelCluNr;

    Directory_t dir;
} Slot_t;

typedef struct file {
    char                *name;
    int                 Case;
    Fs_t                *fs;
    Slot_t              subdir;
    Slot_t              file;
} File_t;


/* dev.c                                                                     */
int dev_read (void *buffer, int where, int len);
int dev_open (void);
int check_dev (BootSector_t *boot, Fs_t *fs);

/* fat.c                                                                     */
unsigned int fat_decode (Fs_t *fs, unsigned int num);
int read_fat (BootSector_t *boot, Fs_t *fs);

/* vfat.c                                                                    */
int vfat_lookup (Slot_t *dir,
		 Fs_t *fs,
		 Directory_t *dirent,
		 int *entry,
		 int *vfat_start,
		 char *filename,
		 int flags,
		 char *outname,
		 Slot_t *file);

/* subdir.c                                                                  */
char *basename (char *name);
int open_subdir (File_t *desc);
int open_file (Slot_t *file, Directory_t *dir);
int read_file (Fs_t *fs,
	       Slot_t *file,
	       char *buf,
	       int where,
	       int len);
void init_subdir (void);

/* fs.c                                                                      */
int fs_init (Fs_t *fs);


#endif