blob: 923eb91654d5c9c3e6d19fab643f2130fd536c5f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * symlink.c
4 *
5 * Copyright (c) 1999 Al Smith
6 *
7 * Portions derived from work (c) 1995,1996 Christian Vogelgsang.
8 */
9
10#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/pagemap.h>
12#include <linux/buffer_head.h>
Christoph Hellwig45254b42008-02-23 15:23:51 -080013#include "efs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15static int efs_symlink_readpage(struct file *file, struct page *page)
16{
Al Viro21fc61c2015-11-17 01:07:57 -050017 char *link = page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 struct buffer_head * bh;
19 struct inode * inode = page->mapping->host;
20 efs_block_t size = inode->i_size;
21 int err;
22
23 err = -ENAMETOOLONG;
24 if (size > 2 * EFS_BLOCKSIZE)
Al Viroe7ec9522009-06-16 23:35:46 -040025 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 /* read first 512 bytes of link target */
28 err = -EIO;
29 bh = sb_bread(inode->i_sb, efs_bmap(inode, 0));
30 if (!bh)
31 goto fail;
32 memcpy(link, bh->b_data, (size > EFS_BLOCKSIZE) ? EFS_BLOCKSIZE : size);
33 brelse(bh);
34 if (size > EFS_BLOCKSIZE) {
35 bh = sb_bread(inode->i_sb, efs_bmap(inode, 1));
36 if (!bh)
37 goto fail;
38 memcpy(link + EFS_BLOCKSIZE, bh->b_data, size - EFS_BLOCKSIZE);
39 brelse(bh);
40 }
41 link[size] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 unlock_page(page);
44 return 0;
45fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 SetPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 unlock_page(page);
48 return err;
49}
50
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070051const struct address_space_operations efs_symlink_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 .readpage = efs_symlink_readpage
53};