Menu

[r3118]: / trunk / etc / inc / system.inc  Maximize  Restore  History

Download this file

226 lines (186 with data), 7.0 kB

  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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<?php
/*
system.inc
part of FreeNAS (http://www.freenas.org)
Copyright (C) 2005-2008 Olivier Cochard-Labbe <olivier@freenas.org>.
All rights reserved.
Based on m0n0wall (http://m0n0.ch/wall)
Copyright (C) 2003-2006 Manuel Kasper <mk@neon1.net>.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
require_once("functions.inc");
require_once("util.inc");
require_once("rc.inc");
function system_reboot() {
// Initiate halt. Everything will be done automatically
// in /etc/rc.shutdown by executing rc-init scripts in
// reverse order (the 'KEYWORD: shutdown' must be defined).
mwexec("/sbin/shutdown -r now");
}
function system_halt() {
// Initiate halt. Everything will be done automatically
// in /etc/rc.shutdown by executing rc-init scripts in
// reverse order (the 'KEYWORD: shutdown' must be defined).
mwexec("/sbin/shutdown -p now");
}
/* Init language environment */
function system_language_load()
{
global $config, $g_languages;
/* Get the language configured. */
$language = $config['system']['language'];
$domain = strtolower(get_product_name());
$codeset = $g_languages[$language]['codeset'];
putenv("LANG=$language");
setlocale(LC_MESSAGES, $language);
bindtextdomain($domain, "/usr/local/share/locale");
bind_textdomain_codeset($domain, $codeset);
textdomain($domain);
}
/* Get the codeset of the current configured language. */
/* Return: String containing codeset of current laguage. */
function system_get_language_codeset() {
global $config, $g_languages;
$language = $config['system']['language'];
$codeset = $g_languages[$language]['codeset'];
if (empty($codeset))
$codeset = "ISO-8859-1"; // Set default codeset.
return $codeset;
}
// Get list of available groups from /etc/group.
// Result:
// Array (
// [wheel] => 0
// [sshd] => 22
// [www] => 80
// [nobody] => 65534
// [admin] => 1000
// ...
// )
function system_get_group_list() {
// List of groups to filter from result list.
$filterlist = array("_dhcp", "_pflogd");
$grouplist = array();
preg_match_all("/(\S+):\*:(\d+):.*\n/", @file_get_contents("/etc/group"), $matches, PREG_SET_ORDER);
if (is_array($matches)) {
foreach ($matches as $group) {
if (false === in_array($group[1], $filterlist)) {
$grouplist[$group[1]] = $group[2];
}
}
ksort($grouplist);
}
return $grouplist;
}
// Get list of available users from /etc/master.passwd.
// Result:
// Array (
// [test] => Array ( [name] => test
// [password] => $1$yuQLaTPN$lkwYlZEB7B8n85flXPkHd0
// [uid] => 1001
// [gid] => 1001
// [class] =>
// [change] => 0
// [expire] => 0
// [gecos] => test
// [home_dir] => /mnt
// [shell] => /usr/local/bin/scponly
// )
// [root] => ...
// [toor] => ..
// [daemon] => ...
// [operator] => ...
// ...
// )
function system_get_user_list() {
$userlist = array();
foreach (explode("\n", @file_get_contents("/etc/master.passwd")) as $userinfov) {
if (empty($userinfov))
continue;
// Extract user information
$userinfo = explode(":", $userinfov);
$user = array();
$user['name'] = $userinfo[0];
$user['password'] = $userinfo[1];
$user['uid'] = $userinfo[2];
$user['gid'] = $userinfo[3];
$user['class'] = $userinfo[4];
$user['change'] = $userinfo[5];
$user['expire'] = $userinfo[6];
$user['gecos'] = $userinfo[7];
$user['home_dir'] = $userinfo[8];
$user['shell'] = $userinfo[9];
$userlist[$user['name']] = $user;
}
return $userlist;
}
// Get current CPU usage.
// Return current CPU usage in percent.
function system_get_cpu_usage() {
$cpuTicks1 = explode(" ", `/sbin/sysctl -n kern.cp_time`);
sleep(2);
$cpuTicks2 = explode(" ", `/sbin/sysctl -n kern.cp_time`);
$diff = array();
$diff['user'] = ($cpuTicks2[0] - $cpuTicks1[0]);
$diff['nice'] = ($cpuTicks2[1] - $cpuTicks1[1]);
$diff['sys'] = ($cpuTicks2[2] - $cpuTicks1[2]);
$diff['intr'] = ($cpuTicks2[3] - $cpuTicks1[3]);
$diff['idle'] = ($cpuTicks2[4] - $cpuTicks1[4]);
$totalDiff = $diff['user'] + $diff['nice'] + $diff['sys'] + $diff['intr'] + $diff['idle'];
$totalused = $diff['user'] + $diff['nice'] + $diff['sys'] + $diff['intr'];
if (isset($totalused) && $totalused <= 0) {
$totalused = 0.001;
}
$cpuUsage = floor(100 * ($totalused / $totalDiff));
return $cpuUsage;
}
// Get uptime (how long system is running).
// Return current uptime as string.
function system_get_uptime() {
exec("/sbin/sysctl -n kern.boottime", $boottime);
preg_match("/sec = (\d+)/", $boottime[0], $matches);
$boottime = $matches[1];
$uptime = time() - $boottime;
if ($uptime > 60) $uptime += 30;
$updays = (int)($uptime / 86400);
$uptime %= 86400;
$uphours = (int)($uptime / 3600);
$uptime %= 3600;
$upmins = (int)($uptime / 60);
$uptime = "";
if ($updays > 1) $uptime .= "$updays ".gettext("days").", ";
else if ($updays > 0) $uptime .= "1 ".gettext("day").", ";
$uptime .= sprintf("%02d:%02d", $uphours, $upmins);
return $uptime;
}
// Get the current RAM information.
// Returns an array listing the amount of memory installed in the hardware.
function system_get_ram_info() {
exec("/sbin/sysctl -n vm.stats.vm.v_active_count vm.stats.vm.v_inactive_count vm.stats.vm.v_wire_count vm.stats.vm.v_cache_count vm.stats.vm.v_free_count hw.physmem", $memory);
exec("/sbin/sysctl -n hw.realmem", $hwmemory);
$raminfo = array();
$raminfo['real'] = $hwmemory[0];
$raminfo['physical'] = $memory[5];
$raminfo['total'] = $memory[0] + $memory[1] + $memory[2] + $memory[3] + $memory[4];
$raminfo['free'] = $memory[4] + $memory[1];
$raminfo['used'] = $raminfo['total'] - $raminfo['free'];
return $raminfo;
}
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.