Subversion Repositories ALCASAR

Rev

Rev 2770 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
2770 rexy 1
<?php
2
/**
3
 * OpenBSD System Class
4
 *
5
 * PHP version 5
6
 *
7
 * @category  PHP
8
 * @package   PSI OpenBSD 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.OpenBSD.inc.php 621 2012-07-29 18:49:04Z namiltd $
13
 * @link      http://phpsysinfo.sourceforge.net
14
 */
15
 /**
16
 * OpenBSD sysinfo class
17
 * get all the required information from OpenBSD systems
18
 *
19
 * @category  PHP
20
 * @package   PSI OpenBSD 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 OpenBSD 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("/(.*),(.*),(.*),(.*),(.*)/");
37
        $this->setSCSIRegExp1("/^(.*) at scsibus.*: <(.*)> .*/");
38
        $this->setSCSIRegExp2("/^(sd[0-9]+): (.*)MB,/");
39
        $this->setPCIRegExp1("/(.*) at pci[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 Link | grep -v \'* \'', $netstat_b, PSI_DEBUG);
63
        CommonFunctions::executeProgram('netstat', '-ndi | cut -c1-25,44- | grep Link | grep -v \'* \'', $netstat_n, PSI_DEBUG);
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]);
2976 rexy 74
                if (sizeof($ar_buf_n) == 9) {
75
                    $dev->setErrors($ar_buf_n[4] + $ar_buf_n[6]);
76
                    $dev->setDrops($ar_buf_n[8]);
77
                } elseif (sizeof($ar_buf_n) == 8) {
78
                    $dev->setDrops($ar_buf_n[4] + $ar_buf_n[6]);
79
                }
2770 rexy 80
                if (defined('PSI_SHOW_NETWORK_INFOS') && (PSI_SHOW_NETWORK_INFOS) && (CommonFunctions::executeProgram('ifconfig', $ar_buf_b[0].' 2>/dev/null', $bufr2, PSI_DEBUG))) {
81
                    $speedinfo = "";
82
                    $bufe2 = preg_split("/\n/", $bufr2, -1, PREG_SPLIT_NO_EMPTY);
83
                    foreach ($bufe2 as $buf2) {
84
                        if (preg_match('/^\s+lladdr\s+(\S+)/i', $buf2, $ar_buf2)) {
85
                            if (!defined('PSI_HIDE_NETWORK_MACADDR') || !PSI_HIDE_NETWORK_MACADDR) $dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').preg_replace('/:/', '-', strtoupper($ar_buf2[1])));
86
                        } elseif (preg_match('/^\s+inet\s+(\S+)\s+netmask/i', $buf2, $ar_buf2)) {
87
                            $dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').$ar_buf2[1]);
88
                        } elseif ((preg_match('/^\s+inet6\s+([^\s%]+)\s+prefixlen/i', $buf2, $ar_buf2)
89
                              || preg_match('/^\s+inet6\s+([^\s%]+)%\S+\s+prefixlen/i', $buf2, $ar_buf2))
90
                              && ($ar_buf2[1]!="::") && !preg_match('/^fe80::/i', $ar_buf2[1])) {
91
                            $dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').strtolower($ar_buf2[1]));
92
                        } elseif (preg_match('/^\s+media:\s+/i', $buf2) && preg_match('/[\(\s](\d+)(G*)base/i', $buf2, $ar_buf2)) {
93
                            if (isset($ar_buf2[2]) && strtoupper($ar_buf2[2])=="G") {
94
                                $unit = "G";
95
                            } else {
96
                                $unit = "M";
97
                            }
98
                            if (preg_match('/\s(\S+)-duplex/i', $buf2, $ar_buf3))
99
                                $speedinfo = $ar_buf2[1].$unit.'b/s '.strtolower($ar_buf3[1]);
100
                            else
101
                                $speedinfo = $ar_buf2[1].$unit.'b/s';
102
                        }
103
                    }
104
                    if ($speedinfo != "") $dev->setInfo(($dev->getInfo()?$dev->getInfo().';':'').$speedinfo);
105
                }
106
                $this->sys->setNetDevices($dev);
107
            }
108
        }
109
    }
325 richard 110
 
2770 rexy 111
    /**
112
     * IDE information
113
     *
114
     * @return void
115
     */
116
    protected function ide()
117
    {
118
        foreach ($this->readdmesg() as $line) {
119
            if (preg_match('/^(.*) at pciide[0-9]+ (.*): <(.*)>/', $line, $ar_buf)) {
120
                $dev = new HWDevice();
121
                $dev->setName($ar_buf[3]);
122
                if (defined('PSI_SHOW_DEVICES_INFOS') && PSI_SHOW_DEVICES_INFOS) {
123
                    // now loop again and find the capacity
124
                    foreach ($this->readdmesg() as $line2) {
125
                        if (preg_match("/^(".$ar_buf[1]."): (.*), (.*), (.*)MB, .*$/", $line2, $ar_buf_n)) {
126
                            $dev->setCapacity($ar_buf_n[4] * 1024 * 1024);
127
                            break;
128
                        }
129
                    }
130
                }
131
                $this->sys->setIdeDevices($dev);
132
            }
133
        }
134
    }
325 richard 135
 
2770 rexy 136
    /**
137
     * get CPU information
138
     *
139
     * @return void
140
     */
141
    protected function cpuinfo()
142
    {
143
        $dev = new CpuDevice();
144
        $dev->setModel($this->grabkey('hw.model'));
145
        $dev->setCpuSpeed($this->grabkey('hw.cpuspeed'));
146
        $was = false;
147
        foreach ($this->readdmesg() as $line) {
148
            if (preg_match("/^cpu[0-9]+: (.*)/", $line, $ar_buf)) {
149
                $was = true;
150
                if (preg_match("/^cpu[0-9]+: (\d+)([KM])B (.*) L2 cache/", $line, $ar_buf2)) {
151
                    if ($ar_buf2[2]=="M") {
152
                        $dev->setCache($ar_buf2[1]*1024*1024);
153
                    } elseif ($ar_buf2[2]=="K") {
154
                        $dev->setCache($ar_buf2[1]*1024);
155
                    }
156
                } else {
157
                    $feats = preg_split("/,/", strtolower(trim($ar_buf[1])), -1, PREG_SPLIT_NO_EMPTY);
158
                    foreach ($feats as $feat) {
159
                        if (($feat=="vmx") || ($feat=="svm")) {
160
                            $dev->setVirt($feat);
161
                        }
162
                    }
163
                }
164
            } elseif ($was) {
165
                break;
166
            }
167
        }
168
        $ncpu = $this->grabkey('hw.ncpu');
169
        if (is_null($ncpu) || (trim($ncpu) == "") || (!($ncpu >= 1)))
170
            $ncpu = 1;
171
        for ($ncpu ; $ncpu > 0 ; $ncpu--) {
172
            $this->sys->setCpus($dev);
173
        }
174
    }
325 richard 175
 
2770 rexy 176
    /**
177
     * get icon name
178
     *
179
     * @return void
180
     */
181
    private function _distroicon()
182
    {
183
        $this->sys->setDistributionIcon('OpenBSD.png');
184
    }
325 richard 185
 
2770 rexy 186
    /**
187
     * Processes
188
     *
189
     * @return void
190
     */
191
    protected function _processes()
192
    {
193
        if (CommonFunctions::executeProgram('ps', 'aux', $bufr, PSI_DEBUG)) {
194
            $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
195
            $processes['*'] = 0;
196
            foreach ($lines as $line) {
197
                if (preg_match("/^\S+\s+\d+\s+\S+\s+\S+\s+\d+\s+\d+\s+\S+\s+(\w)/", $line, $ar_buf)) {
198
                    $processes['*']++;
199
                    $state = $ar_buf[1];
200
                    if ($state == 'I') $state = 'S'; //linux format
201
                    if (isset($processes[$state])) {
202
                        $processes[$state]++;
203
                    } else {
204
                        $processes[$state] = 1;
205
                    }
206
                }
207
            }
208
            if ($processes['*'] > 0) {
209
                $this->sys->setProcesses($processes);
210
            }
211
        }
212
    }
325 richard 213
 
2770 rexy 214
    /**
215
     * get the information
216
     *
217
     * @see BSDCommon::build()
218
     *
219
     * @return Void
220
     */
221
    public function build()
222
    {
223
        parent::build();
224
        if (!$this->blockname || $this->blockname==='vitals') {
225
            $this->_distroicon();
226
            $this->_uptime();
227
            $this->_processes();
228
        }
229
        if (!$this->blockname || $this->blockname==='network') {
230
            $this->_network();
231
        }
232
    }
233
}