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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * symlink.c
  3.  *
  4.  * Copyright (c) 1999 Al Smith
  5.  *
  6.  * Portions derived from work (c) 1995,1996 Christian Vogelgsang.
  7.  */
  8. #include <linux/string.h>
  9. #include <linux/efs_fs.h>
  10. #include <linux/pagemap.h>
  11. #include <linux/smp_lock.h>
  12. static int efs_symlink_readpage(struct file *file, struct page *page)
  13. {
  14. char *link = kmap(page);
  15. struct buffer_head * bh;
  16. struct inode * inode = page->mapping->host;
  17. efs_block_t size = inode->i_size;
  18. int err;
  19.   
  20. err = -ENAMETOOLONG;
  21. if (size > 2 * EFS_BLOCKSIZE)
  22. goto fail;
  23.   
  24. lock_kernel();
  25. /* read first 512 bytes of link target */
  26. err = -EIO;
  27. bh = sb_bread(inode->i_sb, efs_bmap(inode, 0));
  28. if (!bh)
  29. goto fail;
  30. memcpy(link, bh->b_data, (size > EFS_BLOCKSIZE) ? EFS_BLOCKSIZE : size);
  31. brelse(bh);
  32. if (size > EFS_BLOCKSIZE) {
  33. bh = sb_bread(inode->i_sb, efs_bmap(inode, 1));
  34. if (!bh)
  35. goto fail;
  36. memcpy(link + EFS_BLOCKSIZE, bh->b_data, size - EFS_BLOCKSIZE);
  37. brelse(bh);
  38. }
  39. link[size] = '';
  40. unlock_kernel();
  41. SetPageUptodate(page);
  42. kunmap(page);
  43. UnlockPage(page);
  44. return 0;
  45. fail:
  46. unlock_kernel();
  47. SetPageError(page);
  48. kunmap(page);
  49. UnlockPage(page);
  50. return err;
  51. }
  52. struct address_space_operations efs_symlink_aops = {
  53. readpage: efs_symlink_readpage
  54. };