symlink.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * JFFS2 -- Journalling Flash File System, Version 2.
  3.  *
  4.  * Copyright (C) 2001, 2002 Red Hat, Inc.
  5.  *
  6.  * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
  7.  *
  8.  * The original JFFS, from which the design for JFFS2 was derived,
  9.  * was designed and implemented by Axis Communications AB.
  10.  *
  11.  * The contents of this file are subject to the Red Hat eCos Public
  12.  * License Version 1.1 (the "Licence"); you may not use this file
  13.  * except in compliance with the Licence.  You may obtain a copy of
  14.  * the Licence at http://www.redhat.com/
  15.  *
  16.  * Software distributed under the Licence is distributed on an "AS IS"
  17.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
  18.  * See the Licence for the specific language governing rights and
  19.  * limitations under the Licence.
  20.  *
  21.  * The Original Code is JFFS2 - Journalling Flash File System, version 2
  22.  *
  23.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License version 2 (the "GPL"), in
  25.  * which case the provisions of the GPL are applicable instead of the
  26.  * above.  If you wish to allow the use of your version of this file
  27.  * only under the terms of the GPL and not to allow others to use your
  28.  * version of this file under the RHEPL, indicate your decision by
  29.  * deleting the provisions above and replace them with the notice and
  30.  * other provisions required by the GPL.  If you do not delete the
  31.  * provisions above, a recipient may use your version of this file
  32.  * under either the RHEPL or the GPL.
  33.  *
  34.  * $Id: symlink.c,v 1.5.2.1 2002/01/15 10:39:06 dwmw2 Exp $
  35.  *
  36.  */
  37. #include <linux/kernel.h>
  38. #include <linux/slab.h>
  39. #include <linux/fs.h>
  40. #include <linux/jffs2.h>
  41. #include "nodelist.h"
  42. int jffs2_readlink(struct dentry *dentry, char *buffer, int buflen);
  43. int jffs2_follow_link(struct dentry *dentry, struct nameidata *nd);
  44. struct inode_operations jffs2_symlink_inode_operations =
  45. {
  46. readlink: jffs2_readlink,
  47. follow_link: jffs2_follow_link,
  48. setattr: jffs2_setattr
  49. };
  50. static char *jffs2_getlink(struct dentry *dentry)
  51. {
  52. struct jffs2_inode_info *f = JFFS2_INODE_INFO(dentry->d_inode);
  53. char *buf;
  54. int ret;
  55. down(&f->sem);
  56. if (!f->metadata) {
  57. up(&f->sem);
  58. printk(KERN_NOTICE "No metadata for symlink inode #%lun", dentry->d_inode->i_ino);
  59. return ERR_PTR(-EINVAL);
  60. }
  61. buf = kmalloc(f->metadata->size+1, GFP_USER);
  62. if (!buf) {
  63. up(&f->sem);
  64. return ERR_PTR(-ENOMEM);
  65. }
  66. buf[f->metadata->size]=0;
  67. ret = jffs2_read_dnode(JFFS2_SB_INFO(dentry->d_inode->i_sb), f->metadata, buf, 0, f->metadata->size);
  68. up(&f->sem);
  69. if (ret) {
  70. kfree(buf);
  71. return ERR_PTR(ret);
  72. }
  73. return buf;
  74. }
  75. int jffs2_readlink(struct dentry *dentry, char *buffer, int buflen)
  76. {
  77. unsigned char *kbuf;
  78. int ret;
  79. kbuf = jffs2_getlink(dentry);
  80. if (IS_ERR(kbuf))
  81. return PTR_ERR(kbuf);
  82. ret = vfs_readlink(dentry, buffer, buflen, kbuf);
  83. kfree(kbuf);
  84. return ret;
  85. }
  86. int jffs2_follow_link(struct dentry *dentry, struct nameidata *nd)
  87. {
  88. unsigned char *buf;
  89. int ret;
  90. buf = jffs2_getlink(dentry);
  91. if (IS_ERR(buf))
  92. return PTR_ERR(buf);
  93. ret = vfs_follow_link(nd, buf);
  94. kfree(buf);
  95. return ret;
  96. }