lift restrictions on partial "window" seeked signature verifying
[tfcrypt.git] / tfcrypt.c
1 /*
2  * tfcrypt -- high security Threefish encryption tool.
3  *
4  * tfcrypt is copyrighted:
5  * Copyright (C) 2012-2019 Andrey Rys. All rights reserved.
6  *
7  * tfcrypt is licensed to you under the terms of std. MIT/X11 license:
8  *
9  * Permission is hereby granted, free of charge, to any person obtaining
10  * a copy of this software and associated documentation files (the
11  * "Software"), to deal in the Software without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
24  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27  */
28
29 #include "tfcrypt.h"
30
31 static tfc_byte svctr[TF_BLOCK_SIZE];
32 static tfc_fsize rwd, do_read_loops, loopcnt;
33
34 static void open_log(const char *logfile)
35 {
36         int fd;
37
38         if (!strcmp(logfile, "-")) return;
39
40         fd = open(logfile, O_WRONLY | O_CREAT | O_LARGEFILE | O_TRUNC, 0666);
41         if (fd == -1) xerror(NO, NO, YES, "%s", logfile);
42         xclose(2);
43         if (dup2(fd, 2) == -1) xexit(2);
44         xclose(fd);
45         do_statline_dynamic = NO;
46 }
47
48 static int getps_filter(struct getpasswd_state *getps, char chr, size_t pos)
49 {
50         if (chr == '\x03') {
51                 getps->retn = ((size_t)-2);
52                 return 6;
53         }
54         return 1;
55 }
56
57 static int getps_hex_filter(struct getpasswd_state *getps, char chr, size_t pos)
58 {
59         if (chr == '\x03') {
60                 getps->retn = ((size_t)-2);
61                 return 6;
62         }
63         if (chr >= '0' && chr <= '9') return 1;
64         if (chr >= 'a' && chr <= 'f') return 1;
65         if (chr >= 'A' && chr <= 'F') return 1;
66         if (chr == '\x7f' || chr == '\x08'
67         || chr == '\x15' || chr == '\x17') return 1;
68         return 0;
69 }
70
71 static inline int isctrlchr(int c)
72 {
73         if (c == 9) return 0;
74         if (c >= 0 && c <= 31) return 1;
75         if (c == 127) return 1;
76         return 0;
77 }
78
79 static int getps_plain_filter(struct getpasswd_state *getps, char chr, size_t pos)
80 {
81         int x;
82
83         x = getps_filter(getps, chr, pos);
84         if (x != 1) return x;
85
86         if (pos < getps->pwlen && !isctrlchr(chr))
87                 write(getps->efd, &chr, sizeof(char));
88         return 1;
89 }
90
91 static int getps_plain_hex_filter(struct getpasswd_state *getps, char chr, size_t pos)
92 {
93         int x;
94
95         x = getps_hex_filter(getps, chr, pos);
96         if (x != 1) return x;
97
98         if (pos < getps->pwlen && !isctrlchr(chr))
99                 write(getps->efd, &chr, sizeof(char));
100         return 1;
101 }
102
103 static void make_hint(void *hint, size_t szhint, const void *data, size_t szdata)
104 {
105         char t[TF_FROM_BITS(TF_MAX_BITS)];
106
107         skein(t, TF_MAX_BITS, NULL, data, szdata);
108         xor_shrink(hint, szhint, t, sizeof(t));
109         memset(t, 0, sizeof(t));
110 }
111
112 static void raw_say_hint(void *hint, size_t szhint, const void *data, size_t szdata, const char *prompt)
113 {
114         make_hint(hint, szhint, data, szdata);
115         if (prompt) tfc_nfsay(stderr, "%s: ", prompt);
116         mehexdump(hint, szhint, szhint, 1);
117         memset(hint, 0, szhint);
118 }
119
120 static void say_hint(const void *data, size_t szdata, const char *prompt)
121 {
122         char t[TF_SIZE_UNIT];
123         raw_say_hint(t, TF_SIZE_UNIT, data, szdata, prompt);
124         /* t[] is erased (automatically) */
125 }
126
127 int main(int argc, char **argv)
128 {
129         int c;
130         double td;
131         char *s, *d, *t, *stoi;
132         size_t x, n;
133
134         progpid = getpid();
135         progname = basename(argv[0]);
136
137         if (!isatty(2)) do_statline_dynamic = NO;
138
139         s = (char *)srcblk;
140         d = getenv("HOME");
141         if (!d) d = "";
142         n = PATH_MAX > sizeof(srcblk) ? sizeof(srcblk) : PATH_MAX;
143         if (xstrlcpy(s, d, n) >= n) goto _baddfname;
144         if (xstrlcat(s, "/.tfcrypt.defs", n) >= n) goto _baddfname;
145         read_defaults(s, YES);
146 _baddfname:
147         memset(s, 0, n);
148
149         if (!strcmp(progname, "iotool")) {
150                 do_edcrypt = TFC_DO_PLAIN;
151                 password = YES;
152                 ctr_mode = TFC_MODE_PLAIN;
153         }
154
155         opterr = 0;
156         while ((c = getopt(argc, argv, "L:s:aU:C:r:K:t:Pkzxc:l:qedn:vV:pwE:o:O:S:AmuM:R:Z:WHD:")) != -1) {
157                 switch (c) {
158                         case 'L':
159                                 read_defaults(optarg, NO);
160                                 break;
161                         case 's':
162                                 saltf = optarg;
163                                 break;
164                         case 'r':
165                                 randsource = optarg;
166                                 break;
167                         case 'c':
168                                 if (!strcasecmp(optarg, "show"))
169                                         counter_opt = TFC_CTR_SHOW;
170                                 else if (!strcasecmp(optarg, "head"))
171                                         counter_opt = TFC_CTR_HEAD;
172                                 else if (!strcasecmp(optarg, "rand"))
173                                         counter_opt = TFC_CTR_RAND;
174                                 else if (!strcasecmp(optarg, "zero"))
175                                         counter_opt = TFC_CTR_ZERO;
176                                 else if (strchr(optarg, ':')) {
177                                         char *ss, chr;
178
179                                         counter_opt = TFC_CTR_SSET;
180                                         n = sizeof(ctr);
181
182                                         s = d = optarg; t = NULL;
183                                         while ((s = strtok_r(d, ",", &t))) {
184                                                 if (d) d = NULL;
185
186                                                 if (n == 0) break;
187                                                 ss = strchr(s, ':');
188                                                 if (!ss) continue;
189                                                 *ss = 0; ss++;
190                                                 chr = (char)strtoul(s, &stoi, 16);
191                                                 if (!str_empty(stoi)) continue;
192                                                 x = (size_t)strtoul(ss, &stoi, 10);
193                                                 if (!str_empty(stoi)) continue;
194                                                 if (x > n) x = n;
195                                                 memset(ctr+(sizeof(ctr)-n), (int)chr, x);
196                                                 n -= x;
197                                         }
198                                 }
199                                 else counter_file = sksum_hashlist_file = optarg;
200                                 break;
201                         case 'C':
202                                 if (!strcasecmp(optarg, "ctr"))
203                                         ctr_mode = TFC_MODE_CTR;
204                                 else if (!strcasecmp(optarg, "stream"))
205                                         ctr_mode = TFC_MODE_STREAM;
206                                 else if (!strcasecmp(optarg, "cbc"))
207                                         ctr_mode = TFC_MODE_CBC;
208                                 else if (!strcasecmp(optarg, "ecb"))
209                                         ctr_mode = TFC_MODE_ECB;
210                                 else if (!strcasecmp(optarg, "xts"))
211                                         ctr_mode = TFC_MODE_XTS;
212                                 else if (!strcasecmp(optarg, "ocb"))
213                                         ctr_mode = TFC_MODE_OCB;
214                                 else xerror(NO, YES, YES, "%s: invalid mode of operation", optarg);
215                                 break;
216                         case 'P':
217                                 do_edcrypt = TFC_DO_PLAIN;
218                                 password = YES;
219                                 ctr_mode = TFC_MODE_PLAIN;
220                                 break;
221                         case 'e':
222                                 if (do_edcrypt != TFC_DO_PLAIN) do_edcrypt = TFC_DO_ENCRYPT;
223                                 break;
224                         case 'd':
225                                 if (do_edcrypt != TFC_DO_PLAIN) do_edcrypt = TFC_DO_DECRYPT;
226                                 break;
227                         case 'D':
228                                 macbits = strtoul(optarg, &stoi, 10);
229                                 if (macbits == 0 || !str_empty(stoi) || macbits < 8
230                                 || macbits > TF_MAX_BITS || macbits % 8)
231                                         xerror(NO, YES, YES, "%s: invalid MAC bits setting", optarg);
232                                 break;
233                         case 'n':
234                                 nr_turns = sksum_turns = strtoul(optarg, &stoi, 10);
235                                 if (!str_empty(stoi)) xerror(NO, YES, YES, "%s: invalid number of turns", optarg);
236                                 break;
237                         case 'U':
238                                 if (!strcasecmp(optarg, "key"))
239                                         mackey_opt = TFC_MACKEY_RAWKEY;
240                                 else if (!strcasecmp(optarg, "pwd"))
241                                         mackey_opt = TFC_MACKEY_PASSWORD;
242                                 else {
243                                         mackey_opt = TFC_MACKEY_FILE;
244                                         mackeyf = optarg;
245                                 }
246                                 break;
247                         case 'p':
248                                 password = YES;
249                                 break;
250                         case 'k':
251                                 rawkey = TFC_RAWKEY_KEYFILE;
252                                 break;
253                         case 'z':
254                                 rawkey = TFC_RAWKEY_ASKSTR;
255                                 break;
256                         case 'x':
257                                 rawkey = TFC_RAWKEY_ASKHEX;
258                                 break;
259                         case 'K':
260                                 verbose = YES;
261                                 genkeyf = optarg;
262                                 break;
263                         case 't':
264                                 tweakf = optarg;
265                                 do_full_key = NO;
266                                 break;
267                         case 'l':
268                                 if (maxlen != NOFSIZE) break;
269
270                                 maxlen = tfc_humanfsize(optarg, &stoi);
271                                 if (!str_empty(stoi)) {
272                                         maxlen = tfc_fnamesize(optarg, YES);
273                                         maxlen = tfc_modifysize(maxlen, strchr(optarg, ':'));
274                                         if (maxlen == NOFSIZE) xerror(NO, YES, YES,
275                                         "%s: invalid count value", optarg);
276                                 }
277                                 else maxlen = tfc_modifysize(maxlen, strchr(optarg, ':'));
278                                 if (counter_opt == TFC_CTR_HEAD)
279                                         maxlen += TF_BLOCK_SIZE;
280                                 break;
281                         case 'w':
282                                 overwrite_source = YES;
283                                 break;
284                         case 'E':
285                                 if (!strcmp(optarg, "xall")) {
286                                         catch_all_errors = YES;
287                                         break;
288                                 }
289                                 if (!strcmp(optarg, "xseek")) {
290                                         ignore_seek_errors = YES;
291                                         break;
292                                 }
293                                 if (!strcmp(optarg, "exit"))
294                                         error_action = TFC_ERRACT_EXIT;
295                                 else if (!strncmp(optarg, "cont", 4))
296                                         error_action = TFC_ERRACT_CONT;
297                                 else if (!strcmp(optarg, "sync"))
298                                         error_action = TFC_ERRACT_SYNC;
299                                 else if (!strcmp(optarg, "lsync"))
300                                         error_action = TFC_ERRACT_LSYNC;
301                                 else xerror(NO, YES, YES, "invalid error action %s specified", optarg);
302                                 break;
303                         case 'o':
304                                 open_log(optarg);
305                                 break;
306                         case 'O':
307                                 s = d = optarg; t = NULL;
308                                 while ((s = strtok_r(d, ",", &t))) {
309                                         if (d) d = NULL;
310                                         if (!strcmp(s, "sync"))
311                                                 write_flags |= O_SYNC;
312                                         else if (!strcmp(s, "trunc"))
313                                                 write_flags |= O_TRUNC;
314                                         else if (!strcmp(s, "fsync"))
315                                                 do_fsync = YES;
316                                         else if (!strcmp(s, "pad"))
317                                                 do_pad = YES;
318                                         else if (!strcmp(s, "xtime"))
319                                                 do_preserve_time = YES;
320                                         else if (!strcmp(s, "gibsize"))
321                                                 do_stats_in_gibs = YES;
322                                         else if (!strcmp(s, "plainstats"))
323                                                 do_statline_dynamic = NO;
324                                         else if (!strcmp(s, "statless"))
325                                                 do_less_stats = YES;
326                                         else if (!strcmp(s, "norepeat"))
327                                                 no_repeat = YES;
328                                         else if (!strncmp(s, "prompt", 6) && *(s+6) == '=')
329                                                 pw_prompt = s+7;
330                                         else if (!strncmp(s, "macprompt", 9) && *(s+9) == '=')
331                                                 mac_pw_prompt = s+10;
332                                         else if (!strcmp(s, "shorthex"))
333                                                 do_full_hexdump = NO;
334                                         else if (!strcmp(s, "fullkey"))
335                                                 do_full_key = YES;
336                                         else if (!strcmp(s, "showsecrets"))
337                                                 show_secrets = YES;
338                                         else if (!strcmp(s, "finished"))
339                                                 show_when_done = YES;
340                                         else if (!strcmp(s, "pid"))
341                                                 show_pid = YES;
342                                         else if (!strncmp(s, "readloops", 9) && *(s+9) == '=') {
343                                                 do_read_loops = tfc_humanfsize(s+10, &stoi);
344                                                 if (!str_empty(stoi)) do_read_loops = NOSIZE;
345                                         }
346                                         else if (!strncmp(s, "logfile", 7) && *(s+7) == '=')
347                                                 open_log(s+8);
348                                         else if (!strncmp(s, "iobs", 4) && *(s+4) == '=') {
349                                                 s += 5;
350                                                 blksize = (size_t)tfc_humanfsize(s, &stoi);
351                                                 if (!str_empty(stoi)) {
352                                                         blksize = (size_t)tfc_fnamesize(s, YES);
353                                                         blksize = (size_t)tfc_modifysize((tfc_fsize)blksize, strchr(s, ':'));
354                                                         if (blksize == NOSIZE) xerror(NO, YES, YES,
355                                                         "%s: invalid block size value", s);
356                                                 }
357                                                 else blksize = (size_t)tfc_modifysize((tfc_fsize)blksize, strchr(s, ':'));
358                                                 if (blksize < TF_BLOCK_SIZE) xerror(NO, YES, YES,
359                                                         "%s: block size is lesser than TF_BLOCK_SIZE (%u bytes)", s, TFC_U(TF_BLOCK_SIZE));
360                                                 if (blksize > TFC_BLKSIZE) xerror(NO, YES, YES,
361                                                         "%s: block size exceeds %u bytes",
362                                                         s, TFC_U(TFC_BLKSIZE));
363                                         }
364                                         else if (!strncmp(s, "xtsblocks", 9) && *(s+9) == '=') {
365                                                 s += 10;
366                                                 xtsblocks = (size_t)tfc_humanfsize(s, &stoi);
367                                                 if (!str_empty(stoi)) {
368                                                         xtsblocks = (size_t)tfc_fnamesize(s, YES);
369                                                         xtsblocks = (size_t)tfc_modifysize((tfc_fsize)xtsblocks, strchr(s, ':'));
370                                                         if (xtsblocks == NOSIZE) xerror(NO, YES, YES,
371                                                         "%s: invalid blocks per xts block value", s);
372                                                 }
373                                                 else xtsblocks = (size_t)tfc_modifysize((tfc_fsize)xtsblocks, strchr(s, ':'));
374                                                 if (TFC_BLKSIZE % xtsblocks) xerror(NO, YES, YES,
375                                                         "%s: nr of blocks per xts block is not round to %u bytes",
376                                                         s, TFC_U(TFC_BLKSIZE));
377                                                 if ((xtsblocks * TF_BLOCK_SIZE) > TFC_BLKSIZE) xerror(NO, YES, YES,
378                                                         "%s: nr of blocks per xts block exceeds %u bytes",
379                                                         s, TFC_U(TFC_BLKSIZE));
380                                         }
381                                         else if (!strncmp(s, "iseek", 5) && *(s+5) == '=') {
382                                                 s += 6;
383                                                 iseek = tfc_humanfsize(s, &stoi);
384                                                 if (!str_empty(stoi)) {
385                                                         iseek = tfc_fnamesize(s, YES);
386                                                         iseek = tfc_modifysize(iseek, strchr(s, ':'));
387                                                         if (iseek == NOFSIZE) xerror(NO, YES, YES,
388                                                         "%s: invalid iseek value", s);
389                                                 }
390                                                 else iseek = tfc_modifysize(iseek, strchr(s, ':'));
391                                                 if (ctr_mode != TFC_MODE_PLAIN && iseek % TF_BLOCK_SIZE)
392                                                         xerror(NO, YES, YES,
393                                                                 "%s: not round to TF block size "
394                                                                 "of %u bytes",
395                                                                 s, TFC_U(TF_BLOCK_SIZE));
396                                                 iseek_blocks = iseek / TF_BLOCK_SIZE;
397                                         }
398                                         else if (!strncmp(s, "ixseek", 6) && *(s+6) == '=') {
399                                                 s += 7;
400                                                 iseek = tfc_humanfsize(s, &stoi);
401                                                 if (!str_empty(stoi)) {
402                                                         iseek = tfc_fnamesize(s, YES);
403                                                         iseek = tfc_modifysize(iseek, strchr(s, ':'));
404                                                         if (iseek == NOFSIZE) xerror(NO, YES, YES,
405                                                                 "%s: invalid ixseek value", s);
406                                                 }
407                                                 else iseek = tfc_modifysize(iseek, strchr(s, ':'));
408                                         }
409                                         else if (!strncmp(s, "ictr", 4) && *(s+4) == '=') {
410                                                 s += 5;
411                                                 iseek_blocks = tfc_humanfsize(s, &stoi);
412                                                 if (!str_empty(stoi)) {
413                                                         iseek_blocks = tfc_fnamesize(s, YES);
414                                                         if (iseek_blocks == NOFSIZE)
415                                                                 xerror(NO, YES, YES,
416                                                                 "%s: invalid ictr value", s);
417                                                         iseek_blocks /= TF_BLOCK_SIZE;
418                                                         iseek_blocks = tfc_modifysize(iseek_blocks, strchr(s, ':'));
419                                                 }
420                                                 else iseek_blocks = tfc_modifysize(iseek_blocks, strchr(s, ':'));
421                                         }
422                                         else if (!strncmp(s, "ixctr", 5) && *(s+5) == '=') {
423                                                 s += 6;
424                                                 iseek_blocks = tfc_humanfsize(s, &stoi);
425                                                 if (!str_empty(stoi)) {
426                                                         iseek_blocks = tfc_fnamesize(s, YES);
427                                                         iseek_blocks = tfc_modifysize(iseek_blocks, strchr(s, ':'));
428                                                         if (iseek_blocks == NOFSIZE)
429                                                                 xerror(NO, YES, YES,
430                                                                 "%s: invalid ixctr value", s);
431                                                 }
432                                                 else iseek_blocks = tfc_modifysize(iseek_blocks, strchr(s, ':'));
433                                                 if (iseek_blocks % TF_BLOCK_SIZE)
434                                                         xerror(NO, YES, YES,
435                                                         "%s: not round to TF block size "
436                                                         "of %u bytes", s, TFC_U(TF_BLOCK_SIZE));
437                                                 iseek_blocks /= TF_BLOCK_SIZE;
438                                         }
439                                         else if (!strncmp(s, "oseek", 5) && *(s+5) == '=') {
440                                                 s += 6;
441                                                 oseek = tfc_humanfsize(s, &stoi);
442                                                 if (!str_empty(stoi)) {
443                                                         oseek = tfc_fnamesize(s, YES);
444                                                         oseek = tfc_modifysize(oseek, strchr(s, ':'));
445                                                         if (oseek == NOFSIZE) xerror(NO, YES, YES,
446                                                         "%s: invalid oseek value", s);
447                                                 }
448                                                 else oseek = tfc_modifysize(oseek, strchr(s, ':'));
449                                         }
450                                         else if (!strncmp(s, "count", 5) && *(s+5) == '=') {
451                                                 s += 6;
452                                                 maxlen = tfc_humanfsize(s, &stoi);
453                                                 if (!str_empty(stoi)) {
454                                                         maxlen = tfc_fnamesize(s, YES);
455                                                         maxlen = tfc_modifysize(maxlen, strchr(s, ':'));
456                                                         if (maxlen == NOFSIZE) xerror(NO, YES, YES,
457                                                         "%s: invalid count value", s);
458                                                 }
459                                                 else maxlen = tfc_modifysize(maxlen, strchr(s, ':'));
460                                                 if (counter_opt == TFC_CTR_HEAD)
461                                                         maxlen += TF_BLOCK_SIZE;
462                                         }
463                                         else if (!strncmp(s, "ftrunc", 6) && *(s+6) == '=') {
464                                                 s += 7;
465                                                 if (!strcmp(s, "tail")) {
466                                                         do_ftrunc = TFC_FTRUNC_TAIL;
467                                                         ftrunc_dfd = NOFSIZE;
468                                                 }
469                                                 else {
470                                                         do_ftrunc = TFC_DO_FTRUNC;
471                                                         ftrunc_dfd = tfc_humanfsize(s, &stoi);
472                                                         if (!str_empty(stoi)) {
473                                                                 ftrunc_dfd = tfc_fnamesize(s, YES);
474                                                                 ftrunc_dfd = tfc_modifysize(ftrunc_dfd, strchr(s, ':'));
475                                                                 if (ftrunc_dfd == NOFSIZE) xerror(NO, YES, YES,
476                                                                 "%s: invalid ftrunc value", s);
477                                                         }
478                                                         else ftrunc_dfd = tfc_modifysize(ftrunc_dfd, strchr(s, ':'));
479                                                 }
480                                         }
481                                         else if (!strncmp(s, "xkey", 4) && *(s+4) == '=') {
482                                                 s += 5;
483                                                 maxkeylen = tfc_humanfsize(s, &stoi);
484                                                 if (!str_empty(stoi)) {
485                                                         maxkeylen = tfc_fnamesize(s, YES);
486                                                         maxkeylen = tfc_modifysize(maxkeylen, strchr(s, ':'));
487                                                         if (maxkeylen == NOSIZE)
488                                                                 xerror(NO, YES, YES,
489                                                                 "%s: invalid key length value", s);
490                                                 }
491                                                 else maxkeylen = tfc_modifysize(maxkeylen, strchr(s, ':'));
492                                         }
493                                         else if (!strncmp(s, "okey", 4) && *(s+4) == '=') {
494                                                 s += 5;
495                                                 keyoffset = tfc_humanfsize(s, &stoi);
496                                                 if (!str_empty(stoi)) {
497                                                         keyoffset = tfc_fnamesize(s, YES);
498                                                         keyoffset = tfc_modifysize(keyoffset, strchr(s, ':'));
499                                                         if (keyoffset == NOFSIZE)
500                                                                 xerror(NO, YES, YES,
501                                                                 "%s: invalid key offset value", s);
502                                                 }
503                                                 else keyoffset = tfc_modifysize(keyoffset, strchr(s, ':'));
504                                         }
505                                         else if (!strncmp(s, "xctr", 4) && *(s+4) == '=') {
506                                                 s += 5;
507                                                 ctrsz = tfc_humanfsize(s, &stoi);
508                                                 if (!str_empty(stoi)) {
509                                                         ctrsz = (size_t)tfc_fnamesize(s, YES);
510                                                         ctrsz = (size_t)tfc_modifysize((tfc_fsize)ctrsz, strchr(s, ':'));
511                                                         if (ctrsz == NOSIZE)
512                                                                 xerror(NO, YES, YES,
513                                                                 "%s: invalid counter length value", s);
514                                                 }
515                                                 else ctrsz = (size_t)tfc_modifysize((tfc_fsize)ctrsz, strchr(s, ':'));
516                                                 if (ctrsz > TF_BLOCK_SIZE)
517                                                         xerror(NO, YES, YES, "%s: counter size cannot exceed TF block size", s);
518                                         }
519                                         else xerror(NO, YES, YES, "invalid option %s", s);
520                                 }
521                                 break;
522                         case 'S':
523                                 do_mac = TFC_MAC_SIGN;
524                                 if (strcasecmp(optarg, "mac") != 0)
525                                         do_mac_file = optarg;
526                                 break;
527                         case 'M':
528                                 do_mac = TFC_MAC_VRFY;
529                                 if (!strcasecmp(optarg, "drop"))
530                                         do_mac = TFC_MAC_DROP;
531                                 else if (strcasecmp(optarg, "mac") != 0)
532                                         do_mac_file = optarg;
533                                 break;
534                         case 'm':
535                         case 'u':
536                                 if (do_mac != TFC_MAC_VRFY)
537                                         xerror(NO, YES, YES, "signature source was not specified");
538                                 do_mac = TFC_MAC_JUST_VRFY;
539                                 if (c == 'u') do_mac = TFC_MAC_JUST_VRFY2;
540                                 break;
541                         case 'R':
542                         case 'Z':
543                                 if (maxlen != NOFSIZE) {
544                                         if (c == 'Z') genzero_nr_bytes = maxlen;
545                                         else genrandom_nr_bytes = maxlen;
546                                 }
547                                 else {
548                                         tfc_fsize t;
549                                         if (!strcasecmp(optarg, "cbs"))
550                                                 t = TF_BLOCK_SIZE;
551                                         else if (!strcasecmp(optarg, "ks"))
552                                                 t = TF_FROM_BITS(TFC_KEY_BITS);
553                                         else if (!strcasecmp(optarg, "xks"))
554                                                 t = TF_FROM_BITS(TFC_KEY_BITS) * 2;
555                                         else if (!strcasecmp(optarg, "iobs"))
556                                                 t = blksize;
557                                         else {
558                                                 t = tfc_humanfsize(optarg, &stoi);
559                                                 if (!str_empty(stoi)) {
560                                                         t = tfc_fnamesize(optarg, NO);
561                                                         t = tfc_modifysize(t, strchr(optarg, ':'));
562                                                 }
563                                                 else t = tfc_modifysize(t, strchr(optarg, ':'));
564                                         }
565                                         if (c == 'Z') genzero_nr_bytes = maxlen = t;
566                                         else genrandom_nr_bytes = maxlen = t;
567                                 }
568                                 break;
569                         case 'a':
570                                 do_preserve_time = YES;
571                                 break;
572                         case 'A':
573                                 do_outfmt = TFC_OUTFMT_B64;
574                                 break;
575                         case 'W':
576                                 do_outfmt = TFC_OUTFMT_RAW;
577                                 break;
578                         case 'H':
579                                 do_outfmt = TFC_OUTFMT_HEX;
580                                 break;
581                         case 'q':
582                                 quiet = YES;
583                                 xexit_no_nl = YES;
584                                 verbose = NO;
585                                 do_full_hexdump = NO;
586                                 status_timer = 0;
587                                 break;
588                         case 'v':
589                                 verbose = YES;
590                                 break;
591                         case 'V':
592                                 td = strtod(optarg, &stoi);
593                                 status_timer = TFC_DTOUSECS(td);
594                                 if (status_timer <= TFC_DTOUSECS(0) || !str_empty(stoi)) status_timer = 0;
595                                 break;
596                         default:
597                                 usage();
598                                 break;
599                 }
600         }
601
602         if (!strcmp(progname, "tfbench")) {
603                 if (!*(argv+optind)) usage();
604
605                 td = strtod(*(argv+optind), &stoi);
606                 if (td <= TFC_DTOUSECS(0) || !str_empty(stoi))
607                         xerror(NO, YES, YES,
608                         "%s: invalid benchmark time in seconds", *(argv+optind));
609                 bench_timer = TFC_DTOUSECS(td);
610                 do_benchmark(bench_timer, td);
611         }
612         if (genrandom_nr_bytes) {
613                 ctr_mode = TFC_MODE_STREAM;
614                 do_edcrypt = TFC_DO_ENCRYPT;
615                 gen_write_bytes(*(argv+optind), oseek, genrandom_nr_bytes);
616         }
617         if (genzero_nr_bytes) {
618                 ctr_mode = TFC_MODE_PLAIN;
619                 do_edcrypt = TFC_DO_PLAIN;
620                 gen_write_bytes(*(argv+optind), oseek, genzero_nr_bytes);
621         }
622
623         if (rawkey && password)
624                 xerror(NO, YES, YES, "Cannot use rawkey and hashing password!");
625         if (do_edcrypt == TFC_DO_ENCRYPT && do_mac >= TFC_MAC_VRFY)
626                 xerror(NO, YES, YES, "Cannot encrypt and verify signature!");
627         if (do_edcrypt == TFC_DO_DECRYPT && do_mac == TFC_MAC_SIGN)
628                 xerror(NO, YES, YES, "Cannot decrypt and calculate signature!");
629         if (do_edcrypt == TFC_DO_DECRYPT && counter_opt == TFC_CTR_RAND)
630                 xerror(NO, YES, YES, "Cannot decrypt and embed a generated CTR into file!");
631         if (do_edcrypt == TFC_DO_ENCRYPT && counter_opt == TFC_CTR_HEAD)
632                 xerror(NO, YES, YES, "Cannot encrypt and read CTR from source!");
633         if (overwrite_source && counter_opt == TFC_CTR_RAND)
634                 xerror(NO, YES, YES, "Cannot embed a CTR into file when overwriting it!");
635         if (ctr_mode == TFC_MODE_PLAIN
636         && (do_edcrypt || do_mac || rawkey
637         || mackey_opt || counter_opt || counter_file))
638                 xerror(NO, YES, YES, "Encryption facility is disabled when in plain IO mode.");
639
640         errno = 0;
641         do_stop = NO;
642
643         if (saltf) {
644                 int saltfd;
645
646                 memset(tfc_salt, 0, TFC_MAX_SALT);
647                 tfc_saltsz = 0;
648                 if (!strcasecmp(saltf, "disable")) goto _nosalt;
649
650                 if (!strcmp(saltf, "-")) saltfd = 0;
651                 else saltfd = open(saltf, O_RDONLY | O_LARGEFILE);
652                 if (saltfd == -1) xerror(NO, NO, YES, "%s", saltf);
653                 lio = xread(saltfd, tfc_salt, TFC_MAX_SALT - TF_FROM_BITS(TFC_KEY_BITS));
654                 if (lio == NOSIZE) xerror(NO, NO, YES, "%s", saltf);
655                 tfc_saltsz = lio;
656                 xclose(saltfd);
657         }
658
659 _nosalt:
660         if (mackey_opt == TFC_MACKEY_FILE && mackeyf) {
661                 int mkfd = -1;
662                 tfc_yesno do_stop;
663
664                 if (!strcmp(mackeyf, "-")) mkfd = 0;
665                 else mkfd = open(mackeyf, O_RDONLY | O_LARGEFILE);
666                 if (mkfd == -1) xerror(NO, NO, YES, "%s", mackeyf);
667
668                 skein_init(&sk, TFC_KEY_BITS);
669
670                 do_stop = NO;
671                 while (1) {
672                         if (do_stop) break;
673                         pblk = tmpdata;
674                         ldone = 0;
675                         lrem = lblock = sizeof(tmpdata);
676                         if (error_action == TFC_ERRACT_SYNC) rdpos = tfc_fdgetpos(mkfd);
677 _mkragain:              lio = xread(mkfd, pblk, lrem);
678                         if (lio == 0 && do_stop == NO) do_stop = YES;
679                         if (lio != NOSIZE) ldone += lio;
680                         else {
681                                 if (errno != EIO && catch_all_errors != YES)
682                                         xerror(NO, NO, NO, "%s", mackeyf);
683                                 switch (error_action) {
684                                         case TFC_ERRACT_CONT: xerror(YES, NO, NO, "%s", mackeyf); goto _mkragain; break;
685                                         case TFC_ERRACT_SYNC:
686                                         case TFC_ERRACT_LSYNC:
687                                                 xerror(YES, NO, NO, "%s", mackeyf);
688                                                 lio = ldone = lrem = lblock;
689                                                 memset(tmpdata, 0, lio);
690                                                 if (rdpos == NOFSIZE) lseek(mkfd, lio, SEEK_CUR);
691                                                 else lseek(mkfd, rdpos + lio, SEEK_SET);
692                                                 break;
693                                         default: xerror(NO, NO, NO, "%s", mackeyf); break;
694                                 }
695                         }
696                         if (lio && lio < lrem) {
697                                 pblk += lio;
698                                 lrem -= lio;
699                                 goto _mkragain;
700                         }
701
702                         skein_update(&sk, tmpdata, ldone);
703                 }
704
705                 skein_final(mackey, &sk);
706
707                 xclose(mkfd);
708         }
709         else if (mackey_opt == TFC_MACKEY_PASSWORD) {
710                 memset(&getps, 0, sizeof(struct getpasswd_state));
711                 getps.fd = getps.efd = -1;
712                 getps.passwd = pwdask;
713                 getps.pwlen = sizeof(pwdask)-1;
714                 getps.echo = mac_pw_prompt ? mac_pw_prompt : "Enter MAC password: ";
715                 getps.charfilter = (show_secrets == YES) ? getps_plain_filter : getps_filter;
716                 getps.maskchar = (show_secrets == YES) ? 0 : 'x';
717                 getps.flags = GETP_WAITFILL;
718                 n = xgetpasswd(&getps);
719                 if (n == NOSIZE) xerror(NO, NO, YES, "getting MAC password");
720                 if (n == ((size_t)-2)) xexit(1);
721                 if (verbose) say_hint(pwdask, n, "MAC password hint");
722                 skein(mackey, TF_MAX_BITS, NULL, pwdask, n);
723         }
724
725         
726         if ((strlen(progname) <= 9)
727         && ((!strcmp(progname, "sksum"))
728         || ((!memcmp(progname, "sk", 2))
729         && (!memcmp(progname+3, "sum", 3)
730         || !memcmp(progname+4, "sum", 3)
731         || !memcmp(progname+5, "sum", 3)
732         || !memcmp(progname+6, "sum", 3)))))
733                 do_sksum(progname, argv+optind);
734         if (!strcmp(progname, "tfbase64")) do_edbase64(argv+optind);
735
736         idx = optind;
737
738         if (argv[idx]) {
739                 if (password || rawkey > TFC_RAWKEY_KEYFILE) goto _nokeyfd;
740                 if (!strcmp(argv[idx], "-")) kfd = 0;
741                 else kfd = open(argv[idx], O_RDONLY | O_LARGEFILE);
742                 if (kfd == -1) xerror(NO, NO, YES, "%s", argv[idx]);
743
744                 lio = strnlen(argv[idx], PATH_MAX);
745                 memset(argv[idx], '*', lio);
746
747                 idx++;
748         }
749         else password = YES;
750
751         errno = 0;
752         if (do_full_key == NO && tweakf) {
753                 int twfd;
754
755                 if (!strcmp(tweakf, "-")) twfd = 0;
756                 else twfd = open(tweakf, O_RDONLY | O_LARGEFILE);
757                 if (twfd == -1) xerror(NO, NO, YES, "%s", tweakf);
758                 lio = ldone = xread(twfd, tweak, TF_TWEAK_SIZE);
759                 if (lio == NOSIZE) xerror(NO, NO, YES, "%s", tweakf);
760                 if (ldone < TF_TWEAK_SIZE)
761                         xerror(NO, NO, YES, "%s: %zu bytes tweak required", tweakf, TF_TWEAK_SIZE);
762                 xclose(twfd);
763         }
764
765 _nokeyfd:
766         errno = 0;
767         if (argv[idx]) {
768                 if (!strcmp(argv[idx], "-") && kfd) sfd = 0;
769                 else {
770                         sfd = open(argv[idx], O_RDONLY | O_LARGEFILE);
771                         if (do_preserve_time) if (fstat(sfd, &s_stat) == -1)
772                                 xerror(YES, NO, YES, "stat(%s)", argv[idx]);
773                 }
774                 if (sfd == -1) xerror(NO, NO, YES, "%s", argv[idx]);
775
776                 if ((do_mac >= TFC_MAC_VRFY || do_mac == TFC_MAC_DROP) && !do_mac_file) {
777                         maxlen = tfc_fdsize(sfd);
778                         if (maxlen == NOFSIZE)
779                                 xerror(NO, YES, YES,
780                                 "Cannot verify embedded MAC with non-seekable source!");
781                         maxlen -= TF_FROM_BITS(macbits);
782                 }
783                 srcfname = argv[idx];
784                 idx++;
785         }
786
787         if (!do_mac_file && (do_mac >= TFC_MAC_VRFY && sfd == 0))
788                 xerror(NO, YES, YES, "Cannot verify embedded MAC with non-seekable source!");
789
790         if (ctrsz == NOSIZE) ctrsz = TF_BLOCK_SIZE;
791         if (ctrsz > TF_BLOCK_SIZE) ctrsz = TF_BLOCK_SIZE;
792
793         if (ctr_mode == TFC_MODE_ECB) goto _ctrskip1;
794         errno = 0;
795         if (counter_file) {
796                 int ctrfd;
797
798                 if (!strcmp(counter_file, "-")) ctrfd = 0;
799                 else ctrfd = open(counter_file, O_RDONLY | O_LARGEFILE);
800                 if (ctrfd == -1) xerror(NO, NO, YES, "%s", counter_file);
801                 lio = xread(ctrfd, ctr, ctrsz);
802                 if (lio == NOSIZE) xerror(NO, NO, YES, "%s", counter_file);
803                 if (lio < ctrsz) xerror(NO, YES, YES, "counter file is too small (%zu)!", lio);
804                 xclose(ctrfd);
805         }
806         else if (counter_opt == TFC_CTR_HEAD) {
807                 pblk = ctr;
808                 ldone = 0;
809                 lrem = lblock = ctrsz;
810                 if (error_action == TFC_ERRACT_SYNC) rdpos = tfc_fdgetpos(sfd);
811 _ctrragain:     lio = xread(sfd, pblk, lrem);
812                 if (lio != NOSIZE) ldone += lio;
813                 else {
814                         if (errno != EIO && catch_all_errors != YES)
815                                 xerror(NO, NO, NO, "%s", srcfname);
816                         switch (error_action) {
817                                 case TFC_ERRACT_CONT: xerror(YES, NO, NO, "%s", srcfname); goto _ctrragain; break;
818                                 case TFC_ERRACT_SYNC:
819                                 case TFC_ERRACT_LSYNC:
820                                         xerror(YES, NO, NO, "%s", srcfname);
821                                         lio = ldone = lrem = lblock;
822                                         memset(ctr, 0, lio);
823                                         if (rdpos == NOFSIZE) lseek(sfd, lio, SEEK_CUR);
824                                         else lseek(sfd, rdpos + lio, SEEK_SET);
825                                         break;
826                                 default: xerror(NO, NO, NO, "%s", srcfname); break;
827                         }
828                 }
829                 if (lio && lio < lrem) {
830                         pblk += lio;
831                         lrem -= lio;
832                         goto _ctrragain;
833                 }
834                 total_processed_src += ldone;
835         }
836
837 _ctrskip1:
838         if (iseek) {
839                 if (counter_opt == TFC_CTR_HEAD && ctr_mode != TFC_MODE_ECB)
840                         iseek += ctrsz;
841                 if (lseek(sfd, iseek, SEEK_SET) == -1)
842                         xerror(ignore_seek_errors, NO, NO, "%s: seek failed", srcfname);
843         }
844
845         if (ctr_mode == TFC_MODE_PLAIN) goto _plain;
846
847         if (verbose) tfc_esay("%s: hashing password", tfc_format_pid(progname));
848
849         if (rawkey == TFC_RAWKEY_KEYFILE) {
850                 tfc_yesno xtskeyset = NO;
851
852                 pblk = key;
853 _xts2key:       ldone = 0;
854                 lrem = lblock = TF_FROM_BITS(TFC_KEY_BITS);
855                 if (error_action == TFC_ERRACT_SYNC) rdpos = tfc_fdgetpos(kfd);
856 _keyragain:     lio = xread(kfd, pblk, lrem);
857                 if (lio != NOSIZE) ldone += lio;
858                 else {
859                         if (errno != EIO && catch_all_errors != YES)
860                                 xerror(NO, NO, NO, "reading key");
861                         switch (error_action) {
862                                 case TFC_ERRACT_CONT: xerror(YES, NO, NO, "reading key"); goto _keyragain; break;
863                                 case TFC_ERRACT_SYNC:
864                                 case TFC_ERRACT_LSYNC:
865                                         xerror(YES, NO, NO, "reading key");
866                                         lio = ldone = lrem = lblock;
867                                         memset(key, 0, lio);
868                                         if (rdpos == NOFSIZE) lseek(kfd, lio, SEEK_CUR);
869                                         else lseek(kfd, rdpos + lio, SEEK_SET);
870                                         break;
871                                 default: xerror(NO, NO, NO, "reading key"); break;
872                         }
873                 }
874                 if (lio && lio < lrem) {
875                         pblk += lio;
876                         lrem -= lio;
877                         goto _keyragain;
878                 }
879                 if (ldone < lblock) xerror(NO, YES, YES, "rawkey too small! (%zu)", ldone);
880
881                 if (ctr_mode == TFC_MODE_XTS) {
882                         if (xtskeyset == NO) {
883                                 pblk = xtskey;
884                                 xtskeyset = YES;
885                                 goto _xts2key;
886                         }
887                 }
888         }
889         else if (rawkey == TFC_RAWKEY_ASKSTR) {
890                 tfc_yesno xtskeyset = NO;
891
892                 pblk = key; n = sizeof(key);
893 _xts2keyaskstr: memset(&getps, 0, sizeof(struct getpasswd_state));
894                 getps.fd = getps.efd = -1;
895                 getps.passwd = (char *)pblk;
896                 getps.pwlen = n;
897                 getps.echo = pw_prompt ? pw_prompt : "Enter rawkey (str): ";
898                 getps.charfilter = (show_secrets == YES) ? getps_plain_filter : getps_filter;
899                 getps.maskchar = (show_secrets == YES) ? 0 : 'x';
900                 getps.flags = GETP_WAITFILL;
901                 n = xgetpasswd(&getps);
902                 if (n == NOSIZE) xerror(NO, NO, YES, "getting string rawkey");
903                 if (n == ((size_t)-2)) xexit(1);
904                 if (verbose) say_hint(pblk, n, "Raw string key hint");
905                 if (ctr_mode == TFC_MODE_XTS) {
906                         if (xtskeyset == NO) {
907                                 pblk = xtskey; n = sizeof(xtskey);
908                                 xtskeyset = YES;
909                                 goto _xts2keyaskstr;
910                         }
911                 }
912         }
913         else if (rawkey == TFC_RAWKEY_ASKHEX) {
914                 tfc_yesno xtskeyset = NO;
915
916                 pblk = key;
917 _rawkey_hex_again:
918                 memset(&getps, 0, sizeof(struct getpasswd_state));
919                 getps.fd = getps.efd = -1;
920                 getps.passwd = pwdask;
921                 getps.pwlen = (TF_FROM_BITS(TFC_KEY_BITS)*2);
922                 getps.echo = pw_prompt ? pw_prompt : "Enter rawkey (hex): ";
923                 getps.charfilter = (show_secrets == YES) ? getps_plain_hex_filter : getps_hex_filter;
924                 getps.maskchar = (show_secrets == YES) ? 0 : 'x';
925                 getps.flags = GETP_WAITFILL;
926                 n = xgetpasswd(&getps);
927                 if (n == NOSIZE) xerror(NO, NO, YES, "getting hex rawkey");
928                 if (n == ((size_t)-2)) xexit(1);
929                 if (n % 2) {
930                         tfc_esay("Please input even number of hex digits!");
931                         goto _rawkey_hex_again;
932                 }
933                 hex2bin(pblk, pwdask);
934                 memset(pwdask, 0, sizeof(pwdask));
935                 if (verbose) say_hint(pblk, n/2, "Raw hex key hint");
936                 if (ctr_mode == TFC_MODE_XTS) {
937                         if (xtskeyset == NO) {
938                                 pblk = xtskey;
939                                 xtskeyset = YES;
940                                 goto _rawkey_hex_again;
941                         }
942                 }
943         }
944         else if (password) {
945 _pwdagain:      memset(&getps, 0, sizeof(struct getpasswd_state));
946                 getps.fd = getps.efd = -1;
947                 getps.passwd = pwdask;
948                 getps.pwlen = sizeof(pwdask)-1;
949                 getps.echo = pw_prompt ? pw_prompt : "Enter password: ";
950                 getps.charfilter = (show_secrets == YES) ? getps_plain_filter : getps_filter;
951                 getps.maskchar = (show_secrets == YES) ? 0 : 'x';
952                 getps.flags = GETP_WAITFILL;
953                 n = xgetpasswd(&getps);
954                 if (n == NOSIZE) xerror(NO, NO, YES, "getting password");
955                 if (n == ((size_t)-2)) xexit(1);
956                 if (do_edcrypt == TFC_DO_ENCRYPT && no_repeat == NO) {
957                         getps.fd = getps.efd = -1;
958                         getps.passwd = pwdagain;
959                         getps.pwlen = sizeof(pwdagain)-1;
960                         getps.echo = "Enter it again: ";
961                         getps.flags = GETP_WAITFILL;
962                         n = xgetpasswd(&getps);
963                         if (n == NOSIZE) xerror(NO, NO, YES, "getting password again");
964                         if (n == ((size_t)-2)) xexit(1);
965                         if (strncmp(pwdask, pwdagain, sizeof(pwdagain)-1) != 0) {
966                                 tfc_esay("Passwords are different, try again");
967                                 goto _pwdagain;
968                         }
969                 }
970                 if (verbose) say_hint(pwdask, n, "Password hint");
971                 skein(key, TFC_KEY_BITS, mackey_opt ? mackey : NULL, pwdask, n);
972                 memset(pwdask, 0, sizeof(pwdask));
973                 memset(pwdagain, 0, sizeof(pwdagain));
974         }
975         else {
976                 if (skeinfd(key, TFC_KEY_BITS, mackey_opt ? mackey : NULL, kfd, keyoffset, maxkeylen) != YES)
977                         xerror(NO, NO, YES, "hashing key");
978         }
979
980         if (rawkey == NO) {
981                 if (tfc_saltsz > 0) {
982                         memcpy(tfc_salt+tfc_saltsz, key, TF_FROM_BITS(TFC_KEY_BITS));
983                         skein(key, TFC_KEY_BITS, mackey_opt ? mackey : NULL, tfc_salt, tfc_saltsz+TF_FROM_BITS(TFC_KEY_BITS));
984                 }
985                 if (nr_turns > 1) for (x = 0; x < nr_turns; x++)
986                         skein(key, TFC_KEY_BITS, mackey_opt ? mackey : NULL, key, TF_FROM_BITS(TFC_KEY_BITS));
987                 memset(tfc_salt, 0, TFC_MAX_SALT);
988         }
989
990         if (ctr_mode == TFC_MODE_XTS && rawkey == NO) {
991                 skein(xtskey, TF_NR_KEY_BITS, mackey_opt ? mackey : NULL, key, TF_FROM_BITS(TFC_KEY_BITS));
992         }
993
994         if (genkeyf) {
995                 int krfd;
996                 tfc_yesno xtskeyset = NO;
997
998                 pblk = key;
999                 if (!strcmp(genkeyf, "-")) krfd = 1;
1000                 else krfd = open(genkeyf, O_WRONLY | O_CREAT | O_LARGEFILE | write_flags, 0666);
1001                 if (krfd == -1) xerror(NO, NO, YES, "%s", genkeyf);
1002 _xts2genkey:    if (xwrite(krfd, pblk, TF_FROM_BITS(TFC_KEY_BITS)) == NOSIZE) xerror(NO, NO, YES, "%s", genkeyf);
1003                 if (do_fsync && fsync(krfd) == -1) xerror(NO, NO, YES, "%s", genkeyf);
1004                 if (verbose && xtskeyset == NO) {
1005                         tfc_esay("%s: password hashing done", tfc_format_pid(progname));
1006                         tfc_esay("%s: rawkey written to %s.", tfc_format_pid(progname), genkeyf);
1007                         tfc_esay("%s: Have a nice day!", tfc_format_pid(progname));
1008                 }
1009
1010                 if (ctr_mode == TFC_MODE_XTS) {
1011                         if (xtskeyset == NO) {
1012                                 pblk = xtskey;
1013                                 xtskeyset = YES;
1014                                 goto _xts2genkey;
1015                         }
1016                 }
1017
1018                 fchmod(krfd, 0600);
1019                 xclose(krfd);
1020                 xexit(0);
1021         }
1022
1023         if (do_mac != NO) {
1024                 if (mackey_opt == TFC_MACKEY_RAWKEY) skein(mackey, TF_MAX_BITS, key, key, TF_FROM_BITS(TFC_KEY_BITS));
1025                 if (ctr_mode < TFC_MODE_OCB) {
1026                         if (verbose) tfc_esay("%s: doing MAC calculation, processing speed "
1027                                 "will be slower.", tfc_format_pid(progname));
1028                         if (mackey_opt) skein_init_key(&sk, mackey, macbits);
1029                         else skein_init(&sk, macbits);
1030                 }
1031         }
1032
1033         if (!counter_file && counter_opt <= TFC_CTR_SHOW && ctr_mode != TFC_MODE_ECB) {
1034                 skein(ctr, TF_TO_BITS(ctrsz), mackey_opt ? mackey : NULL, key, TF_FROM_BITS(TFC_KEY_BITS));
1035         }
1036
1037         tf_convkey(key);
1038         if (ctr_mode == TFC_MODE_XTS) tf_convkey(xtskey);
1039         if (do_full_key == NO) {
1040                 if (!tweakf) skein(tweak, TF_NR_TWEAK_BITS, NULL, key, TF_FROM_BITS(TFC_KEY_BITS));
1041                 tf_tweak_set(key, tweak);
1042         }
1043         if (ctr_mode == TFC_MODE_ECB) goto _ctrskip2;
1044
1045         if (counter_opt == TFC_CTR_ZERO) memset(ctr, 0, ctrsz);
1046
1047         tfc_data_to_words64(&iseek_blocks, sizeof(iseek_blocks));
1048         tf_ctr_set(ctr, &iseek_blocks, sizeof(iseek_blocks));
1049         if (do_mac == TFC_MAC_JUST_VRFY2) memcpy(svctr, ctr, TF_BLOCK_SIZE);
1050
1051         if (counter_opt == TFC_CTR_SHOW) {
1052                 switch (do_outfmt) {
1053                         case TFC_OUTFMT_B64: tfc_printbase64(stderr, ctr, ctrsz, YES); break;
1054                         case TFC_OUTFMT_RAW: xwrite(2, ctr, ctrsz); break;
1055                         case TFC_OUTFMT_HEX: mehexdump(ctr, ctrsz, ctrsz, YES); break;
1056                 }
1057         }
1058         else if (counter_opt == TFC_CTR_RAND) tfc_getrandom(ctr, ctrsz);
1059
1060 _ctrskip2:
1061         if (kfd != -1) {
1062                 xclose(kfd);
1063                 kfd = -1;
1064         }
1065         if (verbose) tfc_esay("%s: password hashing done", tfc_format_pid(progname));
1066
1067         if (overwrite_source && srcfname) argv[idx] = srcfname;
1068
1069 _plain:
1070         if (argv[idx]) {
1071                 if (!strcmp(argv[idx], "-")) dfd = 1;
1072                 else dfd = open(argv[idx], O_RDWR | O_LARGEFILE | write_flags, 0666);
1073                 if (dfd == -1) {
1074                         dfd = open(argv[idx], O_WRONLY | O_CREAT | O_LARGEFILE | write_flags, 0666);
1075                         if (dfd == -1) xerror(NO, NO, YES, "%s", argv[idx]);
1076                 }
1077                 dstfname = argv[idx];
1078                 idx++;
1079         }
1080
1081         if (oseek) {
1082                 if (lseek(dfd, oseek, SEEK_SET) == -1)
1083                         xerror(ignore_seek_errors, NO, NO, "%s: seek failed", dstfname);
1084         }
1085
1086         for (x = 1; x < NSIG; x++) signal(x, SIG_IGN);
1087         memset(&sigact, 0, sizeof(sigact));
1088         sigact.sa_flags = SA_RESTART;
1089         sigact.sa_handler = print_crypt_status;
1090         sigaction(SIGUSR1, &sigact, NULL);
1091         sigaction(SIGALRM, &sigact, NULL);
1092         if (status_timer) setup_next_alarm(status_timer > 1000000 ? 1000000 : status_timer);
1093         sigact.sa_handler = change_status_width;
1094         sigaction(SIGQUIT, &sigact, NULL);
1095         sigact.sa_handler = change_status_timer;
1096         sigaction(SIGUSR2, &sigact, NULL);
1097         if (quiet == NO) {
1098                 sigact.sa_handler = print_crypt_status;
1099                 sigaction(SIGINT, &sigact, NULL);
1100                 sigaction(SIGTERM, &sigact, NULL);
1101                 sigaction(SIGTSTP, &sigact, NULL);
1102         }
1103         else {
1104                 sigact.sa_handler = exit_sigterm;
1105                 sigaction(SIGINT, &sigact, NULL);
1106                 sigaction(SIGTERM, &sigact, NULL);
1107                 sigact.sa_handler = handle_sigtstp;
1108                 sigaction(SIGTSTP, &sigact, NULL);
1109         }
1110         memset(&sigact, 0, sizeof(struct sigaction));
1111
1112         tfc_getcurtime(&delta_time);
1113
1114         errno = 0;
1115         if (counter_opt == TFC_CTR_RAND && ctr_mode != TFC_MODE_ECB) {
1116                 pblk = ctr;
1117                 lio = lrem = ctrsz;
1118                 ldone = 0;
1119 _ctrwagain:     lio = xwrite(dfd, pblk, lrem);
1120                 if (lio != NOSIZE) ldone += lio;
1121                 else xerror(NO, NO, NO, "%s", dstfname);
1122                 if (do_fsync && fsync(dfd) == -1) xerror(NO, NO, NO, "%s", dstfname);
1123                 if (lio < lrem) {
1124                         pblk += lio;
1125                         lrem -= lio;
1126                         goto _ctrwagain;
1127                 }
1128                 total_processed_dst += ldone;
1129                 delta_processed += ldone;
1130         }
1131
1132         if (ctr_mode == TFC_MODE_STREAM) tfe_init_iv(&tfe, key, ctr);
1133
1134         if (do_mac == TFC_MAC_JUST_VRFY2) {
1135                 rwd = tfc_fdgetpos(sfd);
1136                 if (rwd == NOFSIZE) {
1137                         tfc_esay("%s: WARNING: input is not seekable, disabling MAC testing mode", tfc_format_pid(progname));
1138                         do_mac = TFC_MAC_VRFY;
1139                 }
1140                 goto _nodecrypt_again_vrfy2;
1141
1142 _decrypt_again_vrfy2:
1143                 if (lseek(sfd, (off_t)rwd, SEEK_SET) == ((off_t)-1)) {
1144                         xerror(ignore_seek_errors, NO, YES, "MAC testing seek failed");
1145                 }
1146                 total_processed_src = rwd;
1147                 memcpy(ctr, svctr, TF_BLOCK_SIZE);
1148                 memset(svctr, 0, TF_BLOCK_SIZE);
1149         }
1150
1151 _nodecrypt_again_vrfy2:
1152         loopcnt = 1;
1153         errno = 0;
1154         do_stop = NO;
1155         while (1) {
1156                 if (do_stop) break;
1157                 pblk = srcblk;
1158                 ldone = 0;
1159                 lrem = lblock = blk_len_adj(maxlen, total_processed_src, blksize);
1160                 if (error_action == TFC_ERRACT_SYNC) rdpos = tfc_fdgetpos(sfd);
1161 _ragain:        lio = xread(sfd, pblk, lrem);
1162                 if (lio == 0) {
1163                         if ((do_read_loops != 0 && sfd != 0) && (loopcnt < do_read_loops)) {
1164                                 lseek(sfd, 0L, SEEK_SET);
1165                                 loopcnt++;
1166                                 goto _ragain;
1167                         }
1168
1169                         do_stop = YES;
1170                 }
1171                 if (lio != NOSIZE) ldone += lio;
1172                 else {
1173                         if (errno != EIO && catch_all_errors != YES)
1174                                 xerror(NO, NO, NO, "%s", srcfname);
1175                         switch (error_action) {
1176                                 case TFC_ERRACT_CONT: xerror(YES, NO, NO, "%s", srcfname); goto _ragain; break;
1177                                 case TFC_ERRACT_SYNC:
1178                                 case TFC_ERRACT_LSYNC:
1179                                         xerror(YES, NO, NO, "%s", srcfname);
1180                                         lio = ldone = lrem = lblock;
1181                                         memset(srcblk, 0, lio);
1182                                         if (rdpos == NOFSIZE) lseek(sfd, lio, SEEK_CUR);
1183                                         else lseek(sfd, rdpos + lio, SEEK_SET);
1184                                         break;
1185                                 default: xerror(NO, NO, NO, "%s", srcfname); break;
1186                         }
1187                 }
1188                 if (lio && lio < lrem) {
1189                         pblk += lio;
1190                         lrem -= lio;
1191                         goto _ragain;
1192                 }
1193                 total_processed_src += ldone;
1194
1195                 if (do_pad && (ldone % TF_BLOCK_SIZE)) {
1196                         size_t orig = ldone;
1197                         ldone += (TF_BLOCK_SIZE - (ldone % TF_BLOCK_SIZE));
1198                         if (ldone > blksize) ldone = blksize;
1199                         memset(srcblk+orig, 0, sizeof(srcblk)-orig);
1200                 }
1201
1202                 if (do_mac == TFC_MAC_SIGN && ctr_mode < TFC_MODE_OCB)
1203                         skein_update(&sk, srcblk, ldone);
1204
1205                 if (ctr_mode == TFC_MODE_CTR) tf_ctr_crypt(key, ctr, dstblk, srcblk, ldone);
1206                 else if (ctr_mode == TFC_MODE_STREAM) tf_stream_crypt(&tfe, dstblk, srcblk, ldone);
1207                 else if (ctr_mode == TFC_MODE_XTS && do_edcrypt == TFC_DO_ENCRYPT)
1208                         tf_xts_encrypt(key, xtskey, ctr, dstblk, srcblk, ldone, xtsblocks);
1209                 else if (ctr_mode == TFC_MODE_XTS && do_edcrypt == TFC_DO_DECRYPT)
1210                         tf_xts_decrypt(key, xtskey, ctr, dstblk, srcblk, ldone, xtsblocks);
1211                 else if (ctr_mode == TFC_MODE_ECB && do_edcrypt == TFC_DO_ENCRYPT)
1212                         tf_ecb_encrypt(key, dstblk, srcblk, ldone);
1213                 else if (ctr_mode == TFC_MODE_ECB && do_edcrypt == TFC_DO_DECRYPT)
1214                         tf_ecb_decrypt(key, dstblk, srcblk, ldone);
1215                 else if (ctr_mode == TFC_MODE_CBC && do_edcrypt == TFC_DO_ENCRYPT)
1216                         tf_cbc_encrypt(key, ctr, dstblk, srcblk, ldone);
1217                 else if (ctr_mode == TFC_MODE_CBC && do_edcrypt == TFC_DO_DECRYPT)
1218                         tf_cbc_decrypt(key, ctr, dstblk, srcblk, ldone);
1219
1220                 else if (ctr_mode == TFC_MODE_OCB && do_edcrypt == TFC_DO_ENCRYPT)
1221                         tf_ocb_encrypt(key, ctr, dstblk, do_mac == TFC_MAC_SIGN ? macresult : NULL, srcblk, ldone, xtsblocks);
1222                 else if (ctr_mode == TFC_MODE_OCB && do_edcrypt == TFC_DO_DECRYPT)
1223                         tf_ocb_decrypt(key, ctr, dstblk, do_mac >= TFC_MAC_VRFY ? macresult : NULL, srcblk, ldone, xtsblocks);
1224
1225                 else if (ctr_mode == TFC_MODE_PLAIN)
1226                         memcpy(dstblk, srcblk, ldone);
1227
1228                 if (do_mac >= TFC_MAC_VRFY && ctr_mode < TFC_MODE_OCB)
1229                         skein_update(&sk, dstblk, ldone);
1230                 if (do_mac >= TFC_MAC_JUST_VRFY) goto _nowrite;
1231
1232                 pblk = dstblk;
1233                 lrem = ldone;
1234                 ldone = 0;
1235 _wagain:        lio = xwrite(dfd, pblk, lrem);
1236                 if (lio != NOSIZE) ldone += lio;
1237                 else xerror(NO, NO, NO, "%s", dstfname);
1238                 if (do_fsync && fsync(dfd) == -1) xerror(NO, NO, NO, "%s", dstfname);
1239                 if (lio < lrem) {
1240                         pblk += lio;
1241                         lrem -= lio;
1242                         goto _wagain;
1243                 }
1244                 total_written_dst += ldone;
1245 _nowrite:       total_processed_dst += ldone;
1246                 delta_processed += ldone;
1247
1248                 if (maxlen != NOFSIZE && total_processed_src >= maxlen) {
1249                         do_stop = YES;
1250                         break;
1251                 }
1252         }
1253
1254         errno = 0;
1255         if (do_mac >= TFC_MAC_VRFY) {
1256                 if (!do_mac_file) {
1257                         pblk = macvrfy;
1258                         ldone = 0;
1259                         lrem = lblock = TF_FROM_BITS(macbits);
1260                         if (error_action == TFC_ERRACT_SYNC) rdpos = tfc_fdgetpos(sfd);
1261 _macragain:             lio = xread(sfd, pblk, lrem);
1262                         if (lio != NOSIZE) ldone += lio;
1263                         else {
1264                                 if (errno != EIO && catch_all_errors != YES)
1265                                         xerror(NO, NO, NO, "%s", srcfname);
1266                                 switch (error_action) {
1267                                         case TFC_ERRACT_CONT: xerror(YES, NO, NO, "%s", srcfname); goto _macragain; break;
1268                                         case TFC_ERRACT_SYNC:
1269                                         case TFC_ERRACT_LSYNC:
1270                                                 xerror(YES, NO, NO, "%s", srcfname);
1271                                                 lio = ldone = lrem = lblock;
1272                                                 memset(macvrfy, 0, lio);
1273                                                 if (rdpos == NOFSIZE) lseek(sfd, lio, SEEK_CUR);
1274                                                 else lseek(sfd, rdpos + lio, SEEK_SET);
1275                                                 break;
1276                                         default: xerror(NO, NO, NO, "%s", srcfname); break;
1277                                 }
1278                         }
1279                         if (lio && lio < lrem) {
1280                                 pblk += lio;
1281                                 lrem -= lio;
1282                                 goto _macragain;
1283                         }
1284                         total_processed_src += ldone;
1285                 }
1286                 else {
1287                         int mfd;
1288
1289                         if (!strcmp(do_mac_file, "-")) mfd = 0;
1290                         else mfd = open(do_mac_file, O_RDONLY | O_LARGEFILE);
1291                         if (mfd == -1) xerror(YES, NO, NO, "%s", do_mac_file);
1292                         lio = ldone = xread(mfd, tmpdata, sizeof(tmpdata));
1293                         if (lio == NOSIZE) xerror(NO, NO, YES, "%s", do_mac_file);
1294                         if (!memcmp(tmpdata, TFC_ASCII_TFC_MAC_FOURCC, TFC_ASCII_TFC_MAC_FOURCC_LEN)) {
1295                                 memmove(tmpdata, tmpdata+TFC_ASCII_TFC_MAC_FOURCC_LEN,
1296                                         sizeof(tmpdata)-TFC_ASCII_TFC_MAC_FOURCC_LEN);
1297                                 lio = TF_FROM_BITS(macbits);
1298                                 base64_decode((char *)macvrfy, lio, (char *)tmpdata, sizeof(tmpdata));
1299                         }
1300                         else memcpy(macvrfy, tmpdata, TF_FROM_BITS(macbits));
1301                         xclose(mfd);
1302                 }
1303
1304                 if (ldone < TF_FROM_BITS(macbits)) {
1305                         if (quiet == NO) tfc_esay("%s: short signature (%zu), "
1306                                 "not verifying", tfc_format_pid(progname), ldone);
1307                         exitcode = 1;
1308                         goto _shortmac;
1309                 }
1310
1311                 if (ctr_mode < TFC_MODE_OCB) skein_final(macresult, &sk);
1312                 else skein(macresult, macbits, mackey, macresult, TF_FROM_BITS(macbits));
1313
1314                 if (ctr_mode == TFC_MODE_CTR) tf_ctr_crypt(key, ctr, tmpdata, macvrfy, TF_FROM_BITS(macbits));
1315                 else if (ctr_mode == TFC_MODE_STREAM) tf_stream_crypt(&tfe, tmpdata, macvrfy, TF_FROM_BITS(macbits));
1316                 else if (ctr_mode == TFC_MODE_XTS) tf_xts_decrypt(key, xtskey, ctr, tmpdata, macvrfy, TF_FROM_BITS(macbits), xtsblocks);
1317                 else if (ctr_mode == TFC_MODE_ECB) tf_ecb_decrypt(key, tmpdata, macvrfy, TF_FROM_BITS(macbits));
1318                 else if (ctr_mode == TFC_MODE_CBC) tf_cbc_decrypt(key, ctr, tmpdata, macvrfy, TF_FROM_BITS(macbits));
1319                 else if (ctr_mode == TFC_MODE_OCB) tf_ocb_decrypt(key, ctr, tmpdata, NULL, macvrfy, TF_FROM_BITS(macbits), xtsblocks);
1320
1321                 if (!memcmp(tmpdata, macresult, TF_FROM_BITS(macbits))) {
1322                         if (quiet == NO) {
1323                                 tfc_esay("%s: signature is good", tfc_format_pid(progname));
1324                                 if (verbose) {
1325                                         if (do_outfmt == TFC_OUTFMT_B64) tfc_printbase64(stderr, macresult, TF_FROM_BITS(macbits), YES);
1326                                         else mehexdump(macresult, TF_FROM_BITS(macbits), TF_FROM_BITS(macbits), YES);
1327                                 }
1328                         }
1329                         if (do_mac == TFC_MAC_JUST_VRFY2) {
1330                                 if (verbose) tfc_esay("%s: -u: MAC signature is valid, proceeding with decrypting it again", tfc_format_pid(progname));
1331                                 do_mac = TFC_MAC_DROP;
1332                                 goto _decrypt_again_vrfy2;
1333                         }
1334                 }
1335                 else {
1336                         if (quiet == NO) {
1337                                 tfc_esay("%s: signature is BAD: "
1338                                 "wrong password, key, mode, or file is not signed", tfc_format_pid(progname));
1339                                 if (do_mac == TFC_MAC_JUST_VRFY2) tfc_esay("%s: -u: MAC signature is invalid, not decrypting it again", tfc_format_pid(progname));
1340                         }
1341                         exitcode = 1;
1342                 }
1343
1344 _shortmac:      memset(macvrfy, 0, sizeof(macvrfy));
1345                 memset(macresult, 0, sizeof(macresult));
1346                 memset(tmpdata, 0, sizeof(tmpdata));
1347         }
1348
1349         else if (do_mac == TFC_MAC_SIGN) {
1350                 if (ctr_mode < TFC_MODE_OCB) skein_final(macresult, &sk);
1351                 else skein(macresult, macbits, mackey, macresult, TF_FROM_BITS(macbits));
1352
1353                 if (ctr_mode == TFC_MODE_CTR) tf_ctr_crypt(key, ctr, tmpdata, macresult, TF_FROM_BITS(macbits));
1354                 else if (ctr_mode == TFC_MODE_STREAM) tf_stream_crypt(&tfe, tmpdata, macresult, TF_FROM_BITS(macbits));
1355                 else if (ctr_mode == TFC_MODE_XTS) tf_xts_encrypt(key, xtskey, ctr, tmpdata, macresult, TF_FROM_BITS(macbits), xtsblocks);
1356                 else if (ctr_mode == TFC_MODE_ECB) tf_ecb_encrypt(key, tmpdata, macresult, TF_FROM_BITS(macbits));
1357                 else if (ctr_mode == TFC_MODE_CBC) tf_cbc_encrypt(key, ctr, tmpdata, macresult, TF_FROM_BITS(macbits));
1358                 else if (ctr_mode == TFC_MODE_OCB) tf_ocb_encrypt(key, ctr, tmpdata, NULL, macresult, TF_FROM_BITS(macbits), xtsblocks);
1359                 memset(macresult, 0, sizeof(macresult));
1360
1361                 if (!do_mac_file) {
1362                         pblk = tmpdata;
1363                         lio = lrem = TF_FROM_BITS(macbits);
1364                         ldone = 0;
1365 _macwagain:             lio = xwrite(dfd, pblk, lrem);
1366                         if (lio != NOSIZE) ldone += lio;
1367                         else xerror(NO, NO, NO, "%s", dstfname);
1368                         if (do_fsync && fsync(dfd) == -1) xerror(NO, NO, NO, "%s", dstfname);
1369                         if (lio < lrem) {
1370                                 pblk += lio;
1371                                 lrem -= lio;
1372                                 goto _macwagain;
1373                         }
1374                         total_processed_dst += ldone;
1375                         delta_processed += ldone;
1376                 }
1377                 else {
1378                         int mfd;
1379
1380                         if (!strcmp(do_mac_file, "-")) mfd = 1;
1381                         else mfd = open(do_mac_file, O_WRONLY | O_CREAT | O_LARGEFILE | write_flags, 0666);
1382                         if (mfd == -1) xerror(YES, NO, NO, "%s", do_mac_file);
1383                         if (do_outfmt == TFC_OUTFMT_B64) {
1384                                 memcpy(macvrfy, tmpdata, TF_FROM_BITS(macbits));
1385                                 memset(tmpdata, 0, TFC_TMPSIZE);
1386                                 memcpy(tmpdata, TFC_ASCII_TFC_MAC_FOURCC, TFC_ASCII_TFC_MAC_FOURCC_LEN);
1387                                 base64_encode((char *)tmpdata+TFC_ASCII_TFC_MAC_FOURCC_LEN, (char *)macvrfy, TF_FROM_BITS(macbits));
1388                                 lrem = strnlen((char *)tmpdata, sizeof(tmpdata));
1389                                 if (lrem) {
1390                                         tmpdata[lrem] = '\n';
1391                                         lrem++;
1392                                 }
1393                                 lio = xwrite(mfd, tmpdata, lrem);
1394                         }
1395                         else lio = xwrite(mfd, tmpdata, TF_FROM_BITS(macbits));
1396                         if (lio == NOSIZE) xerror(NO, NO, YES, "%s", do_mac_file);
1397                         if (do_fsync && fsync(mfd) == -1) xerror(NO, NO, YES, "%s", do_mac_file);
1398                         xclose(mfd);
1399                 }
1400
1401                 memset(macvrfy, 0, sizeof(macvrfy));
1402                 memset(macresult, 0, sizeof(macresult));
1403                 memset(tmpdata, 0, sizeof(tmpdata));
1404         }
1405
1406         if (verbose || status_timer || (do_stop == YES && quiet == NO)) print_crypt_status(0);
1407
1408         xexit(exitcode);
1409         return -1;
1410 }