summaryrefslogtreecommitdiffstats
path: root/src/fat_common.c
blob: d0a125f8746d5b758653df55062260af8df8ffc1 (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
/*

    File: fat_common.c

    Copyright (C) 1998-2009 Christophe GRENIER <grenier@cgsecurity.org>

    This software 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 2 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, write the Free Software Foundation, Inc., 51
    Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

 */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include "types.h"
#include "common.h"
#include "fat_common.h"

unsigned int fat_sector_size(const struct fat_boot_sector *fat_header)
{
  const unsigned int hi=fat_header->sector_size[1];
  const unsigned int lo=fat_header->sector_size[0];
  /*@ assert 0 <= hi < 1<<8; */
  /*@ assert 0 <= hi<<8 < 1<<16; */
  /*@ assert 0 <= lo < 1<<8; */
  const unsigned int res=(hi<<8)|lo;
  /*@ assert res <= 65535; */
  return res;
}

unsigned int get_dir_entries(const struct fat_boot_sector *fat_header)
{
  const unsigned int hi=fat_header->dir_entries[1];
  const unsigned int lo=fat_header->dir_entries[0];
  /*@ assert 0 <= hi < 1<<8; */
  /*@ assert 0 <= hi<<8 < 1<<16; */
  /*@ assert 0 <= lo < 1<<8; */
  const unsigned int res=(hi<<8)|lo;
  /*@ assert res <= 65535; */
  return res;
}

unsigned int fat_sectors(const struct fat_boot_sector *fat_header)
{
  const unsigned int hi=fat_header->sectors[1];
  const unsigned int lo=fat_header->sectors[0];
  /*@ assert 0 <= hi < 1<<8; */
  /*@ assert 0 <= hi<<8 < 1<<16; */
  /*@ assert 0 <= lo < 1<<8; */
  const unsigned int res=(hi<<8)|lo;
  /*@ assert res <= 65535; */
  return res;
}

unsigned int fat_get_cluster_from_entry(const struct msdos_dir_entry *entry)
{
  const unsigned int hi=le16(entry->starthi);
  const unsigned int lo=le16(entry->start);
  /*@ assert 0 <= hi < 1<<16; */
  /*@ assert 0 <= hi<<16 < 1<<32; */
  /*@ assert 0 <= lo < 1<<16; */
  return (hi<<16) | lo;
}

int is_fat_directory(const unsigned char *buffer)
{
  return(buffer[0]=='.' &&
      memcmp(buffer,         ".          ", 8+3)==0 &&
      memcmp(&buffer[0x20], "..         ", 8+3)==0 &&
      buffer[0xB]!=ATTR_EXT && (buffer[0xB]&ATTR_DIR)!=0 &&
      buffer[1*0x20+0xB]!=ATTR_EXT && (buffer[1*0x20+0xB]&ATTR_DIR)!=0);
}