2770 |
rexy |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* NetBSD System Class
|
|
|
4 |
*
|
|
|
5 |
* PHP version 5
|
|
|
6 |
*
|
|
|
7 |
* @category PHP
|
|
|
8 |
* @package PSI NetBSD OS class
|
|
|
9 |
* @author Michael Cramer <BigMichi1@users.sourceforge.net>
|
|
|
10 |
* @copyright 2009 phpSysInfo
|
|
|
11 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version
|
|
|
12 |
* @version SVN: $Id: class.NetBSD.inc.php 287 2009-06-26 12:11:59Z bigmichi1 $
|
|
|
13 |
* @link http://phpsysinfo.sourceforge.net
|
|
|
14 |
*/
|
|
|
15 |
/**
|
|
|
16 |
* NetBSD sysinfo class
|
|
|
17 |
* get all the required information from NetBSD systems
|
|
|
18 |
*
|
|
|
19 |
* @category PHP
|
|
|
20 |
* @package PSI NetBSD OS class
|
|
|
21 |
* @author Michael Cramer <BigMichi1@users.sourceforge.net>
|
|
|
22 |
* @copyright 2009 phpSysInfo
|
|
|
23 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version
|
|
|
24 |
* @version Release: 3.0
|
|
|
25 |
* @link http://phpsysinfo.sourceforge.net
|
|
|
26 |
*/
|
|
|
27 |
class NetBSD extends BSDCommon
|
|
|
28 |
{
|
|
|
29 |
/**
|
|
|
30 |
* define the regexp for log parser
|
|
|
31 |
*/
|
|
|
32 |
public function __construct($blockname = false)
|
|
|
33 |
{
|
|
|
34 |
parent::__construct($blockname);
|
|
|
35 |
$this->setCPURegExp1("/^cpu(.*)\, (.*) MHz/");
|
|
|
36 |
$this->setCPURegExp2("/user = (.*), nice = (.*), sys = (.*), intr = (.*), idle = (.*)/");
|
|
|
37 |
$this->setSCSIRegExp1("/^(.*) at scsibus.*: <(.*)> .*/");
|
|
|
38 |
$this->setSCSIRegExp2("/^(sd[0-9]+): (.*)([MG])B,/");
|
|
|
39 |
$this->setPCIRegExp1("/(.*) at pci[0-9]+ dev [0-9]* function [0-9]*: (.*)$/");
|
|
|
40 |
$this->setPCIRegExp2("/\"(.*)\" (.*).* at [.0-9]+ irq/");
|
|
|
41 |
}
|
325 |
richard |
42 |
|
2770 |
rexy |
43 |
/**
|
|
|
44 |
* UpTime
|
|
|
45 |
* time the system is running
|
|
|
46 |
*
|
|
|
47 |
* @return void
|
|
|
48 |
*/
|
|
|
49 |
private function _uptime()
|
|
|
50 |
{
|
|
|
51 |
$a = $this->grabkey('kern.boottime');
|
|
|
52 |
$this->sys->setUptime(time() - $a);
|
|
|
53 |
}
|
325 |
richard |
54 |
|
2770 |
rexy |
55 |
/**
|
|
|
56 |
* get network information
|
|
|
57 |
*
|
|
|
58 |
* @return void
|
|
|
59 |
*/
|
|
|
60 |
private function _network()
|
|
|
61 |
{
|
|
|
62 |
CommonFunctions::executeProgram('netstat', '-nbdi | cut -c1-25,44- | grep "^[a-z]*[0-9][ \t].*Link"', $netstat_b);
|
|
|
63 |
CommonFunctions::executeProgram('netstat', '-ndi | cut -c1-25,44- | grep "^[a-z]*[0-9][ \t].*Link"', $netstat_n);
|
|
|
64 |
$lines_b = preg_split("/\n/", $netstat_b, -1, PREG_SPLIT_NO_EMPTY);
|
|
|
65 |
$lines_n = preg_split("/\n/", $netstat_n, -1, PREG_SPLIT_NO_EMPTY);
|
|
|
66 |
for ($i = 0, $max = sizeof($lines_b); $i < $max; $i++) {
|
|
|
67 |
$ar_buf_b = preg_split("/\s+/", $lines_b[$i]);
|
|
|
68 |
$ar_buf_n = preg_split("/\s+/", $lines_n[$i]);
|
|
|
69 |
if (!empty($ar_buf_b[0]) && (!empty($ar_buf_n[3]) || ($ar_buf_n[3] === "0"))) {
|
|
|
70 |
$dev = new NetDevice();
|
|
|
71 |
$dev->setName($ar_buf_b[0]);
|
|
|
72 |
$dev->setTxBytes($ar_buf_b[4]);
|
|
|
73 |
$dev->setRxBytes($ar_buf_b[3]);
|
|
|
74 |
$dev->setDrops($ar_buf_n[8]);
|
|
|
75 |
$dev->setErrors($ar_buf_n[4] + $ar_buf_n[6]);
|
|
|
76 |
if (defined('PSI_SHOW_NETWORK_INFOS') && (PSI_SHOW_NETWORK_INFOS) && (CommonFunctions::executeProgram('ifconfig', $ar_buf_b[0].' 2>/dev/null', $bufr2, PSI_DEBUG))) {
|
|
|
77 |
$speedinfo = "";
|
|
|
78 |
$bufe2 = preg_split("/\n/", $bufr2, -1, PREG_SPLIT_NO_EMPTY);
|
|
|
79 |
foreach ($bufe2 as $buf2) {
|
|
|
80 |
if (preg_match('/^\s+address:\s+(\S+)/i', $buf2, $ar_buf2)) {
|
|
|
81 |
if (!defined('PSI_HIDE_NETWORK_MACADDR') || !PSI_HIDE_NETWORK_MACADDR) $dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').preg_replace('/:/', '-', strtoupper($ar_buf2[1])));
|
|
|
82 |
} elseif (preg_match('/^\s+inet\s+(\S+)\s+netmask/i', $buf2, $ar_buf2)) {
|
|
|
83 |
$dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').$ar_buf2[1]);
|
|
|
84 |
} elseif ((preg_match('/^\s+inet6\s+([^\s%]+)\s+prefixlen/i', $buf2, $ar_buf2)
|
|
|
85 |
|| preg_match('/^\s+inet6\s+([^\s%]+)%\S+\s+prefixlen/i', $buf2, $ar_buf2))
|
|
|
86 |
&& ($ar_buf2[1]!="::") && !preg_match('/^fe80::/i', $ar_buf2[1])) {
|
|
|
87 |
$dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').strtolower($ar_buf2[1]));
|
|
|
88 |
} elseif (preg_match('/^\s+media:\s+/i', $buf2) && preg_match('/[\(\s](\d+)(G*)base/i', $buf2, $ar_buf2)) {
|
|
|
89 |
if (isset($ar_buf2[2]) && strtoupper($ar_buf2[2])=="G") {
|
|
|
90 |
$unit = "G";
|
|
|
91 |
} else {
|
|
|
92 |
$unit = "M";
|
|
|
93 |
}
|
|
|
94 |
if (preg_match('/\s(\S+)-duplex/i', $buf2, $ar_buf3))
|
|
|
95 |
$speedinfo = $ar_buf2[1].$unit.'b/s '.strtolower($ar_buf3[1]);
|
|
|
96 |
else
|
|
|
97 |
$speedinfo = $ar_buf2[1].$unit.'b/s';
|
|
|
98 |
}
|
|
|
99 |
}
|
|
|
100 |
if ($speedinfo != "") $dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').$speedinfo);
|
|
|
101 |
}
|
|
|
102 |
$this->sys->setNetDevices($dev);
|
|
|
103 |
}
|
|
|
104 |
}
|
|
|
105 |
}
|
325 |
richard |
106 |
|
2770 |
rexy |
107 |
/**
|
|
|
108 |
* IDE information
|
|
|
109 |
*
|
|
|
110 |
* @return void
|
|
|
111 |
*/
|
|
|
112 |
protected function ide()
|
|
|
113 |
{
|
|
|
114 |
foreach ($this->readdmesg() as $line) {
|
|
|
115 |
if (preg_match('/^(.*) at (pciide|wdc|atabus|atapibus)[0-9]+ (.*): <(.*)>/', $line, $ar_buf)
|
|
|
116 |
|| preg_match('/^(.*) at (pciide|wdc|atabus|atapibus)[0-9]+ /', $line, $ar_buf)) {
|
|
|
117 |
$dev = new HWDevice();
|
|
|
118 |
if (isset($ar_buf[4])) {
|
|
|
119 |
$dev->setName($ar_buf[4]);
|
|
|
120 |
} else {
|
|
|
121 |
$dev->setName($ar_buf[1]);
|
|
|
122 |
// now loop again and find the name
|
|
|
123 |
foreach ($this->readdmesg() as $line2) {
|
|
|
124 |
if (preg_match("/^(".$ar_buf[1]."): <(.*)>$/", $line2, $ar_buf_n)) {
|
|
|
125 |
$dev->setName($ar_buf_n[2]);
|
|
|
126 |
break;
|
|
|
127 |
}
|
|
|
128 |
}
|
|
|
129 |
}
|
|
|
130 |
if (defined('PSI_SHOW_DEVICES_INFOS') && PSI_SHOW_DEVICES_INFOS) {
|
|
|
131 |
// now loop again and find the capacity
|
|
|
132 |
foreach ($this->readdmesg() as $line2) {
|
|
|
133 |
if (preg_match("/^(".$ar_buf[1]."): (.*), (.*), (.*)MB, .*$/", $line2, $ar_buf_n)) {
|
|
|
134 |
$dev->setCapacity($ar_buf_n[4] * 1024 * 1024);
|
|
|
135 |
break;
|
|
|
136 |
} elseif (preg_match("/^(".$ar_buf[1]."): (.*) MB, (.*), (.*), .*$/", $line2, $ar_buf_n)) {
|
|
|
137 |
$dev->setCapacity($ar_buf_n[2] * 1024 * 1024);
|
|
|
138 |
break;
|
|
|
139 |
} elseif (preg_match("/^(".$ar_buf[1]."): (.*) GB, (.*), (.*), .*$/", $line2, $ar_buf_n)) {
|
|
|
140 |
$dev->setCapacity($ar_buf_n[2] * 1024 * 1024 * 1024);
|
|
|
141 |
break;
|
|
|
142 |
}
|
|
|
143 |
}
|
|
|
144 |
}
|
|
|
145 |
$this->sys->setIdeDevices($dev);
|
|
|
146 |
}
|
|
|
147 |
}
|
|
|
148 |
}
|
325 |
richard |
149 |
|
2770 |
rexy |
150 |
/**
|
|
|
151 |
* get icon name
|
|
|
152 |
*
|
|
|
153 |
* @return void
|
|
|
154 |
*/
|
|
|
155 |
private function _distroicon()
|
|
|
156 |
{
|
|
|
157 |
$this->sys->setDistributionIcon('NetBSD.png');
|
|
|
158 |
}
|
325 |
richard |
159 |
|
2770 |
rexy |
160 |
/**
|
|
|
161 |
* Processes
|
|
|
162 |
*
|
|
|
163 |
* @return void
|
|
|
164 |
*/
|
|
|
165 |
protected function _processes()
|
|
|
166 |
{
|
|
|
167 |
if (CommonFunctions::executeProgram('ps', 'aux', $bufr, PSI_DEBUG)) {
|
|
|
168 |
$lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
|
|
|
169 |
$processes['*'] = 0;
|
|
|
170 |
foreach ($lines as $line) {
|
|
|
171 |
if (preg_match("/^\S+\s+\d+\s+\S+\s+\S+\s+\d+\s+\d+\s+\S+\s+(\w)/", $line, $ar_buf)) {
|
|
|
172 |
$processes['*']++;
|
|
|
173 |
$state = $ar_buf[1];
|
|
|
174 |
if ($state == 'O') $state = 'R'; //linux format
|
|
|
175 |
elseif ($state == 'I') $state = 'S';
|
|
|
176 |
if (isset($processes[$state])) {
|
|
|
177 |
$processes[$state]++;
|
|
|
178 |
} else {
|
|
|
179 |
$processes[$state] = 1;
|
|
|
180 |
}
|
|
|
181 |
}
|
|
|
182 |
}
|
|
|
183 |
if ($processes['*'] > 0) {
|
|
|
184 |
$this->sys->setProcesses($processes);
|
|
|
185 |
}
|
|
|
186 |
}
|
|
|
187 |
}
|
|
|
188 |
|
|
|
189 |
/**
|
|
|
190 |
* get the information
|
|
|
191 |
*
|
|
|
192 |
* @see BSDCommon::build()
|
|
|
193 |
*
|
|
|
194 |
* @return Void
|
|
|
195 |
*/
|
|
|
196 |
public function build()
|
|
|
197 |
{
|
|
|
198 |
parent::build();
|
|
|
199 |
if (!$this->blockname || $this->blockname==='vitals') {
|
|
|
200 |
$this->_distroicon();
|
|
|
201 |
$this->_uptime();
|
|
|
202 |
$this->_processes();
|
|
|
203 |
}
|
|
|
204 |
if (!$this->blockname || $this->blockname==='network') {
|
|
|
205 |
$this->_network();
|
|
|
206 |
}
|
|
|
207 |
}
|
325 |
richard |
208 |
}
|