walk_disk.c 6.34 KB
Newer Older
longpanda's avatar
longpanda committed
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/*-
 * Copyright (c) 1991, 1993
 *	The Regents of the University of California.  All rights reserved.
 *
 * This code is derived from software contributed to Berkeley by
 * Donn Seeley at Berkeley Software Design, Inc.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 * @(#) Copyright (c) 1991, 1993 The Regents of the University of California.  All rights reserved.
 * @(#)init.c	8.1 (Berkeley) 7/15/93
 * $FreeBSD: src/sbin/init/init.c,v 1.38.2.8 2001/10/22 11:27:32 des Exp $
 */

#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>

#include <dirent.h>
#include <err.h>
#include <errno.h>
#include <fts.h>
#include <grp.h>
#include <inttypes.h>
#include <limits.h>
#include <locale.h>
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <vtutil.h>

static int find_disk_by_signature(uint8_t *uuid, uint8_t *sig, uint64_t size, int *count, char *name)
{
    int fd;
    int len;
    int cnt = 0;
    FTS *ftsp;
	FTSENT *p;
    uint8_t mbr[512];
    char devname[MAXPATHLEN];
    static char dev[] = "/dev", *devav[] = {dev, NULL};

    vdebug("[VTOY] find_disk_by_signature %llu\n", size);

    ftsp = fts_open(devav, FTS_PHYSICAL | FTS_NOCHDIR, NULL);
    while ((p = fts_read(ftsp)) != NULL)
    {
        if (p->fts_level == 1 && p->fts_statp && p->fts_name && p->fts_statp->st_size == size)
        {
            sprintf(devname, "/dev/%s", p->fts_name);

            fd = open(devname, O_RDONLY);
            if (fd < 0)
            {
                continue;
            }

            memset(mbr, 0, 512);
            read(fd, mbr, 512);
            close(fd);

            if (memcmp(mbr + 0x180, uuid, 16) == 0 && memcmp(mbr + 0x1B8, sig, 4) == 0)
            {
                cnt++;
                strcpy(name, p->fts_name);
                break;
            }
        }
    }

    *count = cnt;
    fts_close(ftsp);

    return 0;
}

static int find_disk_by_size(uint64_t size, const char *prefix, int *count, char *name)
{
    int len;
    int cnt = 0;
    FTS *ftsp;
	FTSENT *p;
    static char dev[] = "/dev", *devav[] = {dev, NULL};

    if (prefix)
    {
        len = strlen(prefix);
    }

    name[0] = 0;
    ftsp = fts_open(devav, FTS_PHYSICAL | FTS_NOCHDIR, NULL);
    while ((p = fts_read(ftsp)) != NULL)
    {
        if (p->fts_level == 1 && p->fts_statp && p->fts_name && p->fts_statp->st_size == size)
        {
            if (prefix)
            {
                if (strncmp(p->fts_name, prefix, len) == 0)
                {
                    cnt++;
                    if (name[0] == 0)
                        strcpy(name, p->fts_name);
                }
            }
            else
            {
                cnt++;
                if (name[0] == 0)
                    strcpy(name, p->fts_name);
            }
        }
    }

    *count = cnt;
    fts_close(ftsp);

    return 0;
}

int prepare_dmtable(void)
{
    int count = 0;
    uint32_t i = 0;
    uint32_t sector_start = 0;
    uint32_t disk_sector_num = 0;
    FILE *fIn, *fOut;
    char disk[MAXPATHLEN];
    char prefix[MAXPATHLEN];
    ventoy_image_desc desc;
    ventoy_img_chunk chunk;
    
    fIn = fopen("/dmtable", "rb");
    if (!fIn)
    {
        printf("Failed to open dmtable\n");
        return 1;
    }
    
    fOut = fopen("/tmp/dmtable", "w+"); 
    if (!fOut)
    {
        printf("Failed to create /tmp/dmtable %d\n", errno);
        fclose(fIn);
        return 1;
    }

    fread(&desc, 1, sizeof(desc), fIn);
    
    vdebug("[VTOY] disksize:%lu part1size:%lu chunkcount:%u\n", desc.disk_size, desc.part1_size, desc.img_chunk_count);

    find_disk_by_size(desc.part1_size, NULL, &count, disk);
    vdebug("[VTOY] find disk by part1 size: %d %s\n", count, disk);

    if (count == 0)
    {
        goto end;
    }
    else if (count > 1)
    {
        find_disk_by_signature(desc.disk_uuid, desc.disk_signature, desc.disk_size, &count, prefix);
        vdebug("[VTOY] find disk by signature: %d %s\n", count, prefix);

        if (count != 1)
        {
            printf("[VTOY] Failed to find disk by signature\n");
            goto end;
        }

        find_disk_by_size(desc.part1_size, prefix, &count, disk);
        vdebug("[VTOY] find disk by part1 size with prefix %s : %d %s\n", prefix, count, disk);
    }

    for (i = 0; i < desc.img_chunk_count; i++)
    {
        fread(&chunk, 1, sizeof(chunk), fIn);

        sector_start = chunk.img_start_sector;
        disk_sector_num = (uint32_t)(chunk.disk_end_sector + 1 - chunk.disk_start_sector);

        fprintf(fOut, "%u %u linear /dev/%s %llu\n", 
               (sector_start << 2), disk_sector_num, 
               disk, (unsigned long long)chunk.disk_start_sector - 2048);
        
        vdebug("%u %u linear /dev/%s %llu\n", 
               (sector_start << 2), disk_sector_num, 
               disk, (unsigned long long)chunk.disk_start_sector - 2048);
    }

end:    
    fclose(fIn);   
    fclose(fOut);   
    return 0;
}