Linux 2.6.33.13
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / pohmelfs / dir.c
blobaacd25bfb0cb8e00fc554f30316890cc7ada47e0
1 /*
2 * 2007+ Copyright (c) Evgeniy Polyakov <zbr@ioremap.net>
3 * All rights reserved.
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/kernel.h>
17 #include <linux/fs.h>
18 #include <linux/jhash.h>
19 #include <linux/namei.h>
20 #include <linux/pagemap.h>
22 #include "netfs.h"
24 static int pohmelfs_cmp_hash(struct pohmelfs_name *n, u32 hash)
26 if (n->hash > hash)
27 return -1;
28 if (n->hash < hash)
29 return 1;
31 return 0;
34 static struct pohmelfs_name *pohmelfs_search_hash_unprecise(struct pohmelfs_inode *pi, u32 hash)
36 struct rb_node *n = pi->hash_root.rb_node;
37 struct pohmelfs_name *tmp = NULL;
38 int cmp;
40 while (n) {
41 tmp = rb_entry(n, struct pohmelfs_name, hash_node);
43 cmp = pohmelfs_cmp_hash(tmp, hash);
44 if (cmp < 0)
45 n = n->rb_left;
46 else if (cmp > 0)
47 n = n->rb_right;
48 else
49 break;
53 return tmp;
56 struct pohmelfs_name *pohmelfs_search_hash(struct pohmelfs_inode *pi, u32 hash)
58 struct pohmelfs_name *tmp;
60 tmp = pohmelfs_search_hash_unprecise(pi, hash);
61 if (tmp && (tmp->hash == hash))
62 return tmp;
64 return NULL;
67 static void __pohmelfs_name_del(struct pohmelfs_inode *parent, struct pohmelfs_name *node)
69 rb_erase(&node->hash_node, &parent->hash_root);
73 * Remove name cache entry from its caches and free it.
75 static void pohmelfs_name_free(struct pohmelfs_inode *parent, struct pohmelfs_name *node)
77 __pohmelfs_name_del(parent, node);
78 list_del(&node->sync_create_entry);
79 kfree(node);
82 static struct pohmelfs_name *pohmelfs_insert_hash(struct pohmelfs_inode *pi,
83 struct pohmelfs_name *new)
85 struct rb_node **n = &pi->hash_root.rb_node, *parent = NULL;
86 struct pohmelfs_name *ret = NULL, *tmp;
87 int cmp;
89 while (*n) {
90 parent = *n;
92 tmp = rb_entry(parent, struct pohmelfs_name, hash_node);
94 cmp = pohmelfs_cmp_hash(tmp, new->hash);
95 if (cmp < 0)
96 n = &parent->rb_left;
97 else if (cmp > 0)
98 n = &parent->rb_right;
99 else {
100 ret = tmp;
101 break;
105 if (ret) {
106 printk("%s: exist: parent: %llu, ino: %llu, hash: %x, len: %u, data: '%s', "
107 "new: ino: %llu, hash: %x, len: %u, data: '%s'.\n",
108 __func__, pi->ino,
109 ret->ino, ret->hash, ret->len, ret->data,
110 new->ino, new->hash, new->len, new->data);
111 ret->ino = new->ino;
112 return ret;
115 rb_link_node(&new->hash_node, parent, n);
116 rb_insert_color(&new->hash_node, &pi->hash_root);
118 return NULL;
122 * Free name cache for given inode.
124 void pohmelfs_free_names(struct pohmelfs_inode *parent)
126 struct rb_node *rb_node;
127 struct pohmelfs_name *n;
129 for (rb_node = rb_first(&parent->hash_root); rb_node;) {
130 n = rb_entry(rb_node, struct pohmelfs_name, hash_node);
131 rb_node = rb_next(rb_node);
133 pohmelfs_name_free(parent, n);
137 static void pohmelfs_fix_offset(struct pohmelfs_inode *parent, struct pohmelfs_name *node)
139 parent->total_len -= node->len;
143 * Free name cache entry helper.
145 void pohmelfs_name_del(struct pohmelfs_inode *parent, struct pohmelfs_name *node)
147 pohmelfs_fix_offset(parent, node);
148 pohmelfs_name_free(parent, node);
152 * Insert new name cache entry into all hash cache.
154 static int pohmelfs_insert_name(struct pohmelfs_inode *parent, struct pohmelfs_name *n)
156 struct pohmelfs_name *name;
158 name = pohmelfs_insert_hash(parent, n);
159 if (name)
160 return -EEXIST;
162 parent->total_len += n->len;
163 list_add_tail(&n->sync_create_entry, &parent->sync_create_list);
165 return 0;
169 * Allocate new name cache entry.
171 static struct pohmelfs_name *pohmelfs_name_alloc(unsigned int len)
173 struct pohmelfs_name *n;
175 n = kzalloc(sizeof(struct pohmelfs_name) + len, GFP_KERNEL);
176 if (!n)
177 return NULL;
179 INIT_LIST_HEAD(&n->sync_create_entry);
181 n->data = (char *)(n+1);
183 return n;
187 * Add new name entry into directory's cache.
189 static int pohmelfs_add_dir(struct pohmelfs_sb *psb, struct pohmelfs_inode *parent,
190 struct pohmelfs_inode *npi, struct qstr *str, unsigned int mode, int link)
192 int err = -ENOMEM;
193 struct pohmelfs_name *n;
195 n = pohmelfs_name_alloc(str->len + 1);
196 if (!n)
197 goto err_out_exit;
199 n->ino = npi->ino;
200 n->mode = mode;
201 n->len = str->len;
202 n->hash = str->hash;
203 sprintf(n->data, "%s", str->name);
205 mutex_lock(&parent->offset_lock);
206 err = pohmelfs_insert_name(parent, n);
207 mutex_unlock(&parent->offset_lock);
209 if (err) {
210 if (err != -EEXIST)
211 goto err_out_free;
212 kfree(n);
215 return 0;
217 err_out_free:
218 kfree(n);
219 err_out_exit:
220 return err;
224 * Create new inode for given parameters (name, inode info, parent).
225 * This does not create object on the server, it will be synced there during writeback.
227 struct pohmelfs_inode *pohmelfs_new_inode(struct pohmelfs_sb *psb,
228 struct pohmelfs_inode *parent, struct qstr *str,
229 struct netfs_inode_info *info, int link)
231 struct inode *new = NULL;
232 struct pohmelfs_inode *npi;
233 int err = -EEXIST;
235 dprintk("%s: creating inode: parent: %llu, ino: %llu, str: %p.\n",
236 __func__, (parent)?parent->ino:0, info->ino, str);
238 err = -ENOMEM;
239 new = iget_locked(psb->sb, info->ino);
240 if (!new)
241 goto err_out_exit;
243 npi = POHMELFS_I(new);
244 npi->ino = info->ino;
245 err = 0;
247 if (new->i_state & I_NEW) {
248 dprintk("%s: filling VFS inode: %lu/%llu.\n",
249 __func__, new->i_ino, info->ino);
250 pohmelfs_fill_inode(new, info);
252 if (S_ISDIR(info->mode)) {
253 struct qstr s;
255 s.name = ".";
256 s.len = 1;
257 s.hash = jhash(s.name, s.len, 0);
259 err = pohmelfs_add_dir(psb, npi, npi, &s, info->mode, 0);
260 if (err)
261 goto err_out_put;
263 s.name = "..";
264 s.len = 2;
265 s.hash = jhash(s.name, s.len, 0);
267 err = pohmelfs_add_dir(psb, npi, (parent)?parent:npi, &s,
268 (parent)?parent->vfs_inode.i_mode:npi->vfs_inode.i_mode, 0);
269 if (err)
270 goto err_out_put;
274 if (str) {
275 if (parent) {
276 err = pohmelfs_add_dir(psb, parent, npi, str, info->mode, link);
278 dprintk("%s: %s inserted name: '%s', new_offset: %llu, ino: %llu, parent: %llu.\n",
279 __func__, (err)?"unsuccessfully":"successfully",
280 str->name, parent->total_len, info->ino, parent->ino);
282 if (err && err != -EEXIST)
283 goto err_out_put;
287 if (new->i_state & I_NEW) {
288 if (parent)
289 mark_inode_dirty(&parent->vfs_inode);
290 mark_inode_dirty(new);
293 set_bit(NETFS_INODE_OWNED, &npi->state);
294 npi->lock_type = POHMELFS_WRITE_LOCK;
295 unlock_new_inode(new);
297 return npi;
299 err_out_put:
300 printk("%s: putting inode: %p, npi: %p, error: %d.\n", __func__, new, npi, err);
301 iput(new);
302 err_out_exit:
303 return ERR_PTR(err);
306 static int pohmelfs_remote_sync_complete(struct page **pages, unsigned int page_num,
307 void *private, int err)
309 struct pohmelfs_inode *pi = private;
310 struct pohmelfs_sb *psb = POHMELFS_SB(pi->vfs_inode.i_sb);
312 dprintk("%s: ino: %llu, err: %d.\n", __func__, pi->ino, err);
314 if (err)
315 pi->error = err;
316 wake_up(&psb->wait);
317 pohmelfs_put_inode(pi);
319 return err;
323 * Receive directory content from the server.
324 * This should be only done for objects, which were not created locally,
325 * and which were not synced previously.
327 static int pohmelfs_sync_remote_dir(struct pohmelfs_inode *pi)
329 struct inode *inode = &pi->vfs_inode;
330 struct pohmelfs_sb *psb = POHMELFS_SB(inode->i_sb);
331 long ret = psb->wait_on_page_timeout;
332 int err;
334 dprintk("%s: dir: %llu, state: %lx: remote_synced: %d.\n",
335 __func__, pi->ino, pi->state, test_bit(NETFS_INODE_REMOTE_SYNCED, &pi->state));
337 if (test_bit(NETFS_INODE_REMOTE_DIR_SYNCED, &pi->state))
338 return 0;
340 if (!igrab(inode)) {
341 err = -ENOENT;
342 goto err_out_exit;
345 err = pohmelfs_meta_command(pi, NETFS_READDIR, NETFS_TRANS_SINGLE_DST,
346 pohmelfs_remote_sync_complete, pi, 0);
347 if (err)
348 goto err_out_exit;
350 pi->error = 0;
351 ret = wait_event_interruptible_timeout(psb->wait,
352 test_bit(NETFS_INODE_REMOTE_DIR_SYNCED, &pi->state) || pi->error, ret);
353 dprintk("%s: awake dir: %llu, ret: %ld, err: %d.\n", __func__, pi->ino, ret, pi->error);
354 if (ret <= 0) {
355 err = ret;
356 if (!err)
357 err = -ETIMEDOUT;
358 goto err_out_exit;
361 if (pi->error)
362 return pi->error;
364 return 0;
366 err_out_exit:
367 clear_bit(NETFS_INODE_REMOTE_SYNCED, &pi->state);
369 return err;
372 static int pohmelfs_dir_open(struct inode *inode, struct file *file)
374 file->private_data = NULL;
375 return 0;
379 * VFS readdir callback. Syncs directory content from server if needed,
380 * and provides direntry info to the userspace.
382 static int pohmelfs_readdir(struct file *file, void *dirent, filldir_t filldir)
384 struct inode *inode = file->f_path.dentry->d_inode;
385 struct pohmelfs_inode *pi = POHMELFS_I(inode);
386 struct pohmelfs_name *n;
387 struct rb_node *rb_node;
388 int err = 0, mode;
389 u64 len;
391 dprintk("%s: parent: %llu, fpos: %llu, hash: %08lx.\n",
392 __func__, pi->ino, (u64)file->f_pos,
393 (unsigned long)file->private_data);
394 #if 0
395 err = pohmelfs_data_lock(pi, 0, ~0, POHMELFS_READ_LOCK);
396 if (err)
397 return err;
398 #endif
399 err = pohmelfs_sync_remote_dir(pi);
400 if (err)
401 return err;
403 if (file->private_data && (file->private_data == (void *)(unsigned long)file->f_pos))
404 return 0;
406 mutex_lock(&pi->offset_lock);
407 n = pohmelfs_search_hash_unprecise(pi, (unsigned long)file->private_data);
409 while (n) {
410 mode = (n->mode >> 12) & 15;
412 dprintk("%s: offset: %llu, parent ino: %llu, name: '%s', len: %u, ino: %llu, "
413 "mode: %o/%o, fpos: %llu, hash: %08x.\n",
414 __func__, file->f_pos, pi->ino, n->data, n->len,
415 n->ino, n->mode, mode, file->f_pos, n->hash);
417 file->private_data = (void *)(unsigned long)n->hash;
419 len = n->len;
420 err = filldir(dirent, n->data, n->len, file->f_pos, n->ino, mode);
422 if (err < 0) {
423 dprintk("%s: err: %d.\n", __func__, err);
424 err = 0;
425 break;
428 file->f_pos += len;
430 rb_node = rb_next(&n->hash_node);
432 if (!rb_node || (rb_node == &n->hash_node)) {
433 file->private_data = (void *)(unsigned long)file->f_pos;
434 break;
437 n = rb_entry(rb_node, struct pohmelfs_name, hash_node);
439 mutex_unlock(&pi->offset_lock);
441 return err;
444 static loff_t pohmelfs_dir_lseek(struct file *file, loff_t offset, int origin)
446 file->f_pos = offset;
447 file->private_data = NULL;
448 return offset;
451 const struct file_operations pohmelfs_dir_fops = {
452 .open = pohmelfs_dir_open,
453 .read = generic_read_dir,
454 .llseek = pohmelfs_dir_lseek,
455 .readdir = pohmelfs_readdir,
459 * Lookup single object on server.
461 static int pohmelfs_lookup_single(struct pohmelfs_inode *parent,
462 struct qstr *str, u64 ino)
464 struct pohmelfs_sb *psb = POHMELFS_SB(parent->vfs_inode.i_sb);
465 long ret = msecs_to_jiffies(5000);
466 int err;
468 set_bit(NETFS_COMMAND_PENDING, &parent->state);
469 err = pohmelfs_meta_command_data(parent, parent->ino, NETFS_LOOKUP,
470 (char *)str->name, NETFS_TRANS_SINGLE_DST, NULL, NULL, ino);
471 if (err)
472 goto err_out_exit;
474 err = 0;
475 ret = wait_event_interruptible_timeout(psb->wait,
476 !test_bit(NETFS_COMMAND_PENDING, &parent->state), ret);
477 if (ret <= 0) {
478 err = ret;
479 if (!err)
480 err = -ETIMEDOUT;
483 if (err)
484 goto err_out_exit;
486 return 0;
488 err_out_exit:
489 clear_bit(NETFS_COMMAND_PENDING, &parent->state);
491 printk("%s: failed: parent: %llu, ino: %llu, name: '%s', err: %d.\n",
492 __func__, parent->ino, ino, str->name, err);
494 return err;
498 * VFS lookup callback.
499 * We first try to get inode number from local name cache, if we have one,
500 * then inode can be found in inode cache. If there is no inode or no object in
501 * local cache, try to lookup it on server. This only should be done for directories,
502 * which were not created locally, otherwise remote server does not know about dir at all,
503 * so no need to try to know that.
505 struct dentry *pohmelfs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
507 struct pohmelfs_inode *parent = POHMELFS_I(dir);
508 struct pohmelfs_name *n;
509 struct inode *inode = NULL;
510 unsigned long ino = 0;
511 int err, lock_type = POHMELFS_READ_LOCK, need_lock = 1;
512 struct qstr str = dentry->d_name;
514 if ((nd->intent.open.flags & O_ACCMODE) > 1)
515 lock_type = POHMELFS_WRITE_LOCK;
517 if (test_bit(NETFS_INODE_OWNED, &parent->state)) {
518 if (lock_type == parent->lock_type)
519 need_lock = 0;
520 if ((lock_type == POHMELFS_READ_LOCK) && (parent->lock_type == POHMELFS_WRITE_LOCK))
521 need_lock = 0;
524 if ((lock_type == POHMELFS_READ_LOCK) && !test_bit(NETFS_INODE_REMOTE_DIR_SYNCED, &parent->state))
525 need_lock = 1;
527 str.hash = jhash(dentry->d_name.name, dentry->d_name.len, 0);
529 mutex_lock(&parent->offset_lock);
530 n = pohmelfs_search_hash(parent, str.hash);
531 if (n)
532 ino = n->ino;
533 mutex_unlock(&parent->offset_lock);
535 dprintk("%s: start ino: %lu, inode: %p, name: '%s', hash: %x, parent_state: %lx, need_lock: %d.\n",
536 __func__, ino, inode, str.name, str.hash, parent->state, need_lock);
538 if (ino) {
539 inode = ilookup(dir->i_sb, ino);
540 if (inode)
541 goto out;
544 dprintk("%s: no inode dir: %p, dir_ino: %llu, name: '%s', len: %u, dir_state: %lx, ino: %lu.\n",
545 __func__, dir, parent->ino,
546 str.name, str.len, parent->state, ino);
548 if (!ino) {
549 if (!need_lock)
550 goto out;
553 err = pohmelfs_data_lock(parent, 0, ~0, lock_type);
554 if (err)
555 goto out;
557 err = pohmelfs_lookup_single(parent, &str, ino);
558 if (err)
559 goto out;
561 if (!ino) {
562 mutex_lock(&parent->offset_lock);
563 n = pohmelfs_search_hash(parent, str.hash);
564 if (n)
565 ino = n->ino;
566 mutex_unlock(&parent->offset_lock);
569 if (ino) {
570 inode = ilookup(dir->i_sb, ino);
571 dprintk("%s: second lookup ino: %lu, inode: %p, name: '%s', hash: %x.\n",
572 __func__, ino, inode, str.name, str.hash);
573 if (!inode) {
574 dprintk("%s: No inode for ino: %lu, name: '%s', hash: %x.\n",
575 __func__, ino, str.name, str.hash);
576 /* return NULL; */
577 return ERR_PTR(-EACCES);
579 } else {
580 printk("%s: No inode number : name: '%s', hash: %x.\n",
581 __func__, str.name, str.hash);
583 out:
584 return d_splice_alias(inode, dentry);
588 * Create new object in local cache. Object will be synced to server
589 * during writeback for given inode.
591 struct pohmelfs_inode *pohmelfs_create_entry_local(struct pohmelfs_sb *psb,
592 struct pohmelfs_inode *parent, struct qstr *str, u64 start, int mode)
594 struct pohmelfs_inode *npi;
595 int err = -ENOMEM;
596 struct netfs_inode_info info;
598 dprintk("%s: name: '%s', mode: %o, start: %llu.\n",
599 __func__, str->name, mode, start);
601 info.mode = mode;
602 info.ino = start;
604 if (!start)
605 info.ino = pohmelfs_new_ino(psb);
607 info.nlink = S_ISDIR(mode)?2:1;
608 info.uid = current_fsuid();
609 info.gid = current_fsgid();
610 info.size = 0;
611 info.blocksize = 512;
612 info.blocks = 0;
613 info.rdev = 0;
614 info.version = 0;
616 npi = pohmelfs_new_inode(psb, parent, str, &info, !!start);
617 if (IS_ERR(npi)) {
618 err = PTR_ERR(npi);
619 goto err_out_unlock;
622 return npi;
624 err_out_unlock:
625 dprintk("%s: err: %d.\n", __func__, err);
626 return ERR_PTR(err);
630 * Create local object and bind it to dentry.
632 static int pohmelfs_create_entry(struct inode *dir, struct dentry *dentry, u64 start, int mode)
634 struct pohmelfs_sb *psb = POHMELFS_SB(dir->i_sb);
635 struct pohmelfs_inode *npi, *parent;
636 struct qstr str = dentry->d_name;
637 int err;
639 parent = POHMELFS_I(dir);
641 err = pohmelfs_data_lock(parent, 0, ~0, POHMELFS_WRITE_LOCK);
642 if (err)
643 return err;
645 str.hash = jhash(dentry->d_name.name, dentry->d_name.len, 0);
647 npi = pohmelfs_create_entry_local(psb, parent, &str, start, mode);
648 if (IS_ERR(npi))
649 return PTR_ERR(npi);
651 d_instantiate(dentry, &npi->vfs_inode);
653 dprintk("%s: parent: %llu, inode: %llu, name: '%s', parent_nlink: %d, nlink: %d.\n",
654 __func__, parent->ino, npi->ino, dentry->d_name.name,
655 (signed)dir->i_nlink, (signed)npi->vfs_inode.i_nlink);
657 return 0;
661 * VFS create and mkdir callbacks.
663 static int pohmelfs_create(struct inode *dir, struct dentry *dentry, int mode,
664 struct nameidata *nd)
666 return pohmelfs_create_entry(dir, dentry, 0, mode);
669 static int pohmelfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
671 int err;
673 inode_inc_link_count(dir);
674 err = pohmelfs_create_entry(dir, dentry, 0, mode | S_IFDIR);
675 if (err)
676 inode_dec_link_count(dir);
678 return err;
681 static int pohmelfs_remove_entry(struct inode *dir, struct dentry *dentry)
683 struct pohmelfs_sb *psb = POHMELFS_SB(dir->i_sb);
684 struct inode *inode = dentry->d_inode;
685 struct pohmelfs_inode *parent = POHMELFS_I(dir), *pi = POHMELFS_I(inode);
686 struct pohmelfs_name *n;
687 int err = -ENOENT;
688 struct qstr str = dentry->d_name;
690 err = pohmelfs_data_lock(parent, 0, ~0, POHMELFS_WRITE_LOCK);
691 if (err)
692 return err;
694 str.hash = jhash(dentry->d_name.name, dentry->d_name.len, 0);
696 dprintk("%s: dir_ino: %llu, inode: %llu, name: '%s', nlink: %d.\n",
697 __func__, parent->ino, pi->ino,
698 str.name, (signed)inode->i_nlink);
700 BUG_ON(!inode);
702 mutex_lock(&parent->offset_lock);
703 n = pohmelfs_search_hash(parent, str.hash);
704 if (n) {
705 pohmelfs_fix_offset(parent, n);
706 if (test_bit(NETFS_INODE_REMOTE_SYNCED, &pi->state))
707 pohmelfs_remove_child(pi, n);
709 pohmelfs_name_free(parent, n);
710 err = 0;
712 mutex_unlock(&parent->offset_lock);
714 if (!err) {
715 psb->avail_size += inode->i_size;
717 pohmelfs_inode_del_inode(psb, pi);
719 mark_inode_dirty(dir);
721 inode->i_ctime = dir->i_ctime;
722 if (inode->i_nlink)
723 inode_dec_link_count(inode);
726 return err;
730 * Unlink and rmdir VFS callbacks.
732 static int pohmelfs_unlink(struct inode *dir, struct dentry *dentry)
734 return pohmelfs_remove_entry(dir, dentry);
737 static int pohmelfs_rmdir(struct inode *dir, struct dentry *dentry)
739 int err;
740 struct inode *inode = dentry->d_inode;
742 dprintk("%s: parent: %llu, inode: %llu, name: '%s', parent_nlink: %d, nlink: %d.\n",
743 __func__, POHMELFS_I(dir)->ino, POHMELFS_I(inode)->ino,
744 dentry->d_name.name, (signed)dir->i_nlink, (signed)inode->i_nlink);
746 err = pohmelfs_remove_entry(dir, dentry);
747 if (!err) {
748 inode_dec_link_count(dir);
749 inode_dec_link_count(inode);
752 return err;
756 * Link creation is synchronous.
757 * I'm lazy.
758 * Earth is somewhat round.
760 static int pohmelfs_create_link(struct pohmelfs_inode *parent, struct qstr *obj,
761 struct pohmelfs_inode *target, struct qstr *tstr)
763 struct super_block *sb = parent->vfs_inode.i_sb;
764 struct pohmelfs_sb *psb = POHMELFS_SB(sb);
765 struct netfs_cmd *cmd;
766 struct netfs_trans *t;
767 void *data;
768 int err, parent_len, target_len = 0, cur_len, path_size = 0;
770 err = pohmelfs_data_lock(parent, 0, ~0, POHMELFS_WRITE_LOCK);
771 if (err)
772 return err;
774 err = sb->s_op->write_inode(&parent->vfs_inode, 0);
775 if (err)
776 goto err_out_exit;
778 if (tstr)
779 target_len = tstr->len;
781 parent_len = pohmelfs_path_length(parent);
782 if (target)
783 target_len += pohmelfs_path_length(target);
785 if (parent_len < 0) {
786 err = parent_len;
787 goto err_out_exit;
790 if (target_len < 0) {
791 err = target_len;
792 goto err_out_exit;
795 t = netfs_trans_alloc(psb, parent_len + target_len + obj->len + 2, 0, 0);
796 if (!t) {
797 err = -ENOMEM;
798 goto err_out_exit;
800 cur_len = netfs_trans_cur_len(t);
802 cmd = netfs_trans_current(t);
803 if (IS_ERR(cmd)) {
804 err = PTR_ERR(cmd);
805 goto err_out_free;
808 data = (void *)(cmd + 1);
809 cur_len -= sizeof(struct netfs_cmd);
811 err = pohmelfs_construct_path_string(parent, data, parent_len);
812 if (err > 0) {
813 /* Do not place null-byte before the slash */
814 path_size = err - 1;
815 cur_len -= path_size;
817 err = snprintf(data + path_size, cur_len, "/%s|", obj->name);
819 path_size += err;
820 cur_len -= err;
822 cmd->ext = path_size - 1; /* No | symbol */
824 if (target) {
825 err = pohmelfs_construct_path_string(target, data + path_size, target_len);
826 if (err > 0) {
827 path_size += err;
828 cur_len -= err;
833 if (err < 0)
834 goto err_out_free;
836 cmd->start = 0;
838 if (!target && tstr) {
839 if (tstr->len > cur_len - 1) {
840 err = -ENAMETOOLONG;
841 goto err_out_free;
844 err = snprintf(data + path_size, cur_len, "%s", tstr->name) + 1; /* 0-byte */
845 path_size += err;
846 cur_len -= err;
847 cmd->start = 1;
850 dprintk("%s: parent: %llu, obj: '%s', target_inode: %llu, target_str: '%s', full: '%s'.\n",
851 __func__, parent->ino, obj->name, (target)?target->ino:0, (tstr)?tstr->name:NULL,
852 (char *)data);
854 cmd->cmd = NETFS_LINK;
855 cmd->size = path_size;
856 cmd->id = parent->ino;
858 netfs_convert_cmd(cmd);
860 netfs_trans_update(cmd, t, path_size);
862 err = netfs_trans_finish(t, psb);
863 if (err)
864 goto err_out_exit;
866 return 0;
868 err_out_free:
869 t->result = err;
870 netfs_trans_put(t);
871 err_out_exit:
872 return err;
876 * VFS hard and soft link callbacks.
878 static int pohmelfs_link(struct dentry *old_dentry, struct inode *dir,
879 struct dentry *dentry)
881 struct inode *inode = old_dentry->d_inode;
882 struct pohmelfs_inode *pi = POHMELFS_I(inode);
883 int err;
884 struct qstr str = dentry->d_name;
886 str.hash = jhash(dentry->d_name.name, dentry->d_name.len, 0);
888 err = inode->i_sb->s_op->write_inode(inode, 0);
889 if (err)
890 return err;
892 err = pohmelfs_create_link(POHMELFS_I(dir), &str, pi, NULL);
893 if (err)
894 return err;
896 return pohmelfs_create_entry(dir, dentry, pi->ino, inode->i_mode);
899 static int pohmelfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
901 struct qstr sym_str;
902 struct qstr str = dentry->d_name;
903 struct inode *inode;
904 int err;
906 str.hash = jhash(dentry->d_name.name, dentry->d_name.len, 0);
908 sym_str.name = symname;
909 sym_str.len = strlen(symname);
911 err = pohmelfs_create_link(POHMELFS_I(dir), &str, NULL, &sym_str);
912 if (err)
913 goto err_out_exit;
915 err = pohmelfs_create_entry(dir, dentry, 0, S_IFLNK | S_IRWXU | S_IRWXG | S_IRWXO);
916 if (err)
917 goto err_out_exit;
919 inode = dentry->d_inode;
921 err = page_symlink(inode, symname, sym_str.len + 1);
922 if (err)
923 goto err_out_put;
925 return 0;
927 err_out_put:
928 iput(inode);
929 err_out_exit:
930 return err;
933 static int pohmelfs_send_rename(struct pohmelfs_inode *pi, struct pohmelfs_inode *parent,
934 struct qstr *str)
936 int path_len, err, total_len = 0, inode_len, parent_len;
937 char *path;
938 struct netfs_trans *t;
939 struct netfs_cmd *cmd;
940 struct pohmelfs_sb *psb = POHMELFS_SB(pi->vfs_inode.i_sb);
942 parent_len = pohmelfs_path_length(parent);
943 inode_len = pohmelfs_path_length(pi);
945 if (parent_len < 0 || inode_len < 0)
946 return -EINVAL;
948 path_len = parent_len + inode_len + str->len + 3;
950 t = netfs_trans_alloc(psb, path_len, 0, 0);
951 if (!t)
952 return -ENOMEM;
954 cmd = netfs_trans_current(t);
955 path = (char *)(cmd + 1);
957 err = pohmelfs_construct_path_string(pi, path, inode_len);
958 if (err < 0)
959 goto err_out_unlock;
961 cmd->ext = err;
963 path += err;
964 total_len += err;
965 path_len -= err;
967 *path = '|';
968 path++;
969 total_len++;
970 path_len--;
972 err = pohmelfs_construct_path_string(parent, path, parent_len);
973 if (err < 0)
974 goto err_out_unlock;
977 * Do not place a null-byte before the final slash and the name.
979 err--;
980 path += err;
981 total_len += err;
982 path_len -= err;
984 err = snprintf(path, path_len - 1, "/%s", str->name);
986 total_len += err + 1; /* 0 symbol */
987 path_len -= err + 1;
989 cmd->cmd = NETFS_RENAME;
990 cmd->id = pi->ino;
991 cmd->start = parent->ino;
992 cmd->size = total_len;
994 netfs_convert_cmd(cmd);
996 netfs_trans_update(cmd, t, total_len);
998 return netfs_trans_finish(t, psb);
1000 err_out_unlock:
1001 netfs_trans_free(t);
1002 return err;
1005 static int pohmelfs_rename(struct inode *old_dir, struct dentry *old_dentry,
1006 struct inode *new_dir, struct dentry *new_dentry)
1008 struct inode *inode = old_dentry->d_inode;
1009 struct pohmelfs_inode *old_parent, *pi, *new_parent;
1010 struct qstr str = new_dentry->d_name;
1011 struct pohmelfs_name *n;
1012 unsigned int old_hash;
1013 int err = -ENOENT;
1015 pi = POHMELFS_I(inode);
1016 old_parent = POHMELFS_I(old_dir);
1018 if (new_dir)
1019 new_dir->i_sb->s_op->write_inode(new_dir, 0);
1021 old_hash = jhash(old_dentry->d_name.name, old_dentry->d_name.len, 0);
1022 str.hash = jhash(new_dentry->d_name.name, new_dentry->d_name.len, 0);
1024 str.len = new_dentry->d_name.len;
1025 str.name = new_dentry->d_name.name;
1026 str.hash = jhash(new_dentry->d_name.name, new_dentry->d_name.len, 0);
1028 if (new_dir) {
1029 new_parent = POHMELFS_I(new_dir);
1030 err = -ENOTEMPTY;
1032 if (S_ISDIR(inode->i_mode) &&
1033 new_parent->total_len <= 3)
1034 goto err_out_exit;
1035 } else {
1036 new_parent = old_parent;
1039 dprintk("%s: ino: %llu, parent: %llu, name: '%s' -> parent: %llu, name: '%s', i_size: %llu.\n",
1040 __func__, pi->ino, old_parent->ino, old_dentry->d_name.name,
1041 new_parent->ino, new_dentry->d_name.name, inode->i_size);
1043 if (test_bit(NETFS_INODE_REMOTE_SYNCED, &pi->state) &&
1044 test_bit(NETFS_INODE_OWNED, &pi->state)) {
1045 err = pohmelfs_send_rename(pi, new_parent, &str);
1046 if (err)
1047 goto err_out_exit;
1050 n = pohmelfs_name_alloc(str.len + 1);
1051 if (!n)
1052 goto err_out_exit;
1054 mutex_lock(&new_parent->offset_lock);
1055 n->ino = pi->ino;
1056 n->mode = inode->i_mode;
1057 n->len = str.len;
1058 n->hash = str.hash;
1059 sprintf(n->data, "%s", str.name);
1061 err = pohmelfs_insert_name(new_parent, n);
1062 mutex_unlock(&new_parent->offset_lock);
1064 if (err)
1065 goto err_out_exit;
1067 mutex_lock(&old_parent->offset_lock);
1068 n = pohmelfs_search_hash(old_parent, old_hash);
1069 if (n)
1070 pohmelfs_name_del(old_parent, n);
1071 mutex_unlock(&old_parent->offset_lock);
1073 mark_inode_dirty(inode);
1074 mark_inode_dirty(&new_parent->vfs_inode);
1076 WARN_ON_ONCE(list_empty(&inode->i_dentry));
1078 return 0;
1080 err_out_exit:
1082 clear_bit(NETFS_INODE_REMOTE_SYNCED, &pi->state);
1084 mutex_unlock(&inode->i_mutex);
1085 return err;
1089 * POHMELFS directory inode operations.
1091 const struct inode_operations pohmelfs_dir_inode_ops = {
1092 .link = pohmelfs_link,
1093 .symlink = pohmelfs_symlink,
1094 .unlink = pohmelfs_unlink,
1095 .mkdir = pohmelfs_mkdir,
1096 .rmdir = pohmelfs_rmdir,
1097 .create = pohmelfs_create,
1098 .lookup = pohmelfs_lookup,
1099 .setattr = pohmelfs_setattr,
1100 .rename = pohmelfs_rename,