symlink.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /* -*- mode: c; c-basic-offset: 8; -*-
  2. * vim: noexpandtab sw=8 ts=8 sts=0:
  3. *
  4. * linux/cluster/ssi/cfs/symlink.c
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE
  14. * or NON INFRINGEMENT. See the GNU General Public License for more
  15. * details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. *
  21. * Questions/Comments/Bugfixes to ssic-linux-devel@lists.sourceforge.net
  22. *
  23. * Copyright (C) 1992 Rick Sladkey
  24. *
  25. * Optimization changes Copyright (C) 1994 Florian La Roche
  26. *
  27. * Jun 7 1999, cache symlink lookups in the page cache. -DaveM
  28. *
  29. * Portions Copyright (C) 2001 Compaq Computer Corporation
  30. *
  31. * ocfs2 symlink handling code.
  32. *
  33. * Copyright (C) 2004, 2005 Oracle.
  34. *
  35. */
  36. #include <linux/fs.h>
  37. #include <linux/types.h>
  38. #include <linux/slab.h>
  39. #include <linux/pagemap.h>
  40. #include <linux/namei.h>
  41. #include <cluster/masklog.h>
  42. #include "ocfs2.h"
  43. #include "alloc.h"
  44. #include "file.h"
  45. #include "inode.h"
  46. #include "journal.h"
  47. #include "symlink.h"
  48. #include "xattr.h"
  49. #include "buffer_head_io.h"
  50. static char *ocfs2_fast_symlink_getlink(struct inode *inode,
  51. struct buffer_head **bh)
  52. {
  53. int status;
  54. char *link = NULL;
  55. struct ocfs2_dinode *fe;
  56. status = ocfs2_read_inode_block(inode, bh);
  57. if (status < 0) {
  58. mlog_errno(status);
  59. link = ERR_PTR(status);
  60. goto bail;
  61. }
  62. fe = (struct ocfs2_dinode *) (*bh)->b_data;
  63. link = (char *) fe->id2.i_symlink;
  64. bail:
  65. return link;
  66. }
  67. static int ocfs2_readlink(struct dentry *dentry,
  68. char __user *buffer,
  69. int buflen)
  70. {
  71. int ret;
  72. char *link;
  73. struct buffer_head *bh = NULL;
  74. struct inode *inode = dentry->d_inode;
  75. link = ocfs2_fast_symlink_getlink(inode, &bh);
  76. if (IS_ERR(link)) {
  77. ret = PTR_ERR(link);
  78. goto out;
  79. }
  80. /*
  81. * Without vfsmount we can't update atime now,
  82. * but we will update atime here ultimately.
  83. */
  84. ret = vfs_readlink(dentry, buffer, buflen, link);
  85. brelse(bh);
  86. out:
  87. if (ret < 0)
  88. mlog_errno(ret);
  89. return ret;
  90. }
  91. static void *ocfs2_fast_follow_link(struct dentry *dentry,
  92. struct nameidata *nd)
  93. {
  94. int status = 0;
  95. int len;
  96. char *target, *link = ERR_PTR(-ENOMEM);
  97. struct inode *inode = dentry->d_inode;
  98. struct buffer_head *bh = NULL;
  99. BUG_ON(!ocfs2_inode_is_fast_symlink(inode));
  100. target = ocfs2_fast_symlink_getlink(inode, &bh);
  101. if (IS_ERR(target)) {
  102. status = PTR_ERR(target);
  103. mlog_errno(status);
  104. goto bail;
  105. }
  106. /* Fast symlinks can't be large */
  107. len = strnlen(target, ocfs2_fast_symlink_chars(inode->i_sb));
  108. link = kzalloc(len + 1, GFP_NOFS);
  109. if (!link) {
  110. status = -ENOMEM;
  111. mlog_errno(status);
  112. goto bail;
  113. }
  114. memcpy(link, target, len);
  115. bail:
  116. nd_set_link(nd, status ? ERR_PTR(status) : link);
  117. brelse(bh);
  118. if (status)
  119. mlog_errno(status);
  120. return NULL;
  121. }
  122. static void ocfs2_fast_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
  123. {
  124. char *link = nd_get_link(nd);
  125. if (!IS_ERR(link))
  126. kfree(link);
  127. }
  128. const struct inode_operations ocfs2_symlink_inode_operations = {
  129. .readlink = page_readlink,
  130. .follow_link = page_follow_link_light,
  131. .put_link = page_put_link,
  132. .getattr = ocfs2_getattr,
  133. .setattr = ocfs2_setattr,
  134. .setxattr = generic_setxattr,
  135. .getxattr = generic_getxattr,
  136. .listxattr = ocfs2_listxattr,
  137. .removexattr = generic_removexattr,
  138. .fiemap = ocfs2_fiemap,
  139. };
  140. const struct inode_operations ocfs2_fast_symlink_inode_operations = {
  141. .readlink = ocfs2_readlink,
  142. .follow_link = ocfs2_fast_follow_link,
  143. .put_link = ocfs2_fast_put_link,
  144. .getattr = ocfs2_getattr,
  145. .setattr = ocfs2_setattr,
  146. .setxattr = generic_setxattr,
  147. .getxattr = generic_getxattr,
  148. .listxattr = ocfs2_listxattr,
  149. .removexattr = generic_removexattr,
  150. .fiemap = ocfs2_fiemap,
  151. };