Merge remote-tracking branch 'origin/master' into chaindev
[profile/ivi/syslinux.git] / com32 / chain / partiter.h
1 /* ----------------------------------------------------------------------- *
2  *
3  *   Copyright 2003-2010 H. Peter Anvin - All Rights Reserved
4  *   Copyright 2010 Michal Soltys
5  *   Copyright 2010 Shao Miller
6  *
7  *   Permission is hereby granted, free of charge, to any person
8  *   obtaining a copy of this software and associated documentation
9  *   files (the "Software"), to deal in the Software without
10  *   restriction, including without limitation the rights to use,
11  *   copy, modify, merge, publish, distribute, sublicense, and/or
12  *   sell copies of the Software, and to permit persons to whom
13  *   the Software is furnished to do so, subject to the following
14  *   conditions:
15  *
16  *   The above copyright notice and this permission notice shall
17  *   be included in all copies or substantial portions of the Software.
18  *
19  *   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20  *   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
21  *   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22  *   NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
23  *   HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24  *   WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25  *   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
26  *   OTHER DEALINGS IN THE SOFTWARE.
27  *
28  * ----------------------------------------------------------------------- */
29
30 /*
31  * partiter.h
32  *
33  * Provides disk / partition iteration.
34  */
35
36 #ifndef _COM32_CHAIN_PARTITER_H
37 #define _COM32_CHAIN_PARTITER_H
38
39 #include <stdint.h>
40 #include <syslinux/disk.h>
41
42 #define PI_ERRLOAD 3
43 #define PI_INSANE 2
44 #define PI_DONE 1
45 #define PI_OK 0
46
47 struct itertype;
48 struct part_iter;
49
50 struct itertype {
51         int (*ctor)(struct part_iter *, va_list *);
52         void (*dtor)(struct part_iter *);
53         struct part_iter *(*next) (struct part_iter *);
54 };
55
56 #define PI_GPTLABSIZE ((int)sizeof(((struct disk_gpt_part_entry *)0)->name))
57
58 struct part_iter {
59     const struct itertype *type;
60     char *data;
61     char *record;
62     uint64_t start_lba;
63     uint64_t length;
64     int index;
65     int rawindex;
66     struct disk_info di;
67     int stepall;
68     int status;
69     /* internal */
70     int index0;
71     union _sub {
72         struct _dos {
73             uint32_t disk_sig;
74             uint32_t nebr_lba;
75             uint32_t cebr_lba;
76             /* internal */
77             uint32_t ebr_start;
78             uint32_t ebr_size;
79             uint32_t bebr_start;
80             uint32_t bebr_size;
81             int bebr_index0;
82             int skipcnt;
83         } dos;
84         struct _gpt {
85             struct guid disk_guid;
86             struct guid part_guid;
87             char part_label[PI_GPTLABSIZE/2+1];
88             int pe_count;
89             int pe_size;
90             uint64_t ufirst;
91             uint64_t ulast;
92         } gpt;
93     } sub;
94 };
95
96 extern const struct itertype * const typedos;
97 extern const struct itertype * const typegpt;
98 extern const struct itertype * const typeraw;
99
100 struct part_iter *pi_begin(const struct disk_info *, int stepall);
101 struct part_iter *pi_new(const struct itertype *, ...);
102 void pi_del(struct part_iter **);
103 int pi_next(struct part_iter **);
104
105 #endif
106
107 /* vim: set ts=8 sts=4 sw=4 noet: */