2 * linux/fs/nfs/symlink.c
4 * Copyright (C) 1992 Rick Sladkey
6 * Optimization changes Copyright (C) 1994 Florian La Roche
8 * Jun 7 1999, cache symlink lookups in the page cache. -DaveM
10 * nfs symlink handling code
13 #define NFS_NEED_XDR_TYPES
14 #include <linux/time.h>
15 #include <linux/errno.h>
16 #include <linux/sunrpc/clnt.h>
17 #include <linux/nfs.h>
18 #include <linux/nfs2.h>
19 #include <linux/nfs_fs.h>
20 #include <linux/pagemap.h>
21 #include <linux/stat.h>
23 #include <linux/slab.h>
24 #include <linux/string.h>
25 #include <linux/smp_lock.h>
26 #include <linux/namei.h>
28 /* Symlink caching in the page cache is even more simplistic
29 * and straight-forward than readdir caching.
31 * At the beginning of the page we store pointer to struct page in question,
32 * simplifying nfs_put_link() (if inode got invalidated we can't find the page
33 * to be freed via pagecache lookup).
34 * The NUL-terminated string follows immediately thereafter.
42 static int nfs_symlink_filler(struct inode
*inode
, struct page
*page
)
44 const unsigned int pgbase
= offsetof(struct nfs_symlink
, body
);
45 const unsigned int pglen
= PAGE_SIZE
- pgbase
;
49 error
= NFS_PROTO(inode
)->readlink(inode
, page
, pgbase
, pglen
);
53 SetPageUptodate(page
);
63 static int nfs_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
65 struct inode
*inode
= dentry
->d_inode
;
67 struct nfs_symlink
*p
;
68 void *err
= ERR_PTR(nfs_revalidate_inode(NFS_SERVER(inode
), inode
));
71 page
= read_cache_page(&inode
->i_data
, 0,
72 (filler_t
*)nfs_symlink_filler
, inode
);
77 if (!PageUptodate(page
)) {
79 goto getlink_read_error
;
83 nd_set_link(nd
, p
->body
);
87 page_cache_release(page
);
93 static void nfs_put_link(struct dentry
*dentry
, struct nameidata
*nd
)
95 char *s
= nd_get_link(nd
);
97 struct nfs_symlink
*p
;
100 p
= container_of(s
, struct nfs_symlink
, body
[0]);
104 page_cache_release(page
);
109 * symlinks can't do much...
111 struct inode_operations nfs_symlink_inode_operations
= {
112 .readlink
= generic_readlink
,
113 .follow_link
= nfs_follow_link
,
114 .put_link
= nfs_put_link
,
115 .getattr
= nfs_getattr
,
116 .setattr
= nfs_setattr
,