1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
4 /* Experimental ARC support for Exim
5 Copyright (c) Jeremy Harris 2018
10 #if defined EXPERIMENTAL_ARC
11 # if defined DISABLE_DKIM
12 # error DKIM must also be enabled for ARC
15 # include "functions.h"
16 # include "pdkim/pdkim.h"
17 # include "pdkim/signing.h"
19 extern pdkim_ctx * dkim_verify_ctx;
20 extern pdkim_ctx dkim_sign_ctx;
22 #define ARC_SIGN_OPT_TSTAMP BIT(0)
23 #define ARC_SIGN_OPT_EXPIRE BIT(1)
25 #define ARC_SIGN_DEFAULT_EXPIRE_DELTA (60 * 60 * 24 * 30) /* one month */
27 /******************************************************************************/
29 typedef struct hdr_rlist {
30 struct hdr_rlist * prev;
35 typedef struct arc_line {
36 header_line * complete; /* including the header name; nul-term */
39 /* identified tag contents */
52 /* tag content sub-portions */
59 /* modified copy of b= field in line */
63 typedef struct arc_set {
64 struct arc_set * next;
65 struct arc_set * prev;
72 const uschar * ams_verify_done;
73 BOOL ams_verify_passed;
76 typedef struct arc_ctx {
77 arc_set * arcset_chain;
78 arc_set * arcset_chain_last;
81 #define ARC_HDR_AAR US"ARC-Authentication-Results:"
82 #define ARC_HDRLEN_AAR 27
83 #define ARC_HDR_AMS US"ARC-Message-Signature:"
84 #define ARC_HDRLEN_AMS 22
85 #define ARC_HDR_AS US"ARC-Seal:"
86 #define ARC_HDRLEN_AS 9
87 #define HDR_AR US"Authentication-Results:"
92 static hdr_rlist * headers_rlist;
93 static arc_ctx arc_sign_ctx = { NULL };
94 static arc_ctx arc_verify_ctx = { NULL };
97 /******************************************************************************/
100 /* Get the instance number from the header.
103 arc_instance_from_hdr(const arc_line * al)
105 const uschar * s = al->i.data;
106 if (!s || !al->i.len) return 0;
107 return (unsigned) atoi(CCS s);
115 while (c && (c == ' ' || c == '\t' || c == '\n' || c == '\r')) c = *++s;
120 /* Locate instance struct on chain, inserting a new one if
121 needed. The chain is in increasing-instance-number order
122 by the "next" link, and we have a "prev" link also.
126 arc_find_set(arc_ctx * ctx, unsigned i)
128 arc_set ** pas, * as, * next, * prev;
130 for (pas = &ctx->arcset_chain, prev = NULL, next = ctx->arcset_chain;
131 as = *pas; pas = &as->next)
133 if (as->instance > i) break;
134 if (as->instance == i)
136 DEBUG(D_acl) debug_printf("ARC: existing instance %u\n", i);
143 DEBUG(D_acl) debug_printf("ARC: new instance %u\n", i);
144 *pas = as = store_get(sizeof(arc_set), FALSE);
145 memset(as, 0, sizeof(arc_set));
152 ctx->arcset_chain_last = as;
158 /* Insert a tag content into the line structure.
159 Note this is a reference to existing data, not a copy.
160 Check for already-seen tag.
161 The string-pointer is on the '=' for entry. Update it past the
162 content (to the ;) on return;
166 arc_insert_tagvalue(arc_line * al, unsigned loff, uschar ** ss)
170 blob * b = (blob *)(US al + loff);
173 /* [FWS] tag-value [FWS] */
175 if (b->data) return US"fail";
176 s = skip_fws(s); /* FWS */
179 while ((c = *s) && c != ';') { len++; s++; }
181 while (len && ((c = s[-1]) == ' ' || c == '\t' || c == '\n' || c == '\r'))
182 { s--; len--; } /* FWS */
188 /* Inspect a header line, noting known tag fields.
189 Check for duplicates. */
192 arc_parse_line(arc_line * al, header_line * h, unsigned off, BOOL instance_only)
194 uschar * s = h->text + off;
195 uschar * r = NULL; /* compiler-quietening */
202 al->rawsig_no_b_val.data = store_get(h->slen + 1, TRUE); /* tainted */
203 memcpy(al->rawsig_no_b_val.data, h->text, off); /* copy the header name blind */
204 r = al->rawsig_no_b_val.data + off;
205 al->rawsig_no_b_val.len = off;
208 /* tag-list = tag-spec *( ";" tag-spec ) [ ";" ] */
215 uschar * fieldstart = s;
216 uschar * bstart = NULL, * bend;
218 /* tag-spec = [FWS] tag-name [FWS] "=" [FWS] tag-value [FWS] */
220 s = skip_fws(s); /* FWS */
222 /* debug_printf("%s: consider '%s'\n", __FUNCTION__, s); */
224 s = skip_fws(s); /* FWS */
227 if (!instance_only || tagchar == 'i') switch (tagchar)
229 case 'a': /* a= AMS algorithm */
231 if (*s != '=') return US"no 'a' value";
232 if (arc_insert_tagvalue(al, offsetof(arc_line, a), &s)) return US"a tag dup";
234 /* substructure: algo-hash (eg. rsa-sha256) */
236 t = al->a_algo.data = al->a.data;
238 if (!*t++ || ++i > al->a.len) return US"no '-' in 'a' value";
240 if (*t++ != '-') return US"no '-' in 'a' value";
242 al->a_hash.len = al->a.len - i - 1;
251 case '=': /* b= AMS signature */
252 if (al->b.data) return US"already b data";
255 /* The signature can have FWS inserted in the content;
256 make a stripped copy */
258 while ((c = *++s) && c != ';')
259 if (c != ' ' && c != '\t' && c != '\n' && c != '\r')
260 g = string_catn(g, s, 1);
261 if (!g) return US"no b= value";
262 al->b.data = string_from_gstring(g);
264 gstring_release_unused(g);
267 case 'h': /* bh= AMS body hash */
268 s = skip_fws(++s); /* FWS */
269 if (*s != '=') return US"no bh value";
270 if (al->bh.data) return US"already bh data";
272 /* The bodyhash can have FWS inserted in the content;
273 make a stripped copy */
275 while ((c = *++s) && c != ';')
276 if (c != ' ' && c != '\t' && c != '\n' && c != '\r')
277 g = string_catn(g, s, 1);
278 if (!g) return US"no bh= value";
279 al->bh.data = string_from_gstring(g);
281 gstring_release_unused(g);
291 case '=': /* c= AMS canonicalisation */
292 if (arc_insert_tagvalue(al, offsetof(arc_line, c), &s)) return US"c tag dup";
294 /* substructure: head/body (eg. relaxed/simple)) */
296 t = al->c_head.data = al->c.data;
298 if (!*t++ || ++i > al->a.len) break;
300 if (*t++ == '/') /* /body is optional */
303 al->c_body.len = al->c.len - i - 1;
307 al->c_body.data = US"simple";
311 case 'v': /* cv= AS validity */
312 if (*++s != '=') return US"cv tag val";
313 if (arc_insert_tagvalue(al, offsetof(arc_line, cv), &s)) return US"cv tag dup";
319 case 'd': /* d= AMS domain */
320 if (*s != '=') return US"d tag val";
321 if (arc_insert_tagvalue(al, offsetof(arc_line, d), &s)) return US"d tag dup";
323 case 'h': /* h= AMS headers */
324 if (*s != '=') return US"h tag val";
325 if (arc_insert_tagvalue(al, offsetof(arc_line, h), &s)) return US"h tag dup";
327 case 'i': /* i= ARC set instance */
328 if (*s != '=') return US"i tag val";
329 if (arc_insert_tagvalue(al, offsetof(arc_line, i), &s)) return US"i tag dup";
330 if (instance_only) goto done;
332 case 'l': /* l= bodylength */
333 if (*s != '=') return US"l tag val";
334 if (arc_insert_tagvalue(al, offsetof(arc_line, l), &s)) return US"l tag dup";
336 case 's': /* s= AMS selector */
337 if (*s != '=') return US"s tag val";
338 if (arc_insert_tagvalue(al, offsetof(arc_line, s), &s)) return US"s tag dup";
342 while ((c = *s) && c != ';') s++;
343 if (c) s++; /* ; after tag-spec */
345 /* for all but the b= tag, copy the field including FWS. For the b=,
346 drop the tag content. */
351 size_t n = bstart - fieldstart;
352 memcpy(r, fieldstart, n); /* FWS "b=" */
354 al->rawsig_no_b_val.len += n;
356 memcpy(r, bend, n); /* FWS ";" */
358 al->rawsig_no_b_val.len += n;
362 size_t n = s - fieldstart;
363 memcpy(r, fieldstart, n);
365 al->rawsig_no_b_val.len += n;
373 /* debug_printf("%s: finshed\n", __FUNCTION__); */
378 /* Insert one header line in the correct set of the chain,
379 adding instances as needed and checking for duplicate lines.
383 arc_insert_hdr(arc_ctx * ctx, header_line * h, unsigned off, unsigned hoff,
388 arc_line * al = store_get(sizeof(arc_line), FALSE), ** alp;
391 memset(al, 0, sizeof(arc_line));
393 if ((e = arc_parse_line(al, h, off, instance_only)))
395 DEBUG(D_acl) if (e) debug_printf("ARC: %s\n", e);
396 return US"line parse";
398 if (!(i = arc_instance_from_hdr(al))) return US"instance find";
399 if (i > 50) return US"overlarge instance number";
400 if (!(as = arc_find_set(ctx, i))) return US"set find";
401 if (*(alp = (arc_line **)(US as + hoff))) return US"dup hdr";
410 static const uschar *
411 arc_try_header(arc_ctx * ctx, header_line * h, BOOL instance_only)
415 /*debug_printf("consider hdr '%s'\n", h->text);*/
416 if (strncmpic(ARC_HDR_AAR, h->text, ARC_HDRLEN_AAR) == 0)
422 for (s = h->text + h->slen; s[-1] == '\r' || s[-1] == '\n'; )
424 debug_printf("ARC: found AAR: %.*s\n", len, h->text);
426 if ((e = arc_insert_hdr(ctx, h, ARC_HDRLEN_AAR, offsetof(arc_set, hdr_aar),
429 DEBUG(D_acl) debug_printf("inserting AAR: %s\n", e);
430 return US"inserting AAR";
433 else if (strncmpic(ARC_HDR_AMS, h->text, ARC_HDRLEN_AMS) == 0)
441 for (s = h->text + h->slen; s[-1] == '\r' || s[-1] == '\n'; )
443 debug_printf("ARC: found AMS: %.*s\n", len, h->text);
445 if ((e = arc_insert_hdr(ctx, h, ARC_HDRLEN_AMS, offsetof(arc_set, hdr_ams),
448 DEBUG(D_acl) debug_printf("inserting AMS: %s\n", e);
449 return US"inserting AMS";
453 /*XXX dubious selection of ams here */
454 ams = ctx->arcset_chain->hdr_ams;
457 ams->c_head.data = US"simple"; ams->c_head.len = 6;
458 ams->c_body = ams->c_head;
461 else if (strncmpic(ARC_HDR_AS, h->text, ARC_HDRLEN_AS) == 0)
467 for (s = h->text + h->slen; s[-1] == '\r' || s[-1] == '\n'; )
469 debug_printf("ARC: found AS: %.*s\n", len, h->text);
471 if ((e = arc_insert_hdr(ctx, h, ARC_HDRLEN_AS, offsetof(arc_set, hdr_as),
474 DEBUG(D_acl) debug_printf("inserting AS: %s\n", e);
475 return US"inserting AS";
483 /* Gather the chain of arc sets from the headers.
484 Check for duplicates while that is done. Also build the
485 reverse-order headers list;
487 Return: ARC state if determined, eg. by lack of any ARC chain.
490 static const uschar *
491 arc_vfy_collect_hdrs(arc_ctx * ctx)
494 hdr_rlist * r = NULL, * rprev = NULL;
497 DEBUG(D_acl) debug_printf("ARC: collecting arc sets\n");
498 for (h = header_list; h; h = h->next)
500 r = store_get(sizeof(hdr_rlist), FALSE);
506 if ((e = arc_try_header(ctx, h, FALSE)))
508 arc_state_reason = string_sprintf("collecting headers: %s", e);
514 if (!ctx->arcset_chain) return US"none";
520 arc_cv_match(arc_line * al, const uschar * s)
522 return Ustrncmp(s, al->cv.data, al->cv.len) == 0;
525 /******************************************************************************/
527 /* Return the hash of headers from the message that the AMS claims it
532 arc_get_verify_hhash(arc_ctx * ctx, arc_line * ams, blob * hhash)
534 const uschar * headernames = string_copyn(ams->h.data, ams->h.len);
538 BOOL relaxed = Ustrncmp(US"relaxed", ams->c_head.data, ams->c_head.len) == 0;
539 int hashtype = pdkim_hashname_to_hashtype(
540 ams->a_hash.data, ams->a_hash.len);
546 || !exim_sha_init(&hhash_ctx, pdkim_hashes[hashtype].exim_hashmethod))
549 debug_printf("ARC: hash setup error, possibly nonhandled hashtype\n");
553 /* For each headername in the list from the AMS (walking in order)
554 walk the message headers in reverse order, adding to the hash any
555 found for the first time. For that last point, maintain used-marks
556 on the list of message headers. */
558 DEBUG(D_acl) debug_printf("ARC: AMS header data for verification:\n");
560 for (r = headers_rlist; r; r = r->prev)
562 while ((hn = string_nextinlist(&headernames, &sep, NULL, 0)))
563 for (r = headers_rlist; r; r = r->prev)
565 && strncasecmp(CCS (s = r->h->text), CCS hn, Ustrlen(hn)) == 0
568 if (relaxed) s = pdkim_relax_header_n(s, r->h->slen, TRUE);
571 DEBUG(D_acl) pdkim_quoteprint(s, len);
572 exim_sha_update(&hhash_ctx, s, Ustrlen(s));
577 /* Finally add in the signature header (with the b= tag stripped); no CRLF */
579 s = ams->rawsig_no_b_val.data, len = ams->rawsig_no_b_val.len;
581 len = Ustrlen(s = pdkim_relax_header_n(s, len, FALSE));
582 DEBUG(D_acl) pdkim_quoteprint(s, len);
583 exim_sha_update(&hhash_ctx, s, len);
585 exim_sha_finish(&hhash_ctx, hhash);
587 { debug_printf("ARC: header hash: "); pdkim_hexprint(hhash->data, hhash->len); }
594 static pdkim_pubkey *
595 arc_line_to_pubkey(arc_line * al)
600 if (!(dns_txt = dkim_exim_query_dns_txt(string_sprintf("%.*s._domainkey.%.*s",
601 (int)al->s.len, al->s.data, (int)al->d.len, al->d.data))))
603 DEBUG(D_acl) debug_printf("pubkey dns lookup fail\n");
607 if ( !(p = pdkim_parse_pubkey_record(dns_txt))
608 || (Ustrcmp(p->srvtype, "*") != 0 && Ustrcmp(p->srvtype, "email") != 0)
611 DEBUG(D_acl) debug_printf("pubkey dns lookup format error\n");
615 /* If the pubkey limits use to specified hashes, reject unusable
616 signatures. XXX should we have looked for multiple dns records? */
620 const uschar * list = p->hashes, * ele;
623 while ((ele = string_nextinlist(&list, &sep, NULL, 0)))
624 if (Ustrncmp(ele, al->a_hash.data, al->a_hash.len) == 0) break;
627 DEBUG(D_acl) debug_printf("pubkey h=%s vs sig a=%.*s\n",
628 p->hashes, (int)al->a.len, al->a.data);
638 static pdkim_bodyhash *
639 arc_ams_setup_vfy_bodyhash(arc_line * ams)
641 int canon_head = -1, canon_body = -1;
644 if (!ams->c.data) ams->c.data = US"simple"; /* RFC 6376 (DKIM) default */
645 pdkim_cstring_to_canons(ams->c.data, ams->c.len, &canon_head, &canon_body);
646 bodylen = ams->l.data
647 ? strtol(CS string_copyn(ams->l.data, ams->l.len), NULL, 10) : -1;
649 return pdkim_set_bodyhash(dkim_verify_ctx,
650 pdkim_hashname_to_hashtype(ams->a_hash.data, ams->a_hash.len),
657 /* Verify an AMS. This is a DKIM-sig header, but with an ARC i= tag
658 and without a DKIM v= tag.
661 static const uschar *
662 arc_ams_verify(arc_ctx * ctx, arc_set * as)
664 arc_line * ams = as->hdr_ams;
671 const uschar * errstr;
673 as->ams_verify_done = US"in-progress";
675 /* Check the AMS has all the required tags:
679 "d=" domain (for key lookup)
680 "h=" headers (included in signature)
681 "s=" key-selector (for key lookup)
683 if ( !ams->a.data || !ams->b.data || !ams->bh.data || !ams->d.data
684 || !ams->h.data || !ams->s.data)
686 as->ams_verify_done = arc_state_reason = US"required tag missing";
691 /* The bodyhash should have been created earlier, and the dkim code should
692 have managed calculating it during message input. Find the reference to it. */
694 if (!(b = arc_ams_setup_vfy_bodyhash(ams)))
696 as->ams_verify_done = arc_state_reason = US"internal hash setup error";
702 debug_printf("ARC i=%d AMS Body bytes hashed: %lu\n"
703 " Body %.*s computed: ",
704 as->instance, b->signed_body_bytes,
705 (int)ams->a_hash.len, ams->a_hash.data);
706 pdkim_hexprint(CUS b->bh.data, b->bh.len);
709 /* We know the bh-tag blob is of a nul-term string, so safe as a string */
712 || (pdkim_decode_base64(ams->bh.data, &sighash), sighash.len != b->bh.len)
713 || memcmp(sighash.data, b->bh.data, b->bh.len) != 0
718 debug_printf("ARC i=%d AMS Body hash from headers: ", as->instance);
719 pdkim_hexprint(sighash.data, sighash.len);
720 debug_printf("ARC i=%d AMS Body hash did NOT match\n", as->instance);
722 return as->ams_verify_done = arc_state_reason = US"AMS body hash miscompare";
725 DEBUG(D_acl) debug_printf("ARC i=%d AMS Body hash compared OK\n", as->instance);
727 /* Get the public key from DNS */
729 if (!(p = arc_line_to_pubkey(ams)))
730 return as->ams_verify_done = arc_state_reason = US"pubkey problem";
732 /* We know the b-tag blob is of a nul-term string, so safe as a string */
733 pdkim_decode_base64(ams->b.data, &sighash);
735 arc_get_verify_hhash(ctx, ams, &hhash);
737 /* Setup the interface to the signing library */
739 if ((errstr = exim_dkim_verify_init(&p->key, KEYFMT_DER, &vctx)))
741 DEBUG(D_acl) debug_printf("ARC verify init: %s\n", errstr);
742 as->ams_verify_done = arc_state_reason = US"internal sigverify init error";
746 hashtype = pdkim_hashname_to_hashtype(ams->a_hash.data, ams->a_hash.len);
749 DEBUG(D_acl) debug_printf("ARC i=%d AMS verify bad a_hash\n", as->instance);
750 return as->ams_verify_done = arc_state_reason = US"AMS sig nonverify";
753 if ((errstr = exim_dkim_verify(&vctx,
754 pdkim_hashes[hashtype].exim_hashmethod, &hhash, &sighash)))
756 DEBUG(D_acl) debug_printf("ARC i=%d AMS verify %s\n", as->instance, errstr);
757 return as->ams_verify_done = arc_state_reason = US"AMS sig nonverify";
760 DEBUG(D_acl) debug_printf("ARC i=%d AMS verify pass\n", as->instance);
761 as->ams_verify_passed = TRUE;
767 /* Check the sets are instance-continuous and that all
768 members are present. Check that no arc_seals are "fail".
769 Set the highest instance number global.
770 Verify the latest AMS.
773 arc_headers_check(arc_ctx * ctx)
777 BOOL ams_fail_found = FALSE;
779 if (!(as = ctx->arcset_chain_last))
782 for(inst = as->instance; as; as = as->prev, inst--)
784 if (as->instance != inst)
785 arc_state_reason = string_sprintf("i=%d (sequence; expected %d)",
787 else if (!as->hdr_aar || !as->hdr_ams || !as->hdr_as)
788 arc_state_reason = string_sprintf("i=%d (missing header)", as->instance);
789 else if (arc_cv_match(as->hdr_as, US"fail"))
790 arc_state_reason = string_sprintf("i=%d (cv)", as->instance);
794 DEBUG(D_acl) debug_printf("ARC chain fail at %s\n", arc_state_reason);
798 /* Evaluate the oldest-pass AMS validation while we're here.
799 It does not affect the AS chain validation but is reported as
803 if (arc_ams_verify(ctx, as))
804 ams_fail_found = TRUE;
806 arc_oldest_pass = inst;
807 arc_state_reason = NULL;
811 arc_state_reason = string_sprintf("(sequence; expected i=%d)", inst);
812 DEBUG(D_acl) debug_printf("ARC chain fail %s\n", arc_state_reason);
816 arc_received = ctx->arcset_chain_last;
817 arc_received_instance = arc_received->instance;
819 /* We can skip the latest-AMS validation, if we already did it. */
821 as = ctx->arcset_chain_last;
822 if (!as->ams_verify_passed)
824 if (as->ams_verify_done)
826 arc_state_reason = as->ams_verify_done;
829 if (!!arc_ams_verify(ctx, as))
836 /******************************************************************************/
837 static const uschar *
838 arc_seal_verify(arc_ctx * ctx, arc_set * as)
840 arc_line * hdr_as = as->hdr_as;
848 const uschar * errstr;
850 DEBUG(D_acl) debug_printf("ARC: AS vfy i=%d\n", as->instance);
852 1. If the value of the "cv" tag on that seal is "fail", the
853 chain state is "fail" and the algorithm stops here. (This
854 step SHOULD be skipped if the earlier step (2.1) was
857 2. In Boolean nomenclature: if ((i == 1 && cv != "none") or (cv
858 == "none" && i != 1)) then the chain state is "fail" and the
859 algorithm stops here (note that the ordering of the logic is
860 structured for short-circuit evaluation).
863 if ( as->instance == 1 && !arc_cv_match(hdr_as, US"none")
864 || arc_cv_match(hdr_as, US"none") && as->instance != 1
867 arc_state_reason = US"seal cv state";
872 3. Initialize a hash function corresponding to the "a" tag of
876 hashtype = pdkim_hashname_to_hashtype(hdr_as->a_hash.data, hdr_as->a_hash.len);
879 || !exim_sha_init(&hhash_ctx, pdkim_hashes[hashtype].exim_hashmethod))
882 debug_printf("ARC: hash setup error, possibly nonhandled hashtype\n");
883 arc_state_reason = US"seal hash setup error";
888 4. Compute the canonicalized form of the ARC header fields, in
889 the order described in Section 5.4.2, using the "relaxed"
890 header canonicalization defined in Section 3.4.2 of
891 [RFC6376]. Pass the canonicalized result to the hash
894 Headers are CRLF-separated, but the last one is not crlf-terminated.
897 DEBUG(D_acl) debug_printf("ARC: AS header data for verification:\n");
898 for (as2 = ctx->arcset_chain;
899 as2 && as2->instance <= as->instance;
907 if (!(s = al->relaxed))
908 al->relaxed = s = pdkim_relax_header_n(al->complete->text,
909 al->complete->slen, TRUE);
911 DEBUG(D_acl) pdkim_quoteprint(s, len);
912 exim_sha_update(&hhash_ctx, s, len);
915 if (!(s = al->relaxed))
916 al->relaxed = s = pdkim_relax_header_n(al->complete->text,
917 al->complete->slen, TRUE);
919 DEBUG(D_acl) pdkim_quoteprint(s, len);
920 exim_sha_update(&hhash_ctx, s, len);
923 if (as2->instance == as->instance)
924 s = pdkim_relax_header_n(al->rawsig_no_b_val.data,
925 al->rawsig_no_b_val.len, FALSE);
926 else if (!(s = al->relaxed))
927 al->relaxed = s = pdkim_relax_header_n(al->complete->text,
928 al->complete->slen, TRUE);
930 DEBUG(D_acl) pdkim_quoteprint(s, len);
931 exim_sha_update(&hhash_ctx, s, len);
935 5. Retrieve the final digest from the hash function.
938 exim_sha_finish(&hhash_ctx, &hhash_computed);
941 debug_printf("ARC i=%d AS Header %.*s computed: ",
942 as->instance, (int)hdr_as->a_hash.len, hdr_as->a_hash.data);
943 pdkim_hexprint(hhash_computed.data, hhash_computed.len);
948 6. Retrieve the public key identified by the "s" and "d" tags in
949 the ARC-Seal, as described in Section 4.1.6.
952 if (!(p = arc_line_to_pubkey(hdr_as)))
953 return US"pubkey problem";
956 7. Determine whether the signature portion ("b" tag) of the ARC-
957 Seal and the digest computed above are valid according to the
958 public key. (See also Section Section 8.4 for failure case
961 8. If the signature is not valid, the chain state is "fail" and
962 the algorithm stops here.
965 /* We know the b-tag blob is of a nul-term string, so safe as a string */
966 pdkim_decode_base64(hdr_as->b.data, &sighash);
968 if ((errstr = exim_dkim_verify_init(&p->key, KEYFMT_DER, &vctx)))
970 DEBUG(D_acl) debug_printf("ARC verify init: %s\n", errstr);
974 if ((errstr = exim_dkim_verify(&vctx,
975 pdkim_hashes[hashtype].exim_hashmethod,
976 &hhash_computed, &sighash)))
979 debug_printf("ARC i=%d AS headers verify: %s\n", as->instance, errstr);
980 arc_state_reason = US"seal sigverify error";
984 DEBUG(D_acl) debug_printf("ARC: AS vfy i=%d pass\n", as->instance);
989 static const uschar *
990 arc_verify_seals(arc_ctx * ctx)
992 arc_set * as = ctx->arcset_chain_last;
997 for ( ; as; as = as->prev) if (arc_seal_verify(ctx, as)) return US"fail";
999 DEBUG(D_acl) debug_printf("ARC: AS vfy overall pass\n");
1002 /******************************************************************************/
1004 /* Do ARC verification. Called from DATA ACL, on a verify = arc
1005 condition. No arguments; we are checking globals.
1007 Return: The ARC state, or NULL on error.
1011 acl_verify_arc(void)
1015 memset(&arc_verify_ctx, 0, sizeof(arc_verify_ctx));
1017 if (!dkim_verify_ctx)
1019 DEBUG(D_acl) debug_printf("ARC: no DKIM verify context\n");
1023 /* AS evaluation, per
1024 https://tools.ietf.org/html/draft-ietf-dmarc-arc-protocol-10#section-6
1026 /* 1. Collect all ARC sets currently on the message. If there were
1027 none, the ARC state is "none" and the algorithm stops here.
1030 if ((res = arc_vfy_collect_hdrs(&arc_verify_ctx)))
1033 /* 2. If the form of any ARC set is invalid (e.g., does not contain
1034 exactly one of each of the three ARC-specific header fields),
1035 then the chain state is "fail" and the algorithm stops here.
1037 1. To avoid the overhead of unnecessary computation and delay
1038 from crypto and DNS operations, the cv value for all ARC-
1039 Seal(s) MAY be checked at this point. If any of the values
1040 are "fail", then the overall state of the chain is "fail" and
1041 the algorithm stops here.
1043 3. Conduct verification of the ARC-Message-Signature header field
1044 bearing the highest instance number. If this verification fails,
1045 then the chain state is "fail" and the algorithm stops here.
1048 if ((res = arc_headers_check(&arc_verify_ctx)))
1051 /* 4. For each ARC-Seal from the "N"th instance to the first, apply the
1054 1. If the value of the "cv" tag on that seal is "fail", the
1055 chain state is "fail" and the algorithm stops here. (This
1056 step SHOULD be skipped if the earlier step (2.1) was
1059 2. In Boolean nomenclature: if ((i == 1 && cv != "none") or (cv
1060 == "none" && i != 1)) then the chain state is "fail" and the
1061 algorithm stops here (note that the ordering of the logic is
1062 structured for short-circuit evaluation).
1064 3. Initialize a hash function corresponding to the "a" tag of
1067 4. Compute the canonicalized form of the ARC header fields, in
1068 the order described in Section 5.4.2, using the "relaxed"
1069 header canonicalization defined in Section 3.4.2 of
1070 [RFC6376]. Pass the canonicalized result to the hash
1073 5. Retrieve the final digest from the hash function.
1075 6. Retrieve the public key identified by the "s" and "d" tags in
1076 the ARC-Seal, as described in Section 4.1.6.
1078 7. Determine whether the signature portion ("b" tag) of the ARC-
1079 Seal and the digest computed above are valid according to the
1080 public key. (See also Section Section 8.4 for failure case
1083 8. If the signature is not valid, the chain state is "fail" and
1084 the algorithm stops here.
1086 5. If all seals pass validation, then the chain state is "pass", and
1087 the algorithm is complete.
1090 if ((res = arc_verify_seals(&arc_verify_ctx)))
1099 /******************************************************************************/
1101 /* Prepend the header to the rlist */
1104 arc_rlist_entry(hdr_rlist * list, const uschar * s, int len)
1106 hdr_rlist * r = store_get(sizeof(hdr_rlist) + sizeof(header_line), FALSE);
1107 header_line * h = r->h = (header_line *)(r+1);
1116 /* This works for either NL or CRLF lines; also nul-termination */
1118 if (*s == '\n' && s[1] != '\t' && s[1] != ' ') break;
1119 s++; /* move past end of line */
1125 /* Walk the given headers strings identifying each header, and construct
1126 a reverse-order list.
1130 arc_sign_scan_headers(arc_ctx * ctx, gstring * sigheaders)
1133 hdr_rlist * rheaders = NULL;
1135 s = sigheaders ? sigheaders->s : NULL;
1138 const uschar * s2 = s;
1140 /* This works for either NL or CRLF lines; also nul-termination */
1142 if (*s2 == '\n' && s2[1] != '\t' && s2[1] != ' ') break;
1143 s2++; /* move past end of line */
1145 rheaders = arc_rlist_entry(rheaders, s, s2 - s);
1153 /* Return the A-R content, without identity, with line-ending and
1157 arc_sign_find_ar(header_line * headers, const uschar * identity, blob * ret)
1160 int ilen = Ustrlen(identity);
1163 for(h = headers; h; h = h->next)
1165 uschar * s = h->text, c;
1168 if (Ustrncmp(s, HDR_AR, HDRLEN_AR) != 0) continue;
1169 s += HDRLEN_AR, len -= HDRLEN_AR; /* header name */
1171 && (c = *s) && (c == ' ' || c == '\t' || c == '\r' || c == '\n'))
1172 s++, len--; /* FWS */
1173 if (Ustrncmp(s, identity, ilen) != 0) continue;
1174 s += ilen; len -= ilen; /* identity */
1175 if (len <= 0) continue;
1176 if ((c = *s) && c == ';') s++, len--; /* identity terminator */
1178 && (c = *s) && (c == ' ' || c == '\t' || c == '\r' || c == '\n'))
1179 s++, len--; /* FWS */
1180 if (len <= 0) continue;
1190 /* Append a constructed AAR including CRLF. Add it to the arc_ctx too. */
1193 arc_sign_append_aar(gstring * g, arc_ctx * ctx,
1194 const uschar * identity, int instance, blob * ar)
1196 int aar_off = g ? g->ptr : 0;
1198 store_get(sizeof(arc_set) + sizeof(arc_line) + sizeof(header_line), FALSE);
1199 arc_line * al = (arc_line *)(as+1);
1200 header_line * h = (header_line *)(al+1);
1202 g = string_catn(g, ARC_HDR_AAR, ARC_HDRLEN_AAR);
1203 g = string_fmt_append(g, " i=%d; %s;\r\n\t", instance, identity);
1204 g = string_catn(g, US ar->data, ar->len);
1206 h->slen = g->ptr - aar_off;
1207 h->text = g->s + aar_off;
1210 as->prev = ctx->arcset_chain_last;
1211 as->instance = instance;
1214 ctx->arcset_chain = as;
1216 ctx->arcset_chain_last->next = as;
1217 ctx->arcset_chain_last = as;
1219 DEBUG(D_transport) debug_printf("ARC: AAR '%.*s'\n", h->slen - 2, h->text);
1226 arc_sig_from_pseudoheader(gstring * hdata, int hashtype, const uschar * privkey,
1227 blob * sig, const uschar * why)
1229 hashmethod hm = /*sig->keytype == KEYTYPE_ED25519*/ FALSE
1230 ? HASH_SHA2_512 : pdkim_hashes[hashtype].exim_hashmethod;
1233 const uschar * errstr;
1238 debug_printf("ARC: %s header data for signing:\n", why);
1239 pdkim_quoteprint(hdata->s, hdata->ptr);
1241 (void) exim_sha_init(&hhash_ctx, pdkim_hashes[hashtype].exim_hashmethod);
1242 exim_sha_update(&hhash_ctx, hdata->s, hdata->ptr);
1243 exim_sha_finish(&hhash_ctx, &hhash);
1244 debug_printf("ARC: header hash: "); pdkim_hexprint(hhash.data, hhash.len);
1247 if (FALSE /*need hash for Ed25519 or GCrypt signing*/ )
1250 (void) exim_sha_init(&hhash_ctx, pdkim_hashes[hashtype].exim_hashmethod);
1251 exim_sha_update(&hhash_ctx, hdata->s, hdata->ptr);
1252 exim_sha_finish(&hhash_ctx, &hhash);
1256 hhash.data = hdata->s;
1257 hhash.len = hdata->ptr;
1260 if ( (errstr = exim_dkim_signing_init(privkey, &sctx))
1261 || (errstr = exim_dkim_sign(&sctx, hm, &hhash, sig)))
1263 log_write(0, LOG_MAIN, "ARC: %s signing: %s\n", why, errstr);
1265 debug_printf("private key, or private-key file content, was: '%s'\n",
1275 arc_sign_append_sig(gstring * g, blob * sig)
1277 /*debug_printf("%s: raw sig ", __FUNCTION__); pdkim_hexprint(sig->data, sig->len);*/
1278 sig->data = pdkim_encode_base64(sig);
1279 sig->len = Ustrlen(sig->data);
1282 int len = MIN(sig->len, 74);
1283 g = string_catn(g, sig->data, len);
1284 if ((sig->len -= len) == 0) break;
1286 g = string_catn(g, US"\r\n\t ", 5);
1288 g = string_catn(g, US";\r\n", 3);
1289 gstring_release_unused(g);
1290 string_from_gstring(g);
1295 /* Append a constructed AMS including CRLF. Add it to the arc_ctx too. */
1298 arc_sign_append_ams(gstring * g, arc_ctx * ctx, int instance,
1299 const uschar * identity, const uschar * selector, blob * bodyhash,
1300 hdr_rlist * rheaders, const uschar * privkey, unsigned options)
1303 gstring * hdata = NULL;
1305 int hashtype = pdkim_hashname_to_hashtype(US"sha256", 6); /*XXX hardwired */
1308 arc_line * al = store_get(sizeof(header_line) + sizeof(arc_line), FALSE);
1309 header_line * h = (header_line *)(al+1);
1311 /* debug_printf("%s\n", __FUNCTION__); */
1313 /* Construct the to-be-signed AMS pseudo-header: everything but the sig. */
1316 g = string_fmt_append(g, "%s i=%d; a=rsa-sha256; c=relaxed; d=%s; s=%s",
1317 ARC_HDR_AMS, instance, identity, selector); /*XXX hardwired a= */
1318 if (options & ARC_SIGN_OPT_TSTAMP)
1319 g = string_fmt_append(g, "; t=%lu", (u_long)now);
1320 if (options & ARC_SIGN_OPT_EXPIRE)
1321 g = string_fmt_append(g, "; x=%lu", (u_long)expire);
1322 g = string_fmt_append(g, ";\r\n\tbh=%s;\r\n\th=",
1323 pdkim_encode_base64(bodyhash));
1325 for(col = 3; rheaders; rheaders = rheaders->prev)
1327 const uschar * hnames = US"DKIM-Signature:" PDKIM_DEFAULT_SIGN_HEADERS;
1328 uschar * name, * htext = rheaders->h->text;
1331 /* Spot headers of interest */
1333 while ((name = string_nextinlist(&hnames, &sep, NULL, 0)))
1335 int len = Ustrlen(name);
1336 if (strncasecmp(CCS htext, CCS name, len) == 0)
1338 /* If too long, fold line in h= field */
1340 if (col + len > 78) g = string_catn(g, US"\r\n\t ", 5), col = 3;
1342 /* Add name to h= list */
1344 g = string_catn(g, name, len);
1345 g = string_catn(g, US":", 1);
1348 /* Accumulate header for hashing/signing */
1350 hdata = string_cat(hdata,
1351 pdkim_relax_header_n(htext, rheaders->h->slen, TRUE)); /*XXX hardwired */
1357 /* Lose the last colon from the h= list */
1359 if (g->s[g->ptr - 1] == ':') g->ptr--;
1361 g = string_catn(g, US";\r\n\tb=;", 7);
1363 /* Include the pseudo-header in the accumulation */
1365 s = pdkim_relax_header_n(g->s + ams_off, g->ptr - ams_off, FALSE);
1366 hdata = string_cat(hdata, s);
1368 /* Calculate the signature from the accumulation */
1369 /*XXX does that need further relaxation? there are spaces embedded in the b= strings! */
1371 if (!arc_sig_from_pseudoheader(hdata, hashtype, privkey, &sig, US"AMS"))
1374 /* Lose the trailing semicolon from the psuedo-header, and append the signature
1375 (folded over lines) and termination to complete it. */
1378 g = arc_sign_append_sig(g, &sig);
1380 h->slen = g->ptr - ams_off;
1381 h->text = g->s + ams_off;
1383 ctx->arcset_chain_last->hdr_ams = al;
1385 DEBUG(D_transport) debug_printf("ARC: AMS '%.*s'\n", h->slen - 2, h->text);
1391 /* Look for an arc= result in an A-R header blob. We know that its data
1392 happens to be a NUL-term string. */
1395 arc_ar_cv_status(blob * ar)
1397 const uschar * resinfo = ar->data;
1399 uschar * methodspec, * s;
1401 while ((methodspec = string_nextinlist(&resinfo, &sep, NULL, 0)))
1402 if (Ustrncmp(methodspec, US"arc=", 4) == 0)
1405 for (s = methodspec += 4;
1406 (c = *s) && c != ';' && c != ' ' && c != '\r' && c != '\n'; ) s++;
1407 return string_copyn(methodspec, s - methodspec);
1414 /* Build the AS header and prepend it */
1417 arc_sign_prepend_as(gstring * arcset_interim, arc_ctx * ctx,
1418 int instance, const uschar * identity, const uschar * selector, blob * ar,
1419 const uschar * privkey, unsigned options)
1422 uschar * status = arc_ar_cv_status(ar);
1423 arc_line * al = store_get(sizeof(header_line) + sizeof(arc_line), FALSE);
1424 header_line * h = (header_line *)(al+1);
1425 uschar * badline_str;
1427 gstring * hdata = NULL;
1428 int hashtype = pdkim_hashname_to_hashtype(US"sha256", 6); /*XXX hardwired */
1434 - no h= tag; implicit coverage
1435 - arc status from A-R
1437 - coverage is just the new ARC set
1438 including self (but with an empty b= in self)
1440 - all ARC set headers, set-number order, aar then ams then as,
1441 including self (but with an empty b= in self)
1443 DEBUG(D_transport) debug_printf("ARC: building AS for status '%s'\n", status);
1445 /* Construct the AS except for the signature */
1447 arcset = string_append(NULL, 9,
1449 US" i=", string_sprintf("%d", instance),
1451 US"; a=rsa-sha256; d=", identity, /*XXX hardwired */
1452 US"; s=", selector); /*XXX same as AMS */
1453 if (options & ARC_SIGN_OPT_TSTAMP)
1454 arcset = string_append(arcset, 2,
1455 US"; t=", string_sprintf("%lu", (u_long)now));
1456 arcset = string_cat(arcset,
1459 h->slen = arcset->ptr;
1460 h->text = arcset->s;
1462 ctx->arcset_chain_last->hdr_as = al;
1464 /* For any but "fail" chain-verify status, walk the entire chain in order by
1465 instance. For fail, only the new arc-set. Accumulate the elements walked. */
1467 for (arc_set * as = Ustrcmp(status, US"fail") == 0
1468 ? ctx->arcset_chain_last : ctx->arcset_chain;
1472 /* Accumulate AAR then AMS then AS. Relaxed canonicalisation
1473 is required per standard. */
1475 badline_str = US"aar";
1476 if (!(l = as->hdr_aar)) goto badline;
1478 hdata = string_cat(hdata, pdkim_relax_header_n(h->text, h->slen, TRUE));
1479 badline_str = US"ams";
1480 if (!(l = as->hdr_ams)) goto badline;
1482 hdata = string_cat(hdata, pdkim_relax_header_n(h->text, h->slen, TRUE));
1483 badline_str = US"as";
1484 if (!(l = as->hdr_as)) goto badline;
1486 hdata = string_cat(hdata, pdkim_relax_header_n(h->text, h->slen, !!as->next));
1489 /* Calculate the signature from the accumulation */
1491 if (!arc_sig_from_pseudoheader(hdata, hashtype, privkey, &sig, US"AS"))
1494 /* Lose the trailing semicolon */
1496 arcset = arc_sign_append_sig(arcset, &sig);
1497 DEBUG(D_transport) debug_printf("ARC: AS '%.*s'\n", arcset->ptr - 2, arcset->s);
1499 /* Finally, append the AMS and AAR to the new AS */
1501 return string_catn(arcset, arcset_interim->s, arcset_interim->ptr);
1505 debug_printf("ARC: while building AS, missing %s in chain\n", badline_str);
1510 /**************************************/
1512 /* Return pointer to pdkim_bodyhash for given hash method, creating new
1517 arc_ams_setup_sign_bodyhash(void)
1519 int canon_head, canon_body;
1521 DEBUG(D_transport) debug_printf("ARC: requesting bodyhash\n");
1522 pdkim_cstring_to_canons(US"relaxed", 7, &canon_head, &canon_body); /*XXX hardwired */
1523 return pdkim_set_bodyhash(&dkim_sign_ctx,
1524 pdkim_hashname_to_hashtype(US"sha256", 6), /*XXX hardwired */
1534 memset(&arc_sign_ctx, 0, sizeof(arc_sign_ctx));
1539 /* A "normal" header line, identified by DKIM processing. These arrive before
1540 the call to arc_sign(), which carries any newly-created DKIM headers - and
1541 those go textually before the normal ones in the message.
1543 We have to take the feed from DKIM as, in the transport-filter case, the
1544 headers are not in memory at the time of the call to arc_sign().
1546 Take a copy of the header and construct a reverse-order list.
1547 Also parse ARC-chain headers and build the chain struct, retaining pointers
1551 static const uschar *
1552 arc_header_sign_feed(gstring * g)
1554 uschar * s = string_copyn(g->s, g->ptr);
1555 headers_rlist = arc_rlist_entry(headers_rlist, s, g->ptr);
1556 return arc_try_header(&arc_sign_ctx, headers_rlist->h, TRUE);
1561 /* ARC signing. Called from the smtp transport, if the arc_sign option is set.
1562 The dkim_exim_sign() function has already been called, so will have hashed the
1563 message body for us so long as we requested a hash previously.
1566 signspec Three-element colon-sep list: identity, selector, privkey.
1567 Optional fourth element: comma-sep list of options.
1569 sigheaders Any signature headers already generated, eg. by DKIM, or NULL
1573 Set of headers to prepend to the message, including the supplied sigheaders
1574 but not the plainheaders.
1578 arc_sign(const uschar * signspec, gstring * sigheaders, uschar ** errstr)
1580 const uschar * identity, * selector, * privkey, * opts, * s;
1581 unsigned options = 0;
1583 header_line * headers;
1584 hdr_rlist * rheaders;
1592 /* Parse the signing specification */
1594 identity = string_nextinlist(&signspec, &sep, NULL, 0);
1595 selector = string_nextinlist(&signspec, &sep, NULL, 0);
1596 if ( !*identity || !*selector
1597 || !(privkey = string_nextinlist(&signspec, &sep, NULL, 0)) || !*privkey)
1599 log_write(0, LOG_MAIN, "ARC: bad signing-specification (%s)",
1600 !*identity ? "identity" : !*selector ? "selector" : "private-key");
1601 return sigheaders ? sigheaders : string_get(0);
1603 if (*privkey == '/' && !(privkey = expand_file_big_buffer(privkey)))
1604 return sigheaders ? sigheaders : string_get(0);
1606 if ((opts = string_nextinlist(&signspec, &sep, NULL, 0)))
1609 while ((s = string_nextinlist(&opts, &osep, NULL, 0)))
1610 if (Ustrcmp(s, "timestamps") == 0)
1612 options |= ARC_SIGN_OPT_TSTAMP;
1613 if (!now) now = time(NULL);
1615 else if (Ustrncmp(s, "expire", 6) == 0)
1617 options |= ARC_SIGN_OPT_EXPIRE;
1618 if (*(s += 6) == '=')
1621 if (!(expire = (time_t)atoi(CS ++s)))
1622 expire = ARC_SIGN_DEFAULT_EXPIRE_DELTA;
1623 if (!now) now = time(NULL);
1627 expire = (time_t)atol(CS s);
1630 if (!now) now = time(NULL);
1631 expire = now + ARC_SIGN_DEFAULT_EXPIRE_DELTA;
1636 DEBUG(D_transport) debug_printf("ARC: sign for %s\n", identity);
1638 /* Make an rlist of any new DKIM headers, then add the "normals" rlist to it.
1639 Then scan the list for an A-R header. */
1641 string_from_gstring(sigheaders);
1642 if ((rheaders = arc_sign_scan_headers(&arc_sign_ctx, sigheaders)))
1645 for (rp = &headers_rlist; *rp; ) rp = &(*rp)->prev;
1649 /* Finally, build a normal-order headers list */
1650 /*XXX only needed for hunt-the-AR? */
1651 /*XXX also, we really should be accepting any number of ADMD-matching ARs */
1653 header_line * hnext = NULL;
1654 for (rheaders = headers_rlist; rheaders;
1655 hnext = rheaders->h, rheaders = rheaders->prev)
1656 rheaders->h->next = hnext;
1660 if (!(arc_sign_find_ar(headers, identity, &ar)))
1662 log_write(0, LOG_MAIN, "ARC: no Authentication-Results header for signing");
1663 return sigheaders ? sigheaders : string_get(0);
1666 /* We previously built the data-struct for the existing ARC chain, if any, using a headers
1667 feed from the DKIM module. Use that to give the instance number for the ARC set we are
1671 if (arc_sign_ctx.arcset_chain_last)
1672 debug_printf("ARC: existing chain highest instance: %d\n",
1673 arc_sign_ctx.arcset_chain_last->instance);
1675 debug_printf("ARC: no existing chain\n");
1677 instance = arc_sign_ctx.arcset_chain_last ? arc_sign_ctx.arcset_chain_last->instance + 1 : 1;
1681 - copy the A-R; prepend i= & identity
1684 g = arc_sign_append_aar(g, &arc_sign_ctx, identity, instance, &ar);
1688 - Looks fairly like a DKIM sig
1689 - Cover all DKIM sig headers as well as the usuals
1692 - we must have requested a suitable bodyhash previously
1695 b = arc_ams_setup_sign_bodyhash();
1696 g = arc_sign_append_ams(g, &arc_sign_ctx, instance, identity, selector,
1697 &b->bh, headers_rlist, privkey, options);
1702 - no h= tag; implicit coverage
1703 - arc status from A-R
1705 - coverage is just the new ARC set
1706 including self (but with an empty b= in self)
1708 - all ARC set headers, set-number order, aar then ams then as,
1709 including self (but with an empty b= in self)
1713 g = arc_sign_prepend_as(g, &arc_sign_ctx, instance, identity, selector, &ar,
1716 /* Finally, append the dkim headers and return the lot. */
1718 if (sigheaders) g = string_catn(g, sigheaders->s, sigheaders->ptr);
1719 (void) string_from_gstring(g);
1720 gstring_release_unused(g);
1725 /******************************************************************************/
1727 /* Check to see if the line is an AMS and if so, set up to validate it.
1728 Called from the DKIM input processing. This must be done now as the message
1729 body data is hashed during input.
1731 We call the DKIM code to request a body-hash; it has the facility already
1732 and the hash parameters might be common with other requests.
1735 static const uschar *
1736 arc_header_vfy_feed(gstring * g)
1743 if (!dkim_verify_ctx) return US"no dkim context";
1745 if (strncmpic(ARC_HDR_AMS, g->s, ARC_HDRLEN_AMS) != 0) return US"not AMS";
1747 DEBUG(D_receive) debug_printf("ARC: spotted AMS header\n");
1748 /* Parse the AMS header */
1753 memset(&al, 0, sizeof(arc_line));
1754 if ((errstr = arc_parse_line(&al, &h, ARC_HDRLEN_AMS, FALSE)))
1756 DEBUG(D_acl) if (errstr) debug_printf("ARC: %s\n", errstr);
1760 if (!al.a_hash.data)
1762 DEBUG(D_acl) debug_printf("ARC: no a_hash from '%.*s'\n", h.slen, h.text);
1769 al.c_body.data = US"simple"; al.c_body.len = 6;
1770 al.c_head = al.c_body;
1773 /* Ask the dkim code to calc a bodyhash with those specs */
1775 if (!(b = arc_ams_setup_vfy_bodyhash(&al)))
1776 return US"dkim hash setup fail";
1778 /* Discard the reference; search again at verify time, knowing that one
1779 should have been created here. */
1784 return US"line parsing error";
1789 /* A header line has been identified by DKIM processing.
1793 is_vfy TRUE for verify mode or FALSE for signing mode
1796 NULL for success, or an error string (probably unused)
1800 arc_header_feed(gstring * g, BOOL is_vfy)
1802 return is_vfy ? arc_header_vfy_feed(g) : arc_header_sign_feed(g);
1807 /******************************************************************************/
1809 /* Construct the list of domains from the ARC chain after validation */
1812 fn_arc_domains(void)
1818 for (as = arc_verify_ctx.arcset_chain, inst = 1; as; as = as->next, inst++)
1820 arc_line * hdr_as = as->hdr_as;
1823 blob * d = &hdr_as->d;
1825 for (; inst < as->instance; inst++)
1826 g = string_catn(g, US":", 1);
1828 g = d->data && d->len
1829 ? string_append_listele_n(g, ':', d->data, d->len)
1830 : string_catn(g, US":", 1);
1833 g = string_catn(g, US":", 1);
1835 return g ? g->s : US"";
1839 /* Construct an Authentication-Results header portion, for the ARC module */
1842 authres_arc(gstring * g)
1846 arc_line * highest_ams;
1847 int start = 0; /* Compiler quietening */
1848 DEBUG(D_acl) start = g->ptr;
1850 g = string_append(g, 2, US";\n\tarc=", arc_state);
1851 if (arc_received_instance > 0)
1853 g = string_fmt_append(g, " (i=%d)", arc_received_instance);
1854 if (arc_state_reason)
1855 g = string_append(g, 3, US"(", arc_state_reason, US")");
1856 g = string_catn(g, US" header.s=", 10);
1857 highest_ams = arc_received->hdr_ams;
1858 g = string_catn(g, highest_ams->s.data, highest_ams->s.len);
1860 g = string_fmt_append(g, " arc.oldest-pass=%d", arc_oldest_pass);
1862 if (sender_host_address)
1863 g = string_append(g, 2, US" smtp.remote-ip=", sender_host_address);
1865 else if (arc_state_reason)
1866 g = string_append(g, 3, US" (", arc_state_reason, US")");
1867 DEBUG(D_acl) debug_printf("ARC: authres '%.*s'\n",
1868 g->ptr - start - 3, g->s + start + 3);
1871 DEBUG(D_acl) debug_printf("ARC: no authres\n");
1876 # endif /* DISABLE_DKIM */
1877 #endif /* EXPERIMENTAL_ARC */