1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Generic SSL / SMIME commands.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2014 Steffen "Daode" Nurpmeso <sdaoden@users.sf.net>.
9 * Gunnar Ritter. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by Gunnar Ritter
22 * and his contributors.
23 * 4. Neither the name of Gunnar Ritter nor the names of his contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY GUNNAR RITTER AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL GUNNAR RITTER OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 #ifndef HAVE_AMALGAMATION
47 ssl_set_vrfy_level(const char *uhp
)
52 ssl_vrfy_level
= VRFY_ASK
;
54 vrvar
= ac_alloc(l
+ 12);
55 memcpy(vrvar
, "ssl-verify-", 11);
56 memcpy(vrvar
+ 11, uhp
, l
+ 1);
58 if ((cp
= vok_vlook(vrvar
)) == NULL
)
59 cp
= ok_vlook(ssl_verify
);
62 if (strcmp(cp
, "strict") == 0)
63 ssl_vrfy_level
= VRFY_STRICT
;
64 else if (strcmp(cp
, "ask") == 0)
65 ssl_vrfy_level
= VRFY_ASK
;
66 else if (strcmp(cp
, "warn") == 0)
67 ssl_vrfy_level
= VRFY_WARN
;
68 else if (strcmp(cp
, "ignore") == 0)
69 ssl_vrfy_level
= VRFY_IGNORE
;
71 fprintf(stderr
, tr(265,
72 "invalid value of ssl-verify: %s\n"), cp
);
81 switch (ssl_vrfy_level
) {
90 fprintf(stderr
, tr(264, "Continue (y/n)? "));
91 if (readline_restart(stdin
, &line
, &linesize
, 0) > 0 &&
108 ssl_method_string(const char *uhp
)
114 mtvar
= ac_alloc(l
+ 12);
115 memcpy(mtvar
, "ssl-method-", 11);
116 memcpy(mtvar
+ 11, uhp
, l
+ 1);
117 if ((cp
= vok_vlook(mtvar
)) == NULL
)
118 cp
= ok_vlook(ssl_method
);
124 smime_split(FILE *ip
, FILE **hp
, FILE **bp
, long xcount
, int keep
)
126 /* TODO like i said quite often now, the entire SSL stuff really needs
127 * TODO a review ASAP; also in respect to correct resource release, and
128 * TODO especially in case of errors; S-nail is a program that REALLY
129 * TODO may run for a week or longer!!! */
131 char *savedfields
= NULL
;
132 size_t bufsize
, buflen
, cnt
, savedsize
= 0;
135 if ((*hp
= Ftemp(&hn
, "Rh", "w+", 0600, 1)) == NULL
)
139 if ((*bp
= Ftemp(&bn
, "Rb", "w+", 0600, 1)) == NULL
) {
147 buf
= smalloc(bufsize
= LINESIZE
);
148 savedfields
= smalloc(savedsize
= 1);
155 while (fgetline(&buf
, &bufsize
, &cnt
, &buflen
, ip
, 0) != NULL
&&
157 if (ascncasecmp(buf
, "content-", 8) == 0) {
159 fputs("X-Encoded-", *hp
);
162 savedfields
= srealloc(savedfields
, savedsize
);
163 memcpy(savedfields
+ strlen(savedfields
),
166 fwrite(buf
, sizeof *buf
, buflen
, *hp
);
171 fgetline(&buf
, &bufsize
, &cnt
, &buflen
,
176 fwrite(buf
, sizeof *buf
, buflen
, *hp
);
181 fputs(savedfields
, *bp
);
183 while (fgetline(&buf
, &bufsize
, &cnt
, &buflen
, ip
, 0) != NULL
)
184 fwrite(buf
, sizeof *buf
, buflen
, *bp
);
194 smime_sign_assemble(FILE *hp
, FILE *bp
, FILE *sp
)
200 if ((op
= Ftemp(&cp
, "Rs", "w+", 0600, 1)) == NULL
) {
206 boundary
= mime_create_boundary();
207 while ((c
= getc(hp
)) != EOF
) {
208 if (c
== '\n' && lastc
== '\n')
213 fprintf(op
, "Content-Type: multipart/signed;\n"
214 " protocol=\"application/x-pkcs7-signature\"; micalg=sha1;\n"
215 " boundary=\"%s\"\n\n", boundary
);
216 fprintf(op
, "This is an S/MIME signed message.\n\n--%s\n",
218 while ((c
= getc(bp
)) != EOF
)
220 fprintf(op
, "\n--%s\n", boundary
);
221 fputs("Content-Type: application/x-pkcs7-signature; "
222 "name=\"smime.p7s\"\n"
223 "Content-Transfer-Encoding: base64\n"
224 "Content-Disposition: attachment; filename=\"smime.p7s\"\n\n",
226 while ((c
= getc(sp
)) != EOF
) {
228 while ((c
= getc(sp
)) != EOF
&& c
!= '\n');
233 fprintf(op
, "\n--%s--\n", boundary
);
239 perror("signed output data");
248 smime_encrypt_assemble(FILE *hp
, FILE *yp
)
254 if ((op
= Ftemp(&cp
, "Rs", "w+", 0600, 1)) == NULL
) {
260 while ((c
= getc(hp
)) != EOF
) {
261 if (c
== '\n' && lastc
== '\n')
266 fprintf(op
, "Content-Type: application/x-pkcs7-mime; "
267 "name=\"smime.p7m\"\n"
268 "Content-Transfer-Encoding: base64\n"
269 "Content-Disposition: attachment; "
270 "filename=\"smime.p7m\"\n\n");
271 while ((c
= getc(yp
)) != EOF
) {
273 while ((c
= getc(yp
)) != EOF
&& c
!= '\n');
282 perror("encrypted output data");
291 smime_decrypt_assemble(struct message
*m
, FILE *hp
, FILE *bp
)
296 size_t bufsize
= 0, buflen
, cnt
;
297 long lines
= 0, octets
= 0;
301 x
= salloc(sizeof *x
);
304 fseek(mb
.mb_otf
, 0L, SEEK_END
);
305 offset
= ftell(mb
.mb_otf
);
307 while (fgetline(&buf
, &bufsize
, &cnt
, &buflen
, hp
, 0) != NULL
) {
311 if ((cp
= thisfield(buf
, "content-transfer-encoding")) != NULL
)
312 if (ascncasecmp(cp
, "binary", 7) == 0)
314 fwrite(buf
, sizeof *buf
, buflen
, mb
.mb_otf
);
318 octets
+= mkdate(mb
.mb_otf
, "X-Decoding-Date");
321 while (fgetline(&buf
, &bufsize
, &cnt
, &buflen
, bp
, 0) != NULL
) {
323 if (!binary
&& buf
[buflen
-1] == '\n' && buf
[buflen
-2] == '\r')
324 buf
[--buflen
-1] = '\n';
325 fwrite(buf
, sizeof *buf
, buflen
, mb
.mb_otf
);
329 else if (buf
[buflen
-1] == '\n')
334 while (!binary
&& lastnl
< 2) {
335 putc('\n', mb
.mb_otf
);
344 if (ferror(mb
.mb_otf
)) {
345 perror("decrypted output data");
348 x
->m_size
= x
->m_xsize
= octets
;
349 x
->m_lines
= x
->m_xlines
= lines
;
350 x
->m_block
= mailx_blockof(offset
);
351 x
->m_offset
= mailx_offsetof(offset
);
360 char *file
= NULL
, *str
= v
;
365 msgvec
= salloc((msgCount
+ 2) * sizeof *msgvec
);
366 if ((file
= laststring(str
, &f
, 1)) == NULL
) {
367 fprintf(stderr
, "No file to save certificate given.\n");
371 *msgvec
= first(0, MMNORM
);
376 "No messages to get certificates from.\n");
380 } else if (getmsglist(str
, msgvec
, 0) < 0)
385 fprintf(stderr
, "No applicable messages.\n");
388 if ((fp
= Fopen(file
, "a")) == NULL
) {
392 for (ip
= msgvec
; *ip
&& ip
-msgvec
< msgCount
; ip
++)
393 if (smime_certsave(&message
[*ip
-1], *ip
, fp
) != OKAY
)
397 printf("Certificate(s) saved.\n");
402 rfc2595_hostname_match(const char *host
, const char *pattern
)
404 if (pattern
[0] == '*' && pattern
[1] == '.') {
406 while (*host
&& *host
!= '.')
409 return asccasecmp(host
, pattern
) == 0 ? OKAY
: STOP
;
411 #endif /* HAVE_SSL */