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" |
Fabian Frederick | e973606 | 2014-06-18 19:38:24 +0200 | [diff] [blame] | 23 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 "udf_i.h" |
| 31 | |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 32 | static int udf_pc_to_char(struct super_block *sb, unsigned char *from, |
| 33 | int fromlen, unsigned char *to, int tolen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | { |
| 35 | struct pathComponent *pc; |
| 36 | int elen = 0; |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 37 | int comp_len; |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 38 | unsigned char *p = to; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 40 | /* Reserve one byte for terminating \0 */ |
| 41 | tolen--; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 42 | while (elen < fromlen) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | pc = (struct pathComponent *)(from + elen); |
Jan Kara | e237ec3 | 2014-12-19 14:27:55 +0100 | [diff] [blame] | 44 | elen += sizeof(struct pathComponent); |
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 | */ |
Jan Kara | e237ec3 | 2014-12-19 14:27:55 +0100 | [diff] [blame] | 51 | if (pc->lengthComponentIdent > 0) { |
| 52 | elen += pc->lengthComponentIdent; |
Jan Kara | fef2e9f | 2011-12-12 15:13:50 +0100 | [diff] [blame] | 53 | break; |
Jan Kara | e237ec3 | 2014-12-19 14:27:55 +0100 | [diff] [blame] | 54 | } |
Jan Kara | fef2e9f | 2011-12-12 15:13:50 +0100 | [diff] [blame] | 55 | /* Fall through */ |
| 56 | case 2: |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 57 | if (tolen == 0) |
| 58 | return -ENAMETOOLONG; |
Jan Kara | fef2e9f | 2011-12-12 15:13:50 +0100 | [diff] [blame] | 59 | p = to; |
| 60 | *p++ = '/'; |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 61 | tolen--; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 62 | break; |
| 63 | case 3: |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 64 | if (tolen < 3) |
| 65 | return -ENAMETOOLONG; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 66 | memcpy(p, "../", 3); |
| 67 | p += 3; |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 68 | tolen -= 3; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 69 | break; |
| 70 | case 4: |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 71 | if (tolen < 2) |
| 72 | return -ENAMETOOLONG; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 73 | memcpy(p, "./", 2); |
| 74 | p += 2; |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 75 | tolen -= 2; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 76 | /* that would be . - just ignore */ |
| 77 | break; |
| 78 | case 5: |
Jan Kara | e237ec3 | 2014-12-19 14:27:55 +0100 | [diff] [blame] | 79 | elen += pc->lengthComponentIdent; |
| 80 | if (elen > fromlen) |
| 81 | return -EIO; |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 82 | comp_len = udf_get_filename(sb, pc->componentIdent, |
| 83 | pc->lengthComponentIdent, |
| 84 | p, tolen); |
Fabian Frederick | 5ceb8b5 | 2015-04-08 21:23:51 +0200 | [diff] [blame] | 85 | if (comp_len < 0) |
| 86 | return comp_len; |
| 87 | |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 88 | p += comp_len; |
| 89 | tolen -= comp_len; |
| 90 | if (tolen == 0) |
| 91 | return -ENAMETOOLONG; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 92 | *p++ = '/'; |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 93 | tolen--; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 94 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 97 | if (p > to + 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | p[-1] = '\0'; |
| 99 | else |
| 100 | p[0] = '\0'; |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 101 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | static int udf_symlink_filler(struct file *file, struct page *page) |
| 105 | { |
| 106 | struct inode *inode = page->mapping->host; |
| 107 | struct buffer_head *bh = NULL; |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 108 | unsigned char *symlink; |
Jan Kara | a1d47b2 | 2014-12-19 12:21:47 +0100 | [diff] [blame] | 109 | int err; |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 110 | unsigned char *p = page_address(page); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 111 | struct udf_inode_info *iinfo; |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 112 | uint32_t pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Jan Kara | a1d47b2 | 2014-12-19 12:21:47 +0100 | [diff] [blame] | 114 | /* We don't support symlinks longer than one block */ |
| 115 | if (inode->i_size > inode->i_sb->s_blocksize) { |
| 116 | err = -ENAMETOOLONG; |
| 117 | goto out_unmap; |
| 118 | } |
| 119 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 120 | iinfo = UDF_I(inode); |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 121 | pos = udf_block_map(inode, 0); |
| 122 | |
| 123 | down_read(&iinfo->i_data_sem); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 124 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
| 125 | symlink = iinfo->i_ext.i_data + iinfo->i_lenEAttr; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 126 | } else { |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 127 | bh = sb_bread(inode->i_sb, pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Jan Kara | a1d47b2 | 2014-12-19 12:21:47 +0100 | [diff] [blame] | 129 | if (!bh) { |
| 130 | err = -EIO; |
| 131 | goto out_unlock_inode; |
| 132 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
| 134 | symlink = bh->b_data; |
| 135 | } |
| 136 | |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 137 | 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] | 138 | brelse(bh); |
Jan Kara | 0e5cc9a | 2014-12-18 22:37:50 +0100 | [diff] [blame] | 139 | if (err) |
| 140 | goto out_unlock_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 142 | up_read(&iinfo->i_data_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | SetPageUptodate(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | unlock_page(page); |
| 145 | return 0; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 146 | |
Jan Kara | a1d47b2 | 2014-12-19 12:21:47 +0100 | [diff] [blame] | 147 | out_unlock_inode: |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 148 | up_read(&iinfo->i_data_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | SetPageError(page); |
Jan Kara | a1d47b2 | 2014-12-19 12:21:47 +0100 | [diff] [blame] | 150 | out_unmap: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | unlock_page(page); |
| 152 | return err; |
| 153 | } |
| 154 | |
| 155 | /* |
| 156 | * symlinks can't do much... |
| 157 | */ |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 158 | const struct address_space_operations udf_symlink_aops = { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 159 | .readpage = udf_symlink_filler, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | }; |