symlink.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/ncpfs/symlink.c
  3.  *
  4.  *  Code for allowing symbolic links on NCPFS (i.e. NetWare)
  5.  *  Symbolic links are not supported on native NetWare, so we use an
  6.  *  infrequently-used flag (Sh) and store a two-word magic header in
  7.  *  the file to make sure we don't accidentally use a non-link file
  8.  *  as a link.
  9.  *
  10.  *  from linux/fs/ext2/symlink.c
  11.  *
  12.  *  Copyright (C) 1998-99, Frank A. Vorstenbosch
  13.  *
  14.  *  ncpfs symlink handling code
  15.  *  NLS support (c) 1999 Petr Vandrovec
  16.  *
  17.  */
  18. #include <linux/config.h>
  19. #ifdef CONFIG_NCPFS_EXTRAS
  20. #include <asm/uaccess.h>
  21. #include <asm/segment.h>
  22. #include <linux/errno.h>
  23. #include <linux/fs.h>
  24. #include <linux/ncp_fs.h>
  25. #include <linux/sched.h>
  26. #include <linux/mm.h>
  27. #include <linux/stat.h>
  28. #include "ncplib_kernel.h"
  29. /* these magic numbers must appear in the symlink file -- this makes it a bit
  30.    more resilient against the magic attributes being set on random files. */
  31. #define NCP_SYMLINK_MAGIC0 le32_to_cpu(0x6c6d7973)     /* "symlnk->" */
  32. #define NCP_SYMLINK_MAGIC1 le32_to_cpu(0x3e2d6b6e)
  33. int ncp_create_new(struct inode *dir, struct dentry *dentry,
  34.                           int mode,int attributes);
  35. /* ----- read a symbolic link ------------------------------------------ */
  36. static int ncp_symlink_readpage(struct file *file, struct page *page)
  37. {
  38. struct inode *inode = page->mapping->host;
  39. int error, length, len, cnt;
  40. char *link;
  41. char *buf = kmap(page);
  42. error = -ENOMEM;
  43. for (cnt = 0; (link=(char *)kmalloc(NCP_MAX_SYMLINK_SIZE, GFP_NFS))==NULL; cnt++) {
  44. if (cnt > 10)
  45. goto fail;
  46. schedule();
  47. }
  48. if (ncp_make_open(inode,O_RDONLY))
  49. goto failEIO;
  50. error=ncp_read_kernel(NCP_SERVER(inode),NCP_FINFO(inode)->file_handle,
  51.                          0,NCP_MAX_SYMLINK_SIZE,link,&length);
  52. ncp_inode_close(inode);
  53. /* Close file handle if no other users... */
  54. ncp_make_closed(inode);
  55. if (error)
  56. goto failEIO;
  57. if (length<NCP_MIN_SYMLINK_SIZE || 
  58.     ((__u32 *)link)[0]!=NCP_SYMLINK_MAGIC0 ||
  59.     ((__u32 *)link)[1]!=NCP_SYMLINK_MAGIC1)
  60.      goto failEIO;
  61. len = NCP_MAX_SYMLINK_SIZE;
  62. error = ncp_vol2io(NCP_SERVER(inode), buf, &len, link+8, length-8, 0);
  63. kfree(link);
  64. if (error)
  65. goto fail;
  66. SetPageUptodate(page);
  67. kunmap(page);
  68. UnlockPage(page);
  69. return 0;
  70. failEIO:
  71. error = -EIO;
  72. kfree(link);
  73. fail:
  74. SetPageError(page);
  75. kunmap(page);
  76. UnlockPage(page);
  77. return error;
  78. }
  79. /*
  80.  * symlinks can't do much...
  81.  */
  82. struct address_space_operations ncp_symlink_aops = {
  83. readpage: ncp_symlink_readpage,
  84. };
  85. /* ----- create a new symbolic link -------------------------------------- */
  86.  
  87. int ncp_symlink(struct inode *dir, struct dentry *dentry, const char *symname) {
  88. struct inode *inode;
  89. char *link;
  90. int length, err, i;
  91. #ifdef DEBUG
  92. PRINTK("ncp_symlink(dir=%p,dentry=%p,symname=%s)n",dir,dentry,symname);
  93. #endif
  94. if (!(NCP_SERVER(dir)->m.flags & NCP_MOUNT_SYMLINKS))
  95. return -EPERM; /* EPERM is returned by VFS if symlink procedure does not exist */
  96. if ((length=strlen(symname))>NCP_MAX_SYMLINK_SIZE-8)
  97. return -EINVAL;
  98. if ((link=(char *)kmalloc(length+9,GFP_NFS))==NULL)
  99. return -ENOMEM;
  100. err = -EIO;
  101. if (ncp_create_new(dir,dentry,0,aSHARED|aHIDDEN))
  102. goto failfree;
  103. inode=dentry->d_inode;
  104. if (ncp_make_open(inode, O_WRONLY))
  105. goto failfree;
  106. ((__u32 *)link)[0]=NCP_SYMLINK_MAGIC0;
  107. ((__u32 *)link)[1]=NCP_SYMLINK_MAGIC1;
  108. /* map to/from server charset, do not touch upper/lower case as
  109.    symlink can point out of ncp filesystem */
  110. length += 1;
  111. err = ncp_io2vol(NCP_SERVER(inode),link+8,&length,symname,length-1,0);
  112. if (err)
  113. goto fail;
  114. if(ncp_write_kernel(NCP_SERVER(inode), NCP_FINFO(inode)->file_handle, 
  115.          0, length+8, link, &i) || i!=length+8) {
  116. err = -EIO;
  117. goto fail;
  118. }
  119. ncp_inode_close(inode);
  120. ncp_make_closed(inode);
  121. kfree(link);
  122. return 0;
  123. fail:
  124. ncp_inode_close(inode);
  125. ncp_make_closed(inode);
  126. failfree:
  127. kfree(link);
  128. return err;
  129. }
  130. #endif
  131. /* ----- EOF ----- */