Merge branch 'makefile' into haiku
[grub2/phcoder.git] / kern / disk.c
blob0979aa07ff705b8eb512f7fc7e997ca99707cc20
1 /*
2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2002,2003,2004,2006,2007,2008 Free Software Foundation, Inc.
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
19 #include <grub/disk.h>
20 #include <grub/err.h>
21 #include <grub/mm.h>
22 #include <grub/types.h>
23 #include <grub/partition.h>
24 #include <grub/misc.h>
25 #include <grub/time.h>
26 #include <grub/file.h>
28 #define GRUB_CACHE_TIMEOUT 2
30 /* The last time the disk was used. */
31 static grub_uint64_t grub_last_time = 0;
34 /* Disk cache. */
35 struct grub_disk_cache
37 enum grub_disk_dev_id dev_id;
38 unsigned long disk_id;
39 grub_disk_addr_t sector;
40 char *data;
41 int lock;
44 static struct grub_disk_cache grub_disk_cache_table[GRUB_DISK_CACHE_NUM];
46 void (*grub_disk_firmware_fini) (void);
47 int grub_disk_firmware_is_tainted;
49 grub_err_t (* grub_disk_ata_pass_through) (grub_disk_t,
50 struct grub_disk_ata_pass_through_parms *);
53 #if 0
54 static unsigned long grub_disk_cache_hits;
55 static unsigned long grub_disk_cache_misses;
57 void
58 grub_disk_cache_get_performance (unsigned long *hits, unsigned long *misses)
60 *hits = grub_disk_cache_hits;
61 *misses = grub_disk_cache_misses;
63 #endif
65 static unsigned
66 grub_disk_cache_get_index (unsigned long dev_id, unsigned long disk_id,
67 grub_disk_addr_t sector)
69 return ((dev_id * 524287UL + disk_id * 2606459UL
70 + ((unsigned) (sector >> GRUB_DISK_CACHE_BITS)))
71 % GRUB_DISK_CACHE_NUM);
74 static void
75 grub_disk_cache_invalidate (unsigned long dev_id, unsigned long disk_id,
76 grub_disk_addr_t sector)
78 unsigned index;
79 struct grub_disk_cache *cache;
81 sector &= ~(GRUB_DISK_CACHE_SIZE - 1);
82 index = grub_disk_cache_get_index (dev_id, disk_id, sector);
83 cache = grub_disk_cache_table + index;
85 if (cache->dev_id == dev_id && cache->disk_id == disk_id
86 && cache->sector == sector && cache->data)
88 cache->lock = 1;
89 grub_free (cache->data);
90 cache->data = 0;
91 cache->lock = 0;
95 void
96 grub_disk_cache_invalidate_all (void)
98 unsigned i;
100 for (i = 0; i < GRUB_DISK_CACHE_NUM; i++)
102 struct grub_disk_cache *cache = grub_disk_cache_table + i;
104 if (cache->data && ! cache->lock)
106 grub_free (cache->data);
107 cache->data = 0;
112 static char *
113 grub_disk_cache_fetch (unsigned long dev_id, unsigned long disk_id,
114 grub_disk_addr_t sector)
116 struct grub_disk_cache *cache;
117 unsigned index;
119 index = grub_disk_cache_get_index (dev_id, disk_id, sector);
120 cache = grub_disk_cache_table + index;
122 if (cache->dev_id == dev_id && cache->disk_id == disk_id
123 && cache->sector == sector)
125 cache->lock = 1;
126 #if 0
127 grub_disk_cache_hits++;
128 #endif
129 return cache->data;
132 #if 0
133 grub_disk_cache_misses++;
134 #endif
136 return 0;
139 static void
140 grub_disk_cache_unlock (unsigned long dev_id, unsigned long disk_id,
141 grub_disk_addr_t sector)
143 struct grub_disk_cache *cache;
144 unsigned index;
146 index = grub_disk_cache_get_index (dev_id, disk_id, sector);
147 cache = grub_disk_cache_table + index;
149 if (cache->dev_id == dev_id && cache->disk_id == disk_id
150 && cache->sector == sector)
151 cache->lock = 0;
154 static grub_err_t
155 grub_disk_cache_store (unsigned long dev_id, unsigned long disk_id,
156 grub_disk_addr_t sector, const char *data)
158 unsigned index;
159 struct grub_disk_cache *cache;
161 index = grub_disk_cache_get_index (dev_id, disk_id, sector);
162 cache = grub_disk_cache_table + index;
164 cache->lock = 1;
165 grub_free (cache->data);
166 cache->data = 0;
167 cache->lock = 0;
169 cache->data = grub_malloc (GRUB_DISK_SECTOR_SIZE << GRUB_DISK_CACHE_BITS);
170 if (! cache->data)
171 return grub_errno;
173 grub_memcpy (cache->data, data,
174 GRUB_DISK_SECTOR_SIZE << GRUB_DISK_CACHE_BITS);
175 cache->dev_id = dev_id;
176 cache->disk_id = disk_id;
177 cache->sector = sector;
179 return GRUB_ERR_NONE;
184 static grub_disk_dev_t grub_disk_dev_list;
186 void
187 grub_disk_dev_register (grub_disk_dev_t dev)
189 dev->next = grub_disk_dev_list;
190 grub_disk_dev_list = dev;
193 void
194 grub_disk_dev_unregister (grub_disk_dev_t dev)
196 grub_disk_dev_t *p, q;
198 for (p = &grub_disk_dev_list, q = *p; q; p = &(q->next), q = q->next)
199 if (q == dev)
201 *p = q->next;
202 break;
207 grub_disk_dev_iterate (int (*hook) (const char *name))
209 grub_disk_dev_t p;
211 for (p = grub_disk_dev_list; p; p = p->next)
212 if (p->iterate && (p->iterate) (hook))
213 return 1;
215 return 0;
218 /* Return the location of the first ',', if any, which is not
219 escaped by a '\'. */
220 static const char *
221 find_part_sep (const char *name)
223 const char *p = name;
224 char c;
226 while ((c = *p++) != '\0')
228 if (c == '\\' && *p == ',')
229 p++;
230 else if (c == ',')
231 return p - 1;
233 return NULL;
236 grub_disk_t
237 grub_disk_open (const char *name)
239 const char *p;
240 grub_disk_t disk;
241 grub_disk_dev_t dev;
242 char *raw = (char *) name;
243 grub_uint64_t current_time;
245 grub_dprintf ("disk", "Opening `%s'...\n", name);
247 disk = (grub_disk_t) grub_zalloc (sizeof (*disk));
248 if (! disk)
249 return 0;
251 disk->name = grub_strdup (name);
252 if (! disk->name)
253 goto fail;
255 p = find_part_sep (name);
256 if (p)
258 grub_size_t len = p - name;
260 raw = grub_malloc (len + 1);
261 if (! raw)
262 goto fail;
264 grub_memcpy (raw, name, len);
265 raw[len] = '\0';
268 for (dev = grub_disk_dev_list; dev; dev = dev->next)
270 if ((dev->open) (raw, disk) == GRUB_ERR_NONE)
271 break;
272 else if (grub_errno == GRUB_ERR_UNKNOWN_DEVICE)
273 grub_errno = GRUB_ERR_NONE;
274 else
275 goto fail;
278 if (! dev)
280 grub_error (GRUB_ERR_UNKNOWN_DEVICE, "no such disk");
281 goto fail;
284 if (p && ! disk->has_partitions)
286 grub_error (GRUB_ERR_BAD_DEVICE, "no partition on this disk");
287 goto fail;
290 disk->dev = dev;
292 if (p)
294 disk->partition = grub_partition_probe (disk, p + 1);
295 if (! disk->partition)
297 grub_error (GRUB_ERR_UNKNOWN_DEVICE, "no such partition");
298 goto fail;
302 /* The cache will be invalidated about 2 seconds after a device was
303 closed. */
304 current_time = grub_get_time_ms ();
306 if (current_time > (grub_last_time
307 + GRUB_CACHE_TIMEOUT * 1000))
308 grub_disk_cache_invalidate_all ();
310 grub_last_time = current_time;
312 fail:
314 if (raw && raw != name)
315 grub_free (raw);
317 if (grub_errno != GRUB_ERR_NONE)
319 grub_error_push ();
320 grub_dprintf ("disk", "Opening `%s' failed.\n", name);
321 grub_error_pop ();
323 grub_disk_close (disk);
324 return 0;
327 return disk;
330 void
331 grub_disk_close (grub_disk_t disk)
333 grub_partition_t part;
334 grub_dprintf ("disk", "Closing `%s'.\n", disk->name);
336 if (disk->dev && disk->dev->close)
337 (disk->dev->close) (disk);
339 /* Reset the timer. */
340 grub_last_time = grub_get_time_ms ();
342 while (disk->partition)
344 part = disk->partition->parent;
345 grub_free (disk->partition->data);
346 grub_free (disk->partition);
347 disk->partition = part;
349 grub_free ((void *) disk->name);
350 grub_free (disk);
353 /* This function performs three tasks:
354 - Make sectors disk relative from partition relative.
355 - Normalize offset to be less than the sector size.
356 - Verify that the range is inside the partition. */
357 static grub_err_t
358 grub_disk_adjust_range (grub_disk_t disk, grub_disk_addr_t *sector,
359 grub_off_t *offset, grub_size_t size)
361 grub_partition_t part;
362 *sector += *offset >> GRUB_DISK_SECTOR_BITS;
363 *offset &= GRUB_DISK_SECTOR_SIZE - 1;
365 for (part = disk->partition; part; part = part->parent)
367 grub_disk_addr_t start;
368 grub_uint64_t len;
370 start = grub_partition_get_start (part);
371 len = grub_partition_get_len (part);
373 if (*sector >= len
374 || len - *sector < ((*offset + size + GRUB_DISK_SECTOR_SIZE - 1)
375 >> GRUB_DISK_SECTOR_BITS))
376 return grub_error (GRUB_ERR_OUT_OF_RANGE, "out of partition");
378 *sector += start;
381 if (disk->total_sectors <= *sector
382 || ((*offset + size + GRUB_DISK_SECTOR_SIZE - 1)
383 >> GRUB_DISK_SECTOR_BITS) > disk->total_sectors - *sector)
384 return grub_error (GRUB_ERR_OUT_OF_RANGE, "out of disk");
386 return GRUB_ERR_NONE;
389 /* Read data from the disk. */
390 grub_err_t
391 grub_disk_read (grub_disk_t disk, grub_disk_addr_t sector,
392 grub_off_t offset, grub_size_t size, void *buf)
394 char *tmp_buf;
395 unsigned real_offset;
397 grub_dprintf ("disk", "Reading `%s'...\n", disk->name);
399 /* First of all, check if the region is within the disk. */
400 if (grub_disk_adjust_range (disk, &sector, &offset, size) != GRUB_ERR_NONE)
402 grub_error_push ();
403 grub_dprintf ("disk", "Read out of range: sector 0x%llx (%s).\n",
404 (unsigned long long) sector, grub_errmsg);
405 grub_error_pop ();
406 return grub_errno;
409 real_offset = offset;
411 /* Allocate a temporary buffer. */
412 tmp_buf = grub_malloc (GRUB_DISK_SECTOR_SIZE << GRUB_DISK_CACHE_BITS);
413 if (! tmp_buf)
414 return grub_errno;
416 /* Until SIZE is zero... */
417 while (size)
419 char *data;
420 grub_disk_addr_t start_sector;
421 grub_size_t len;
422 grub_size_t pos;
424 /* For reading bulk data. */
425 start_sector = sector & ~(GRUB_DISK_CACHE_SIZE - 1);
426 pos = (sector - start_sector) << GRUB_DISK_SECTOR_BITS;
427 len = ((GRUB_DISK_SECTOR_SIZE << GRUB_DISK_CACHE_BITS)
428 - pos - real_offset);
429 if (len > size)
430 len = size;
432 /* Fetch the cache. */
433 data = grub_disk_cache_fetch (disk->dev->id, disk->id, start_sector);
434 if (data)
436 /* Just copy it! */
437 grub_memcpy (buf, data + pos + real_offset, len);
438 grub_disk_cache_unlock (disk->dev->id, disk->id, start_sector);
440 else
442 /* Otherwise read data from the disk actually. */
443 if ((disk->dev->read) (disk, start_sector,
444 GRUB_DISK_CACHE_SIZE, tmp_buf)
445 != GRUB_ERR_NONE)
447 /* Uggh... Failed. Instead, just read necessary data. */
448 unsigned num;
449 char *p;
451 grub_errno = GRUB_ERR_NONE;
453 num = ((size + GRUB_DISK_SECTOR_SIZE - 1)
454 >> GRUB_DISK_SECTOR_BITS);
456 p = grub_realloc (tmp_buf, num << GRUB_DISK_SECTOR_BITS);
457 if (!p)
458 goto finish;
460 tmp_buf = p;
462 if ((disk->dev->read) (disk, sector, num, tmp_buf))
464 grub_error_push ();
465 grub_dprintf ("disk", "%s read failed\n", disk->name);
466 grub_error_pop ();
467 goto finish;
470 grub_memcpy (buf, tmp_buf + real_offset, size);
472 /* Call the read hook, if any. */
473 if (disk->read_hook)
474 while (size)
476 (disk->read_hook) (sector, real_offset,
477 ((size > GRUB_DISK_SECTOR_SIZE)
478 ? GRUB_DISK_SECTOR_SIZE
479 : size));
480 sector++;
481 size -= GRUB_DISK_SECTOR_SIZE - real_offset;
482 real_offset = 0;
485 /* This must be the end. */
486 goto finish;
489 /* Copy it and store it in the disk cache. */
490 grub_memcpy (buf, tmp_buf + pos + real_offset, len);
491 grub_disk_cache_store (disk->dev->id, disk->id,
492 start_sector, tmp_buf);
495 /* Call the read hook, if any. */
496 if (disk->read_hook)
498 grub_disk_addr_t s = sector;
499 grub_size_t l = len;
501 while (l)
503 (disk->read_hook) (s, real_offset,
504 ((l > GRUB_DISK_SECTOR_SIZE)
505 ? GRUB_DISK_SECTOR_SIZE
506 : l));
508 if (l < GRUB_DISK_SECTOR_SIZE - real_offset)
509 break;
511 s++;
512 l -= GRUB_DISK_SECTOR_SIZE - real_offset;
513 real_offset = 0;
517 sector = start_sector + GRUB_DISK_CACHE_SIZE;
518 buf = (char *) buf + len;
519 size -= len;
520 real_offset = 0;
523 finish:
525 grub_free (tmp_buf);
527 return grub_errno;
530 grub_err_t
531 grub_disk_write (grub_disk_t disk, grub_disk_addr_t sector,
532 grub_off_t offset, grub_size_t size, const void *buf)
534 unsigned real_offset;
536 grub_dprintf ("disk", "Writing `%s'...\n", disk->name);
538 if (grub_disk_adjust_range (disk, &sector, &offset, size) != GRUB_ERR_NONE)
539 return -1;
541 real_offset = offset;
543 while (size)
545 if (real_offset != 0 || (size < GRUB_DISK_SECTOR_SIZE && size != 0))
547 char tmp_buf[GRUB_DISK_SECTOR_SIZE];
548 grub_size_t len;
549 grub_partition_t part;
551 part = disk->partition;
552 disk->partition = 0;
553 if (grub_disk_read (disk, sector, 0, GRUB_DISK_SECTOR_SIZE, tmp_buf)
554 != GRUB_ERR_NONE)
556 disk->partition = part;
557 goto finish;
559 disk->partition = part;
561 len = GRUB_DISK_SECTOR_SIZE - real_offset;
562 if (len > size)
563 len = size;
565 grub_memcpy (tmp_buf + real_offset, buf, len);
567 grub_disk_cache_invalidate (disk->dev->id, disk->id, sector);
569 if ((disk->dev->write) (disk, sector, 1, tmp_buf) != GRUB_ERR_NONE)
570 goto finish;
572 sector++;
573 buf = (char *) buf + len;
574 size -= len;
575 real_offset = 0;
577 else
579 grub_size_t len;
580 grub_size_t n;
582 len = size & ~(GRUB_DISK_SECTOR_SIZE - 1);
583 n = size >> GRUB_DISK_SECTOR_BITS;
585 if ((disk->dev->write) (disk, sector, n, buf) != GRUB_ERR_NONE)
586 goto finish;
588 while (n--)
589 grub_disk_cache_invalidate (disk->dev->id, disk->id, sector++);
591 buf = (char *) buf + len;
592 size -= len;
596 finish:
598 return grub_errno;
601 grub_uint64_t
602 grub_disk_get_size (grub_disk_t disk)
604 if (disk->partition)
605 return grub_partition_get_len (disk->partition);
606 else
607 return disk->total_sectors;