Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * symlink.c |
| 3 | * |
| 4 | * PURPOSE |
| 5 | * Symlink handling routines for the OSTA-UDF(tm) filesystem. |
| 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * COPYRIGHT |
| 8 | * This file is distributed under the terms of the GNU General Public |
| 9 | * License (GPL). Copies of the GPL can be obtained from: |
| 10 | * ftp://prep.ai.mit.edu/pub/gnu/GPL |
| 11 | * Each contributing author retains all rights to their own work. |
| 12 | * |
| 13 | * (C) 1998-2001 Ben Fennema |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 14 | * (C) 1999 Stelias Computing Inc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | * |
| 16 | * HISTORY |
| 17 | * |
| 18 | * 04/16/99 blf Created. |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | #include "udfdecl.h" |
| 23 | #include <asm/uaccess.h> |
| 24 | #include <linux/errno.h> |
| 25 | #include <linux/fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/time.h> |
| 27 | #include <linux/mm.h> |
| 28 | #include <linux/stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/pagemap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/buffer_head.h> |
| 31 | #include "udf_i.h" |
| 32 | |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 33 | static int udf_pc_to_char(struct super_block *sb, unsigned char *from, |
| 34 | int fromlen, unsigned char *to, int tolen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
| 36 | struct pathComponent *pc; |
| 37 | int elen = 0; |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 38 | int comp_len; |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 39 | unsigned char *p = to; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 41 | /* Reserve one byte for terminating \0 */ |
| 42 | tolen--; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 43 | while (elen < fromlen) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | pc = (struct pathComponent *)(from + elen); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 45 | switch (pc->componentType) { |
| 46 | case 1: |
Jan Kara | fef2e9f | 2011-12-12 15:13:50 +0100 | [diff] [blame] | 47 | /* |
| 48 | * Symlink points to some place which should be agreed |
| 49 | * upon between originator and receiver of the media. Ignore. |
| 50 | */ |
| 51 | if (pc->lengthComponentIdent > 0) |
| 52 | break; |
| 53 | /* Fall through */ |
| 54 | case 2: |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 55 | if (tolen == 0) |
| 56 | return -ENAMETOOLONG; |
Jan Kara | fef2e9f | 2011-12-12 15:13:50 +0100 | [diff] [blame] | 57 | p = to; |
| 58 | *p++ = '/'; |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 59 | tolen--; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 60 | break; |
| 61 | case 3: |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 62 | if (tolen < 3) |
| 63 | return -ENAMETOOLONG; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 64 | memcpy(p, "../", 3); |
| 65 | p += 3; |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 66 | tolen -= 3; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 67 | break; |
| 68 | case 4: |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 69 | if (tolen < 2) |
| 70 | return -ENAMETOOLONG; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 71 | memcpy(p, "./", 2); |
| 72 | p += 2; |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 73 | tolen -= 2; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 74 | /* that would be . - just ignore */ |
| 75 | break; |
| 76 | case 5: |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 77 | comp_len = udf_get_filename(sb, pc->componentIdent, |
| 78 | pc->lengthComponentIdent, |
| 79 | p, tolen); |
| 80 | p += comp_len; |
| 81 | tolen -= comp_len; |
| 82 | if (tolen == 0) |
| 83 | return -ENAMETOOLONG; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 84 | *p++ = '/'; |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 85 | tolen--; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 86 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | } |
| 88 | elen += sizeof(struct pathComponent) + pc->lengthComponentIdent; |
| 89 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 90 | if (p > to + 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | p[-1] = '\0'; |
| 92 | else |
| 93 | p[0] = '\0'; |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 94 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | static int udf_symlink_filler(struct file *file, struct page *page) |
| 98 | { |
| 99 | struct inode *inode = page->mapping->host; |
| 100 | struct buffer_head *bh = NULL; |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 101 | unsigned char *symlink; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | int err = -EIO; |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 103 | unsigned char *p = kmap(page); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 104 | struct udf_inode_info *iinfo; |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 105 | uint32_t pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 107 | iinfo = UDF_I(inode); |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 108 | pos = udf_block_map(inode, 0); |
| 109 | |
| 110 | down_read(&iinfo->i_data_sem); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 111 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
| 112 | symlink = iinfo->i_ext.i_data + iinfo->i_lenEAttr; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 113 | } else { |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 114 | bh = sb_bread(inode->i_sb, pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
| 116 | if (!bh) |
| 117 | goto out; |
| 118 | |
| 119 | symlink = bh->b_data; |
| 120 | } |
| 121 | |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 122 | err = udf_pc_to_char(inode->i_sb, symlink, inode->i_size, p, PAGE_SIZE); |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 123 | brelse(bh); |
Jan Kara | adadc8e | 2014-12-18 22:37:00 +0100 | [diff] [blame] | 124 | if (err) |
| 125 | goto out_unlock_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 127 | up_read(&iinfo->i_data_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | SetPageUptodate(page); |
| 129 | kunmap(page); |
| 130 | unlock_page(page); |
| 131 | return 0; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 132 | |
| 133 | out: |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 134 | up_read(&iinfo->i_data_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | SetPageError(page); |
| 136 | kunmap(page); |
| 137 | unlock_page(page); |
| 138 | return err; |
| 139 | } |
| 140 | |
| 141 | /* |
| 142 | * symlinks can't do much... |
| 143 | */ |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 144 | const struct address_space_operations udf_symlink_aops = { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 145 | .readpage = udf_symlink_filler, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | }; |