summaryrefslogtreecommitdiff
path: root/com32/chain/partiter.h
blob: 7deeb534ba7bbba267823d05dc868b3b3d61737c (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* ----------------------------------------------------------------------- *
 *
 *   Copyright 2003-2010 H. Peter Anvin - All Rights Reserved
 *   Copyright 2010 Michal Soltys
 *   Copyright 2010 Shao Miller
 *
 *   Permission is hereby granted, free of charge, to any person
 *   obtaining a copy of this software and associated documentation
 *   files (the "Software"), to deal in the Software without
 *   restriction, including without limitation the rights to use,
 *   copy, modify, merge, publish, distribute, sublicense, and/or
 *   sell copies of the Software, and to permit persons to whom
 *   the Software is furnished to do so, subject to the following
 *   conditions:
 *
 *   The above copyright notice and this permission notice shall
 *   be included in all copies or substantial portions of the Software.
 *
 *   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 *   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *   NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 *   HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 *   WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 *   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 *   OTHER DEALINGS IN THE SOFTWARE.
 *
 * ----------------------------------------------------------------------- */

/*
 * partiter.h
 *
 * Provides disk / partition iteration.
 */

#ifndef _COM32_CHAIN_PARTITER_H
#define _COM32_CHAIN_PARTITER_H

#include <stdint.h>
#include <syslinux/disk.h>

#define PI_ERRLOAD 3
#define PI_INSANE 2
#define PI_DONE 1
#define PI_OK 0

struct itertype;
struct part_iter;

struct itertype {
	int (*ctor)(struct part_iter *, va_list *);
	void (*dtor)(struct part_iter *);
	struct part_iter *(*next) (struct part_iter *);
};

#define PI_GPTLABSIZE ((int)sizeof(((struct disk_gpt_part_entry *)0)->name))

struct part_iter {
    const struct itertype *type;
    char *data;
    char *record;
    uint64_t start_lba;
    uint64_t length;
    int index;
    int rawindex;
    struct disk_info di;
    int stepall;
    int status;
    /* internal */
    int index0;
    union _sub {
	struct _dos {
	    uint32_t disk_sig;
	    uint32_t nebr_lba;
	    uint32_t cebr_lba;
	    /* internal */
	    uint32_t ebr_start;
	    uint32_t ebr_size;
	    uint32_t bebr_start;
	    uint32_t bebr_size;
	    int bebr_index0;
	    int skipcnt;
	} dos;
	struct _gpt {
	    struct guid disk_guid;
	    struct guid part_guid;
	    char part_label[PI_GPTLABSIZE/2+1];
	    int pe_count;
	    int pe_size;
	    uint64_t ufirst;
	    uint64_t ulast;
	} gpt;
    } sub;
};

extern const struct itertype * const typedos;
extern const struct itertype * const typegpt;
extern const struct itertype * const typeraw;

struct part_iter *pi_begin(const struct disk_info *, int stepall);
struct part_iter *pi_new(const struct itertype *, ...);
void pi_del(struct part_iter **);
int pi_next(struct part_iter **);

#endif

/* vim: set ts=8 sts=4 sw=4 noet: */