-
Notifications
You must be signed in to change notification settings - Fork 62
/
psvimg-extract.c
78 lines (67 loc) · 1.44 KB
/
psvimg-extract.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
/* Copyright (C) 2017 Yifan Lu
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "restore.h"
#include "utils.h"
int main(int argc, const char *argv[]) {
args_t args1, args2;
struct stat st;
int fds[2];
pid_t pid;
int status;
if (argc < 5) {
fprintf(stderr, "usage: psvimg-extract -K key input.psvimg outputdir\n");
return 1;
}
if (pipe(fds) < 0) {
perror("pipe");
return 1;
}
args1.in = open(argv[3], O_RDONLY);
if (args1.in < 0) {
perror("open");
return 1;
}
args1.out = fds[1];
args2.in = fds[0];
args2.out = 0;
if (parse_key(argv[2], args1.key) < 0) {
fprintf(stderr, "invalid key\n");
return 1;
}
args2.prefix = argv[4];
if (stat(args2.prefix, &st) < 0) {
mkdir(args2.prefix, 0700);
}
if ((pid = fork()) == 0) {
close(args1.in);
close(args1.out);
unpack_thread(&args2);
return 0;
} else if (pid > 0) {
close(args2.in);
close(args2.out);
decrypt_thread(&args1);
} else {
perror("fork");
return 1;
}
if (waitpid(pid, &status, 0) < 0) {
perror("waitpid");
return 1;
}
if (!WIFEXITED(status)) {
fprintf(stderr, "child process returned error\n");
return 1;
}
fprintf(stderr, "all done.\n");
return 0;
}