]>
Commit | Line | Data |
---|---|---|
5ce34554 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
1da177e4 LT |
2 | /* |
3 | * symlink.c | |
4 | * | |
5 | * PURPOSE | |
6 | * Symlink handling routines for the OSTA-UDF(tm) filesystem. | |
7 | * | |
1da177e4 | 8 | * COPYRIGHT |
1da177e4 | 9 | * (C) 1998-2001 Ben Fennema |
28de7948 | 10 | * (C) 1999 Stelias Computing Inc |
1da177e4 LT |
11 | * |
12 | * HISTORY | |
13 | * | |
14 | * 04/16/99 blf Created. | |
15 | * | |
16 | */ | |
17 | ||
18 | #include "udfdecl.h" | |
e973606c | 19 | #include <linux/uaccess.h> |
1da177e4 LT |
20 | #include <linux/errno.h> |
21 | #include <linux/fs.h> | |
1da177e4 LT |
22 | #include <linux/time.h> |
23 | #include <linux/mm.h> | |
24 | #include <linux/stat.h> | |
1da177e4 | 25 | #include <linux/pagemap.h> |
1da177e4 LT |
26 | #include "udf_i.h" |
27 | ||
0e5cc9a4 JK |
28 | static int udf_pc_to_char(struct super_block *sb, unsigned char *from, |
29 | int fromlen, unsigned char *to, int tolen) | |
1da177e4 LT |
30 | { |
31 | struct pathComponent *pc; | |
32 | int elen = 0; | |
0e5cc9a4 | 33 | int comp_len; |
391e8bbd | 34 | unsigned char *p = to; |
1da177e4 | 35 | |
0e5cc9a4 JK |
36 | /* Reserve one byte for terminating \0 */ |
37 | tolen--; | |
cb00ea35 | 38 | while (elen < fromlen) { |
1da177e4 | 39 | pc = (struct pathComponent *)(from + elen); |
e237ec37 | 40 | elen += sizeof(struct pathComponent); |
cb00ea35 CG |
41 | switch (pc->componentType) { |
42 | case 1: | |
fef2e9f3 JK |
43 | /* |
44 | * Symlink points to some place which should be agreed | |
45 | * upon between originator and receiver of the media. Ignore. | |
46 | */ | |
e237ec37 JK |
47 | if (pc->lengthComponentIdent > 0) { |
48 | elen += pc->lengthComponentIdent; | |
fef2e9f3 | 49 | break; |
e237ec37 | 50 | } |
df561f66 | 51 | fallthrough; |
fef2e9f3 | 52 | case 2: |
0e5cc9a4 JK |
53 | if (tolen == 0) |
54 | return -ENAMETOOLONG; | |
fef2e9f3 JK |
55 | p = to; |
56 | *p++ = '/'; | |
0e5cc9a4 | 57 | tolen--; |
cb00ea35 CG |
58 | break; |
59 | case 3: | |
0e5cc9a4 JK |
60 | if (tolen < 3) |
61 | return -ENAMETOOLONG; | |
cb00ea35 CG |
62 | memcpy(p, "../", 3); |
63 | p += 3; | |
0e5cc9a4 | 64 | tolen -= 3; |
cb00ea35 CG |
65 | break; |
66 | case 4: | |
0e5cc9a4 JK |
67 | if (tolen < 2) |
68 | return -ENAMETOOLONG; | |
cb00ea35 CG |
69 | memcpy(p, "./", 2); |
70 | p += 2; | |
0e5cc9a4 | 71 | tolen -= 2; |
cb00ea35 CG |
72 | /* that would be . - just ignore */ |
73 | break; | |
74 | case 5: | |
e237ec37 JK |
75 | elen += pc->lengthComponentIdent; |
76 | if (elen > fromlen) | |
77 | return -EIO; | |
0e5cc9a4 JK |
78 | comp_len = udf_get_filename(sb, pc->componentIdent, |
79 | pc->lengthComponentIdent, | |
80 | p, tolen); | |
5ceb8b55 FF |
81 | if (comp_len < 0) |
82 | return comp_len; | |
83 | ||
0e5cc9a4 JK |
84 | p += comp_len; |
85 | tolen -= comp_len; | |
86 | if (tolen == 0) | |
87 | return -ENAMETOOLONG; | |
cb00ea35 | 88 | *p++ = '/'; |
0e5cc9a4 | 89 | tolen--; |
cb00ea35 | 90 | break; |
1da177e4 | 91 | } |
1da177e4 | 92 | } |
cb00ea35 | 93 | if (p > to + 1) |
1da177e4 LT |
94 | p[-1] = '\0'; |
95 | else | |
96 | p[0] = '\0'; | |
0e5cc9a4 | 97 | return 0; |
1da177e4 LT |
98 | } |
99 | ||
0c698cc5 | 100 | static int udf_symlink_filler(struct file *file, struct folio *folio) |
1da177e4 | 101 | { |
b591dfb8 | 102 | struct inode *inode = folio->mapping->host; |
1da177e4 | 103 | struct buffer_head *bh = NULL; |
391e8bbd | 104 | unsigned char *symlink; |
15a08f51 | 105 | int err = 0; |
b591dfb8 | 106 | unsigned char *p = folio_address(folio); |
f33321b2 | 107 | struct udf_inode_info *iinfo = UDF_I(inode); |
1da177e4 | 108 | |
a1d47b26 JK |
109 | /* We don't support symlinks longer than one block */ |
110 | if (inode->i_size > inode->i_sb->s_blocksize) { | |
111 | err = -ENAMETOOLONG; | |
b591dfb8 | 112 | goto out; |
a1d47b26 JK |
113 | } |
114 | ||
48d6d8ff | 115 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
382a2287 | 116 | symlink = iinfo->i_data + iinfo->i_lenEAttr; |
28de7948 | 117 | } else { |
15a08f51 | 118 | bh = udf_bread(inode, 0, 0, &err); |
a1d47b26 | 119 | if (!bh) { |
15a08f51 JK |
120 | if (!err) |
121 | err = -EFSCORRUPTED; | |
b591dfb8 | 122 | goto out; |
a1d47b26 | 123 | } |
1da177e4 LT |
124 | symlink = bh->b_data; |
125 | } | |
126 | ||
0e5cc9a4 | 127 | err = udf_pc_to_char(inode->i_sb, symlink, inode->i_size, p, PAGE_SIZE); |
3bf25cb4 | 128 | brelse(bh); |
b591dfb8 MWO |
129 | out: |
130 | folio_end_read(folio, err == 0); | |
1da177e4 LT |
131 | return err; |
132 | } | |
133 | ||
b74d24f7 | 134 | static int udf_symlink_getattr(struct mnt_idmap *idmap, |
549c7297 CB |
135 | const struct path *path, struct kstat *stat, |
136 | u32 request_mask, unsigned int flags) | |
ad4d0532 | 137 | { |
a528d35e | 138 | struct dentry *dentry = path->dentry; |
ad4d0532 | 139 | struct inode *inode = d_backing_inode(dentry); |
2f1c1bd7 | 140 | struct folio *folio; |
ad4d0532 | 141 | |
0d72b928 | 142 | generic_fillattr(&nop_mnt_idmap, request_mask, inode, stat); |
2f1c1bd7 MWO |
143 | folio = read_mapping_folio(inode->i_mapping, 0, NULL); |
144 | if (IS_ERR(folio)) | |
145 | return PTR_ERR(folio); | |
ad4d0532 JK |
146 | /* |
147 | * UDF uses non-trivial encoding of symlinks so i_size does not match | |
148 | * number of characters reported by readlink(2) which apparently some | |
149 | * applications expect. Also POSIX says that "The value returned in the | |
150 | * st_size field shall be the length of the contents of the symbolic | |
151 | * link, and shall not count a trailing null if one is present." So | |
152 | * let's report the length of string returned by readlink(2) for | |
153 | * st_size. | |
154 | */ | |
2f1c1bd7 MWO |
155 | stat->size = strlen(folio_address(folio)); |
156 | folio_put(folio); | |
ad4d0532 JK |
157 | |
158 | return 0; | |
159 | } | |
160 | ||
1da177e4 LT |
161 | /* |
162 | * symlinks can't do much... | |
163 | */ | |
f5e54d6e | 164 | const struct address_space_operations udf_symlink_aops = { |
0c698cc5 | 165 | .read_folio = udf_symlink_filler, |
1da177e4 | 166 | }; |
ad4d0532 JK |
167 | |
168 | const struct inode_operations udf_symlink_inode_operations = { | |
169 | .get_link = page_get_link, | |
170 | .getattr = udf_symlink_getattr, | |
171 | }; |