2 * 2007+ Copyright (c) Evgeniy Polyakov <zbr@ioremap.net>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <linux/module.h>
17 #include <linux/slab.h>
19 #include <linux/ktime.h>
20 #include <linux/fs_struct.h>
21 #include <linux/pagemap.h>
22 #include <linux/writeback.h>
23 #include <linux/mount.h>
28 #define UNHASHED_OBSCURE_STRING_SIZE sizeof(" (deleted)")
31 * Create path from root for given inode.
32 * Path is formed as set of stuctures, containing name of the object
33 * and its inode data (mode, permissions and so on).
35 int pohmelfs_construct_path_string(struct pohmelfs_inode *pi, void *data, int len)
40 int err = 0, strlen, reduce = 0;
42 d = d_find_alias(&pi->vfs_inode);
44 printk("%s: no alias, list_empty: %d.\n", __func__, list_empty(&pi->vfs_inode.i_dentry));
48 read_lock(¤t->fs->lock);
49 path.mnt = mntget(current->fs->root.mnt);
50 read_unlock(¤t->fs->lock);
54 if (!IS_ROOT(d) && d_unhashed(d))
57 ptr = d_path(&path, data, len);
63 if (reduce && len >= UNHASHED_OBSCURE_STRING_SIZE) {
64 char *end = data + len - UNHASHED_OBSCURE_STRING_SIZE;
68 strlen = len - (ptr - (char *)data);
69 memmove(data, ptr, strlen);
74 dprintk("%s: dname: '%s', len: %u, maxlen: %u, name: '%s', strlen: %d.\n",
75 __func__, d->d_name.name, d->d_name.len, len, ptr, strlen);
84 int pohmelfs_path_length(struct pohmelfs_inode *pi)
86 struct dentry *d, *root, *first;
87 int len = 1; /* Root slash */
89 first = d = d_find_alias(&pi->vfs_inode);
91 dprintk("%s: ino: %llu, mode: %o.\n", __func__, pi->ino, pi->vfs_inode.i_mode);
95 read_lock(¤t->fs->lock);
96 root = dget(current->fs->root.dentry);
97 read_unlock(¤t->fs->lock);
99 spin_lock(&dcache_lock);
101 if (!IS_ROOT(d) && d_unhashed(d))
102 len += UNHASHED_OBSCURE_STRING_SIZE; /* Obscure " (deleted)" string */
104 while (d && d != root && !IS_ROOT(d)) {
105 len += d->d_name.len + 1; /* Plus slash */
108 spin_unlock(&dcache_lock);
113 return len + 1; /* Including zero-byte */