]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libdisk/blocks.c
correct arg order to strlcpy/strlcat under #ifdef alpha
[FreeBSD/FreeBSD.git] / lib / libdisk / blocks.c
1 /*
2  * ----------------------------------------------------------------------------
3  * "THE BEER-WARE LICENSE" (Revision 42):
4  * <phk@FreeBSD.org> wrote this file.  As long as you retain this notice you
5  * can do whatever you want with this stuff. If we meet some day, and you think
6  * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
7  * ----------------------------------------------------------------------------
8  */
9
10 #include <sys/cdefs.h>
11 __FBSDID("$FreeBSD$");
12
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <unistd.h>
16 #include "libdisk.h"
17
18 void *
19 read_block(int fd, daddr_t block, u_long sector_size)
20 {
21         void *foo;
22
23         foo = malloc(sector_size);
24         if (!foo)
25                 return NULL;
26         if (-1 == lseek(fd, (off_t)block * sector_size, SEEK_SET)) {
27                 free (foo);
28                 return NULL;
29         }
30         if (sector_size != read(fd, foo, sector_size)) {
31                 free (foo);
32                 return NULL;
33         }
34         return foo;
35 }
36
37 int
38 write_block(int fd, daddr_t block, void *foo, u_long sector_size)
39 {
40         if (-1 == lseek(fd, (off_t)block * sector_size, SEEK_SET))
41                 return -1;
42         if (sector_size != write(fd, foo, sector_size))
43                 return -1;
44         return 0;
45 }