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