This repository has been archived by the owner on Mar 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd-attachments.c
230 lines (197 loc) · 4.59 KB
/
cmd-attachments.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
/*
* Copyright (c) 2018 Tim van der Molen <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "sigbak.h"
enum type {
ATTACHMENT,
AVATAR,
STICKER
};
static int
write_file(struct sbk_ctx *ctx, Signal__BackupFrame *frm,
struct sbk_file *file, enum type type)
{
FILE *fp;
char *fname, *tmp;
int ret;
tmp = NULL;
switch (type) {
case ATTACHMENT:
if (frm->attachment == NULL)
return 0;
if (!frm->attachment->has_rowid ||
!frm->attachment->has_attachmentid) {
warnx("Invalid attachment frame");
return 1;
}
if (asprintf(&tmp, "%" PRIu64 "-%" PRIu64,
frm->attachment->rowid, frm->attachment->attachmentid)
== -1) {
warnx("asprintf() failed");
return 1;
}
fname = tmp;
break;
case AVATAR:
if (frm->avatar == NULL)
return 0;
if (frm->avatar->recipientid != NULL)
fname = frm->avatar->recipientid;
else if (frm->avatar->name != NULL)
fname = frm->avatar->name;
else {
warnx("Invalid avatar frame");
return 1;
}
if (fname[0] == '\0' || strchr(fname, '/') != NULL) {
warnx("Invalid avatar filename");
return 1;
}
break;
case STICKER:
if (frm->sticker == NULL)
return 0;
if (!frm->sticker->has_rowid) {
warnx("Invalid sticker frame");
return 1;
}
if (asprintf(&tmp, "%" PRIu64, frm->sticker->rowid) == -1) {
warnx("asprintf() failed");
return 1;
}
fname = tmp;
break;
default:
return 0;
}
ret = 0;
if ((fp = fopen(fname, "wx")) == NULL) {
warn("%s", fname);
ret = 1;
} else {
if (sbk_write_file(ctx, file, fp) == -1) {
warnx("%s: %s", fname, sbk_error(ctx));
ret = 1;
}
fclose(fp);
}
freezero_string(tmp);
return ret;
}
static int
write_files(int argc, char **argv, enum type type)
{
struct sbk_ctx *ctx;
struct sbk_file *file;
Signal__BackupFrame *frm;
char *cmd, *passfile, passphr[128];
const char *outdir;
int c, ret;
cmd = argv[0];
passfile = NULL;
while ((c = getopt(argc, argv, "p:")) != -1)
switch (c) {
case 'p':
passfile = optarg;
break;
default:
goto usage;
}
argc -= optind;
argv += optind;
switch (argc) {
case 1:
outdir = ".";
break;
case 2:
outdir = argv[1];
if (mkdir(outdir, 0777) == -1 && errno != EEXIST)
err(1, "mkdir: %s", outdir);
break;
default:
goto usage;
}
if (unveil(argv[0], "r") == -1 || unveil(outdir, "rwc") == -1)
err(1, "unveil");
if (passfile == NULL) {
if (pledge("stdio rpath wpath cpath tty", NULL) == -1)
err(1, "pledge");
} else {
if (unveil(passfile, "r") == -1)
err(1, "unveil");
if (pledge("stdio rpath wpath cpath", NULL) == -1)
err(1, "pledge");
}
if ((ctx = sbk_ctx_new()) == NULL)
errx(1, "Cannot create backup context");
if (get_passphrase(passfile, passphr, sizeof passphr) == -1) {
sbk_ctx_free(ctx);
return 1;
}
if (sbk_open(ctx, argv[0], passphr) == -1) {
warnx("%s: %s", argv[0], sbk_error(ctx));
explicit_bzero(passphr, sizeof passphr);
sbk_ctx_free(ctx);
return 1;
}
explicit_bzero(passphr, sizeof passphr);
if (chdir(outdir) == -1) {
warn("chdir: %s", outdir);
sbk_close(ctx);
sbk_ctx_free(ctx);
return 1;
}
if (pledge("stdio wpath cpath", NULL) == -1)
err(1, "pledge");
ret = 0;
while ((frm = sbk_get_frame(ctx, &file)) != NULL) {
ret |= write_file(ctx, frm, file, type);
sbk_free_frame(frm);
sbk_free_file(file);
}
if (!sbk_eof(ctx)) {
warnx("%s: %s", argv[0], sbk_error(ctx));
ret = 1;
}
sbk_close(ctx);
sbk_ctx_free(ctx);
return ret;
usage:
usage(cmd, "[-p passfile] backup [directory]");
}
int
cmd_attachments(int argc, char **argv)
{
return write_files(argc, argv, ATTACHMENT);
}
int
cmd_avatars(int argc, char **argv)
{
return write_files(argc, argv, AVATAR);
}
int
cmd_stickers(int argc, char **argv)
{
return write_files(argc, argv, STICKER);
}