forked from bwalex/tc-play
-
Notifications
You must be signed in to change notification settings - Fork 5
/
io.c
466 lines (381 loc) · 9.62 KB
/
io.c
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
/*
* Copyright (c) 2011 Alex Hornung <[email protected]>.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/types.h>
#if defined(__DragonFly__)
#include <sys/diskslice.h>
#elif defined(__linux__)
#include <linux/fs.h>
#include <sys/ioctl.h>
#endif
#include <sys/stat.h>
#include <sys/uio.h>
#include <sys/select.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <termios.h>
#include <unistd.h>
#include <signal.h>
#include "tcplay.h"
void *
read_to_safe_mem(const char *file, off_t offset, size_t *sz)
{
void *mem = NULL;
ssize_t r = 0;
int fd;
if ((fd = open(file, O_RDONLY)) < 0) {
tc_log(1, "Error opening file %s\n", file);
return NULL;
}
if ((mem = alloc_safe_mem(*sz)) == NULL) {
tc_log(1, "Error allocating memory\n");
goto out;
}
if ((lseek(fd, offset, (offset >= 0) ? SEEK_SET : SEEK_END) < 0)) {
tc_log(1, "Error seeking on file %s\n", file);
goto m_err;
}
if ((r = read(fd, mem, *sz)) <= 0) {
tc_log(1, "Error reading from file %s\n", file);
goto m_err;
}
out:
*sz = r;
close(fd);
return mem;
/* NOT REACHED */
m_err:
free_safe_mem(mem);
close(fd);
return NULL;
}
static size_t get_random_total_bytes = 0;
static size_t get_random_read_bytes = 0;
float
get_random_read_progress(void)
{
return (get_random_total_bytes == 0) ? 0.0 :
(1.0 * get_random_read_bytes) /
(1.0 * get_random_total_bytes) * 100.0;
}
static
void
get_random_summary(void)
{
float pct_done = get_random_read_progress();
tc_log(0, "Gathering true randomness, %.0f%% done.\n", pct_done);
}
int
get_random(unsigned char *buf, size_t len, int weak)
{
int fd;
ssize_t r;
size_t rd = 0;
size_t sz;
struct timespec ts = { .tv_sec = 0, .tv_nsec = 10000000 }; /* 10 ms */
if ((fd = open((weak) ? "/dev/urandom" : "/dev/random", O_RDONLY)) < 0) {
tc_log(1, "Error opening /dev/random\n");
return -1;
}
summary_fn = get_random_summary;
get_random_total_bytes = len;
tc_internal_state = STATE_GET_RANDOM;
/* Get random data in 16-byte chunks */
sz = 16;
while (rd < len) {
get_random_read_bytes = rd;
if ((len - rd) < sz)
sz = (len - rd);
if ((r = read(fd, buf+rd, sz)) < 0) {
tc_log(1, "Error reading from /dev/random(%d): %s\n",
fd, strerror(errno));
close(fd);
summary_fn = NULL;
tc_internal_state = STATE_UNKNOWN;
return -1;
}
rd += r;
nanosleep(&ts, NULL);
}
close(fd);
summary_fn = NULL;
tc_internal_state = STATE_UNKNOWN;
return 0;
}
static disksz_t secure_erase_total_bytes = 0;
static disksz_t secure_erase_erased_bytes = 0;
float
get_secure_erase_progress(void)
{
return (secure_erase_total_bytes == 0) ? 0.0 :
(1.0 * secure_erase_erased_bytes) /
(1.0 * secure_erase_total_bytes) * 100.0;
}
static
void
secure_erase_summary(void)
{
float pct_done = get_secure_erase_progress();
tc_log(0, "Securely erasing, %.0f%% done.\n", pct_done);
}
int
secure_erase(const char *dev, disksz_t bytes, size_t blksz)
{
size_t erased = 0;
int fd_rand, fd;
char buf[ERASE_BUFFER_SIZE];
ssize_t r, w;
size_t sz;
if (blksz > MAX_BLKSZ) {
tc_log(1, "blksz > MAX_BLKSZ\n");
return -1;
}
if ((fd_rand = open("/dev/urandom", O_RDONLY)) < 0) {
tc_log(1, "Error opening /dev/urandom\n");
return -1;
}
if ((fd = open(dev, O_WRONLY)) < 0) {
close(fd_rand);
tc_log(1, "Error opening %s\n", dev);
return -1;
}
summary_fn = secure_erase_summary;
secure_erase_total_bytes = bytes;
tc_internal_state = STATE_ERASE;
sz = ERASE_BUFFER_SIZE;
while (erased < bytes) {
secure_erase_erased_bytes = erased;
/* Switch to block size when not much is remaining */
if ((bytes - erased) <= ERASE_BUFFER_SIZE)
sz = blksz;
if ((r = read(fd_rand, buf, sz)) < 0) {
tc_log(1, "Error reading from /dev/urandom\n");
close(fd);
close(fd_rand);
summary_fn = NULL;
tc_internal_state = STATE_UNKNOWN;
return -1;
}
if (r < (ssize_t)blksz)
continue;
if ((w = write(fd, buf, r)) < 0) {
tc_log(1, "Error writing to %s\n", dev);
close(fd);
close(fd_rand);
summary_fn = NULL;
tc_internal_state = STATE_UNKNOWN;
return -1;
}
erased += (size_t)w;
}
close(fd);
close(fd_rand);
summary_fn = NULL;
tc_internal_state = STATE_UNKNOWN;
return 0;
}
#if defined(__DragonFly__)
int
get_disk_info(const char *dev, disksz_t *blocks, size_t *bsize)
{
struct partinfo pinfo;
int fd;
if ((fd = open(dev, O_RDONLY)) < 0) {
tc_log(1, "Error opening %s\n", dev);
return -1;
}
memset(&pinfo, 0, sizeof(struct partinfo));
if (ioctl(fd, DIOCGPART, &pinfo) < 0) {
close(fd);
return -1;
}
*blocks = (disksz_t)pinfo.media_blocks;
*bsize = pinfo.media_blksize;
close(fd);
return 0;
}
#elif defined(__linux__)
int
get_disk_info(const char *dev, disksz_t *blocks, size_t *bsize)
{
uint64_t nbytes;
int blocksz;
int fd;
if ((fd = open(dev, O_RDONLY)) < 0) {
tc_log(1, "Error opening %s\n", dev);
return -1;
}
if ((ioctl(fd, BLKSSZGET, &blocksz)) < 0) {
close(fd);
return -1;
}
if ((ioctl(fd, BLKGETSIZE64, &nbytes)) < 0) {
close(fd);
return -1;
}
*blocks = (disksz_t)(nbytes / blocksz);
*bsize = (size_t)(blocksz);
close(fd);
return 0;
}
#endif
int
write_to_disk(const char *dev, off_t offset, size_t blksz, void *mem,
size_t bytes)
{
unsigned char *mem_buf = NULL;
ssize_t w;
size_t sz;
off_t internal_off;
int fd;
/* Align to block sizes */
internal_off = offset % blksz;
#ifdef DEBUG
printf("offset: %"PRIu64", internal offset: %"PRIu64"\n",
(uint64_t)offset, (uint64_t)internal_off);
#endif
offset = (offset/blksz) * blksz;
if ((internal_off + bytes) > blksz) {
tc_log(1, "This should never happen: internal_off + bytes > "
"blksz (write_to_disk)\n");
return -1;
}
if ((bytes < blksz) || (internal_off != 0)) {
sz = blksz;
if ((mem_buf = read_to_safe_mem(dev, offset, &sz)) == NULL) {
tc_log(1, "Error buffering data on "
"write_to_disk(%s)\n", dev);
return -1;
}
memcpy(mem_buf + internal_off, mem, bytes);
}
if ((fd = open(dev, O_WRONLY)) < 0) {
tc_log(1, "Error opening device %s\n", dev);
return -1;
}
if ((lseek(fd, offset, (offset >= 0) ? SEEK_SET : SEEK_END) < 0)) {
tc_log(1, "Error seeking on device %s\n", dev);
close(fd);
return -1;
}
if ((w = write(fd, (mem_buf != NULL) ? mem_buf : mem, bytes)) <= 0) {
tc_log(1, "Error writing to device %s\n", dev);
close(fd);
return -1;
}
close(fd);
if (mem_buf != NULL)
free_safe_mem(mem_buf);
return 0;
}
int
write_to_file(const char *file, void *mem, size_t bytes)
{
int fd;
ssize_t w;
if ((fd = open(file, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR)) < 0) {
tc_log(1, "Error opening file %s\n", file);
return -1;
}
if ((w = write(fd, mem, bytes)) < 0) {
tc_log(1, "Error writing to file %s\n", file);
close(fd);
return -1;
}
close(fd);
return 0;
}
static struct termios termios_old;
static int tty_fd;
static void sigint_termios(int sa)
{
tcsetattr(tty_fd, TCSAFLUSH, &termios_old);
exit(sa);
}
int
read_passphrase(const char *prompt, char *pass, size_t passlen, size_t bufsz, time_t timeout)
{
struct termios termios_new;
struct timeval to;
fd_set fds;
ssize_t n;
int fd = STDIN_FILENO, r = 0, nready;
struct sigaction act, old_act;
int is_tty = isatty(fd);
if (is_tty == 0)
errno = 0;
memset(pass, 0, bufsz);
printf("%s", prompt);
fflush(stdout);
/* If input is being provided by something which is not a terminal, don't
* change the settings. */
if (is_tty) {
tcgetattr(fd, &termios_old);
memcpy(&termios_new, &termios_old, sizeof(termios_new));
termios_new.c_lflag &= ~ECHO;
act.sa_handler = sigint_termios;
act.sa_flags = SA_RESETHAND;
sigemptyset(&act.sa_mask);
tty_fd = fd;
sigaction(SIGINT, &act, &old_act);
tcsetattr(fd, TCSAFLUSH, &termios_new);
}
if (timeout > 0) {
memset(&to, 0, sizeof(to));
to.tv_sec = timeout;
FD_ZERO(&fds);
FD_SET(fd, &fds);
nready = select(fd + 1, &fds, NULL, NULL, &to);
if (nready <= 0) {
r = EINTR;
goto out;
}
}
n = read(fd, pass, bufsz-1);
if (n > 0) {
pass[n-1] = '\0'; /* Strip trailing \n */
} else {
r = EIO;
}
/* Warn about passphrase trimming */
if (strlen(pass) > MAX_PASSSZ)
tc_log(0, "WARNING: Passphrase is being trimmed to %zu "
"characters, discarding rest.\n", passlen);
/* Cut off after passlen characters */
pass[passlen] = '\0';
out:
if (is_tty) {
tcsetattr(fd, TCSAFLUSH, &termios_old);
putchar('\n');
sigaction(SIGINT, &old_act, NULL);
}
return r;
}