-
Notifications
You must be signed in to change notification settings - Fork 9
/
cmd-export-avatars.c
280 lines (227 loc) · 5.65 KB
/
cmd-export-avatars.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
/*
* Copyright (c) 2018 Tim van der Molen <tim@kariliq.nl>
*
* 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 <sys/stat.h>
#include <err.h>
#include <errno.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "sigbak.h"
static enum cmd_status cmd_export_avatars(int, char **);
static enum cmd_status cmd_export_stickers(int, char **);
const struct cmd_entry cmd_export_avatars_entry = {
.name = "export-avatars",
.alias = "avt",
.usage = "[-p passfile] backup [directory]",
.exec = cmd_export_avatars
};
const struct cmd_entry cmd_export_stickers_entry = {
.name = "export-stickers",
.alias = "stk",
.usage = "[-p passfile] backup [directory]",
.exec = cmd_export_stickers
};
enum type {
AVATAR,
STICKER
};
static const char *
get_extension(const char *data, size_t datalen)
{
if (datalen >= 3 && memcmp(data, "\xff\xd8\xff", 3) == 0)
return ".jpg";
if (datalen >= 8 && memcmp(data, "\x89PNG\r\n\x1a\n", 8) == 0)
return ".png";
if (datalen >= 12 && memcmp(data, "RIFF", 4) == 0 &&
memcmp(data + 8, "WEBP", 4) == 0)
return ".webp";
return "";
}
static int
write_file(const char *path, const char *data, size_t datalen)
{
FILE *fp;
if ((fp = fopen(path, "wx")) == NULL) {
warn("%s", path);
return -1;
}
if (fwrite(data, datalen, 1, fp) != 1) {
warn("%s", path);
fclose(fp);
return -1;
}
fclose(fp);
return 0;
}
static int
write_avatar(struct sbk_ctx *ctx, Signal__Avatar *avt, struct sbk_file *file)
{
char *base, *data, *name;
const char *ext;
size_t datalen;
int ret;
data = name = NULL;
ret = -1;
if (avt->recipientid != NULL)
base = avt->recipientid;
else if (avt->name != NULL)
base = avt->name;
else {
warnx("Invalid avatar frame");
goto out;
}
if (strchr(base, '/') != NULL) {
warnx("Invalid avatar filename");
goto out;
}
if ((data = sbk_get_file_data(ctx, file, &datalen)) == NULL)
goto out;
ext = get_extension(data, datalen);
if (asprintf(&name, "%s%s", base, ext) == -1) {
warnx("asprintf() failed");
name = NULL;
goto out;
}
ret = write_file(name, data, datalen);
out:
free(name);
free(data);
return ret;
}
static int
write_sticker(struct sbk_ctx *ctx, Signal__Sticker *stk, struct sbk_file *file)
{
char *data, *name;
const char *ext;
size_t datalen;
int ret;
data = name = NULL;
ret = -1;
if (!stk->has_rowid) {
warnx("Invalid sticker frame");
goto out;
}
if ((data = sbk_get_file_data(ctx, file, &datalen)) == NULL)
goto out;
ext = get_extension(data, datalen);
if (asprintf(&name, "%" PRIu64 "%s", stk->rowid, ext) == -1) {
warnx("asprintf() failed");
name = NULL;
goto out;
}
ret = write_file(name, data, datalen);
out:
free(name);
free(data);
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 *backup, *passfile, passphr[128];
const char *outdir;
int c, ret;
passfile = NULL;
while ((c = getopt(argc, argv, "p:")) != -1)
switch (c) {
case 'p':
passfile = optarg;
break;
default:
return CMD_USAGE;
}
argc -= optind;
argv += optind;
switch (argc) {
case 1:
backup = argv[0];
outdir = ".";
break;
case 2:
backup = argv[0];
outdir = argv[1];
if (mkdir(outdir, 0777) == -1 && errno != EEXIST)
err(1, "mkdir: %s", outdir);
break;
default:
return CMD_USAGE;
}
if (unveil(backup, "r") == -1)
err(1, "unveil: %s", backup);
if (unveil(outdir, "rwc") == -1)
err(1, "unveil: %s", outdir);
if (passfile == NULL) {
if (pledge("stdio rpath wpath cpath tty", NULL) == -1)
err(1, "pledge");
} else {
if (strcmp(passfile, "-") != 0 && unveil(passfile, "r") == -1)
err(1, "unveil: %s", passfile);
if (pledge("stdio rpath wpath cpath", NULL) == -1)
err(1, "pledge");
}
if ((ctx = sbk_ctx_new()) == NULL)
return CMD_ERROR;
if (get_passphrase(passfile, passphr, sizeof passphr) == -1) {
sbk_ctx_free(ctx);
return CMD_ERROR;
}
if (sbk_open(ctx, backup, passphr) == -1) {
explicit_bzero(passphr, sizeof passphr);
sbk_ctx_free(ctx);
return CMD_ERROR;
}
explicit_bzero(passphr, sizeof passphr);
if (chdir(outdir) == -1) {
warn("chdir: %s", outdir);
sbk_close(ctx);
sbk_ctx_free(ctx);
return CMD_ERROR;
}
if (pledge("stdio wpath cpath", NULL) == -1)
err(1, "pledge");
ret = CMD_OK;
while ((frm = sbk_get_frame(ctx, &file)) != NULL) {
if (frm->avatar != NULL && type == AVATAR) {
if (write_avatar(ctx, frm->avatar, file) == -1)
ret = CMD_ERROR;
} else if (frm->sticker != NULL && type == STICKER) {
if (write_sticker(ctx, frm->sticker, file) == -1)
ret = CMD_ERROR;
}
sbk_free_frame(frm);
sbk_free_file(file);
}
if (!sbk_eof(ctx))
ret = CMD_ERROR;
sbk_close(ctx);
sbk_ctx_free(ctx);
return ret;
}
static enum cmd_status
cmd_export_avatars(int argc, char **argv)
{
return write_files(argc, argv, AVATAR);
}
static enum cmd_status
cmd_export_stickers(int argc, char **argv)
{
return write_files(argc, argv, STICKER);
}