]> git.datanom.net - omvzfs.git/commitdiff
Another attempt to integrate with OMV shared folders.
authorNiclas Berglind <nb@kjam.se>
Tue, 30 Sep 2014 18:48:52 +0000 (20:48 +0200)
committerMichael Rasmussen <mir@datanom.net>
Tue, 30 Sep 2014 22:37:53 +0000 (00:37 +0200)
Signed-off-by: Niclas Berglind <nb@kjam.se>
gui/js/omv/module/admin/storage/zfs/Overview.js
gui/rpc/zfs.inc
src/Utils.php

index 3230435105d13863cdd14b59e2365e706a3b0ecc..2a3fe1509a4bbf565d4ecefa98cdd9192ec87bc9 100644 (file)
@@ -181,7 +181,10 @@ Ext.define("OMV.module.admin.storage.zfs.AddPool", {
                        name: "force",
                        fieldLabel: _("Force creation"),
                        checked: false,
                        name: "force",
                        fieldLabel: _("Force creation"),
                        checked: false,
-                       boxLabel: _("Forces the creation of the pool even if errors are reported. Use with extreme caution!")
+                       plugins: [{
+                               ptype: "fieldinfo",
+                               text: _("Forces the creation of the pool even if errors are reported. Use with extreme caution!")
+                       }]
                }];
        },
 
                }];
        },
 
@@ -305,10 +308,7 @@ Ext.define("OMV.module.admin.storage.zfs.EditProperties", {
                                        e.record.set("modified", "true");
                                },
                                beforeedit: function(editor, e, eOpts) {
                                        e.record.set("modified", "true");
                                },
                                beforeedit: function(editor, e, eOpts) {
-                                       if (e.record.get("property") === "mountpoint") {
-                                               e.grid.getPlugin('rowEditing').editor.form.findField("value").disable();
-                                               e.grid.getPlugin('rowEditing').editor.form.findField("property").disable();
-                                       } else if (e.record.get("newproperty") === "false") {
+                                       if (e.record.get("newproperty") === "false") {
                                                e.grid.getPlugin('rowEditing').editor.form.findField("value").enable();
                                                e.grid.getPlugin('rowEditing').editor.form.findField("property").disable();
                                        } else {
                                                e.grid.getPlugin('rowEditing').editor.form.findField("value").enable();
                                                e.grid.getPlugin('rowEditing').editor.form.findField("property").disable();
                                        } else {
@@ -495,8 +495,8 @@ Ext.define("OMV.module.admin.storage.zfs.CreateShare", {
                        xtype: "textfield",
                        name: "mountpoint",
                        fieldLabel: _("Path"),
                        xtype: "textfield",
                        name: "mountpoint",
                        fieldLabel: _("Path"),
-                       allowBlank: false,
-                       readOnly: true
+                       allowBlank: true,
+                       readOnly: false
                },{
                        xtype: "combo",
                        name: "mode",
                },{
                        xtype: "combo",
                        name: "mode",
index 7a6b36410e58b4021a9fcc030a1f96163441f158..f52f5dbb8a7370c69222c8c11c04a01421d65f4a 100644 (file)
@@ -190,8 +190,6 @@ class OMVRpcServiceZFS extends OMVRpcServiceAbstract {
                        $xpath = "//system/fstab/mntent[fsname='" . $pooluuid . "' and type='zfs']";
                        $object = $xmlConfig->get($xpath);
                        $xmlConfig->delete($xpath);
                        $xpath = "//system/fstab/mntent[fsname='" . $pooluuid . "' and type='zfs']";
                        $object = $xmlConfig->get($xpath);
                        $xmlConfig->delete($xpath);
-                       $dispatcher = &OMVNotifyDispatcher::getInstance();
-                       $dispatcher->notify(OMV_NOTIFY_DELETE,"org.openmediavault.system.fstab.mntent", $object);
                        OMVModuleZFSUtil::clearZFSLabel($disks);
                        break;
                default:
                        OMVModuleZFSUtil::clearZFSLabel($disks);
                        break;
                default:
@@ -262,7 +260,7 @@ class OMVRpcServiceZFS extends OMVRpcServiceAbstract {
                                                        "value":{"type":"string"}}}}
                                }
                }');
                                                        "value":{"type":"string"}}}}
                                }
                }');
-               $objects = array();
+               global $xmlConfig;
                switch ($params['type']) {
                case "Filesystem":
                case "Clone":
                switch ($params['type']) {
                case "Filesystem":
                case "Clone":
@@ -282,9 +280,14 @@ class OMVRpcServiceZFS extends OMVRpcServiceAbstract {
                        break;
                }
                foreach ($params['properties'] as $property) {
                        break;
                }
                foreach ($params['properties'] as $property) {
+                       unset($objects);
+                       $objects = array();
                        $objects[$property['property']] = $property['value'];
                        $objects[$property['property']] = $property['value'];
+                       $tmp->setProperties($objects);
+                       if ((strcmp($property['property'], "mountpoint") === 0) && (strcmp($params['type'], "Filesystem") === 0)) {
+                               OMVModuleZFSUtil::relocateFilesystem($params['name']);
+                       }
                }
                }
-               $tmp->setProperties($objects);
        }
 
        public function inherit($params, $context) {
        }
 
        public function inherit($params, $context) {
@@ -348,10 +351,10 @@ class OMVRpcServiceZFS extends OMVRpcServiceAbstract {
                          }
                  }');
                $objects = array();
                          }
                  }');
                $objects = array();
-               $ds = new OMVModuleZFSDataset($params['name']);
-               $mountpoint = $ds->getMountPoint();
+               //$ds = new OMVModuleZFSDataset($params['name']);
+               //$mountpoint = $ds->getMountPoint();
                return array(
                return array(
-                       "mountpoint" => $mountpoint,
+                       //"mountpoint" => $mountpoint,
                        "name" => $params['name'],
                        "type" => $params['type']);
        }
                        "name" => $params['name'],
                        "type" => $params['type']);
        }
@@ -372,16 +375,15 @@ class OMVRpcServiceZFS extends OMVRpcServiceAbstract {
                                  "mountpoint":{"type":"string"}
                          }
                  }');
                                  "mountpoint":{"type":"string"}
                          }
                  }');
-
-               //Get the UUID of the Pool
-               $poolname = OMVModuleZFSUtil::getPoolname($params['name']);
-               $pooluuid = OMVModuleZFSUtil::getUUIDbyName($poolname);
-
-               //Get the mntent object and fetch it's uuid.
-               $xpath = "//system/fstab/mntent[fsname='" . $pooluuid . "']";
-               $mountpoint = $xmlConfig->get($xpath);
-               $mntentref = $mountpoint['uuid'];
-
+               
+               // The field 'reldirpath' may not contain the characters '..'. This
+           // is because of security reasons: the given canonicalized absolute
+           // path MUST be below the given mount point.
+           if(1 == preg_match("/\.\./", $params['mountpoint'])) {
+               throw new OMVException(OMVErrorMsg::E_RPC_SERVICE_METHOD_INVALID_PARAMS,
+                               sprintf(gettext("The field '%s' contains forbidden two-dot symbols"), "mountpoint"));
+               }
+       
                // Prepare the configuration object. Use the name of the shared
                // folder as the relative directory name of the share.
                switch ($params['type']) {
                // Prepare the configuration object. Use the name of the shared
                // folder as the relative directory name of the share.
                switch ($params['type']) {
@@ -396,13 +398,22 @@ class OMVRpcServiceZFS extends OMVRpcServiceAbstract {
                        break;
                }
 
                        break;
                }
 
+               $poolname = OMVModuleZFSUtil::getPoolname($params['name']);
+               $pooluuid = OMVModuleZFSUtil::getUUIDbyName($poolname);
+               $dir = $tmp->getMountPoint();
+
+               //Get the mntent object and fetch it's uuid.
+               $xpath = "//system/fstab/mntent[fsname='" . $pooluuid . "' and dir='" . $dir . "' and type='zfs']";
+               $mountpoint = $xmlConfig->get($xpath);
+               $mntentref = $mountpoint['uuid'];
+               
                $uuid = OMVUtil::uuid();
                $uuid = OMVUtil::uuid();
-               $pathName = $tmp->getMountPoint();
-               $reldirpath = OMVModuleZFSUtil::getReldirpath($pathName);
+               $pathName = $dir . "/" . trim($params['mountpoint'], "/");
+               $reldirpath = trim($params['mountpoint'], "/");
                $object = array(
                        "uuid" => $uuid,
                        "name" => $params['sharename'],
                $object = array(
                        "uuid" => $uuid,
                        "name" => $params['sharename'],
-                       "comment" => $params['comment'],
+                       "comment" => $params['comment'] . "*** ZFS share on " . $params['name'] . " ***",
                        "mntentref" => $mntentref,
                        "reldirpath" => $reldirpath
                );
                        "mntentref" => $mntentref,
                        "reldirpath" => $reldirpath
                );
@@ -436,6 +447,24 @@ class OMVRpcServiceZFS extends OMVRpcServiceAbstract {
                        $object['mode'] = $params['mode'];
                }
 
                        $object['mode'] = $params['mode'];
                }
 
+               // Create the shared folder directory if necessary.
+               if(FALSE === file_exists($pathName)) {
+               // Create the directory. Note, the function seems to have a bug
+               // when using the mask parameter. E.g. octdec("777") does not
+               // create the correct permissions as expected, thus change the
+               // mode using chmod.
+                       if(FALSE === mkdir($pathName, 0700, TRUE)) {
+                               throw new OMVException(OMVErrorMsg::E_MISC_FAILURE,
+                                       sprintf("Failed to create the directory '%s'", $pathName));
+                       }
+                       // Change the directory mode.
+                       if(FALSE === chmod($pathName, octdec($object['mode']))) {
+                               throw new OMVException(OMVErrorMsg::E_MISC_FAILURE,
+                                       sprintf("Failed to set file mode to '%s' for '%s'",
+                                       $object['mode'], $pathName));
+                       }
+               }
+               
                // Change group owner of directory to configured default group,
                // e.g. 'users'.
                if(FALSE === chgrp($pathName, $GLOBALS['OMV_USERMGMT_DEFAULT_GROUP'])) {
                // Change group owner of directory to configured default group,
                // e.g. 'users'.
                if(FALSE === chgrp($pathName, $GLOBALS['OMV_USERMGMT_DEFAULT_GROUP'])) {
index 1f1e8ebbc59ae6fb17c1ac23c9f3ee529c9ff393..0f67e369aa79ffe739eeebfd38a9d32c2a4ef4d2 100644 (file)
@@ -11,6 +11,24 @@ require_once("Zpool.php");
  */
 class OMVModuleZFSUtil {
 
  */
 class OMVModuleZFSUtil {
 
+       /**
+        * Manages relocation of ZFS filesystem mountpoints in the OMV backend.
+        * Needed when the user changes mountpoint of a filesystem in the GUI.
+        *
+        */
+       public static function relocateFilesystem($name) {
+               global $xmlConfig;
+               $poolname = OMVModuleZFSUtil::getPoolname($name);
+               $pooluuid = OMVModuleZFSUtil::getUUIDbyName($poolname);
+               $ds = new OMVModuleZFSDataset($name);
+               $dir = $ds->getMountPoint();
+               $xpath = "//system/fstab/mntent[fsname='" . $pooluuid . "' and dir='" . $dir . "' and type='zfs']";
+               $object = $xmlConfig->get($xpath);
+               $object['dir'] = $property['value'];
+               $xmlConfig->replace($xpath, $object);
+               return null;
+       }
+       
        /**
         * Clears all ZFS labels on specified devices.
         * Needed for blkid to display proper data.
        /**
         * Clears all ZFS labels on specified devices.
         * Needed for blkid to display proper data.
@@ -21,6 +39,7 @@ class OMVModuleZFSUtil {
                        $cmd = "zpool labelclear /dev/" . $disk . "1";
                        OMVModuleZFSUtil::exec($cmd,$out,$res);
                }
                        $cmd = "zpool labelclear /dev/" . $disk . "1";
                        OMVModuleZFSUtil::exec($cmd,$out,$res);
                }
+               return null;
        }
 
        /**
        }
 
        /**
@@ -58,15 +77,22 @@ class OMVModuleZFSUtil {
         */
        public static function deleteShares($name) {
                global $xmlConfig;
         */
        public static function deleteShares($name) {
                global $xmlConfig;
-               $tmp = new OMVModuleZFSDataset($name);
-               $reldirpath = OMVModuleZFSUtil::getReldirpath($tmp->getMountPoint());
                $poolname = OMVModuleZFSUtil::getPoolname($name);
                $pooluuid = OMVModuleZFSUtil::getUUIDbyName($poolname);
                $poolname = OMVModuleZFSUtil::getPoolname($name);
                $pooluuid = OMVModuleZFSUtil::getUUIDbyName($poolname);
-               $xpath = "//system/fstab/mntent[fsname='" . $pooluuid . "']";
+               $ds = new OMVModuleZFSDataset($name);
+               $dir = $ds->getMountPoint();
+               $xpath = "//system/fstab/mntent[fsname='" . $pooluuid . "' and dir='" . $dir . "' and type='zfs']";
                $mountpoint = $xmlConfig->get($xpath);
                $mntentuuid = $mountpoint['uuid'];
                $mountpoint = $xmlConfig->get($xpath);
                $mntentuuid = $mountpoint['uuid'];
-               $xpath = "//system/shares/sharedfolder[mntentref='" . $mntentuuid . "' and reldirpath='" . $reldirpath . "']";
-               $object = $xmlConfig->get($xpath);
+               $xpath = "//system/shares/sharedfolder[mntentref='" . $mntentuuid . "']";
+               $objects = $xmlConfig->getList($xpath);
+               foreach ($objects as $object) {
+                       $tmpxpath = sprintf("//*[contains(name(),'sharedfolderref')]".
+                               "[contains(.,'%s')]", $object['uuid']);
+                       if ($xmlConfig->exists($tmpxpath)) {
+                               throw new OMVModuleZFSException("The Filesystem is shared and in use. Please delete all references and try again.");
+                       }
+               }
                $xmlConfig->delete($xpath);
                $dispatcher = &OMVNotifyDispatcher::getInstance();
                $dispatcher->notify(OMV_NOTIFY_DELETE,"org.openmediavault.system.shares.sharedfolder",$object);
                $xmlConfig->delete($xpath);
                $dispatcher = &OMVNotifyDispatcher::getInstance();
                $dispatcher->notify(OMV_NOTIFY_DELETE,"org.openmediavault.system.shares.sharedfolder",$object);
@@ -136,33 +162,33 @@ class OMVModuleZFSUtil {
        }
 
        /**
        }
 
        /**
-        * Add any missing ZFS pool to the OMV backend
+        * Add any missing ZFS filesystems to the OMV backend
         *
         */
        public static function addMissingOMVMntEnt() {
                global $xmlConfig;
         *
         */
        public static function addMissingOMVMntEnt() {
                global $xmlConfig;
-               $cmd = "zpool list -H -o name";
+               $cmd = "zfs list -H -o name -t filesystem";
                OMVModuleZFSUtil::exec($cmd, $out, $res);
                foreach($out as $name) {
                OMVModuleZFSUtil::exec($cmd, $out, $res);
                foreach($out as $name) {
-                       $pooluuid = OMVModuleZFSUtil::getUUIDbyName($name);
-                       $xpath = "//system/fstab/mntent[fsname='" . $pooluuid . "']";
-                       $mountpoint = $xmlConfig->get($xpath);
-                       if (is_null($mountpoint)) {
-                               $uuid = OMVUtil::uuid();
-                               $pool = new OMVModuleZFSZpool($name);
-                               $dir = $pool->getMountPoint();
-                               $object = array(
-                                       "uuid" => $uuid,
-                                       "fsname" => $pooluuid,
-                                       "dir" => $dir,
-                                       "type" => "zfs",
-                                       "opts" => "rw,relatime,xattr,noacl",
-                                       "freq" => "0",
-                                       "passno" => "0"
-                               );
-                               $xmlConfig->set("//system/fstab",array("mntent" => $object));
-                               $dispatcher = &OMVNotifyDispatcher::getInstance();
-                               $dispatcher->notify(OMV_NOTIFY_CREATE,"org.openmediavault.system.fstab.mntent", $object);
+                       if (preg_match('/[\/]+/', $name)) {
+                               $poolname = OMVModuleZFSUtil::getPoolname($name);
+                               $pooluuid = OMVModuleZFSUtil::getUUIDbyName($poolname);
+                               $ds = new OMVModuleZFSDataset($name);
+                               $dir = $ds->getMountPoint();
+                               $xpath = "//system/fstab/mntent[fsname='" . $pooluuid . "' and dir='" . $dir . "' and type='zfs']";
+                               if (!($xmlConfig->exists($xpath))) {
+                                       $uuid = OMVUtil::uuid();
+                                       $object = array(
+                                               "uuid" => $uuid,
+                                               "fsname" => $pooluuid,
+                                               "dir" => $dir,
+                                               "type" => "zfs",
+                                               "opts" => "rw,relatime,xattr,noacl",
+                                               "freq" => "0",
+                                               "passno" => "0"
+                                       );
+                                       $xmlConfig->set("//system/fstab",array("mntent" => $object));
+                               }
                        }
                }
                return null;
                        }
                }
                return null;
This page took 0.051611 seconds and 5 git commands to generate.