hdt: preventing pxe mode being reach w/o pxelinux
[profile/ivi/syslinux.git] / com32 / hdt / hdt-cli-pxe.c
1 /* ----------------------------------------------------------------------- *
2  *
3  *   Copyright 2009 Erwan Velu - All Rights Reserved
4  *
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:
13  *
14  *   The above copyright notice and this permission notice shall
15  *   be included in all copies or substantial portions of the Software.
16  *
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.
25  *
26  * -----------------------------------------------------------------------
27 */
28
29 #include "hdt-cli.h"
30 #include "hdt-common.h"
31 #include <stdio.h>
32 #include <string.h>
33 #include <stdlib.h>
34 #include <errno.h>
35 #include <syslinux/pxe.h>
36 #include <syslinux/config.h>
37
38 void main_show_pxe(struct s_hardware *hardware,struct s_cli_mode *cli_mode) {
39  char buffer[81];
40  memset(buffer,0,sizeof(81));
41  if (hardware->sv->filesystem == SYSLINUX_FS_PXELINUX) {
42          more_printf("You are not currently using PXELINUX\n");
43          return;
44  }
45
46  detect_pxe(hardware);
47  more_printf("PXE\n");
48  if (hardware->is_pxe_valid==false) {
49          more_printf(" No valid PXE ROM found\n");
50          return;
51  }
52
53  struct s_pxe *p = &hardware->pxe;
54  more_printf(" PCI device no: %d \n", p->pci_device_pos);
55
56  if (hardware->pci_ids_return_code == -ENOPCIIDS) {
57   snprintf(buffer,sizeof(buffer)," PCI ID       : %04x:%04x[%04x:%04X] rev(%02x)\n",
58                  p->vendor_id, p->product_id, p->subvendor_id, p->subproduct_id,
59                  p->rev);
60   snprintf(buffer,sizeof(buffer)," PCI Bus pos. : %02x:%02x.%02x\n",
61                  p->pci_bus,p->pci_dev, p->pci_func);
62   more_printf(buffer);
63  } else {
64   snprintf(buffer,sizeof(buffer)," Manufacturer : %s \n", p->pci_device->dev_info->vendor_name);
65   more_printf(buffer);
66   snprintf(buffer,sizeof(buffer)," Product      : %s \n", p->pci_device->dev_info->product_name);
67   more_printf(buffer);
68  }
69  more_printf( " Addresses    : %d.%d.%d.%d @ %s\n",p->ip_addr[0], p->ip_addr[1], p->ip_addr[2], p->ip_addr[3],p->mac_addr);
70 }
71
72 void show_pxe_help() {
73  more_printf("Show supports the following commands : %s\n",CLI_SHOW_LIST);
74 }
75
76 void pxe_show(char *item, struct s_hardware *hardware) {
77  if ( !strncmp(item, CLI_SHOW_LIST, sizeof(CLI_SHOW_LIST) - 1) ) {
78    main_show_pxe(hardware,NULL);
79    return;
80  }
81  show_pxe_help();
82 }
83
84 void handle_pxe_commands(char *cli_line, struct s_cli_mode *cli_mode, struct s_hardware *hardware) {
85  if ( !strncmp(cli_line, CLI_SHOW, sizeof(CLI_SHOW) - 1) ) {
86     pxe_show(strstr(cli_line,"show")+ sizeof(CLI_SHOW), hardware);
87     return;
88  }
89 }
90