Files
webgui/plugins/dynamix/scripts/ssd_trim
2023-03-18 15:55:54 +01:00

80 lines
2.5 KiB
PHP
Executable File

#!/usr/bin/php -q
<?PHP
/* Copyright 2005-2023, Lime Technology
* Copyright 2012-2023, Bergware International.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
?>
<?
$docroot = $docroot ?? $_SERVER['DOCUMENT_ROOT'] ?: '/usr/local/emhttp';
require_once "$docroot/webGui/include/Wrappers.php";
extract(parse_plugin_cfg('dynamix',true));
// cron operation
if ($argc==2 && $argv[1]=='cron') {
// trim btrfs
echo shell_exec("fstrim -va 2>/dev/null");
// trim zfs
exec("zpool status|grep -Po 'pool: \K.+'",$zfs_pools);
foreach ($zfs_pools as $pool) if ($pool) {
exec("zpool trim -w $pool 2>/dev/null");
echo zfs_info($pool)."\n";
}
exit(0);
}
// add translations
$_SERVER['REQUEST_URI'] = 'settings';
$login_locale = _var($display,'locale');
require_once "$docroot/webGui/include/Translations.php";
function zfs_info($pool) {
$trim = preg_replace('/(.$)/',' $1',exec("zfs list -Ho used $pool"))."iB";
$bytes = exec("zfs list -Hpo used $pool");
exec("zpool status -tP $pool|grep -Po '^\s+\K.+% trimmed'",$devs);
$devs = implode(', ',array_map(function($d){return strtok($d,' ');},$devs));
return "/mnt/$pool: $trim ($bytes bytes) trimmed on $devs";
}
function write(...$messages){
$com = curl_init();
curl_setopt_array($com,[
CURLOPT_URL => 'http://localhost/pub/plugins?buffer_length=1',
CURLOPT_UNIX_SOCKET_PATH => '/var/run/nginx.socket',
CURLOPT_POST => 1,
CURLOPT_RETURNTRANSFER => true
]);
foreach ($messages as $message) {
curl_setopt($com, CURLOPT_POSTFIELDS, $message);
curl_exec($com);
}
curl_close($com);
}
write(_("TRIM operation started").".\n","\n","\n");
// trim btrfs file system
exec("findmnt -lnt btrfs|sort -rk2|awk '$1!~\"btrfs\"{print $1,$2}'",$mounts);
foreach ($mounts as $mount) {
[$target,$source] = explode(' ',$mount);
write("$target: ... <i class='fa fa-spin fa-circle-o-notch'></i>\r");
write(exec("fstrim -v $target 2>/dev/null")." on $source\r","\n");
}
// trim zfs file system
exec("zpool status|grep -Po 'pool: \K.+'",$zfs_pools);
foreach ($zfs_pools as $pool) if ($pool) {
write("/mnt/$pool: ... <i class='fa fa-spin fa-circle-o-notch'></i>\r");
exec("zpool trim -w $pool 2>/dev/null");
write(zfs_info($pool)."\r","\n");
}
write(_("Finished")."\n",'_DONE_','');
?>