-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
118 lines (96 loc) · 2.87 KB
/
main.cpp
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
This file is part of fsdump, a tool for dumping drives into image files.
Copyright (C) 2020 Simon Gander.
FSDump 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.
FSDump 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 fsdump. If not, see <http://www.gnu.org/licenses/>.
*/
#include <cstring>
#include <cstdio>
#include <cinttypes>
#include <cerrno>
#include "AppleSparseimage.h"
#include "DeviceLinux.h"
#include "GptPartitionMap.h"
#include "Apfs.h"
int CopyRaw(Device &src, Device &dst, uint64_t start_off, uint64_t end_off)
{
uint8_t buf[0x1000];
uint64_t off;
size_t size;
int err;
off = start_off;
while (off < end_off) {
size = ((end_off - off) > 0x1000) ? 0x1000 : end_off - off;
err = src.Read(buf, size, off);
if (err) return err;
err = dst.Write(buf, size, off);
if (err) return err;
off += size;
}
return 0;
}
int main(int argc, char *argv[])
{
AppleSparseimage sprs;
DeviceLinux bdev;
GptPartitionMap pmap;
uint64_t start;
uint64_t end;
int pt;
int err;
GptPartitionMap::PMAP_Entry pe;
if (argc < 3) {
printf("Syntax: fsdump <srcdevice> <dstfile>\n");
printf("srcdevice: Block device (whole disk, for example /dev/sda\n");
printf("dstfile: Image file to be written, for example image.sparseimage\n");
return EINVAL;
}
if (!bdev.Open(argv[1]))
{
fprintf(stderr, "Unable to open device %s\n", argv[1]);
return ENOENT;
}
if (!pmap.LoadAndVerify(bdev)) {
fprintf(stderr, "Partition table invalid.\n");
return EINVAL;
}
pmap.ListEntries();
err = sprs.Create(argv[2], bdev.GetSize());
if (err) {
perror("Error creating image file: ");
return err;
}
printf("Copying GPT\n");
pmap.CopyGPT(bdev, sprs);
pt = 0;
for (;;) {
pmap.GetPartitionEntry(pt, pe);
if (pe.StartingLBA == 0 || pe.EndingLBA == 0) break;
start = pe.StartingLBA * bdev.GetSectorSize();
end = (pe.EndingLBA + 1) * bdev.GetSectorSize();
printf("Copying partition %d: %" PRIX64 " - %" PRIX64 " ", pt, pe.StartingLBA, pe.EndingLBA);
if (!memcmp(pe.PartitionTypeGUID, GptPartitionMap::PTYPE_EFI_SYS, sizeof(GptPartitionMap::PM_GUID))) {
printf("[EFI SYSTEM]\n");
CopyRaw(bdev, sprs, start, end);
} else if (!memcmp(pe.PartitionTypeGUID, GptPartitionMap::PTYPE_APFS, sizeof(GptPartitionMap::PM_GUID))) {
printf("[APFS]\n");
Apfs apfs(bdev, start);
err = apfs.CopyData(sprs);
if (err) perror("APFS err: ");
} else {
printf("[Unknown, skipping]\n");
}
pt++;
}
sprs.Close();
bdev.Close();
return 0;
}