X-Git-Url: http://git.datanom.net/omvzfs.git/blobdiff_plain/4163f889aa50c1ee7f66ff9392ba600048221edb..d5f2a5099bed3fbe461aadeb763978b22c5ae383:/src/Utils.php diff --git a/src/Utils.php b/src/Utils.php index cc0814b..5356223 100644 --- a/src/Utils.php +++ b/src/Utils.php @@ -2,12 +2,106 @@ require_once("Exception.php"); require_once("openmediavault/util.inc"); require_once("Dataset.php"); +require_once("Vdev.php"); +require_once("Zpool.php"); /** * Helper class for ZFS module */ class OMVModuleZFSUtil { + /** + * Clears all ZFS labels on specified devices. + * Needed for blkid to display proper data. + * + */ + public static function clearZFSLabel($disks) { + foreach ($disks as $disk) { + $cmd = "zpool labelclear /dev/" . $disk . "1"; + OMVModuleZFSUtil::exec($cmd,$out,$res); + } + } + + /** + * Return all disks in /dev/sdXX used by the pool + * + * @return array An array with all the disks + */ + public static function getDevDisksByPool($name) { + $pool = new OMVModuleZFSZpool($name); + $disks = array(); + $vdevs = $pool->getVdevs(); + foreach ($vdevs as $vdev) { + $vdisks = $vdev->getDisks(); + foreach ($vdisks as $vdisk) { + if (preg_match('/^[a-z0-9]+$/', $vdisk)) { + $disks[] = $vdisk; + continue; + } + $cmd = "ls -la /dev/disk/by-path/" . $vdisk; + unset($out); + OMVModuleZFSUtil::exec($cmd,$out,$res); + if (count($out) === 1) { + if (preg_match('/^.*\/([a-z0-9]+)$/', $out[0], $match)) { + $disks[] = $match[1]; + } + } + } + } + return($disks); + } + + /** + * Deletes all shared folders pointing to the specifc path + * + */ + public static function deleteShares($name) { + global $xmlConfig; + $tmp = new OMVModuleZFSDataset($name); + $reldirpath = OMVModuleZFSUtil::getReldirpath($tmp->getMountPoint()); + $poolname = OMVModuleZFSUtil::getPoolname($name); + $pooluuid = OMVModuleZFSUtil::getUUIDbyName($poolname); + $xpath = "//system/fstab/mntent[fsname='" . $pooluuid . "']"; + $mountpoint = $xmlConfig->get($xpath); + $mntentuuid = $mountpoint['uuid']; + $xpath = "//system/shares/sharedfolder[mntentref='" . $mntentuuid . "' and reldirpath='" . $reldirpath . "']"; + $object = $xmlConfig->get($xpath); + $xmlConfig->delete($xpath); + $dispatcher = &OMVNotifyDispatcher::getInstance(); + $dispatcher->notify(OMV_NOTIFY_DELETE,"org.openmediavault.system.shares.sharedfolder",$object); + } + + /** + * Get the relative path by complete path + * + * @return string Relative path of the complet path + */ + public static function getReldirpath($path) { + $subdirs = preg_split('/\//',$path); + $reldirpath = ""; + for ($i=2;$iget($xpath); if (is_null($mountpoint)) { $uuid = OMVUtil::uuid(); @@ -61,9 +155,9 @@ class OMVModuleZFSUtil { "fsname" => $pooluuid, "dir" => $dir, "type" => "zfs", - "opts" => "rw,relatime,xattr", + "opts" => "rw,relatime,xattr,noacl", "freq" => "0", - "passno" => "2" + "passno" => "0" ); $xmlConfig->set("//system/fstab",array("mntent" => $object)); $dispatcher = &OMVNotifyDispatcher::getInstance(); @@ -95,7 +189,7 @@ class OMVModuleZFSUtil { switch ($type) { case "filesystem": if (strpos($path,'/') === false) { - //This is a Pool, thus create both the Pool entry and a Filesystem entry corresponding to the Pool. + //This is a Pool $tmp = array('id'=>$prefix . $path, 'parentid'=>'root', 'name'=>$path, @@ -104,19 +198,11 @@ class OMVModuleZFSUtil { 'expanded'=>$expanded, 'path'=>$path); array_push($objects,$tmp); - $tmp = array('id'=>$prefix . $path . '/' . $path, - 'parentid'=>$prefix . $path, - 'name'=>$path, - 'type'=>'Filesystem', - 'icon'=>'images/filesystem.png', - 'path'=>$path, - 'expanded'=>$expanded); - array_push($objects,$tmp); } else { - //This is a Filesystem other than the Pool + //This is a Filesystem preg_match('/(.*)\/(.*)$/', $path, $result); - $tmp = array('id'=>$prefix . $root . "/" . $path, - 'parentid'=>$prefix . $root . "/" . $result[1], + $tmp = array('id'=>$prefix . $path, + 'parentid'=>$prefix . $result[1], 'name'=>$result[2], 'icon'=>"images/filesystem.png", 'path'=>$path, @@ -136,8 +222,8 @@ class OMVModuleZFSUtil { case "volume": preg_match('/(.*)\/(.*)$/', $path, $result); - $tmp = array('id'=>$prefix . $root . "/" . $path, - 'parentid'=>$prefix . $root . "/" . $result[1], + $tmp = array('id'=>$prefix . $path, + 'parentid'=>$prefix . $result[1], 'name'=>$result[2], 'type'=>ucfirst($type), 'icon'=>"images/save.png", @@ -150,8 +236,8 @@ class OMVModuleZFSUtil { preg_match('/(.*)\@(.*)$/', $path, $result); $subdirs = preg_split('/\//',$result[1]); $root = $subdirs[0]; - $tmp = array('id'=>$prefix . $root . "/" . $path, - 'parentid'=>$prefix . $root . "/" . $result[1], + $tmp = array('id'=>$prefix . $path, + 'parentid'=>$prefix . $result[1], 'name'=>$result[2], 'type'=>ucfirst($type), 'icon'=>'images/zfs_snap.png',