Blame view

fs/ocfs2/symlink.c 2.67 KB
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
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
  /* -*- mode: c; c-basic-offset: 8; -*-
   * vim: noexpandtab sw=8 ts=8 sts=0:
   *
   *  linux/cluster/ssi/cfs/symlink.c
   *
   *	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, GOOD TITLE
   *	or NON INFRINGEMENT.  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; if not, write to the Free Software
   * 	Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   *
   *	Questions/Comments/Bugfixes to ssic-linux-devel@lists.sourceforge.net
   *
   *  Copyright (C) 1992  Rick Sladkey
   *
   *  Optimization changes Copyright (C) 1994 Florian La Roche
   *
   *  Jun 7 1999, cache symlink lookups in the page cache.  -DaveM
   *
   *  Portions Copyright (C) 2001 Compaq Computer Corporation
   *
   *  ocfs2 symlink handling code.
   *
   *  Copyright (C) 2004, 2005 Oracle.
   *
   */
  
  #include <linux/fs.h>
  #include <linux/types.h>
  #include <linux/slab.h>
  #include <linux/pagemap.h>
a731d12d6   Joel Becker   ocfs2: Use nd_set...
41
  #include <linux/namei.h>
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
42

ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
43
44
45
46
47
48
49
50
51
  #include <cluster/masklog.h>
  
  #include "ocfs2.h"
  
  #include "alloc.h"
  #include "file.h"
  #include "inode.h"
  #include "journal.h"
  #include "symlink.h"
cf1d6c763   Tiger Yang   ocfs2: Add extend...
52
  #include "xattr.h"
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
53
54
  
  #include "buffer_head_io.h"
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
55

ea022dfb3   Al Viro   ocfs: simplify sy...
56
  static int ocfs2_fast_symlink_readpage(struct file *unused, struct page *page)
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
57
  {
ea022dfb3   Al Viro   ocfs: simplify sy...
58
  	struct inode *inode = page->mapping->host;
30b9c9e6b   Sunil Mushran   ocfs2: Fix oops i...
59
  	struct buffer_head *bh = NULL;
ea022dfb3   Al Viro   ocfs: simplify sy...
60
  	int status = ocfs2_read_inode_block(inode, &bh);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
61
  	struct ocfs2_dinode *fe;
ea022dfb3   Al Viro   ocfs: simplify sy...
62
63
64
  	const char *link;
  	void *kaddr;
  	size_t len;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
65

ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
66
67
  	if (status < 0) {
  		mlog_errno(status);
ea022dfb3   Al Viro   ocfs: simplify sy...
68
  		return status;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
69
  	}
ea022dfb3   Al Viro   ocfs: simplify sy...
70
  	fe = (struct ocfs2_dinode *) bh->b_data;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
71
  	link = (char *) fe->id2.i_symlink;
ea022dfb3   Al Viro   ocfs: simplify sy...
72
73
74
75
76
77
78
  	/* will be less than a page size */
  	len = strnlen(link, ocfs2_fast_symlink_chars(inode->i_sb));
  	kaddr = kmap_atomic(page);
  	memcpy(kaddr, link, len + 1);
  	kunmap_atomic(kaddr);
  	SetPageUptodate(page);
  	unlock_page(page);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
79
  	brelse(bh);
ea022dfb3   Al Viro   ocfs: simplify sy...
80
  	return 0;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
81
  }
ea022dfb3   Al Viro   ocfs: simplify sy...
82
83
84
  const struct address_space_operations ocfs2_fast_symlink_aops = {
  	.readpage		= ocfs2_fast_symlink_readpage,
  };
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
85

92e1d5be9   Arjan van de Ven   [PATCH] mark stru...
86
  const struct inode_operations ocfs2_symlink_inode_operations = {
ea022dfb3   Al Viro   ocfs: simplify sy...
87
  	.readlink	= generic_readlink,
a731d12d6   Joel Becker   ocfs2: Use nd_set...
88
89
  	.follow_link	= page_follow_link_light,
  	.put_link	= page_put_link,
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
90
  	.getattr	= ocfs2_getattr,
bc535809c   Sunil Mushran   ocfs2: Allow uid/...
91
  	.setattr	= ocfs2_setattr,
cf1d6c763   Tiger Yang   ocfs2: Add extend...
92
93
94
95
  	.setxattr	= generic_setxattr,
  	.getxattr	= generic_getxattr,
  	.listxattr	= ocfs2_listxattr,
  	.removexattr	= generic_removexattr,
86239d59e   Tristan Ye   Ocfs2: Let ocfs2 ...
96
  	.fiemap		= ocfs2_fiemap,
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
97
  };