-
Notifications
You must be signed in to change notification settings - Fork 3
/
dumpet.h
66 lines (56 loc) · 1.66 KB
/
dumpet.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* Copyright 2009 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Author: Peter Jones <pjones@redhat.com>
*/
#ifndef DUMPET_H
#define DUMPET_H
#include <errno.h>
#include "iso9660.h"
#include "eltorito.h"
static inline off_t get_sector_offset(int sector_number)
{
Sector sector;
return sector_number * sizeof(sector);
}
static inline int read_sector(FILE *iso, int sector_number, Sector *sector)
{
size_t n;
fseek(iso, get_sector_offset(sector_number), SEEK_SET);
n = fread(sector, sizeof(*sector), 1, iso);
if (n != 1) {
int errnum = errno;
fprintf(stderr, "dumpet: Error reading image: %m\n");
errno = errnum;
return -errno;
}
return 0;
}
static inline int write_sector(FILE *iso, int sector_number, Sector *sector)
{
size_t n;
fseek(iso, get_sector_offset(sector_number), SEEK_SET);
n = fwrite(sector, sizeof(*sector), 1, iso);
if (n != 1) {
int errnum = errno;
fprintf(stderr, "dumpet: Error writing image: %m\n");
errno = errnum;
return -errno;
}
return 0;
}
#endif /* DUMPET_H */
/* vim:set shiftwidth=8 softtabstop=8: */