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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
|
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright (c) 2014 by Delphix. All rights reserved.
*/
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <libzfs.h>
#include <umem.h>
#include <stdlib.h>
#include <stddef.h>
#include <sys/types.h>
#include <sys/list.h>
#include <sys/stat.h>
#include <sys/errno.h>
#define PRINT_HOLE 0x1
#define PRINT_DATA 0x2
#define PRINT_VERBOSE 0x4
extern int errno;
static void
usage(char *msg, int exit_value)
{
(void) fprintf(stderr, "getholes [-dhv] filename\n");
(void) fprintf(stderr, "%s\n", msg);
exit(exit_value);
}
typedef struct segment {
list_node_t seg_node;
int seg_type;
off_t seg_offset;
off_t seg_len;
} seg_t;
/*
* Return an appropriate whence value, depending on whether the file begins
* with a holes or data.
*/
static int
starts_with_hole(int fd)
{
off_t off;
if ((off = lseek(fd, 0, SEEK_HOLE)) == -1) {
/* ENXIO means no holes were found */
if (errno == ENXIO)
return (SEEK_DATA);
perror("lseek failed");
exit(1);
}
return (off == 0 ? SEEK_HOLE : SEEK_DATA);
}
static void
print_list(list_t *seg_list, char *fname, int options)
{
uint64_t lz_holes, bs = 0;
uint64_t hole_blks_seen = 0, data_blks_seen = 0;
seg_t *seg;
if (0 == bs)
if (zfs_get_hole_count(fname, &lz_holes, &bs) != 0) {
perror("zfs_get_hole_count");
exit(1);
}
while ((seg = list_remove_head(seg_list)) != NULL) {
if (options & PRINT_VERBOSE)
(void) fprintf(stdout, "%c %llu:%llu\n",
seg->seg_type == SEEK_HOLE ? 'h' : 'd',
seg->seg_offset, seg->seg_len);
if (seg->seg_type == SEEK_HOLE) {
hole_blks_seen += seg->seg_len / bs;
} else {
data_blks_seen += seg->seg_len / bs;
}
umem_free(seg, sizeof (seg_t));
}
/* Verify libzfs sees the same number of hole blocks found manually. */
if (lz_holes != hole_blks_seen) {
(void) fprintf(stderr, "Counted %llu holes, but libzfs found "
"%llu\n", hole_blks_seen, lz_holes);
exit(1);
}
if (options & PRINT_HOLE && options & PRINT_DATA) {
(void) fprintf(stdout, "datablks: %llu\n", data_blks_seen);
(void) fprintf(stdout, "holeblks: %llu\n", hole_blks_seen);
return;
}
if (options & PRINT_DATA)
(void) fprintf(stdout, "%llu\n", data_blks_seen);
if (options & PRINT_HOLE)
(void) fprintf(stdout, "%llu\n", hole_blks_seen);
}
int
main(int argc, char *argv[])
{
off_t len, off = 0;
int c, fd, options = 0, whence = SEEK_DATA;
struct stat statbuf;
char *fname;
list_t seg_list;
seg_t *seg = NULL;
list_create(&seg_list, sizeof (seg_t), offsetof(seg_t, seg_node));
while ((c = getopt(argc, argv, "dhv")) != -1) {
switch (c) {
case 'd':
options |= PRINT_DATA;
break;
case 'h':
options |= PRINT_HOLE;
break;
case 'v':
options |= PRINT_VERBOSE;
break;
}
}
argc -= optind;
argv += optind;
if (argc != 1)
usage("Incorrect number of arguments.", 1);
if ((fname = argv[0]) == NULL)
usage("No filename provided.", 1);
if ((fd = open(fname, O_LARGEFILE | O_RDONLY)) < 0) {
perror("open failed");
exit(1);
}
if (fstat(fd, &statbuf) != 0) {
perror("fstat failed");
exit(1);
}
len = statbuf.st_size;
whence = starts_with_hole(fd);
while ((off = lseek(fd, off, whence)) != -1) {
seg_t *s;
seg = umem_alloc(sizeof (seg_t), UMEM_DEFAULT);
seg->seg_type = whence;
seg->seg_offset = off;
list_insert_tail(&seg_list, seg);
if ((s = list_prev(&seg_list, seg)) != NULL)
s->seg_len = seg->seg_offset - s->seg_offset;
whence = whence == SEEK_HOLE ? SEEK_DATA : SEEK_HOLE;
}
if (errno != ENXIO) {
perror("lseek failed");
exit(1);
}
(void) close(fd);
/*
* If this file ends with a hole block, then populate the length of
* the last segment, otherwise this is the end of the file, so
* discard the remaining zero length segment.
*/
if (seg && seg->seg_offset != len) {
seg->seg_len = len - seg->seg_offset;
} else {
(void) list_remove_tail(&seg_list);
}
print_list(&seg_list, fname, options);
list_destroy(&seg_list);
return (0);
}
|