-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathfsarchiver.c
511 lines (474 loc) · 20.9 KB
/
fsarchiver.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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
/*
* fsarchiver: Filesystem Archiver
*
* Copyright (C) 2008-2018 Francois Dupoux. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License v2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* Homepage: http://www.fsarchiver.org
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <unistd.h>
#include <string.h>
#include <signal.h>
#include <getopt.h>
#include <stdlib.h>
#include "fsarchiver.h"
#include "dico.h"
#include "common.h"
#include "oper_restore.h"
#include "oper_save.h"
#include "oper_probe.h"
#include "archinfo.h"
#include "syncthread.h"
#include "comp_lzo.h"
#include "comp_lz4.h"
#include "crypto.h"
#include "options.h"
#include "logfile.h"
#include "error.h"
#include "queue.h"
char *valid_magic[]={FSA_MAGIC_MAIN, FSA_MAGIC_VOLH, FSA_MAGIC_VOLF,
FSA_MAGIC_FSIN, FSA_MAGIC_FSYB, FSA_MAGIC_DATF, FSA_MAGIC_OBJT,
FSA_MAGIC_BLKH, FSA_MAGIC_FILF, FSA_MAGIC_DIRS, NULL};
void usage(char *progname, bool examples)
{
int lzo, lzma, lz4, zstd;
#ifdef OPTION_LZO_SUPPORT
lzo=true;
#else
lzo=false;
#endif // OPTION_LZO_SUPPORT
#ifdef OPTION_LZMA_SUPPORT
lzma=true;
#else
lzma=false;
#endif // OPTION_LZMA_SUPPORT
#ifdef OPTION_LZ4_SUPPORT
lz4=true;
#else
lz4=false;
#endif // OPTION_lZ4_SUPPORT
#ifdef OPTION_ZSTD_SUPPORT
zstd=true;
#else
zstd=false;
#endif // OPTION_ZSTD_SUPPORT
msgprintf(MSG_FORCE, "====> fsarchiver version %s (%s) - http://www.fsarchiver.org <====\n", FSA_VERSION, FSA_RELDATE);
msgprintf(MSG_FORCE, "Distributed under the GPL v2 license (GNU General Public License v2).\n");
msgprintf(MSG_FORCE, " * usage: %s [<options>] <command> <archive> [<dev1> [<dev2> [...]]]\n", progname);
msgprintf(MSG_FORCE, "<commands>\n");
msgprintf(MSG_FORCE, " * savefs: save filesystems to an archive file (backup a device to a file)\n");
msgprintf(MSG_FORCE, " * restfs: restore filesystems from an archive (overwrites the existing data)\n");
msgprintf(MSG_FORCE, " * savedir: save directories to the archive (similar to a compressed tarball)\n");
msgprintf(MSG_FORCE, " * restdir: restore data from an archive which is not based on a filesystem\n");
msgprintf(MSG_FORCE, " * archinfo: show information about an existing archive file and its contents\n");
msgprintf(MSG_FORCE, " * probe [detailed]: show list of filesystems detected on the disks\n");
msgprintf(MSG_FORCE, "<options>\n");
msgprintf(MSG_FORCE, " -o: overwrite the archive if it already exists instead of failing\n");
msgprintf(MSG_FORCE, " -v: verbose mode (can be used several times to increase the level of details)\n");
msgprintf(MSG_FORCE, " -d: debug mode (can be used several times to increase the level of details)\n");
msgprintf(MSG_FORCE, " -A: allow to save a filesystem which is mounted in read-write (live backup)\n");
msgprintf(MSG_FORCE, " -a: allow to save a filesystem when acls and xattrs are not supported\n");
msgprintf(MSG_FORCE, " -x: enable support for experimental features (they are disabled by default)\n");
msgprintf(MSG_FORCE, " -e <pattern>: exclude files and directories that match that pattern\n");
msgprintf(MSG_FORCE, " -L <label>: set the label of the archive (comment about the contents)\n");
msgprintf(MSG_FORCE, " -z <level>: legacy compression level from 0 (very fast) to 9 (very good)\n");
#ifdef OPTION_ZSTD_SUPPORT
msgprintf(MSG_FORCE, " -Z <level>: zstd compression level from 1 (very fast) to 22 (very good)\n");
#endif // OPTION_ZSTD_SUPPORT
msgprintf(MSG_FORCE, " -s <mbsize>: split the archive into several files of <mbsize> megabytes each\n");
msgprintf(MSG_FORCE, " -j <count>: create more than one (de)compression thread. useful on multi-core cpu\n");
msgprintf(MSG_FORCE, " -c <password>: encrypt/decrypt data in archive, \"-c -\" for interactive password\n");
msgprintf(MSG_FORCE, " -h: show help and information about how to use fsarchiver with examples\n");
msgprintf(MSG_FORCE, " -V: show program version and exit\n");
msgprintf(MSG_FORCE, "<information>\n");
msgprintf(MSG_FORCE, " * Support included for: lzo=%s, lzma=%s, lz4=%s, zstd=%s\n", (lzo==true)?"yes":"no", (lzma==true)?"yes":"no", (lz4==true)?"yes":"no", (zstd==true)?"yes":"no");
msgprintf(MSG_FORCE, " * Support for ntfs filesystems is unstable: don't use it for production.\n");
if (examples==true)
{
msgprintf(MSG_FORCE, "<examples>\n");
msgprintf(MSG_FORCE, " * \e[1msave only one filesystem (/dev/sda1) to an archive:\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver savefs /data/myarchive1.fsa /dev/sda1\n");
msgprintf(MSG_FORCE, " * \e[1msave two filesystems (/dev/sda1 and /dev/sdb1) to an archive:\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver savefs /data/myarchive2.fsa /dev/sda1 /dev/sdb1\n");
msgprintf(MSG_FORCE, " * \e[1mrestore the first filesystem from an archive (first = number 0):\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver restfs /data/myarchive2.fsa id=0,dest=/dev/sda1\n");
msgprintf(MSG_FORCE, " * \e[1mrestore the second filesystem from an archive (second = number 1):\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver restfs /data/myarchive2.fsa id=1,dest=/dev/sdb1\n");
msgprintf(MSG_FORCE, " * \e[1mrestore two filesystems from an archive (number 0 and 1):\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver restfs /data/arch2.fsa id=0,dest=/dev/sda1 id=1,dest=/dev/sdb1\n");
msgprintf(MSG_FORCE, " * \e[1mrestore a filesystem from an archive and convert it to reiserfs:\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver restfs /data/myarchive1.fsa id=0,dest=/dev/sda1,mkfs=reiserfs\n");
msgprintf(MSG_FORCE, " * \e[1mrestore a filesystem from an archive and specify extra mkfs options:\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver restfs /data/myarchive1.fsa id=0,dest=/dev/sda1,mkfs=ext4,mkfsopt=\"-I 256\"\n");
msgprintf(MSG_FORCE, " * \e[1mrestore a filesystem from an archive and specify a new label and a new UUID:\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver restfs /data/myarchive1.fsa id=0,dest=/dev/sda1,label=root,uuid=5f6e5f4f-dc2a-4dbd-a6ea-9ca997cde75e\n");
msgprintf(MSG_FORCE, " * \e[1msave the contents of /usr/src/linux to an archive (similar to tar):\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver savedir /data/linux-sources.fsa /usr/src/linux\n");
msgprintf(MSG_FORCE, " * \e[1msave a filesystem (/dev/sda1) to an archive split into volumes of 680MB:\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver savefs -s 680 /data/myarchive1.fsa /dev/sda1\n");
msgprintf(MSG_FORCE, " * \e[1msave a filesystem and exclude all files/dirs called 'pagefile.*':\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver savefs /data/myarchive.fsa /dev/sda1 --exclude='pagefile.*'\n");
msgprintf(MSG_FORCE, " * \e[1mgeneric exclude for 'share' such as '/usr/share' and '/usr/local/share':\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver savefs /data/myarchive.fsa --exclude=share\n");
msgprintf(MSG_FORCE, " * \e[1mabsolute exclude valid for '/usr/share' but not for '/usr/local/share':\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver savefs /data/myarchive.fsa --exclude=/usr/share\n");
msgprintf(MSG_FORCE, " * \e[1msave a filesystem (/dev/sda1) to an encrypted archive:\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver savefs -c mypassword /data/myarchive1.fsa /dev/sda1\n");
msgprintf(MSG_FORCE, " * \e[1msame as before but prompt for password in the terminal:\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver savefs -c - /data/myarchive1.fsa /dev/sda1\n");
msgprintf(MSG_FORCE, " * \e[1mextract an archive made of simple files to /tmp/extract:\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver restdir /data/linux-sources.fsa /tmp/extract\n");
msgprintf(MSG_FORCE, " * \e[1mshow information about an archive and its filesystems:\e[0m\n");
msgprintf(MSG_FORCE, " fsarchiver archinfo /data/myarchive2.fsa\n");
}
}
static struct option const long_options[] =
{
{"overwrite", no_argument, NULL, 'o'},
{"allow-no-acl-xattr", no_argument, NULL, 'a'},
{"allow-rw-mounted", no_argument, NULL, 'A'},
{"verbose", no_argument, NULL, 'v'},
{"debug", no_argument, NULL, 'd'},
{"compress", required_argument, NULL, 'z'},
{"zstd", required_argument, NULL, 'Z'},
{"jobs", required_argument, NULL, 'j'},
{"help", no_argument, NULL, 'h'},
{"version", no_argument, NULL, 'V'},
{"split", required_argument, NULL, 's'},
{"cryptpass", required_argument, NULL, 'c'},
{"label", required_argument, NULL, 'L'},
{"exclude", required_argument, NULL, 'e'},
{"experimental", no_argument, NULL, 'x'},
{NULL, 0, NULL, 0}
};
int process_cmdline(int argc, char **argv)
{
char *partition[FSA_MAX_FSPERARCH];
bool runasroot=true;
char *probemode;
sigset_t mask_set;
bool probedetailed=0;
char *command=NULL;
char *archive=NULL;
char tempbuf[1024];
char *progname;
int fscount;
int argcok;
int ret=0;
int cmd;
int c;
// init
memset(partition, 0, sizeof(partition));
progname=argv[0];
// set default options
g_options.overwrite=false;
g_options.allowsaverw=false;
g_options.experimental=false;
g_options.dontcheckmountopts=false;
g_options.verboselevel=0;
g_options.debuglevel=0;
g_options.compressjobs=1;
g_options.datablocksize=FSA_DEF_BLKSIZE;
g_options.encryptalgo=ENCRYPT_NONE;
snprintf(g_options.archlabel, sizeof(g_options.archlabel), "<none>");
g_options.encryptpass[0]=0;
// set default compression mode
g_options.compressalgo=FSA_DEF_COMPRESS_ALGO;
g_options.compresslevel=FSA_DEF_COMPRESS_LEVEL;
#ifdef OPTION_ZSTD_SUPPORT
g_options.fsacomplevel=FSA_DEF_COMPRESS_LEVEL;
#else
g_options.fsacomplevel=FSA_DEF_FSACOMP_LEVEL;
#endif // OPTION_ZSTD_SUPPORT
while ((c = getopt_long(argc, argv, "oaAvdj:hVs:c:L:e:xz:Z:", long_options, NULL)) != EOF)
{
switch (c)
{
case 'o': // overwrite existing archives
g_options.overwrite=true;
break;
case 'a': // don't check the mount options for already-mounted filesystems
g_options.dontcheckmountopts=true;
break;
case 'A': // allows to backup read/write mounted partition
g_options.allowsaverw=true;
break;
case 'x': // enable support for experimental features
g_options.experimental=true;
break;
case 'v': // verbose mode
g_options.verboselevel++;
break;
case 'V': // version
msgprintf(MSG_FORCE, "fsarchiver %s (%s)\n", FSA_VERSION, FSA_RELDATE);
return 0;
case 'd': // debug mode
g_options.debuglevel++;
break;
case 'j': // compression jobs
g_options.compressjobs=atoi(optarg);
if (g_options.compressjobs<1 || g_options.compressjobs>FSA_MAX_COMPJOBS)
{
errprintf("[%s] is not a valid number of jobs. Must be between 1 and %d\n", optarg, FSA_MAX_COMPJOBS);
usage(progname, false);
return 1;
}
break;
case 'e': // exclude files/directories
strlist_add(&g_options.exclude, optarg);
break;
case 's': // split archive into several volumes
g_options.splitsize=((u64)atoll(optarg))*((u64)1024LL*1024LL);
if (g_options.splitsize==0)
{
errprintf("argument of option -s is invalid (%s). It must be a valid integer\n", optarg);
usage(progname, false);
return -1;
}
else // show the calculated size since it was probably incorrect before due to an integer overflow
{
msgprintf(MSG_FORCE, "Archive will be split into volumes of %lld bytes (%s)\n",
(long long)g_options.splitsize, format_size(g_options.splitsize, tempbuf, sizeof(tempbuf), 'h'));
}
break;
case 'z': // legacy compression level
g_options.fsacomplevel=atoi(optarg);
if (g_options.fsacomplevel<0 || g_options.fsacomplevel>9)
{ errprintf("[%s] is not a valid compression level, it must be an integer between 0 and 9.\n", optarg);
usage(progname, false);
return -1;
}
if (options_select_compress_level(g_options.fsacomplevel)<0)
return -1;
#ifdef OPTION_ZSTD_SUPPORT
msgprintf(MSG_FORCE, "Legacy compression methods (-z) are deprecated.\n"
"It is recommended to switch to zstd using the -Z option.\n"
"Please read \"http://www.fsarchiver.org/Compression\" for more details.\n");
#endif // OPTION_ZSTD_SUPPORT
if (g_options.fsacomplevel>=8)
msgprintf(MSG_FORCE, "Compression levels >= 8 may require a huge amount of memory\n"
"Please read the man page or \"http://www.fsarchiver.org/Compression\" for more details.\n");
break;
case 'Z': // zstd compression level
#ifdef OPTION_ZSTD_SUPPORT
g_options.compressalgo=COMPRESS_ZSTD;
g_options.compresslevel=atoi(optarg);
g_options.fsacomplevel=atoi(optarg);
if (g_options.compresslevel<1 || g_options.compresslevel>22)
{ errprintf("[%s] is not a valid compression level, it must be an integer between 1 and 22.\n", optarg);
usage(progname, false);
return -1;
}
g_options.datablocksize=(g_options.compresslevel <= 19)?(FSA_DEF_BLKSIZE):(FSA_MAX_BLKSIZE);
if (g_options.compresslevel>=20)
{ msgprintf(MSG_FORCE, "Compression levels >= 20 may require a huge amount of memory\n"
"Please read the man page or \"http://www.fsarchiver.org/Compression\" for more details.\n");
}
#else
errprintf("zstd compression is not available as its support has been disabled at compilation time\n");
return -1;
#endif // OPTION_ZSTD_SUPPORT
break;
case 'c': // encryption
g_options.encryptalgo=ENCRYPT_BLOWFISH;
if ((strlen(optarg)<FSA_MIN_PASSLEN || strlen(optarg)>FSA_MAX_PASSLEN) && strcmp(optarg, "-")!=0)
{ errprintf("the password lenght is incorrect, it must between %d and %d chars, or \"-\" for interactive password prompt.\n", FSA_MIN_PASSLEN, FSA_MAX_PASSLEN);
usage(progname, false);
return -1;
}
snprintf((char*)g_options.encryptpass, FSA_MAX_PASSLEN, "%s", optarg);
break;
case 'L': // archive label
snprintf(g_options.archlabel, sizeof(g_options.archlabel), "%s", optarg);
break;
case 'h': // help
usage(progname, true);
return 0;
default:
usage(progname, false);
return -1;
}
}
argc -= optind;
argv += optind;
// in all cases we need at least 1 parameters
if (argc < 1)
{ fprintf(stderr, "No arguments provided, cannot continue\n");
usage(progname, false);
return -1;
}
else // mandatory and unique parameters
{
command=*argv++, argc--;
}
// calculate threshold for small files that are compressed together
g_options.smallfilethresh=min(g_options.datablocksize/4, FSA_MAX_SMALLFILESIZE);
msgprintf(MSG_DEBUG1, "Files smaller than %ld will be packed with other small files\n", (long)g_options.smallfilethresh);
// convert commands to integers
if (strcmp(command, "savefs")==0)
{ cmd=OPER_SAVEFS;
runasroot=true;
argcok=(argc>=2);
}
else if (strcmp(command, "restfs")==0)
{ cmd=OPER_RESTFS;
runasroot=true;
argcok=(argc>=2);
}
else if (strcmp(command, "savedir")==0)
{ cmd=OPER_SAVEDIR;
runasroot=true;
argcok=(argc>=2);
}
else if (strcmp(command, "restdir")==0)
{ cmd=OPER_RESTDIR;
runasroot=true;
argcok=(argc==2);
}
else if (strcmp(command, "archinfo")==0)
{ cmd=OPER_ARCHINFO;
runasroot=false;
argcok=(argc==1);
}
else if (strcmp(command, "probe")==0)
{ cmd=OPER_PROBE;
runasroot=true;
argcok=(argc<=1);
}
else // command not found
{ errprintf("[%s] is not a valid command.\n", command);
usage(progname, false);
return -1;
}
// check there are enough parameters on the cmd line
if (argcok!=true)
{ errprintf("invalid number of arguments.\n");
usage(progname, false);
return -1;
}
// check if must be run as root
if (runasroot==true && geteuid()!=0)
{ errprintf("\"fsarchiver %s\" must be run as root. cannot continue.\n", command);
return -1;
}
// interactive password
if (strcmp((char*)g_options.encryptpass, "-")==0)
{
int passconfirm;
char *passtmp=NULL;
passconfirm = (cmd==OPER_SAVEFS || cmd==OPER_SAVEDIR);
if ((passtmp=getpass("Enter password: "))==NULL)
{ errprintf("failed to get interactive password from the console\n");
return -1;
}
if (strlen(passtmp)<FSA_MIN_PASSLEN || strlen(passtmp)>FSA_MAX_PASSLEN)
{ errprintf("the password lenght is incorrect, it must between %d and %d chars\n", FSA_MIN_PASSLEN, FSA_MAX_PASSLEN);
return -1;
}
snprintf((char*)g_options.encryptpass, FSA_MAX_PASSLEN, "%s", passtmp);
if (passconfirm==true)
{
if ((passtmp=getpass("Confirm password: "))==NULL)
{ errprintf("failed to get interactive password from the console\n");
return -1;
}
if (strcmp((char*)g_options.encryptpass, passtmp)!=0)
{ errprintf("the passwords do not match\n");
return -1;
}
}
}
// commands that require an archive as the first argument
switch (cmd)
{
case OPER_SAVEFS:
case OPER_RESTFS:
case OPER_SAVEDIR:
case OPER_RESTDIR:
case OPER_ARCHINFO:
archive=*argv++, argc--;
break;
case OPER_PROBE:
probedetailed=false; // do "simple" by default
if (g_options.verboselevel>0)
probedetailed=true;
if (argc>0)
{ probemode=*argv++, argc--;
if (strcmp(probemode, "detailed")==0)
probedetailed=true;
}
break;
}
// list of partitions to backup/restore
for (fscount=0; (fscount < argc) && (argv[fscount]); fscount++)
partition[fscount]=argv[fscount];
// install signal handlers
sigemptyset(&mask_set);
sigaddset(&mask_set, SIGINT);
sigaddset(&mask_set, SIGTERM);
sigprocmask(SIG_SETMASK, &mask_set, NULL);
if (g_options.debuglevel>0)
logfile_open();
switch (cmd)
{
case OPER_SAVEFS:
ret=oper_save(archive, fscount, partition, ARCHTYPE_FILESYSTEMS);
break;
case OPER_SAVEDIR:
ret=oper_save(archive, fscount, partition, ARCHTYPE_DIRECTORIES);
break;
case OPER_RESTFS:
case OPER_RESTDIR:
case OPER_ARCHINFO:
ret=oper_restore(archive, fscount, partition, cmd);
break;
case OPER_PROBE:
ret=oper_probe(probedetailed);
break;
default:
errprintf("[%s] is not a valid command.\n", command);
usage(progname, false);
ret=-1;
break;
};
logfile_close();
return ret;
}
int main(int argc, char **argv)
{
int ret;
// init the lzo library
#ifdef OPTION_LZO_SUPPORT
if (lzo_init() != LZO_E_OK)
{ errprintf("internal error - lzo_init() failed\n");
exit(EXIT_FAILURE);
}
#endif // OPTION_LZO_SUPPORT
// init libgcrypt
if (crypto_init()!=0)
{ errprintf("cannot initialize the crypto environment\n");
exit(EXIT_FAILURE);
}
// init
options_init();
queue_init(&g_queue, FSA_MAX_QUEUESIZE);
// bulk of the program
ret=process_cmdline(argc, argv);
// cleanup
queue_destroy(&g_queue);
options_destroy();
// cleanup libgcrypt
crypto_cleanup();
return !!ret;
}