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
|
/**
* Copyright (c) 2008-2010 Alper Akcan <alper.akcan@gmail.com>
* Copyright (c) 2009-2010 Renzo Davoli <renzo@cs.unibo.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program (in the main directory of the fuse-ext2
* distribution in the file COPYING); if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "fuse-ext2.h"
struct rmdir_st {
ext2_ino_t parent;
int empty;
};
static int rmdir_proc (ext2_ino_t dir EXT2FS_ATTR((unused)),
int entry EXT2FS_ATTR((unused)),
struct ext2_dir_entry *dirent,
int offset EXT2FS_ATTR((unused)),
int blocksize EXT2FS_ATTR((unused)),
char *buf EXT2FS_ATTR((unused)), void *private)
{
int *p_empty= (int *) private;
debugf("enter");
debugf("walking on: %s", dirent->name);
if (dirent->inode == 0 ||
(((dirent->name_len & 0xFF) == 1) && (dirent->name[0] == '.')) ||
(((dirent->name_len & 0xFF) == 2) && (dirent->name[0] == '.') &&
(dirent->name[1] == '.'))) {
debugf("leave");
return 0;
}
*p_empty = 0;
debugf("leave (not empty)");
return 0;
}
int do_check_empty_dir(ext2_filsys e2fs, ext2_ino_t ino)
{
errcode_t rc;
int empty = 1;
rc = ext2fs_dir_iterate2(e2fs, ino, 0, 0, rmdir_proc, &empty);
if (rc) {
debugf("while iterating over directory");
return -EIO;
}
if (empty == 0) {
debugf("directory not empty");
return -ENOTEMPTY;
}
return 0;
}
int op_rmdir (const char *path)
{
int rt;
errcode_t rc;
char *p_path;
char *r_path;
ext2_ino_t p_ino;
struct ext2_inode p_inode;
ext2_ino_t r_ino;
struct ext2_inode r_inode;
ext2_filsys e2fs;
FUSE_EXT2_LOCK;
e2fs = current_ext2fs();
debugf("enter");
debugf("path = %s", path);
rt=do_check_split(path, &p_path, &r_path);
if (rt != 0) {
debugf("do_check_split: failed");
goto err;
}
debugf("parent: %s, child: %s", p_path, r_path);
rt = do_readinode(e2fs, p_path, &p_ino, &p_inode);
if (rt) {
debugf("do_readinode(%s, &p_ino, &p_inode); failed", p_path);
goto err_free_split;
}
rt = do_readinode(e2fs, path, &r_ino, &r_inode);
if (rt) {
debugf("do_readinode(%s, &r_ino, &r_inode); failed", path);
goto err_free_split;
}
if (!LINUX_S_ISDIR(r_inode.i_mode)) {
debugf("%s is not a directory", path);
rt = -ENOTDIR;
goto err_free_split;
}
if (r_ino == EXT2_ROOT_INO) {
debugf("root dir cannot be removed", path);
rt = -EIO;
goto err_free_split;
}
rt = do_check_empty_dir(e2fs, r_ino);
if (rt) {
debugf("do_check_empty_dir filed");
goto err_free_split;
}
rc = ext2fs_unlink(e2fs, p_ino, r_path, r_ino, 0);
if (rc) {
debugf("while unlinking ino %d", (int) r_ino);
rt = -EIO;
goto err_free_split;
}
rt = do_killfilebyinode(e2fs, r_ino, &r_inode);
if (rt) {
debugf("do_killfilebyinode(r_ino, &r_inode); failed");
goto err_free_split;
}
rt = do_readinode(e2fs, p_path, &p_ino, &p_inode);
if (rt) {
debugf("do_readinode(p_path, &p_ino, &p_inode); failed");
goto err_free_split;
}
if (p_inode.i_links_count > 1) {
p_inode.i_links_count--;
}
rc = ext2fs_write_inode(e2fs, p_ino, &p_inode);
if (rc) {
debugf("ext2fs_write_inode(e2fs, ino, inode); failed");
rt = -EIO;
goto err_free_split;
}
free_split(p_path, r_path);
debugf("leave");
FUSE_EXT2_UNLOCK;
return 0;
err_free_split:
free_split(p_path, r_path);
err:
FUSE_EXT2_UNLOCK;
return rt;
}
|