1995-04-28 23:57:04 +00:00
|
|
|
/*
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
2002-03-25 13:52:45 +00:00
|
|
|
* <phk@FreeBSD.org> wrote this file. As long as you retain this notice you
|
1995-04-28 23:57:04 +00:00
|
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
|
|
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2001-09-30 21:16:57 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1995-04-28 23:57:04 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "libdisk.h"
|
|
|
|
|
|
|
|
void *
|
2001-05-13 20:08:54 +00:00
|
|
|
read_block(int fd, daddr_t block, u_long sector_size)
|
1995-04-28 23:57:04 +00:00
|
|
|
{
|
|
|
|
void *foo;
|
2002-10-23 19:52:32 +00:00
|
|
|
int i;
|
1995-04-28 23:57:04 +00:00
|
|
|
|
2001-05-13 20:08:54 +00:00
|
|
|
foo = malloc(sector_size);
|
2002-10-31 07:56:40 +00:00
|
|
|
if (foo == NULL)
|
|
|
|
return (NULL);
|
2001-05-13 20:08:54 +00:00
|
|
|
if (-1 == lseek(fd, (off_t)block * sector_size, SEEK_SET)) {
|
|
|
|
free (foo);
|
2002-10-31 07:56:40 +00:00
|
|
|
return (NULL);
|
2001-05-13 20:08:54 +00:00
|
|
|
}
|
2002-10-23 19:52:32 +00:00
|
|
|
i = read(fd, foo, sector_size);
|
|
|
|
if ((int)sector_size != i) {
|
2001-05-13 20:08:54 +00:00
|
|
|
free (foo);
|
2002-10-31 07:56:40 +00:00
|
|
|
return (NULL);
|
2001-05-13 20:08:54 +00:00
|
|
|
}
|
1995-04-28 23:57:04 +00:00
|
|
|
return foo;
|
|
|
|
}
|
|
|
|
|
2001-05-13 20:08:54 +00:00
|
|
|
int
|
2002-10-22 09:13:02 +00:00
|
|
|
write_block(int fd, daddr_t block, const void *foo, u_long sector_size)
|
1995-04-30 06:09:29 +00:00
|
|
|
{
|
2002-10-23 19:52:32 +00:00
|
|
|
int i;
|
2002-10-22 09:13:02 +00:00
|
|
|
|
2001-05-13 20:08:54 +00:00
|
|
|
if (-1 == lseek(fd, (off_t)block * sector_size, SEEK_SET))
|
2002-10-31 07:56:40 +00:00
|
|
|
return (-1);
|
2002-10-23 19:52:32 +00:00
|
|
|
i = write(fd, foo, sector_size);
|
|
|
|
if ((int)sector_size != i)
|
2002-10-31 07:56:40 +00:00
|
|
|
return (-1);
|
2001-05-13 20:08:54 +00:00
|
|
|
return 0;
|
1995-04-30 06:09:29 +00:00
|
|
|
}
|