tfcrypt: fixing hash output stream.
[tfcrypt.git] / tfc_misc.c
1 /*
2  * tfcrypt -- high security Threefish encryption tool.
3  *
4  * tfcrypt is copyrighted:
5  * Copyright (C) 2012-2018 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 size_t blk_len_adj(tfc_fsize filelen, tfc_fsize read_already, size_t blklen)
32 {
33         if (filelen == NOFSIZE) return blklen;
34         return ((filelen - read_already) >= blklen) ? blklen : (filelen - read_already);
35 }
36
37 tfc_yesno xor_shrink(void *dst, size_t szdst, const void *src, size_t szsrc)
38 {
39         unsigned char *udst = dst;
40         const unsigned char *usrc = src;
41         size_t x, y;
42
43         if ((szsrc % szdst) != 0) return NO;
44         if (szdst >= szsrc) {
45                 if (szdst == szsrc) {
46                         memmove(dst, src, szsrc);
47                         return YES;
48                 }
49                 return NO;
50         }
51
52         memset(dst, 0, szdst);
53         for (x = 0; x < (szsrc / szdst); x++) {
54                 for (y = 0; y < szdst; y++) udst[y] ^= usrc[(x*szdst)+y];
55         }
56
57         return YES;
58 }
59
60 tfc_yesno str_empty(const char *str)
61 {
62         if (!*str) return YES;
63         return NO;
64 }
65
66 void xclose(int fd)
67 {
68         if (fd < 3) return;
69         if (close(fd) == -1) xerror(YES, NO, NO, "close(%d)", fd);
70 }
71
72 const char *tfc_modename(int mode)
73 {
74         switch (mode) {
75                 case TFC_MODE_CTR: return "CTR";
76                 case TFC_MODE_STREAM: return "STREAM";
77                 case TFC_MODE_XTS: return "XTS";
78                 case TFC_MODE_ECB: return "ECB";
79                 case TFC_MODE_CBC: return "CBC";
80                 case TFC_MODE_OCB: return "OCB";
81         }
82
83         return NULL;
84 }
85
86 void tfc_getcurtime(tfc_useconds *tx)
87 {
88         struct timeval t;
89         memset(&t, 0, sizeof(t));
90
91         gettimeofday(&t, NULL);
92         *tx = t.tv_sec * 1000000 + t.tv_usec;
93
94         memset(&t, 0, sizeof(t));
95 }
96
97 tfc_fsize tfc_fdsize(int fd)
98 {
99         off_t l, cur;
100
101         cur = lseek(fd, 0L, SEEK_CUR);
102         l = lseek(fd, 0L, SEEK_SET);
103         if (l == -1) return -1;
104         l = lseek(fd, 0L, SEEK_END);
105         if (l == -1) return -1;
106         lseek(fd, cur, SEEK_SET);
107
108         return (tfc_fsize)l;
109 }
110
111 tfc_fsize tfc_fnamesize(char *fname, tfc_yesno noexit)
112 {
113         int fnmfd;
114         tfc_fsize ret;
115         char *s, T[2];
116
117         if (!fname) return 0;
118
119         s = strchr(fname, ':');
120         if (s && s[1] && (s[1] == '+' || s[1] == '-' || s[1] == '*' || s[1] == '/')) {
121                 memcpy(T, s, 2);
122                 memset(s, 0, 2);
123         }
124
125         fnmfd = open(fname, O_RDONLY);
126         if (s) memcpy(s, T, 2);
127         if (fnmfd == -1) {
128                 xerror(noexit, NO, YES, "%s", fname);
129                 return NOFSIZE;
130         }
131         ret = tfc_fdsize(fnmfd);
132         if (ret == NOFSIZE) {
133                 xerror(noexit, NO, YES, "%s: not a seekable file", fname);
134                 return ret;
135         }
136         xclose(fnmfd);
137
138         return ret;
139 }
140
141 tfc_fsize tfc_modifysize(tfc_fsize szmodify, const char *szspec)
142 {
143         tfc_fsize t;
144         const char *s;
145         char *stoi, c;
146
147         if (szmodify == NOFSIZE) return NOFSIZE;
148         if (!szspec) return szmodify;
149         s = szspec;
150
151         if (*s != ':') return szmodify;
152         s++;
153         if (!(*s == '+' || *s == '-' || *s == '*' || *s == '/')) return szmodify;
154         c = *s;
155         s++;
156         if (strchr(s, '/') || strchr(s, '.')) return szmodify;
157
158         t = tfc_humanfsize(s, &stoi);
159         if (!str_empty(stoi)) return szmodify;
160
161         switch (c) {
162                 case '+': szmodify += t; break;
163                 case '-': szmodify -= t; break;
164                 case '*': szmodify *= t; break;
165                 case '/': szmodify /= t; break;
166                 default: break;
167         }
168
169         return szmodify;
170 }
171
172 void fcopy_matime(int fd, const struct stat *st)
173 {
174         struct timeval times[2];
175
176         times[1].tv_sec = times[0].tv_sec = st->st_mtime;
177         times[1].tv_usec = times[0].tv_usec = 0;
178         if (futimes(fd, times) == -1) xerror(YES, NO, YES, "futimes(%d)", fd);
179 }
180
181 static void char_to_nul(char *s, size_t l, int c)
182 {
183         while (*s && l) { if (*s == c) { *s = 0; break; } s++; l--; }
184 }
185
186 tfc_yesno xfgets(char *s, size_t n, FILE *f)
187 {
188         memset(s, 0, n);
189
190         if (fgets(s, (int)n, f) == s) {
191                 char_to_nul(s, n, '\n');
192                 return YES;
193         }
194
195         return NO;
196 }
197
198 tfc_yesno isbase64(const char *s)
199 {
200         while (*s) {
201                 if (*s >= 'g' && *s <= 'z') return YES;
202                 if (*s >= 'G' && *s <= 'Z') return YES;
203                 if (*s == '+' || *s == '/' || *s == '=') return YES;
204                 s++;
205         }
206         return NO;
207 }
208
209 static int chrbin(char x)
210 {
211         if (x >= '0' && x <= '9')
212                 return x - '0';
213         if (x >= 'A' && x <= 'F')
214                 return x - 'A' + 10;
215         if (x >= 'a' && x <= 'f')
216                 return x - 'a' + 10;
217         return 0;
218 }
219
220 void hex2bin(void *d, const char *s)
221 {
222         const char *S = s;
223         char *D = d;
224         int x = 0;
225
226         while (*s) {
227                 if ((s-S) % 2) {
228                         x = (x << 4) ^ chrbin(*s);
229                         *D = x; D++;
230                 }
231                 else x = chrbin(*s);
232                 s++;
233         }
234 }