]> git.sven.stormbind.net Git - sven/exfat-utils.git/blob - mkfs/rootdir.c
4a1a36180b6d3bf7fed4b58e644bcfb18ec879c5
[sven/exfat-utils.git] / mkfs / rootdir.c
1 /*
2         rootdir.c (09.11.10)
3         Root directory creation code.
4
5         Copyright (C) 2009, 2010  Andrew Nayenko
6
7         This program is free software: you can redistribute it and/or modify
8         it under the terms of the GNU General Public License as published by
9         the Free Software Foundation, either version 3 of the License, or
10         (at your option) any later version.
11
12         This program is distributed in the hope that it will be useful,
13         but WITHOUT ANY WARRANTY; without even the implied warranty of
14         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15         GNU General Public License for more details.
16
17         You should have received a copy of the GNU General Public License
18         along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include <unistd.h>
22 #include <errno.h>
23 #include "mkexfat.h"
24
25 off_t rootdir_alignment(void)
26 {
27         return CLUSTER_SIZE(sb);
28 }
29
30 off_t rootdir_size(void)
31 {
32         return CLUSTER_SIZE(sb);
33 }
34
35 int rootdir_write(off_t base, int fd)
36 {
37         if (write(fd, &label_entry, sizeof(struct exfat_entry)) == -1)
38                 return 1;
39         if (write(fd, &bitmap_entry, sizeof(struct exfat_entry)) == -1)
40                 return 1;
41         if (write(fd, &upcase_entry, sizeof(struct exfat_entry)) == -1)
42                 return 1;
43         /* No need to write EOD entry because the whole rootdir cluster was
44            erased by erase_device(). */
45         sb.rootdir_cluster = cpu_to_le32(OFFSET_TO_CLUSTER(base));
46         return 0;
47 }