diff options
| author | Xavier Hernandez <xhernandez@datalab.es> | 2013-05-23 11:13:25 +0200 | 
|---|---|---|
| committer | Vijay Bellur <vbellur@redhat.com> | 2014-05-02 09:34:45 -0700 | 
| commit | c7838fbd6afd876c922e1ec681bbbcf73be653e5 (patch) | |
| tree | ffeb21b8cf64f9bf798fe938c848dbf1f750fb7b /xlators/storage/posix/src/posix-handle.c | |
| parent | dd5e318e020fab5914567885c1b83815b39d46f9 (diff) | |
storage/posix: do not dereference gfid symlinks before posix_handle_mkdir_hashes()
Whenever a new directory is created, its corresponding gfid file must
also be created. This was done first calling MAKE_HANDLE_PATH() to get
the path of the gfid file, then calling posix_handle_mkdir_hashes() to
create the parent directories of the gfid, and finally creating the
soft-link.
In normal circumstances, the gfid we want to create won't exist and
MAKE_HANDLE_PATH() will return a simple path to the new gfid. However if
the volume is damaged and a self-heal is running, it is possible that we
try to create an already existing gfid. In this case, MAKE_HANDLE_PATH()
will return a path to the directory instead of the path to the gfid.
To solve this problem, every time a path to a gfid is needed, a call to
MAKE_HANDLE_ABSPATH() is made instead of the call to MAKE_HANDLE_PATH().
Change-Id: Ic319cc38c170434db8e86e2f89f0b8c28c0d611a
BUG: 859581
Signed-off-by: Xavier Hernandez <xhernandez@datalab.es>
Reviewed-on: http://review.gluster.org/5075
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/storage/posix/src/posix-handle.c')
| -rw-r--r-- | xlators/storage/posix/src/posix-handle.c | 11 | 
1 files changed, 3 insertions, 8 deletions
diff --git a/xlators/storage/posix/src/posix-handle.c b/xlators/storage/posix/src/posix-handle.c index adb8acc075d..78aba988e31 100644 --- a/xlators/storage/posix/src/posix-handle.c +++ b/xlators/storage/posix/src/posix-handle.c @@ -438,7 +438,6 @@ posix_handle_init (xlator_t *this)          struct posix_private *priv = NULL;          char                 *handle_pfx = NULL;          int                   ret = 0; -        int                   len = 0;          struct stat           stbuf;          struct stat           rootbuf;          struct stat           exportbuf; @@ -491,9 +490,7 @@ posix_handle_init (xlator_t *this)          stat (handle_pfx, &priv->handledir); -        len = posix_handle_path (this, gfid, NULL, NULL, 0); -        rootstr = alloca (len); -        posix_handle_path (this, gfid, NULL, rootstr, len); +        MAKE_HANDLE_ABSPATH(rootstr, this, gfid);          ret = stat (rootstr, &rootbuf);          switch (ret) { @@ -683,7 +680,7 @@ posix_handle_hard (xlator_t *this, const char *oldpath, uuid_t gfid, struct stat          int          ret = -1; -        MAKE_HANDLE_PATH (newpath, this, gfid, NULL); +        MAKE_HANDLE_ABSPATH (newpath, this, gfid);          ret = lstat (newpath, &newbuf);          if (ret == -1 && errno != ENOENT) { @@ -742,11 +739,9 @@ posix_handle_soft (xlator_t *this, const char *real_path, loc_t *loc,          struct stat  newbuf;          int          ret = -1; - -        MAKE_HANDLE_PATH (newpath, this, gfid, NULL); +        MAKE_HANDLE_ABSPATH (newpath, this, gfid);          MAKE_HANDLE_RELPATH (oldpath, this, loc->pargfid, loc->name); -          ret = lstat (newpath, &newbuf);          if (ret == -1 && errno != ENOENT) {                  gf_log (this->name, GF_LOG_WARNING,  | 
