GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / fs / squashfs / cache.c
blob107f3840f8f2788d95c0c036b90fe4d575860120
1 /* Modified by Broadcom Corp. Portions Copyright (c) Broadcom Corp, 2012. */
2 /*
3 * Squashfs - a compressed read only filesystem for Linux
5 * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
6 * Phillip Lougher <phillip@lougher.demon.co.uk>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2,
11 * or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * cache.c
26 * Blocks in Squashfs are compressed. To avoid repeatedly decompressing
27 * recently accessed data Squashfs uses two small metadata and fragment caches.
29 * This file implements a generic cache implementation used for both caches,
30 * plus functions layered ontop of the generic cache implementation to
31 * access the metadata and fragment caches.
33 * To avoid out of memory and fragmentation isssues with vmalloc the cache
34 * uses sequences of kmalloced PAGE_CACHE_SIZE buffers.
36 * It should be noted that the cache is not used for file datablocks, these
37 * are decompressed and cached in the page-cache in the normal way. The
38 * cache is only used to temporarily cache fragment and metadata blocks
39 * which have been read as as a result of a metadata (i.e. inode or
40 * directory) or fragment access. Because metadata and fragments are packed
41 * together into blocks (to gain greater compression) the read of a particular
42 * piece of metadata or fragment will retrieve other metadata/fragments which
43 * have been packed with it, these because of locality-of-reference may be read
44 * in the near future. Temporarily caching them ensures they are available for
45 * near future access without requiring an additional read and decompress.
48 #include <linux/fs.h>
49 #include <linux/vfs.h>
50 #include <linux/slab.h>
51 #include <linux/vmalloc.h>
52 #include <linux/sched.h>
53 #include <linux/spinlock.h>
54 #include <linux/wait.h>
55 #include <linux/pagemap.h>
57 #include "squashfs_fs.h"
58 #include "squashfs_fs_sb.h"
59 #include "squashfs.h"
62 * Look-up block in cache, and increment usage count. If not in cache, read
63 * and decompress it from disk.
65 struct squashfs_cache_entry *squashfs_cache_get(struct super_block *sb,
66 struct squashfs_cache *cache, u64 block, int length)
68 int i, n;
69 struct squashfs_cache_entry *entry;
71 spin_lock(&cache->lock);
73 while (1) {
74 for (i = 0; i < cache->entries; i++)
75 if (cache->entry[i].block == block)
76 break;
78 if (i == cache->entries) {
80 * Block not in cache, if all cache entries are used
81 * go to sleep waiting for one to become available.
83 if (cache->unused == 0) {
84 cache->num_waiters++;
85 spin_unlock(&cache->lock);
86 wait_event(cache->wait_queue, cache->unused);
87 spin_lock(&cache->lock);
88 cache->num_waiters--;
89 continue;
93 * At least one unused cache entry. A simple
94 * round-robin strategy is used to choose the entry to
95 * be evicted from the cache.
97 i = cache->next_blk;
98 for (n = 0; n < cache->entries; n++) {
99 if (cache->entry[i].refcount == 0)
100 break;
101 i = (i + 1) % cache->entries;
104 cache->next_blk = (i + 1) % cache->entries;
105 entry = &cache->entry[i];
108 * Initialise chosen cache entry, and fill it in from
109 * disk.
111 cache->unused--;
112 entry->block = block;
113 entry->refcount = 1;
114 entry->pending = 1;
115 entry->num_waiters = 0;
116 entry->error = 0;
117 spin_unlock(&cache->lock);
119 entry->length = squashfs_read_data(sb, entry->data,
120 block, length, &entry->next_index,
121 cache->block_size, cache->pages);
123 spin_lock(&cache->lock);
125 if (entry->length < 0)
126 entry->error = entry->length;
128 entry->pending = 0;
131 * While filling this entry one or more other processes
132 * have looked it up in the cache, and have slept
133 * waiting for it to become available.
135 if (entry->num_waiters) {
136 spin_unlock(&cache->lock);
137 wake_up_all(&entry->wait_queue);
138 } else
139 spin_unlock(&cache->lock);
141 goto out;
145 * Block already in cache. Increment refcount so it doesn't
146 * get reused until we're finished with it, if it was
147 * previously unused there's one less cache entry available
148 * for reuse.
150 entry = &cache->entry[i];
151 if (entry->refcount == 0)
152 cache->unused--;
153 entry->refcount++;
156 * If the entry is currently being filled in by another process
157 * go to sleep waiting for it to become available.
159 if (entry->pending) {
160 entry->num_waiters++;
161 spin_unlock(&cache->lock);
162 wait_event(entry->wait_queue, !entry->pending);
163 } else
164 spin_unlock(&cache->lock);
166 goto out;
169 out:
170 TRACE("Got %s %d, start block %lld, refcount %d, error %d\n",
171 cache->name, i, entry->block, entry->refcount, entry->error);
173 if (entry->error)
174 ERROR("Unable to read %s cache entry [%llx]\n", cache->name,
175 block);
176 return entry;
181 * Release cache entry, once usage count is zero it can be reused.
183 void squashfs_cache_put(struct squashfs_cache_entry *entry)
185 struct squashfs_cache *cache = entry->cache;
187 spin_lock(&cache->lock);
188 entry->refcount--;
189 if (entry->refcount == 0) {
190 cache->unused++;
192 * If there's any processes waiting for a block to become
193 * available, wake one up.
195 if (cache->num_waiters) {
196 spin_unlock(&cache->lock);
197 wake_up(&cache->wait_queue);
198 return;
201 spin_unlock(&cache->lock);
205 * Delete cache reclaiming all kmalloced buffers.
207 void squashfs_cache_delete(struct squashfs_cache *cache)
209 int i, j;
211 if (cache == NULL)
212 return;
214 for (i = 0; i < cache->entries; i++) {
215 if (cache->entry[i].data) {
216 for (j = 0; j < cache->pages; j++)
217 kfree(cache->entry[i].data[j]);
218 kfree(cache->entry[i].data);
222 kfree(cache->entry);
223 kfree(cache);
228 * Initialise cache allocating the specified number of entries, each of
229 * size block_size. To avoid vmalloc fragmentation issues each entry
230 * is allocated as a sequence of kmalloced PAGE_CACHE_SIZE buffers.
232 struct squashfs_cache *squashfs_cache_init(char *name, int entries,
233 int block_size)
235 int i, j;
236 struct squashfs_cache *cache = kzalloc(sizeof(*cache), GFP_KERNEL);
238 if (cache == NULL) {
239 ERROR("Failed to allocate %s cache\n", name);
240 return NULL;
243 cache->entry = kcalloc(entries, sizeof(*(cache->entry)), GFP_KERNEL);
244 if (cache->entry == NULL) {
245 ERROR("Failed to allocate %s cache\n", name);
246 goto cleanup;
249 cache->next_blk = 0;
250 cache->unused = entries;
251 cache->entries = entries;
252 cache->block_size = block_size;
253 cache->pages = block_size >> PAGE_CACHE_SHIFT;
254 cache->pages = cache->pages ? cache->pages : 1;
255 cache->name = name;
256 cache->num_waiters = 0;
257 spin_lock_init(&cache->lock);
258 init_waitqueue_head(&cache->wait_queue);
260 for (i = 0; i < entries; i++) {
261 struct squashfs_cache_entry *entry = &cache->entry[i];
263 init_waitqueue_head(&cache->entry[i].wait_queue);
264 entry->cache = cache;
265 entry->block = SQUASHFS_INVALID_BLK;
266 entry->data = kcalloc(cache->pages, sizeof(void *), GFP_KERNEL);
267 if (entry->data == NULL) {
268 ERROR("Failed to allocate %s cache entry\n", name);
269 goto cleanup;
272 for (j = 0; j < cache->pages; j++) {
273 entry->data[j] = kmalloc(PAGE_CACHE_SIZE, GFP_KERNEL);
274 if (entry->data[j] == NULL) {
275 ERROR("Failed to allocate %s buffer\n", name);
276 goto cleanup;
281 return cache;
283 cleanup:
284 squashfs_cache_delete(cache);
285 return NULL;
290 * Copy up to length bytes from cache entry to buffer starting at offset bytes
291 * into the cache entry. If there's not length bytes then copy the number of
292 * bytes available. In all cases return the number of bytes copied.
294 int squashfs_copy_data(void *buffer, struct squashfs_cache_entry *entry,
295 int offset, int length)
297 int remaining = length;
299 if (length == 0)
300 return 0;
301 else if (buffer == NULL)
302 return min(length, entry->length - offset);
304 while (offset < entry->length) {
305 void *buff = entry->data[offset / PAGE_CACHE_SIZE]
306 + (offset % PAGE_CACHE_SIZE);
307 int bytes = min_t(int, entry->length - offset,
308 PAGE_CACHE_SIZE - (offset % PAGE_CACHE_SIZE));
310 if (bytes >= remaining) {
311 memcpy(buffer, buff, remaining);
312 remaining = 0;
313 break;
316 memcpy(buffer, buff, bytes);
317 buffer += bytes;
318 remaining -= bytes;
319 offset += bytes;
322 return length - remaining;
327 * Read length bytes from metadata position <block, offset> (block is the
328 * start of the compressed block on disk, and offset is the offset into
329 * the block once decompressed). Data is packed into consecutive blocks,
330 * and length bytes may require reading more than one block.
332 int squashfs_read_metadata(struct super_block *sb, void *buffer,
333 u64 *block, int *offset, int length)
335 struct squashfs_sb_info *msblk = sb->s_fs_info;
336 int bytes, copied = length;
337 struct squashfs_cache_entry *entry;
339 TRACE("Entered squashfs_read_metadata [%llx:%x]\n", *block, *offset);
341 while (length) {
342 entry = squashfs_cache_get(sb, msblk->block_cache, *block, 0);
343 if (entry->error)
344 return entry->error;
345 else if (*offset >= entry->length)
346 return -EIO;
348 bytes = squashfs_copy_data(buffer, entry, *offset, length);
349 if (buffer)
350 buffer += bytes;
351 length -= bytes;
352 *offset += bytes;
354 if (*offset == entry->length) {
355 *block = entry->next_index;
356 *offset = 0;
359 squashfs_cache_put(entry);
362 return copied;
367 * Look-up in the fragmment cache the fragment located at <start_block> in the
368 * filesystem. If necessary read and decompress it from disk.
370 struct squashfs_cache_entry *squashfs_get_fragment(struct super_block *sb,
371 u64 start_block, int length)
373 struct squashfs_sb_info *msblk = sb->s_fs_info;
375 return squashfs_cache_get(sb, msblk->fragment_cache, start_block,
376 length);
381 * Read and decompress the datablock located at <start_block> in the
382 * filesystem. The cache is used here to avoid duplicating locking and
383 * read/decompress code.
385 struct squashfs_cache_entry *squashfs_get_datablock(struct super_block *sb,
386 u64 start_block, int length)
388 struct squashfs_sb_info *msblk = sb->s_fs_info;
390 return squashfs_cache_get(sb, msblk->read_page, start_block, length);
395 * Read a filesystem table (uncompressed sequence of bytes) from disk
397 int squashfs_read_table(struct super_block *sb, void *buffer, u64 block,
398 int length)
400 int pages = (length + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
401 int i, res;
402 void **data = kcalloc(pages, sizeof(void *), GFP_KERNEL);
403 if (data == NULL)
404 return -ENOMEM;
406 for (i = 0; i < pages; i++, buffer += PAGE_CACHE_SIZE)
407 data[i] = buffer;
408 res = squashfs_read_data(sb, data, block, length |
409 SQUASHFS_COMPRESSED_BIT_BLOCK, NULL, length, pages);
410 kfree(data);
411 return res;