summaryrefslogtreecommitdiff
path: root/fatblock/fat.c
blob: c549bc1bcd7c4b6f2f6c3a121e33b843a42e1f86 (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
/*
 * Copyright (C) 2010 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <assert.h>
#include <string.h>
#include <endian.h>

#include "fat.h"

const char FAT_BOOT_SIG[] = { 0x55, 0xAA };
const char FAT_INFO_SIG1[4] = { 'R', 'R', 'a', 'A' };
const char FAT_INFO_SIG2[4] = { 'r', 'r', 'A', 'a' };

void fat_dirent_set_first_cluster(struct fat_dirent *de, cluster_t cluster)
{
	assert(de);

	de->first_cluster_hi = htole16((cluster >> 16) & 0xffff);
	de->first_cluster_lo = htole16((cluster >>  0) & 0xffff);
}

void fat_dirent_set(struct fat_dirent *de,
                    char *name, uint8_t attr,
                    cluster_t first_cluster, uint32_t size)
{
	assert(de);
	assert(name);

	memset(de, 0, sizeof(*de));

	memcpy(de->name, name, 11);
	de->attr = attr;
	fat_dirent_set_first_cluster(de, first_cluster);
	de->size = htole32(size);
}