4 * Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
5 * Copyright (C) 2013 Red Hat, Inc.
8 * Alex Williamson <alex.williamson@hp.com>
9 * Markus Armbruster <armbru@redhat.com>
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
14 * Contributions after 2012-01-13 are licensed under the terms of the
15 * GNU GPL, version 2 or (at your option) any later version.
18 #ifndef QEMU_SMBIOS_BUILD_H
19 #define QEMU_SMBIOS_BUILD_H
21 bool smbios_skip_table(uint8_t type
, bool required_table
);
23 extern uint8_t *smbios_tables
;
24 extern size_t smbios_tables_len
;
25 extern unsigned smbios_table_max
;
26 extern unsigned smbios_table_cnt
;
28 #define SMBIOS_BUILD_TABLE_PRE(tbl_type, tbl_handle, tbl_required) \
29 struct smbios_type_##tbl_type *t; \
30 size_t t_off; /* table offset into smbios_tables */ \
33 /* should we skip building this table ? */ \
34 if (smbios_skip_table(tbl_type, tbl_required)) { \
38 /* use offset of table t within smbios_tables */ \
39 /* (pointer must be updated after each realloc) */ \
40 t_off = smbios_tables_len; \
41 smbios_tables_len += sizeof(*t); \
42 smbios_tables = g_realloc(smbios_tables, smbios_tables_len); \
43 t = (struct smbios_type_##tbl_type *)(smbios_tables + t_off); \
45 t->header.type = tbl_type; \
46 t->header.length = sizeof(*t); \
47 t->header.handle = cpu_to_le16(tbl_handle); \
50 #define SMBIOS_TABLE_SET_STR(tbl_type, field, value) \
52 int len = (value != NULL) ? strlen(value) + 1 : 0; \
54 smbios_tables = g_realloc(smbios_tables, \
55 smbios_tables_len + len); \
56 memcpy(smbios_tables + smbios_tables_len, value, len); \
57 smbios_tables_len += len; \
58 /* update pointer post-realloc */ \
59 t = (struct smbios_type_##tbl_type *)(smbios_tables + t_off); \
60 t->field = ++str_index; \
66 #define SMBIOS_TABLE_SET_STR_LIST(tbl_type, value) \
68 int len = (value != NULL) ? strlen(value) + 1 : 0; \
70 smbios_tables = g_realloc(smbios_tables, \
71 smbios_tables_len + len); \
72 memcpy(smbios_tables + smbios_tables_len, value, len); \
73 smbios_tables_len += len; \
78 #define SMBIOS_BUILD_TABLE_POST \
80 size_t term_cnt, t_size; \
82 /* add '\0' terminator (add two if no strings defined) */ \
83 term_cnt = (str_index == 0) ? 2 : 1; \
84 smbios_tables = g_realloc(smbios_tables, \
85 smbios_tables_len + term_cnt); \
86 memset(smbios_tables + smbios_tables_len, 0, term_cnt); \
87 smbios_tables_len += term_cnt; \
89 /* update smbios max. element size */ \
90 t_size = smbios_tables_len - t_off; \
91 if (t_size > smbios_table_max) { \
92 smbios_table_max = t_size; \
95 /* update smbios element count */ \
99 #endif /* QEMU_SMBIOS_BUILD_H */