hdt: Making dumping code easier to use
[syslinux.git] / com32 / hdt / hdt-dump-pxe.c
blob6f4f511a79e48f2ed63f01c845f06d1bb42790ae
1 /* ----------------------------------------------------------------------- *
3 * Copyright 2011 Erwan Velu - All Rights Reserved
5 * Permission is hereby granted, free of charge, to any person
6 * obtaining a copy of this software and associated documentation
7 * files (the "Software"), to deal in the Software without
8 * restriction, including without limitation the rights to use,
9 * copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom
11 * the Software is furnished to do so, subject to the following
12 * conditions:
14 * The above copyright notice and this permission notice shall
15 * be included in all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
19 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
26 * -----------------------------------------------------------------------
29 #include "hdt-common.h"
30 #include "hdt-dump.h"
31 #include <sys/gpxe.h>
32 #include <netinet/in.h>
34 void dump_pxe(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item) {
36 CREATE_NEW_OBJECT;
37 add_hb(is_pxe_valid);
38 if (hardware->is_pxe_valid) {
39 char buffer[32] = {0};
40 snprintf(buffer,sizeof(buffer),"0x%x",hardware->pxe.vendor_id);
41 add_s("pxe.vendor_id",buffer);
42 snprintf(buffer,sizeof(buffer),"0x%x",hardware->pxe.product_id);
43 add_s("pxe.product_id",buffer);
44 snprintf(buffer,sizeof(buffer),"0x%x",hardware->pxe.subvendor_id);
45 add_s("pxe.subvendor_id",buffer);
46 snprintf(buffer,sizeof(buffer),"0x%x",hardware->pxe.subproduct_id);
47 add_s("pxe.subproduct_id",buffer);
49 if (hardware->pci_ids_return_code == -ENOPCIIDS || (hardware->pxe.pci_device == NULL)) {
50 add_s("Manufacturer_name","no_pci_ids_file or no device found");
51 add_s("Product_name","no_pci_ids_file or no device found");
52 } else {
53 add_s("Manufacturer_name", hardware->pxe.pci_device->dev_info->vendor_name);
54 add_s("Product_name", hardware->pxe.pci_device->dev_info->product_name);
57 add_hi(pxe.rev);
58 add_hi(pxe.pci_bus);
59 add_hi(pxe.pci_dev);
60 add_hi(pxe.pci_func);
61 add_hi(pxe.base_class);
62 add_hi(pxe.sub_class);
63 add_hi(pxe.prog_intf);
64 add_hi(pxe.nictype);
65 add_hs(pxe.mac_addr);
67 char ip[16] = {0};
68 snprintf(ip,sizeof(ip), "%d.%d.%d.%d",
69 hardware->pxe.ip_addr[0],
70 hardware->pxe.ip_addr[1],
71 hardware->pxe.ip_addr[2],
72 hardware->pxe.ip_addr[3]);
73 add_s("pxe.client_ip",inet_ntoa(hardware->pxe.dhcpdata.cip));
74 add_s("pxe.next_server_ip",inet_ntoa(hardware->pxe.dhcpdata.sip));
75 add_s("pxe.relay_agent_ip",inet_ntoa(hardware->pxe.dhcpdata.gip));
76 add_s("pxe.ipaddr",ip);
77 add_b("gpxe_detected",is_gpxe());
79 FLUSH_OBJECT;
80 to_cpio("pxe");