implementing mistrust vs. under_attack
1 #include "pEp_internal.h"
2 #include "message_api.h"
12 #define MIN(A, B) ((B) > (A) ? (A) : (B))
15 #define MAX(A, B) ((B) > (A) ? (B) : (A))
19 static bool string_equality(const char *s1, const char *s2)
21 if (s1 == NULL || s2 == NULL)
26 return strcmp(s1, s2) == 0;
29 static bool is_mime_type(const bloblist_t *bl, const char *mt)
33 return bl && string_equality(bl->mime_type, mt);
36 static bool is_fileending(const bloblist_t *bl, const char *fe)
40 if (bl == NULL || bl->filename == NULL)
43 assert(bl && bl->filename);
45 size_t fe_len = strlen(fe);
46 size_t fn_len = strlen(bl->filename);
51 assert(fn_len > fe_len);
53 return strcmp(bl->filename + (fn_len - fe_len), fe) == 0;
56 static void add_opt_field(message *msg, const char *name, const char *value)
60 if (msg && name && value) {
61 stringpair_t *pair = new_stringpair(name, value);
65 stringpair_list_t *field = stringpair_list_add(msg->opt_fields, pair);
69 if (msg->opt_fields == NULL)
70 msg->opt_fields = field;
74 static char * combine_short_and_long(const char *shortmsg, const char *longmsg)
79 assert(strcmp(shortmsg, "pEp") != 0);
84 ptext = calloc(1, strlen(shortmsg) + strlen(longmsg) + 12);
89 strcpy(ptext, "Subject: ");
90 strcat(ptext, shortmsg);
91 strcat(ptext, "\n\n");
92 strcat(ptext, longmsg);
97 static int seperate_short_and_long(const char *src, char **shortmsg, char **longmsg)
99 char *_shortmsg = NULL;
100 char *_longmsg = NULL;
109 if (strncasecmp(src, "subject: ", 9) == 0) {
110 char *line_end = strchr(src, '\n');
112 if (line_end == NULL) {
113 _shortmsg = strdup(src + 9);
115 if (_shortmsg == NULL)
120 size_t n = line_end - src;
122 if (*(line_end - 1) == '\r')
123 _shortmsg = strndup(src + 9, n - 10);
125 _shortmsg = strndup(src + 9, n - 9);
127 if (_shortmsg == NULL)
130 while (*(src + n) && (*(src + n) == '\n' || *(src + n) == '\r'))
134 _longmsg = strdup(src + n);
136 if (_longmsg == NULL)
142 _shortmsg = strdup("");
144 if (_shortmsg == NULL)
146 _longmsg = strdup(src);
148 if (_longmsg == NULL)
152 *shortmsg = _shortmsg;
164 static PEP_STATUS copy_fields(message *dst, const message *src)
169 free_timestamp(dst->sent);
172 dst->sent = timestamp_dup(src->sent);
173 if (dst->sent == NULL)
174 return PEP_OUT_OF_MEMORY;
177 free_timestamp(dst->recv);
180 dst->recv = timestamp_dup(src->recv);
181 if (dst->recv == NULL)
182 return PEP_OUT_OF_MEMORY;
185 free_identity(dst->from);
188 dst->from = identity_dup(src->from);
189 if (dst->from == NULL)
190 return PEP_OUT_OF_MEMORY;
193 free_identity_list(dst->to);
195 if (src->to && src->to->ident) {
196 dst->to = identity_list_dup(src->to);
198 return PEP_OUT_OF_MEMORY;
201 free_identity(dst->recv_by);
204 dst->recv_by = identity_dup(src->recv_by);
205 if (dst->recv_by == NULL)
206 return PEP_OUT_OF_MEMORY;
209 free_identity_list(dst->cc);
211 if (src->cc && src->cc->ident) {
212 dst->cc = identity_list_dup(src->cc);
214 return PEP_OUT_OF_MEMORY;
217 free_identity_list(dst->bcc);
219 if (src->bcc && src->bcc->ident) {
220 dst->bcc = identity_list_dup(src->bcc);
221 if (dst->bcc == NULL)
222 return PEP_OUT_OF_MEMORY;
225 free_identity_list(dst->reply_to);
226 dst->reply_to = NULL;
227 if (src->reply_to && src->reply_to->ident) {
228 dst->reply_to = identity_list_dup(src->reply_to);
229 if (dst->reply_to == NULL)
230 return PEP_OUT_OF_MEMORY;
233 free_stringlist(dst->in_reply_to);
234 dst->in_reply_to = NULL;
235 if (src->in_reply_to && src->in_reply_to->value) {
236 dst->in_reply_to = stringlist_dup(src->in_reply_to);
237 if (dst->in_reply_to == NULL)
238 return PEP_OUT_OF_MEMORY;
241 free_stringlist(dst->references);
242 dst->references = NULL;
243 if (src->references) {
244 dst->references = stringlist_dup(src->references);
245 if (dst->references == NULL)
246 return PEP_OUT_OF_MEMORY;
249 free_stringlist(dst->keywords);
250 dst->keywords = NULL;
251 if (src->keywords && src->keywords->value) {
252 dst->keywords = stringlist_dup(src->keywords);
253 if (dst->keywords == NULL)
254 return PEP_OUT_OF_MEMORY;
258 dst->comments = NULL;
260 dst->comments = strdup(src->comments);
261 assert(dst->comments);
262 if (dst->comments == NULL)
263 return PEP_OUT_OF_MEMORY;
266 return PEP_STATUS_OK;
269 static message * clone_to_empty_message(const message * src)
272 message * msg = NULL;
276 msg = calloc(1, sizeof(message));
283 status = copy_fields(msg, src);
284 if (status != PEP_STATUS_OK)
294 static PEP_STATUS encrypt_PGP_MIME(
301 PEP_STATUS status = PEP_STATUS_OK;
302 bool free_ptext = false;
306 char *mimetext = NULL;
308 assert(dst->longmsg == NULL);
309 dst->enc_format = PEP_enc_PGP_MIME;
311 if (src->shortmsg && strcmp(src->shortmsg, "pEp") != 0) {
312 if (session->unencrypted_subject) {
313 dst->shortmsg = strdup(src->shortmsg);
314 assert(dst->shortmsg);
315 if (dst->shortmsg == NULL)
317 ptext = src->longmsg;
320 ptext = combine_short_and_long(src->shortmsg, src->longmsg);
326 else if (src->longmsg) {
327 ptext = src->longmsg;
333 message *_src = calloc(1, sizeof(message));
337 _src->longmsg = ptext;
338 _src->longmsg_formatted = src->longmsg_formatted;
339 _src->attachments = src->attachments;
340 _src->enc_format = PEP_enc_none;
341 status = mime_encode_message(_src, true, &mimetext);
342 assert(status == PEP_STATUS_OK);
349 if (mimetext == NULL)
352 status = encrypt_and_sign(session, keys, mimetext, strlen(mimetext),
358 dst->longmsg = strdup("this message was encrypted with p≡p "
359 "http://pEp-project.org");
360 assert(dst->longmsg);
361 if (dst->longmsg == NULL)
364 char *v = strdup("Version: 1");
369 bloblist_t *_a = new_bloblist(v, 11, "application/pgp-encrypted", NULL);
372 dst->attachments = _a;
374 _ctext = malloc(csize);
378 memcpy(_ctext, ctext, csize);
380 _a = bloblist_add(_a, _ctext, csize, "application/octet-stream",
385 return PEP_STATUS_OK;
388 status = PEP_OUT_OF_MEMORY;
397 static PEP_STATUS encrypt_PGP_in_pieces(
404 PEP_STATUS status = PEP_STATUS_OK;
408 bool free_ptext = false;
410 assert(dst->longmsg == NULL);
411 assert(dst->attachments == NULL);
413 dst->enc_format = PEP_enc_pieces;
415 if (src->shortmsg && src->shortmsg[0] && strcmp(src->shortmsg, "pEp") != 0) {
416 if (session->unencrypted_subject) {
417 dst->shortmsg = strdup(src->shortmsg);
418 assert(dst->shortmsg);
419 if (dst->shortmsg == NULL)
421 ptext = src->longmsg;
424 ptext = combine_short_and_long(src->shortmsg, src->longmsg);
430 status = encrypt_and_sign(session, keys, ptext, strlen(ptext), &ctext,
436 dst->longmsg = strndup(ctext, csize);
437 assert(dst->longmsg);
438 if (dst->longmsg == NULL)
445 else if (src->longmsg && src->longmsg[0]) {
446 ptext = src->longmsg;
447 status = encrypt_and_sign(session, keys, ptext, strlen(ptext), &ctext,
450 dst->longmsg = strndup(ctext, csize);
451 assert(dst->longmsg);
452 if (dst->longmsg == NULL)
460 dst->longmsg = strdup("");
461 assert(dst->longmsg);
462 if (dst->longmsg == NULL)
466 if (src->longmsg_formatted && src->longmsg_formatted[0]) {
467 ptext = src->longmsg_formatted;
468 status = encrypt_and_sign(session, keys, ptext, strlen(ptext), &ctext,
471 char *_ctext = malloc(csize);
475 memcpy(_ctext, ctext, csize);
477 bloblist_t *_a = bloblist_add(dst->attachments, _ctext, csize,
478 "application/octet-stream", "PGPexch.htm.pgp");
481 if (dst->attachments == NULL)
482 dst->attachments = _a;
489 if (src->attachments) {
490 if (dst->attachments == NULL) {
491 dst->attachments = new_bloblist(NULL, 0, NULL, NULL);
492 if (dst->attachments == NULL)
496 bloblist_t *_s = src->attachments;
497 bloblist_t *_d = dst->attachments;
499 for (int n = 0; _s && _s->value; _s = _s->next) {
500 size_t psize = _s->size;
502 status = encrypt_and_sign(session, keys, ptext, psize, &ctext,
505 char *filename = NULL;
508 size_t len = strlen(_s->filename);
509 filename = calloc(1, len + 5);
510 if (filename == NULL)
513 strcpy(filename, _s->filename);
514 strcpy(filename + len, ".pgp");
517 filename = calloc(1, 20);
518 if (filename == NULL)
523 snprintf(filename, 20, "Attachment%d.pgp", n);
526 char *_ctext = malloc(csize);
530 memcpy(_ctext, ctext, csize);
532 _d = bloblist_add(_d, _ctext, csize, "application/octet-stream",
543 return PEP_STATUS_OK;
546 status = PEP_OUT_OF_MEMORY;
554 static char * keylist_to_string(const stringlist_t *keylist)
557 size_t size = stringlist_length(keylist);
559 const stringlist_t *_kl;
560 for (_kl = keylist; _kl && _kl->value; _kl = _kl->next) {
561 size += strlen(_kl->value);
564 char *result = calloc(1, size);
569 for (_kl = keylist; _kl && _kl->value; _kl = _kl->next) {
570 _r = stpcpy(_r, _kl->value);
571 if (_kl->next && _kl->next->value)
572 _r = stpcpy(_r, ",");
582 static const char * color_to_string(PEP_color color)
585 case PEP_rating_cannot_decrypt:
586 return "cannot_decrypt";
587 case PEP_rating_have_no_key:
588 return "have_no_key";
589 case PEP_rating_unencrypted:
590 return "unencrypted";
591 case PEP_rating_unreliable:
593 case PEP_rating_reliable:
595 case PEP_rating_trusted:
597 case PEP_rating_trusted_and_anonymized:
598 return "trusted_and_anonymized";
599 case PEP_rating_fully_anonymous:
600 return "fully_anonymous";
601 case PEP_rating_mistrust:
603 case PEP_rating_b0rken:
605 case PEP_rating_under_attack:
606 return "unter_attack";
612 static void decorate_message(
615 stringlist_t *keylist
620 add_opt_field(msg, "X-pEp-Version", "1.0");
622 if (color != PEP_rating_undefined)
623 add_opt_field(msg, "X-EncStatus", color_to_string(color));
626 char *_keylist = keylist_to_string(keylist);
627 add_opt_field(msg, "X-KeyList", _keylist);
632 static PEP_color _rating(PEP_comm_type ct)
634 if (ct == PEP_ct_unknown)
635 return PEP_rating_undefined;
637 else if (ct == PEP_ct_compromized)
638 return PEP_rating_under_attack;
640 else if (ct == PEP_ct_mistrusted)
641 return PEP_rating_mistrust;
643 else if (ct >= PEP_ct_confirmed_enc_anon)
644 return PEP_rating_trusted_and_anonymized;
646 else if (ct >= PEP_ct_strong_encryption)
647 return PEP_rating_trusted;
649 else if (ct >= PEP_ct_strong_but_unconfirmed && ct < PEP_ct_confirmed)
650 return PEP_rating_reliable;
652 else if (ct == PEP_ct_no_encryption || ct == PEP_ct_no_encrypted_channel ||
653 ct == PEP_ct_my_key_not_included)
654 return PEP_rating_unencrypted;
657 return PEP_rating_unreliable;
660 static bool is_encrypted_attachment(const bloblist_t *blob)
666 if (blob->filename == NULL)
669 ext = strrchr(blob->filename, '.');
673 if (strcmp(blob->mime_type, "application/octet-stream") == 0) {
674 if (strcmp(ext, ".pgp") == 0 || strcmp(ext, ".gpg") == 0 ||
675 strcmp(ext, ".asc") == 0)
678 else if (strcmp(blob->mime_type, "text/plain") == 0) {
679 if (strcmp(ext, ".asc") == 0)
686 static bool is_encrypted_html_attachment(const bloblist_t *blob)
689 assert(blob->filename);
691 if (strncmp(blob->filename, "PGPexch.htm.", 12) == 0) {
692 if (strcmp(blob->filename + 11, ".pgp") == 0 ||
693 strcmp(blob->filename + 11, ".asc") == 0)
700 static char * without_double_ending(const char *filename)
706 ext = strrchr(filename, '.');
710 char *result = strndup(filename, ext - filename);
715 static PEP_color decrypt_color(PEP_STATUS status)
718 case PEP_UNENCRYPTED:
720 case PEP_VERIFY_NO_KEY:
721 case PEP_VERIFIED_AND_TRUSTED:
722 return PEP_rating_unencrypted;
725 return PEP_rating_unreliable;
727 case PEP_DECRYPTED_AND_VERIFIED:
728 return PEP_rating_reliable;
730 case PEP_DECRYPT_NO_KEY:
731 return PEP_rating_have_no_key;
733 case PEP_DECRYPT_WRONG_FORMAT:
734 case PEP_CANNOT_DECRYPT_UNKNOWN:
735 return PEP_rating_cannot_decrypt;
738 return PEP_rating_undefined;
742 static PEP_color key_color(PEP_SESSION session, const char *fpr)
744 PEP_comm_type comm_type = PEP_ct_unknown;
749 PEP_STATUS status = get_key_rating(session, fpr, &comm_type);
750 if (status != PEP_STATUS_OK)
751 return PEP_rating_undefined;
753 return _rating(comm_type);
756 static PEP_color keylist_color(PEP_SESSION session, stringlist_t *keylist)
758 PEP_color color = PEP_rating_reliable;
760 assert(keylist && keylist->value);
761 if (keylist == NULL || keylist->value == NULL)
762 return PEP_rating_unencrypted;
765 for (_kl = keylist; _kl && _kl->value; _kl = _kl->next) {
769 color = key_color(session, _kl->value);
770 if (color <= PEP_rating_mistrust)
773 if (color >= PEP_rating_reliable) {
774 status = least_trust(session, _kl->value, &ct);
775 if (status != PEP_STATUS_OK)
776 return PEP_rating_undefined;
777 if (ct == PEP_ct_unknown)
778 color = PEP_rating_unreliable;
787 static PEP_comm_type _get_comm_type(
789 PEP_comm_type max_comm_type,
793 PEP_STATUS status = update_identity(session, ident);
795 if (max_comm_type == PEP_ct_compromized)
796 return PEP_ct_compromized;
798 if (status == PEP_STATUS_OK) {
799 if (ident->comm_type == PEP_ct_compromized)
800 return PEP_ct_compromized;
802 return MIN(max_comm_type, ident->comm_type);
805 return PEP_ct_unknown;
809 void import_attached_keys(PEP_SESSION session, const message *msg)
815 for (bl = msg->attachments; bl && bl->value; bl = bl->next) {
816 assert(bl && bl->value && bl->size);
818 // workaround for Apple Mail bugs
819 if (is_mime_type(bl, "application/x-apple-msg-attachment")) {
820 if (is_fileending(bl, ".asc")) {
821 if (strlen(bl->filename) == 14 &&
822 bl->filename[0] == '0' && bl->filename[1] == 'x')
823 import_key(session, bl->value, bl->size);
824 else if (strlen(bl->filename) == 12)
825 import_key(session, bl->value, bl->size);
828 else if (bl->mime_type == NULL ||
829 is_mime_type(bl, "application/octet-stream")) {
830 if (is_fileending(bl, ".pgp") || is_fileending(bl, ".gpg") ||
831 is_fileending(bl, ".key") || is_fileending(bl, ".asc"))
832 import_key(session, bl->value, bl->size);
834 else if (is_mime_type(bl, "application/pgp-keys")) {
835 import_key(session, bl->value, bl->size);
837 else if (is_mime_type(bl, "text/plain")) {
838 if (is_fileending(bl, ".pgp") || is_fileending(bl, ".gpg") ||
839 is_fileending(bl, ".key") || is_fileending(bl, ".asc"))
840 import_key(session, bl->value, bl->size);
843 if(msg->from && msg->from->user_id && msg->from->address)
844 update_identity(session, msg->from);
847 void attach_own_key(PEP_SESSION session, message *msg)
856 if (msg->dir == PEP_dir_incoming)
859 assert(msg->from && msg->from->fpr);
860 if (msg->from == NULL || msg->from->fpr == NULL)
863 PEP_STATUS status = export_key(session, msg->from->fpr, &keydata, &size);
864 assert(status == PEP_STATUS_OK);
865 if (status != PEP_STATUS_OK)
869 bl = bloblist_add(msg->attachments, keydata, size, "application/pgp-keys",
871 if (msg->attachments == NULL && bl)
872 msg->attachments = bl;
875 PEP_cryptotech determine_encryption_format(message *msg)
879 if (is_PGP_message_text(msg->longmsg)) {
880 msg->enc_format = PEP_enc_pieces;
881 return PEP_crypt_OpenPGP;
883 else if (msg->attachments && msg->attachments->next &&
884 is_mime_type(msg->attachments, "application/pgp-encrypted") &&
885 is_PGP_message_text(msg->attachments->next->value)
887 msg->enc_format = PEP_enc_PGP_MIME;
888 return PEP_crypt_OpenPGP;
891 msg->enc_format = PEP_enc_none;
892 return PEP_crypt_none;
896 DYNAMIC_API PEP_STATUS encrypt_message(
899 stringlist_t * extra,
901 PEP_enc_format enc_format
904 PEP_STATUS status = PEP_STATUS_OK;
905 message * msg = NULL;
906 stringlist_t * keys = NULL;
911 assert(enc_format != PEP_enc_none);
913 if (!(session && src && dst && enc_format != PEP_enc_none))
914 return PEP_ILLEGAL_VALUE;
916 determine_encryption_format(src);
917 if (src->enc_format != PEP_enc_none)
918 return PEP_ILLEGAL_VALUE;
922 status = myself(session, src->from);
923 if (status != PEP_STATUS_OK)
926 keys = new_stringlist(src->from->fpr);
930 stringlist_t *_k = keys;
933 _k = stringlist_append(_k, extra);
938 bool dest_keys_found = true;
941 for (_il = src->to; _il && _il->ident; _il = _il->next) {
942 PEP_STATUS _status = update_identity(session, _il->ident);
943 if (_status != PEP_STATUS_OK) {
948 if (_il->ident->fpr && _il->ident->fpr[0]) {
949 _k = stringlist_add(_k, _il->ident->fpr);
954 dest_keys_found = false;
955 status = PEP_KEY_NOT_FOUND;
959 for (_il = src->cc; _il && _il->ident; _il = _il->next) {
960 PEP_STATUS _status = update_identity(session, _il->ident);
961 if (_status != PEP_STATUS_OK)
967 if (_il->ident->fpr && _il->ident->fpr[0]) {
968 _k = stringlist_add(_k, _il->ident->fpr);
973 dest_keys_found = false;
974 status = PEP_KEY_NOT_FOUND;
978 if (!dest_keys_found) {
979 free_stringlist(keys);
980 if (!session->passive_mode)
981 attach_own_key(session, src);
982 return PEP_UNENCRYPTED;
985 msg = clone_to_empty_message(src);
989 attach_own_key(session, src);
991 switch (enc_format) {
992 case PEP_enc_PGP_MIME:
993 case PEP_enc_PEP: // BUG: should be implemented extra
994 status = encrypt_PGP_MIME(session, src, keys, msg);
998 status = encrypt_PGP_in_pieces(session, src, keys, msg);
1001 /* case PEP_enc_PEP:
1007 status = PEP_ILLEGAL_VALUE;
1011 if (status == PEP_OUT_OF_MEMORY)
1014 if (status != PEP_STATUS_OK)
1018 free_stringlist(keys);
1020 if (msg && msg->shortmsg == NULL) {
1021 msg->shortmsg = strdup("pEp");
1022 assert(msg->shortmsg);
1026 decorate_message(msg, PEP_rating_undefined, NULL);
1032 status = PEP_OUT_OF_MEMORY;
1035 free_stringlist(keys);
1041 DYNAMIC_API PEP_STATUS decrypt_message(
1042 PEP_SESSION session,
1045 stringlist_t **keylist,
1049 PEP_STATUS status = PEP_STATUS_OK;
1050 PEP_STATUS decrypt_status = PEP_CANNOT_DECRYPT_UNKNOWN;
1051 message *msg = NULL;
1056 stringlist_t *_keylist = NULL;
1064 if (!(session && src && dst && keylist && color))
1065 return PEP_ILLEGAL_VALUE;
1067 import_attached_keys(session, src);
1068 PEP_cryptotech crypto = determine_encryption_format(src);
1072 *color = PEP_rating_undefined;
1074 switch (src->enc_format) {
1076 *color = PEP_rating_unencrypted;
1077 return PEP_UNENCRYPTED;
1079 case PEP_enc_PGP_MIME:
1080 ctext = src->attachments->next->value;
1081 csize = src->attachments->next->size;
1084 case PEP_enc_pieces:
1085 ctext = src->longmsg;
1086 csize = strlen(ctext);
1092 status = cryptotech[crypto].decrypt_and_verify(session, ctext,
1093 csize, &ptext, &psize, &_keylist);
1094 if (status > PEP_CANNOT_DECRYPT_UNKNOWN)
1097 decrypt_status = status;
1100 switch (src->enc_format) {
1101 case PEP_enc_PGP_MIME:
1102 status = mime_decode_message(ptext, psize, &msg);
1103 if (status != PEP_STATUS_OK)
1107 case PEP_enc_pieces:
1108 msg = clone_to_empty_message(src);
1112 msg->longmsg = strdup(ptext);
1113 assert(msg->longmsg);
1114 if (msg->longmsg == NULL)
1117 bloblist_t *_m = msg->attachments;
1118 if (_m == NULL && src->attachments && src->attachments->value) {
1119 msg->attachments = new_bloblist(NULL, 0, NULL, NULL);
1120 _m = msg->attachments;
1124 for (_s = src->attachments; _s && _s->value; _s = _s->next) {
1125 if (is_encrypted_attachment(_s)) {
1126 stringlist_t *_keylist = NULL;
1130 attctext = _s->value;
1131 attcsize = _s->size;
1133 status = decrypt_and_verify(session, attctext, attcsize,
1134 &ptext, &psize, &_keylist);
1135 free_stringlist(_keylist);
1138 if (is_encrypted_html_attachment(_s)) {
1139 msg->longmsg_formatted = strdup(ptext);
1140 assert(msg->longmsg_formatted);
1141 if (msg->longmsg_formatted == NULL)
1145 char * mime_type = "application/octet-stream";
1147 without_double_ending(_s->filename);
1148 if (filename == NULL)
1151 char *_ptext = malloc(psize);
1155 memcpy(_ptext, ptext, psize);
1157 _m = bloblist_add(_m, _ptext, psize, mime_type,
1162 if (msg->attachments == NULL)
1163 msg->attachments = _m;
1167 char *copy = malloc(_s->size);
1171 memcpy(copy, _s->value, _s->size);
1172 _m = bloblist_add(_m, copy, _s->size, _s->mime_type, _s->filename);
1178 char *copy = malloc(_s->size);
1182 memcpy(copy, _s->value, _s->size);
1183 _m = bloblist_add(_m, copy, _s->size, _s->mime_type, _s->filename);
1192 // BUG: must implement more
1196 switch (src->enc_format) {
1197 case PEP_enc_PGP_MIME:
1198 case PEP_enc_pieces:
1199 status = copy_fields(msg, src);
1200 if (status != PEP_STATUS_OK)
1203 if (src->shortmsg == NULL || strcmp(src->shortmsg, "pEp") == 0)
1208 int r = seperate_short_and_long(msg->longmsg, &shortmsg,
1213 free(msg->shortmsg);
1216 msg->shortmsg = shortmsg;
1217 msg->longmsg = longmsg;
1220 msg->shortmsg = strdup(src->shortmsg);
1221 assert(msg->shortmsg);
1222 if (msg->shortmsg == NULL)
1228 // BUG: must implement more
1232 import_attached_keys(session, msg);
1234 if(decrypt_status == PEP_DECRYPTED){
1236 // In case message did decrypt, but no valid signature could be found
1237 // then retry decrypt+verify after importing key.
1238 // TODO optimize if import_attached_keys didn't import any key
1240 char *re_ptext = NULL;
1243 free_stringlist(_keylist);
1246 status = cryptotech[crypto].decrypt_and_verify(session, ctext,
1247 csize, &re_ptext, &re_psize, &_keylist);
1252 if (status > PEP_CANNOT_DECRYPT_UNKNOWN)
1255 decrypt_status = status;
1258 *color = decrypt_color(decrypt_status);
1260 if (*color > PEP_rating_mistrust) {
1261 PEP_color kl_color = PEP_rating_undefined;
1264 kl_color = keylist_color(session, _keylist);
1266 if (kl_color <= PEP_rating_mistrust) {
1269 else if (*color >= PEP_rating_reliable &&
1270 kl_color < PEP_rating_reliable) {
1271 *color = PEP_rating_unreliable;
1273 else if (*color >= PEP_rating_reliable &&
1274 kl_color >= PEP_rating_reliable) {
1275 if (!(src->from && src->from->user_id && src->from->user_id[0])) {
1276 *color = PEP_rating_unreliable;
1279 char *fpr = _keylist->value;
1280 pEp_identity *_from = new_identity(src->from->address, fpr,
1281 src->from->user_id, src->from->username);
1284 status = update_identity(session, _from);
1285 if (_from->comm_type != PEP_ct_unknown)
1286 *color = _rating(_from->comm_type);
1287 free_identity(_from);
1288 if (status != PEP_STATUS_OK)
1296 decorate_message(msg, *color, _keylist);
1299 *keylist = _keylist;
1301 return PEP_STATUS_OK;
1304 status = PEP_OUT_OF_MEMORY;
1308 free_stringlist(_keylist);
1313 DYNAMIC_API PEP_STATUS outgoing_message_color(
1314 PEP_SESSION session,
1319 PEP_STATUS status = PEP_STATUS_OK;
1320 PEP_comm_type max_comm_type = PEP_ct_pEp;
1321 bool comm_type_determined = false;
1327 assert(msg->dir == PEP_dir_outgoing);
1330 if (!(session && msg && color))
1331 return PEP_ILLEGAL_VALUE;
1333 if (msg->from == NULL || msg->dir != PEP_dir_outgoing)
1334 return PEP_ILLEGAL_VALUE;
1336 *color = PEP_rating_undefined;
1338 status = myself(session, msg->from);
1339 if (status != PEP_STATUS_OK)
1342 for (il = msg->to; il != NULL; il = il->next) {
1344 update_identity(session, il->ident);
1345 max_comm_type = _get_comm_type(session, max_comm_type,
1347 comm_type_determined = true;
1351 for (il = msg->cc; il != NULL; il = il->next) {
1353 update_identity(session, il->ident);
1354 max_comm_type = _get_comm_type(session, max_comm_type,
1356 comm_type_determined = true;
1360 if (comm_type_determined == false)
1361 *color = PEP_rating_undefined;
1363 *color = MAX(_rating(max_comm_type), PEP_rating_unencrypted);
1365 return PEP_STATUS_OK;
1368 DYNAMIC_API PEP_STATUS identity_color(
1369 PEP_SESSION session,
1370 pEp_identity *ident,
1374 PEP_STATUS status = PEP_STATUS_OK;
1380 if (!(session && ident && color))
1381 return PEP_ILLEGAL_VALUE;
1384 status = myself(session, ident);
1386 status = update_identity(session, ident);
1388 if (status == PEP_STATUS_OK)
1389 *color = _rating(ident->comm_type);