blob: 4870cc82deb014be3e28a5f55704ecedfb3b0c91 [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{
Al Viro21fc61c2015-11-17 01:07:57 -050016 char *link = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 unlock_page(page);
43 return 0;
44fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 SetPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 unlock_page(page);
47 return err;
48}
49
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070050const struct address_space_operations efs_symlink_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 .readpage = efs_symlink_readpage
52};