ctr_add: replace dead with working code.
[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 NOFSIZE;
104         l = lseek(fd, 0L, SEEK_END);
105         if (l == -1) return NOFSIZE;
106         lseek(fd, cur, SEEK_SET);
107
108         return (tfc_fsize)l;
109 }
110
111 tfc_fsize tfc_fdgetpos(int fd)
112 {
113         off_t t;
114
115         t = lseek(fd, 0L, SEEK_CUR);
116         if (t == -1) return NOFSIZE;
117         return (tfc_fsize)t;
118 }
119
120 tfc_fsize tfc_fnamesize(char *fname, tfc_yesno noexit)
121 {
122         int fnmfd;
123         tfc_fsize ret;
124         char *s, T[2];
125
126         if (!fname) return 0;
127
128         s = strchr(fname, ':');
129         if (s && s[1] && (s[1] == '+' || s[1] == '-' || s[1] == '*' || s[1] == '/')) {
130                 memcpy(T, s, 2);
131                 memset(s, 0, 2);
132         }
133
134         fnmfd = open(fname, O_RDONLY);
135         if (s) memcpy(s, T, 2);
136         if (fnmfd == -1) {
137                 xerror(noexit, NO, YES, "%s", fname);
138                 return NOFSIZE;
139         }
140         ret = tfc_fdsize(fnmfd);
141         if (ret == NOFSIZE) {
142                 xerror(noexit, NO, YES, "%s: not a seekable file", fname);
143                 return ret;
144         }
145         xclose(fnmfd);
146
147         return ret;
148 }
149
150 tfc_fsize tfc_modifysize(tfc_fsize szmodify, const char *szspec)
151 {
152         tfc_fsize t;
153         const char *s;
154         char *stoi, c;
155
156         if (szmodify == NOFSIZE) return NOFSIZE;
157         if (!szspec) return szmodify;
158         s = szspec;
159
160         if (*s != ':') return szmodify;
161         s++;
162         if (!(*s == '+' || *s == '-' || *s == '*' || *s == '/')) return szmodify;
163         c = *s;
164         s++;
165         if (strchr(s, '/') || strchr(s, '.')) return szmodify;
166
167         t = tfc_humanfsize(s, &stoi);
168         if (!str_empty(stoi)) return szmodify;
169
170         switch (c) {
171                 case '+': szmodify += t; break;
172                 case '-': szmodify -= t; break;
173                 case '*': szmodify *= t; break;
174                 case '/': szmodify /= t; break;
175                 default: break;
176         }
177
178         return szmodify;
179 }
180
181 void fcopy_matime(int fd, const struct stat *st)
182 {
183         struct timeval times[2];
184
185         times[1].tv_sec = times[0].tv_sec = st->st_mtime;
186         times[1].tv_usec = times[0].tv_usec = 0;
187         if (futimes(fd, times) == -1) xerror(YES, NO, YES, "futimes(%d)", fd);
188 }
189
190 static void char_to_nul(char *s, size_t l, int c)
191 {
192         while (*s && l) { if (*s == c) { *s = 0; break; } s++; l--; }
193 }
194
195 tfc_yesno xfgets(char *s, size_t n, FILE *f)
196 {
197         memset(s, 0, n);
198
199         if (fgets(s, (int)n, f) == s) {
200                 char_to_nul(s, n, '\n');
201                 return YES;
202         }
203
204         return NO;
205 }
206
207 tfc_yesno isbase64(const char *s)
208 {
209         while (*s) {
210                 if (*s >= 'g' && *s <= 'z') return YES;
211                 if (*s >= 'G' && *s <= 'Z') return YES;
212                 if (*s == '+' || *s == '/' || *s == '=') return YES;
213                 s++;
214         }
215         return NO;
216 }
217
218 static int chrbin(char x)
219 {
220         if (x >= '0' && x <= '9')
221                 return x - '0';
222         if (x >= 'A' && x <= 'F')
223                 return x - 'A' + 10;
224         if (x >= 'a' && x <= 'f')
225                 return x - 'a' + 10;
226         return 0;
227 }
228
229 void hex2bin(void *d, const char *s)
230 {
231         const char *S = s;
232         char *D = d;
233         int x = 0;
234
235         while (*s) {
236                 if ((s-S) % 2) {
237                         x = (x << 4) ^ chrbin(*s);
238                         *D = x; D++;
239                 }
240                 else x = chrbin(*s);
241                 s++;
242         }
243 }