diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /fs/nfs/symlink.c |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'fs/nfs/symlink.c')
-rw-r--r-- | fs/nfs/symlink.c | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/fs/nfs/symlink.c b/fs/nfs/symlink.c new file mode 100644 index 000000000000..35f106599144 --- /dev/null +++ b/fs/nfs/symlink.c | |||
@@ -0,0 +1,117 @@ | |||
1 | /* | ||
2 | * linux/fs/nfs/symlink.c | ||
3 | * | ||
4 | * Copyright (C) 1992 Rick Sladkey | ||
5 | * | ||
6 | * Optimization changes Copyright (C) 1994 Florian La Roche | ||
7 | * | ||
8 | * Jun 7 1999, cache symlink lookups in the page cache. -DaveM | ||
9 | * | ||
10 | * nfs symlink handling code | ||
11 | */ | ||
12 | |||
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> | ||
22 | #include <linux/mm.h> | ||
23 | #include <linux/slab.h> | ||
24 | #include <linux/string.h> | ||
25 | #include <linux/smp_lock.h> | ||
26 | #include <linux/namei.h> | ||
27 | |||
28 | /* Symlink caching in the page cache is even more simplistic | ||
29 | * and straight-forward than readdir caching. | ||
30 | * | ||
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. | ||
35 | */ | ||
36 | |||
37 | struct nfs_symlink { | ||
38 | struct page *page; | ||
39 | char body[0]; | ||
40 | }; | ||
41 | |||
42 | static int nfs_symlink_filler(struct inode *inode, struct page *page) | ||
43 | { | ||
44 | const unsigned int pgbase = offsetof(struct nfs_symlink, body); | ||
45 | const unsigned int pglen = PAGE_SIZE - pgbase; | ||
46 | int error; | ||
47 | |||
48 | lock_kernel(); | ||
49 | error = NFS_PROTO(inode)->readlink(inode, page, pgbase, pglen); | ||
50 | unlock_kernel(); | ||
51 | if (error < 0) | ||
52 | goto error; | ||
53 | SetPageUptodate(page); | ||
54 | unlock_page(page); | ||
55 | return 0; | ||
56 | |||
57 | error: | ||
58 | SetPageError(page); | ||
59 | unlock_page(page); | ||
60 | return -EIO; | ||
61 | } | ||
62 | |||
63 | static int nfs_follow_link(struct dentry *dentry, struct nameidata *nd) | ||
64 | { | ||
65 | struct inode *inode = dentry->d_inode; | ||
66 | struct page *page; | ||
67 | struct nfs_symlink *p; | ||
68 | void *err = ERR_PTR(nfs_revalidate_inode(NFS_SERVER(inode), inode)); | ||
69 | if (err) | ||
70 | goto read_failed; | ||
71 | page = read_cache_page(&inode->i_data, 0, | ||
72 | (filler_t *)nfs_symlink_filler, inode); | ||
73 | if (IS_ERR(page)) { | ||
74 | err = page; | ||
75 | goto read_failed; | ||
76 | } | ||
77 | if (!PageUptodate(page)) { | ||
78 | err = ERR_PTR(-EIO); | ||
79 | goto getlink_read_error; | ||
80 | } | ||
81 | p = kmap(page); | ||
82 | p->page = page; | ||
83 | nd_set_link(nd, p->body); | ||
84 | return 0; | ||
85 | |||
86 | getlink_read_error: | ||
87 | page_cache_release(page); | ||
88 | read_failed: | ||
89 | nd_set_link(nd, err); | ||
90 | return 0; | ||
91 | } | ||
92 | |||
93 | static void nfs_put_link(struct dentry *dentry, struct nameidata *nd) | ||
94 | { | ||
95 | char *s = nd_get_link(nd); | ||
96 | if (!IS_ERR(s)) { | ||
97 | struct nfs_symlink *p; | ||
98 | struct page *page; | ||
99 | |||
100 | p = container_of(s, struct nfs_symlink, body[0]); | ||
101 | page = p->page; | ||
102 | |||
103 | kunmap(page); | ||
104 | page_cache_release(page); | ||
105 | } | ||
106 | } | ||
107 | |||
108 | /* | ||
109 | * symlinks can't do much... | ||
110 | */ | ||
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, | ||
117 | }; | ||