blob: 84357f1ff0ec8915b4839d45f01fc33566c99a70 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ufs/util.c
3 *
4 * Copyright (C) 1998
5 * Daniel Pirkl <daniel.pirkl@email.cz>
6 * Charles University, Faculty of Mathematics and Physics
7 */
8
9#include <linux/string.h>
10#include <linux/slab.h>
11#include <linux/ufs_fs.h>
12#include <linux/buffer_head.h>
13
14#include "swab.h"
15#include "util.h"
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017struct ufs_buffer_head * _ubh_bread_ (struct ufs_sb_private_info * uspi,
18 struct super_block *sb, u64 fragment, u64 size)
19{
20 struct ufs_buffer_head * ubh;
21 unsigned i, j ;
22 u64 count = 0;
23 if (size & ~uspi->s_fmask)
24 return NULL;
25 count = size >> uspi->s_fshift;
26 if (count > UFS_MAXFRAG)
27 return NULL;
28 ubh = (struct ufs_buffer_head *)
29 kmalloc (sizeof (struct ufs_buffer_head), GFP_KERNEL);
30 if (!ubh)
31 return NULL;
32 ubh->fragment = fragment;
33 ubh->count = count;
34 for (i = 0; i < count; i++)
35 if (!(ubh->bh[i] = sb_bread(sb, fragment + i)))
36 goto failed;
37 for (; i < UFS_MAXFRAG; i++)
38 ubh->bh[i] = NULL;
39 return ubh;
40failed:
41 for (j = 0; j < i; j++)
42 brelse (ubh->bh[j]);
43 kfree(ubh);
44 return NULL;
45}
46
47struct ufs_buffer_head * ubh_bread_uspi (struct ufs_sb_private_info * uspi,
48 struct super_block *sb, u64 fragment, u64 size)
49{
50 unsigned i, j;
51 u64 count = 0;
52 if (size & ~uspi->s_fmask)
53 return NULL;
54 count = size >> uspi->s_fshift;
55 if (count <= 0 || count > UFS_MAXFRAG)
56 return NULL;
Evgeniy Dushistov9695ef12006-06-25 05:47:22 -070057 USPI_UBH(uspi)->fragment = fragment;
58 USPI_UBH(uspi)->count = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 for (i = 0; i < count; i++)
Evgeniy Dushistov9695ef12006-06-25 05:47:22 -070060 if (!(USPI_UBH(uspi)->bh[i] = sb_bread(sb, fragment + i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 goto failed;
62 for (; i < UFS_MAXFRAG; i++)
Evgeniy Dushistov9695ef12006-06-25 05:47:22 -070063 USPI_UBH(uspi)->bh[i] = NULL;
64 return USPI_UBH(uspi);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065failed:
66 for (j = 0; j < i; j++)
Evgeniy Dushistov9695ef12006-06-25 05:47:22 -070067 brelse (USPI_UBH(uspi)->bh[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return NULL;
69}
70
71void ubh_brelse (struct ufs_buffer_head * ubh)
72{
73 unsigned i;
74 if (!ubh)
75 return;
76 for (i = 0; i < ubh->count; i++)
77 brelse (ubh->bh[i]);
78 kfree (ubh);
79}
80
81void ubh_brelse_uspi (struct ufs_sb_private_info * uspi)
82{
83 unsigned i;
Evgeniy Dushistov9695ef12006-06-25 05:47:22 -070084 if (!USPI_UBH(uspi))
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return;
Evgeniy Dushistov9695ef12006-06-25 05:47:22 -070086 for ( i = 0; i < USPI_UBH(uspi)->count; i++ ) {
87 brelse (USPI_UBH(uspi)->bh[i]);
88 USPI_UBH(uspi)->bh[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 }
90}
91
92void ubh_mark_buffer_dirty (struct ufs_buffer_head * ubh)
93{
94 unsigned i;
95 if (!ubh)
96 return;
97 for ( i = 0; i < ubh->count; i++ )
98 mark_buffer_dirty (ubh->bh[i]);
99}
100
101void ubh_mark_buffer_uptodate (struct ufs_buffer_head * ubh, int flag)
102{
103 unsigned i;
104 if (!ubh)
105 return;
106 if (flag) {
107 for ( i = 0; i < ubh->count; i++ )
108 set_buffer_uptodate (ubh->bh[i]);
109 } else {
110 for ( i = 0; i < ubh->count; i++ )
111 clear_buffer_uptodate (ubh->bh[i]);
112 }
113}
114
Evgeniy Dushistov098d5af2006-06-25 05:47:31 -0700115void ubh_ll_rw_block(int rw, struct ufs_buffer_head *ubh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 if (!ubh)
118 return;
Evgeniy Dushistov098d5af2006-06-25 05:47:31 -0700119
120 ll_rw_block(rw, ubh->count, ubh->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123void ubh_wait_on_buffer (struct ufs_buffer_head * ubh)
124{
125 unsigned i;
126 if (!ubh)
127 return;
128 for ( i = 0; i < ubh->count; i++ )
129 wait_on_buffer (ubh->bh[i]);
130}
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132void ubh_bforget (struct ufs_buffer_head * ubh)
133{
134 unsigned i;
135 if (!ubh)
136 return;
137 for ( i = 0; i < ubh->count; i++ ) if ( ubh->bh[i] )
138 bforget (ubh->bh[i]);
139}
140
141int ubh_buffer_dirty (struct ufs_buffer_head * ubh)
142{
143 unsigned i;
144 unsigned result = 0;
145 if (!ubh)
146 return 0;
147 for ( i = 0; i < ubh->count; i++ )
148 result |= buffer_dirty(ubh->bh[i]);
149 return result;
150}
151
152void _ubh_ubhcpymem_(struct ufs_sb_private_info * uspi,
153 unsigned char * mem, struct ufs_buffer_head * ubh, unsigned size)
154{
155 unsigned len, bhno;
156 if (size > (ubh->count << uspi->s_fshift))
157 size = ubh->count << uspi->s_fshift;
158 bhno = 0;
159 while (size) {
160 len = min_t(unsigned int, size, uspi->s_fsize);
161 memcpy (mem, ubh->bh[bhno]->b_data, len);
162 mem += uspi->s_fsize;
163 size -= len;
164 bhno++;
165 }
166}
167
168void _ubh_memcpyubh_(struct ufs_sb_private_info * uspi,
169 struct ufs_buffer_head * ubh, unsigned char * mem, unsigned size)
170{
171 unsigned len, bhno;
172 if (size > (ubh->count << uspi->s_fshift))
173 size = ubh->count << uspi->s_fshift;
174 bhno = 0;
175 while (size) {
176 len = min_t(unsigned int, size, uspi->s_fsize);
177 memcpy (ubh->bh[bhno]->b_data, mem, len);
178 mem += uspi->s_fsize;
179 size -= len;
180 bhno++;
181 }
182}
183
184dev_t
185ufs_get_inode_dev(struct super_block *sb, struct ufs_inode_info *ufsi)
186{
Al Viro44aa5352006-08-13 01:54:30 -0400187 __u32 fs32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 dev_t dev;
189
190 if ((UFS_SB(sb)->s_flags & UFS_ST_MASK) == UFS_ST_SUNx86)
Al Viro44aa5352006-08-13 01:54:30 -0400191 fs32 = fs32_to_cpu(sb, ufsi->i_u1.i_data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 else
Al Viro44aa5352006-08-13 01:54:30 -0400193 fs32 = fs32_to_cpu(sb, ufsi->i_u1.i_data[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 switch (UFS_SB(sb)->s_flags & UFS_ST_MASK) {
195 case UFS_ST_SUNx86:
196 case UFS_ST_SUN:
197 if ((fs32 & 0xffff0000) == 0 ||
198 (fs32 & 0xffff0000) == 0xffff0000)
199 dev = old_decode_dev(fs32 & 0x7fff);
200 else
201 dev = MKDEV(sysv_major(fs32), sysv_minor(fs32));
202 break;
203
204 default:
205 dev = old_decode_dev(fs32);
206 break;
207 }
208 return dev;
209}
210
211void
212ufs_set_inode_dev(struct super_block *sb, struct ufs_inode_info *ufsi, dev_t dev)
213{
Al Viro44aa5352006-08-13 01:54:30 -0400214 __u32 fs32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 switch (UFS_SB(sb)->s_flags & UFS_ST_MASK) {
217 case UFS_ST_SUNx86:
218 case UFS_ST_SUN:
219 fs32 = sysv_encode_dev(dev);
220 if ((fs32 & 0xffff8000) == 0) {
221 fs32 = old_encode_dev(dev);
222 }
223 break;
224
225 default:
226 fs32 = old_encode_dev(dev);
227 break;
228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if ((UFS_SB(sb)->s_flags & UFS_ST_MASK) == UFS_ST_SUNx86)
Al Viro44aa5352006-08-13 01:54:30 -0400230 ufsi->i_u1.i_data[1] = cpu_to_fs32(sb, fs32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 else
Al Viro44aa5352006-08-13 01:54:30 -0400232 ufsi->i_u1.i_data[0] = cpu_to_fs32(sb, fs32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700234
235/**
236 * ufs_get_locked_page() - locate, pin and lock a pagecache page, if not exist
237 * read it from disk.
238 * @mapping: the address_space to search
239 * @index: the page index
240 *
241 * Locates the desired pagecache page, if not exist we'll read it,
242 * locks it, increments its reference
243 * count and returns its address.
244 *
245 */
246
247struct page *ufs_get_locked_page(struct address_space *mapping,
248 pgoff_t index)
249{
250 struct page *page;
251
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700252 page = find_lock_page(mapping, index);
253 if (!page) {
Nick Piggin6fe69002007-05-06 14:49:04 -0700254 page = read_mapping_page(mapping, index, NULL);
Evgeniy Dushistov1fb32b72006-08-05 12:13:55 -0700255
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700256 if (IS_ERR(page)) {
257 printk(KERN_ERR "ufs_change_blocknr: "
Nick Piggin6fe69002007-05-06 14:49:04 -0700258 "read_mapping_page error: ino %lu, index: %lu\n",
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700259 mapping->host->i_ino, index);
260 goto out;
261 }
262
263 lock_page(page);
264
Evgeniy Dushistov1fb32b72006-08-05 12:13:55 -0700265 if (unlikely(page->mapping == NULL)) {
266 /* Truncate got there first */
267 unlock_page(page);
268 page_cache_release(page);
Evgeniy Dushistov06fa45d2006-08-05 12:13:57 -0700269 page = NULL;
270 goto out;
Evgeniy Dushistov1fb32b72006-08-05 12:13:55 -0700271 }
272
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700273 if (!PageUptodate(page) || PageError(page)) {
274 unlock_page(page);
275 page_cache_release(page);
276
277 printk(KERN_ERR "ufs_change_blocknr: "
278 "can not read page: ino %lu, index: %lu\n",
279 mapping->host->i_ino, index);
280
281 page = ERR_PTR(-EIO);
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700282 }
283 }
Evgeniy Dushistov10e5dce2006-07-01 04:36:24 -0700284out:
285 return page;
286}