summaryrefslogtreecommitdiff
path: root/xmlrpc/pci.c
blob: d6703c88200a05a2b27f3fb080e5cf737b40c007 (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
/*
* pci.c part of tcosxmlrpc
*   => return all pci buses info
* Copyright (C) 2006,2007,2008  mariodebian at gmail
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*/


#include "common.h"
#include "debug.h"
#include "validate.h"
#include "pci.h"

#if NEWAPI
xmlrpc_value *tcos_pci(xmlrpc_env *const env, xmlrpc_value *const in, void *const serverContext)
#else
xmlrpc_value *tcos_pci(xmlrpc_env *env, xmlrpc_value *in, void *ud)
#endif
 {
  FILE *fp;
  char line[BSIZE];
  char *pci;
  char allpci[BSIZE];
  char pci_cmd[BSIZE];
  size_t *len;
  char *fret;
  UNUSED(fret);

  /* put error msg into line var */
  strncpy(line, PCI_ERROR, BSIZE);


  /* read what info search */
  xmlrpc_parse_value(env, in, "(s#)", &pci, &len);

  dbgtcos("tcosxmlrpc::tcos_pci() searching for pci=\"%s\"\n", pci);


  if (strcmp(pci, "") == 0 )
  {
    return xmlrpc_build_value(env, "s", PCI_NEED_ID );
  }
  /* list all pci ids */
  else if ( strcmp(pci, "pci_all") == 0 )
  {
    fp=(FILE*)popen(PCI_ALL, "r");
    dbgtcos("tcosxmlrpc::tcos_pci() reading pipe\n");

    if (fp == NULL)
      return xmlrpc_build_value(env, "s", PCI_FP_ERROR );

    fret=fgets( line, sizeof line, fp);
    remove_line_break(line);
    pclose(fp);
    dbgtcos("tcosxmlrpc::tcos_pci() line=\"%s\"\n", line);

    return xmlrpc_build_value(env, "s", line );
  }
  /* default method */
  else
  {
    /* read all PCI ids and store in allpci */
    fp=(FILE*)popen(PCI_ALL, "r");
    fret=fgets( allpci, sizeof allpci, fp);
    remove_line_break(line);
    pclose(fp);
    /* search pci in allpci */

    dbgtcos("tcosxmlrpc::tcos_pci() compare=\"%d\"\n", strstr( allpci, pci));

    if ( strstr( allpci, pci ) == 0 ) {
      return xmlrpc_build_value(env, "s", PCI_UNKNOW );
    }
    else {
      /* return info about pci bus id */
      snprintf ( (char*) pci_cmd, BSIZE, "lspci |grep \"%s\" | sed s/\"%s \"//g", pci, pci);

      dbgtcos("tcosxmlrpc::tcos_pci() pci_cmd=\"%s\"\n", pci_cmd);

      fp=(FILE*)popen(pci_cmd, "r");
      fret=fgets( line, sizeof line, fp);
      remove_line_break(line);
      pclose(fp);
      return xmlrpc_build_value(env, "s", line );
    }
  }

  /* never here */
  return xmlrpc_build_value(env, "s", PCI_UNKNOW );
}