blob: 75117d0dac2b174f5b231234b1543cecd95bdbfa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * symlink.c
3 *
4 * Copyright (c) 1999 Al Smith
5 *
6 * Portions derived from work (c) 1995,1996 Christian Vogelgsang.
7 */
8
9#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/pagemap.h>
11#include <linux/buffer_head.h>
Christoph Hellwig45254b42008-02-23 15:23:51 -080012#include "efs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14static int efs_symlink_readpage(struct file *file, struct page *page)
15{
16 char *link = kmap(page);
17 struct buffer_head * bh;
18 struct inode * inode = page->mapping->host;
19 efs_block_t size = inode->i_size;
20 int err;
21
22 err = -ENAMETOOLONG;
23 if (size > 2 * EFS_BLOCKSIZE)
Al Viroe7ec9522009-06-16 23:35:46 -040024 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 /* read first 512 bytes of link target */
27 err = -EIO;
28 bh = sb_bread(inode->i_sb, efs_bmap(inode, 0));
29 if (!bh)
30 goto fail;
31 memcpy(link, bh->b_data, (size > EFS_BLOCKSIZE) ? EFS_BLOCKSIZE : size);
32 brelse(bh);
33 if (size > EFS_BLOCKSIZE) {
34 bh = sb_bread(inode->i_sb, efs_bmap(inode, 1));
35 if (!bh)
36 goto fail;
37 memcpy(link + EFS_BLOCKSIZE, bh->b_data, size - EFS_BLOCKSIZE);
38 brelse(bh);
39 }
40 link[size] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 SetPageUptodate(page);
42 kunmap(page);
43 unlock_page(page);
44 return 0;
45fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 SetPageError(page);
47 kunmap(page);
48 unlock_page(page);
49 return err;
50}
51
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070052const struct address_space_operations efs_symlink_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 .readpage = efs_symlink_readpage
54};