b92ac9676a3bc567aaf97f167201cb1bb1b0e8d0
[tfcrypt.git] / tfc_base64.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 void do_edbase64(char **fargv)
32 {
33         struct base64_decodestate dstate;
34         struct base64_encodestate estate;
35         size_t lread = 0;
36
37         sfd = 0; dfd = 1;
38
39         if (fargv[0]) {
40                 if (!strcmp(fargv[0], "-")) sfd = 0;
41                 else {
42                         sfd = open(fargv[0], O_RDONLY | O_LARGEFILE);
43                         if (do_preserve_time) if (fstat(sfd, &s_stat) == -1)
44                                 xerror(YES, NO, YES, "stat(%s)", fargv[0]);
45                 }
46                 if (sfd == -1) xerror(NO, NO, YES, "%s", fargv[0]);
47         }
48
49         if (fargv[0] && fargv[1]) {
50                 if (!strcmp(fargv[1], "-")) dfd = 1;
51                 else dfd = open(fargv[1], O_WRONLY | O_CREAT | O_LARGEFILE | write_flags, 0666);
52                 if (dfd == -1) xerror(NO, NO, YES, "%s", fargv[1]);
53         }
54
55         if (do_edcrypt == TFC_DO_ENCRYPT) {
56                 memset(&estate, 0, sizeof(struct base64_encodestate));
57                 base64_init_encodestate(&estate);
58         }
59         else if (do_edcrypt == TFC_DO_DECRYPT) {
60                 memset(&dstate, 0, sizeof(struct base64_decodestate));
61                 base64_init_decodestate(&dstate);
62         }
63
64         errno = 0;
65         do_stop = NO;
66         while (1) {
67                 if (do_stop) break;
68                 pblk = srcblk;
69                 lblock = lrem = do_edcrypt == TFC_DO_DECRYPT ? TFC_B64_DWIDTH : TFC_B64_EWIDTH;
70                 ldone = 0;
71 _again:         lio = read(sfd, pblk, lrem);
72                 if (lio == 0) do_stop = YES;
73                 if (lio != NOSIZE) ldone += lio;
74                 else {
75                         if (errno != EIO && catch_all_errors != YES)
76                                 xerror(NO, NO, NO, "%s", fargv[0]);
77                         switch (error_action) {
78                                 case TFC_ERRACT_CONT: xerror(YES, NO, NO, "%s", fargv[0]); goto _again; break;
79                                 case TFC_ERRACT_SYNC:
80                                         xerror(YES, NO, NO, "%s", fargv[0]);
81                                         lio = ldone = lrem = lblock;
82                                         memset(srcblk, 0, lio);
83                                         lseek(sfd, lio, SEEK_CUR);
84                                         break;
85                                 default: xerror(NO, NO, NO, "%s", fargv[0]); break;
86                         }
87                 }
88                 if (lio && lio < lrem) {
89                         pblk += lio;
90                         lrem -= lio;
91                         goto _again;
92                 }
93
94                 if (do_edcrypt == TFC_DO_ENCRYPT) {
95                         estate.count = 0;
96                         base64_encode_block((const char *)srcblk, ldone, (char *)dstblk, &estate);
97                         lread = ldone;
98                         ldone = estate.count;
99                 }
100                 else if (do_edcrypt == TFC_DO_DECRYPT) {
101                         dstate.count = 0;
102                         base64_decode_block((const char *)srcblk, ldone, (char *)dstblk, sizeof(dstblk), &dstate);
103                         ldone = dstate.count;
104                 }
105
106                 pblk = dstblk;
107                 if (ldone == 0) {
108                         do_stop = TFC_STOP_FULL;
109                         break;
110                 }
111                 lrem = ldone;
112                 ldone = 0;
113 _wagain:        lio = write(dfd, pblk, lrem);
114                 if (lio != NOSIZE) ldone += lio;
115                 else xerror(NO, NO, NO, "%s", fargv[1]);
116                 if (do_edcrypt == TFC_DO_ENCRYPT) {
117                         size_t t;
118                         if (lread >= lblock || do_stop == TFC_STOP_FULL) {
119                                 t = write(dfd, "\n", 1);
120                                 if (t != NOSIZE) lio += t;
121                                 else lio = NOSIZE;
122                         }
123                 }
124                 if (lio != NOSIZE) ldone += lio;
125                 else xerror(NO, NO, NO, "%s", fargv[1]);
126                 if (do_fsync && fsync(dfd) == -1) xerror(NO, NO, NO, "%s", fargv[1]);
127                 if (lio < lrem) {
128                         pblk += lio;
129                         lrem -= lio;
130                         goto _wagain;
131                 }
132         }
133
134         if (do_edcrypt == TFC_DO_ENCRYPT && do_stop == TFC_STOP_BEGAN) {
135                 size_t t = estate.count;
136                 pblk = dstblk + estate.count;
137                 base64_encode_blockend((char *)dstblk, &estate);
138                 lrem = estate.count - t;
139                 ldone = 0;
140                 do_stop = TFC_STOP_FULL;
141                 goto _wagain;
142         }
143
144         memset(&estate, 0, sizeof(struct base64_encodestate));
145         memset(&dstate, 0, sizeof(struct base64_decodestate));
146         if (do_preserve_time) fcopy_matime(dfd, &s_stat);
147         xexit(0);
148 }
149
150 static void base64_eprint(FILE *where, struct base64_encodestate *estate, const char *input, size_t inputl)
151 {
152         static char t[256];
153         ssize_t ix = inputl;
154
155         while (ix > 0) {
156                 memset(t, 0, sizeof(t));
157                 estate->count = 0;
158                 base64_encode_block(input, ix > 128 ? 128 : ix, t, estate);
159                 ix -= 128;
160                 if (ix < 128) base64_encode_blockend(t, estate);
161                 fprintf(where, "%s", t);
162                 fflush(where);
163         }
164
165         memset(t, 0, sizeof(t));
166 }
167
168 void tfc_printbase64(FILE *where, const void *p, size_t n, tfc_yesno nl)
169 {
170         struct base64_encodestate estate;
171         memset(&estate, 0, sizeof(struct base64_encodestate));
172         base64_eprint(where, &estate, (const char *)p, n);
173         if (nl) tfc_nfsay(where, "\n");
174 }