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);
114 if (_shortmsg == NULL)
119 size_t n = line_end - src;
121 if (*(line_end - 1) == '\r')
122 _shortmsg = strndup(src + 9, n - 10);
124 _shortmsg = strndup(src + 9, n - 9);
126 if (_shortmsg == NULL)
129 while (*(src + n) && (*(src + n) == '\n' || *(src + n) == '\r'))
133 _longmsg = strdup(src + n);
134 if (_longmsg == NULL)
140 _shortmsg = strdup("");
141 if (_shortmsg == NULL)
143 _longmsg = strdup(src);
144 if (_longmsg == NULL)
148 *shortmsg = _shortmsg;
160 static PEP_STATUS copy_fields(message *dst, const message *src)
165 free_timestamp(dst->sent);
168 dst->sent = timestamp_dup(src->sent);
169 if (dst->sent == NULL)
170 return PEP_OUT_OF_MEMORY;
173 free_timestamp(dst->recv);
176 dst->recv = timestamp_dup(src->recv);
177 if (dst->recv == NULL)
178 return PEP_OUT_OF_MEMORY;
181 free_identity(dst->from);
184 dst->from = identity_dup(src->from);
185 if (dst->from == NULL)
186 return PEP_OUT_OF_MEMORY;
189 free_identity_list(dst->to);
191 if (src->to && src->to->ident) {
192 dst->to = identity_list_dup(src->to);
194 return PEP_OUT_OF_MEMORY;
197 free_identity(dst->recv_by);
200 dst->recv_by = identity_dup(src->recv_by);
201 if (dst->recv_by == NULL)
202 return PEP_OUT_OF_MEMORY;
205 free_identity_list(dst->cc);
207 if (src->cc && src->cc->ident) {
208 dst->cc = identity_list_dup(src->cc);
210 return PEP_OUT_OF_MEMORY;
213 free_identity_list(dst->bcc);
215 if (src->bcc && src->bcc->ident) {
216 dst->bcc = identity_list_dup(src->bcc);
217 if (dst->bcc == NULL)
218 return PEP_OUT_OF_MEMORY;
221 free_identity_list(dst->reply_to);
222 dst->reply_to = NULL;
223 if (src->reply_to && src->reply_to->ident) {
224 dst->reply_to = identity_list_dup(src->reply_to);
225 if (dst->reply_to == NULL)
226 return PEP_OUT_OF_MEMORY;
229 free_stringlist(dst->in_reply_to);
230 dst->in_reply_to = NULL;
231 if (src->in_reply_to && src->in_reply_to->value) {
232 dst->in_reply_to = stringlist_dup(src->in_reply_to);
233 if (dst->in_reply_to == NULL)
234 return PEP_OUT_OF_MEMORY;
237 free_stringlist(dst->references);
238 dst->references = NULL;
239 if (src->references) {
240 dst->references = stringlist_dup(src->references);
241 if (dst->references == NULL)
242 return PEP_OUT_OF_MEMORY;
245 free_stringlist(dst->keywords);
246 dst->keywords = NULL;
247 if (src->keywords && src->keywords->value) {
248 dst->keywords = stringlist_dup(src->keywords);
249 if (dst->keywords == NULL)
250 return PEP_OUT_OF_MEMORY;
254 dst->comments = NULL;
256 dst->comments = strdup(src->comments);
257 assert(dst->comments);
258 if (dst->comments == NULL)
259 return PEP_OUT_OF_MEMORY;
262 return PEP_STATUS_OK;
265 static message * clone_to_empty_message(const message * src)
268 message * msg = NULL;
272 msg = calloc(1, sizeof(message));
279 status = copy_fields(msg, src);
280 if (status != PEP_STATUS_OK)
290 static PEP_STATUS encrypt_PGP_MIME(
297 PEP_STATUS status = PEP_STATUS_OK;
298 bool free_ptext = false;
302 char *mimetext = NULL;
304 assert(dst->longmsg == NULL);
305 dst->enc_format = PEP_enc_PGP_MIME;
307 if (src->shortmsg && strcmp(src->shortmsg, "pEp") != 0) {
308 ptext = combine_short_and_long(src->shortmsg, src->longmsg);
313 else if (src->longmsg) {
314 ptext = src->longmsg;
320 message *_src = calloc(1, sizeof(message));
324 _src->longmsg = ptext;
325 _src->longmsg_formatted = src->longmsg_formatted;
326 _src->attachments = src->attachments;
327 _src->enc_format = PEP_enc_none;
328 status = mime_encode_message(_src, true, &mimetext);
329 assert(status == PEP_STATUS_OK);
336 if (mimetext == NULL)
339 status = encrypt_and_sign(session, keys, mimetext, strlen(mimetext),
345 dst->longmsg = strdup("this message was encrypted with p≡p "
346 "http://pEp-project.org");
347 if (dst->longmsg == NULL)
350 char *v = strdup("Version: 1");
354 bloblist_t *_a = new_bloblist(v, 11, "application/pgp-encrypted", NULL);
357 dst->attachments = _a;
359 _ctext = malloc(csize);
363 memcpy(_ctext, ctext, csize);
365 _a = bloblist_add(_a, _ctext, csize, "application/octet-stream",
370 return PEP_STATUS_OK;
373 status = PEP_OUT_OF_MEMORY;
382 static PEP_STATUS encrypt_PGP_in_pieces(
389 PEP_STATUS status = PEP_STATUS_OK;
393 assert(dst->longmsg == NULL);
394 assert(dst->attachments == NULL);
396 dst->enc_format = PEP_enc_pieces;
398 if (src->shortmsg && src->shortmsg[0] && strcmp(src->shortmsg, "pEp") != 0) {
399 char *ptext = combine_short_and_long(src->shortmsg, src->longmsg);
403 status = encrypt_and_sign(session, keys, ptext, strlen(ptext), &ctext,
407 dst->longmsg = strndup(ctext, csize);
408 assert(dst->longmsg);
409 if (dst->longmsg == NULL)
416 else if (src->longmsg && src->longmsg[0]) {
417 char *ptext = src->longmsg;
418 status = encrypt_and_sign(session, keys, ptext, strlen(ptext), &ctext,
421 dst->longmsg = strndup(ctext, csize);
422 assert(dst->longmsg);
423 if (dst->longmsg == NULL)
431 dst->longmsg = strdup("");
432 if (dst->longmsg == NULL)
436 if (src->longmsg_formatted && src->longmsg_formatted[0]) {
437 char *ptext = src->longmsg_formatted;
438 status = encrypt_and_sign(session, keys, ptext, strlen(ptext), &ctext,
441 char *_ctext = malloc(csize);
445 memcpy(_ctext, ctext, csize);
447 bloblist_t *_a = bloblist_add(dst->attachments, _ctext, csize,
448 "application/octet-stream", "PGPexch.htm.pgp");
451 if (dst->attachments == NULL)
452 dst->attachments = _a;
459 if (src->attachments) {
460 if (dst->attachments == NULL) {
461 dst->attachments = new_bloblist(NULL, 0, NULL, NULL);
462 if (dst->attachments == NULL)
466 bloblist_t *_s = src->attachments;
467 bloblist_t *_d = dst->attachments;
469 for (int n = 0; _s && _s->value; _s = _s->next) {
470 size_t psize = _s->size;
471 char *ptext = _s->value;
472 status = encrypt_and_sign(session, keys, ptext, psize, &ctext,
475 char *filename = NULL;
478 size_t len = strlen(_s->filename);
479 filename = calloc(1, len + 5);
480 if (filename == NULL)
483 strcpy(filename, _s->filename);
484 strcpy(filename + len, ".pgp");
487 filename = calloc(1, 20);
488 if (filename == NULL)
493 snprintf(filename, 20, "Attachment%d.pgp", n);
496 char *_ctext = malloc(csize);
500 memcpy(_ctext, ctext, csize);
502 _d = bloblist_add(_d, _ctext, csize, "application/octet-stream",
513 return PEP_STATUS_OK;
516 status = PEP_OUT_OF_MEMORY;
522 static char * keylist_to_string(const stringlist_t *keylist)
525 size_t size = stringlist_length(keylist);
527 const stringlist_t *_kl;
528 for (_kl = keylist; _kl && _kl->value; _kl = _kl->next) {
529 size += strlen(_kl->value);
532 char *result = calloc(1, size);
537 for (_kl = keylist; _kl && _kl->value; _kl = _kl->next) {
538 _r = stpcpy(_r, _kl->value);
539 if (_kl->next && _kl->next->value)
540 _r = stpcpy(_r, ",");
550 static const char * color_to_string(PEP_color color)
553 case PEP_rating_cannot_decrypt:
554 return "cannot_decrypt";
555 case PEP_rating_have_no_key:
556 return "have_no_key";
557 case PEP_rating_unencrypted:
558 return "unencrypted";
559 case PEP_rating_unreliable:
561 case PEP_rating_reliable:
563 case PEP_rating_trusted:
565 case PEP_rating_trusted_and_anonymized:
566 return "trusted_and_anonymized";
567 case PEP_rating_fully_anonymous:
568 return "fully_anonymous";
569 case PEP_rating_under_attack:
570 return "unter_attack";
571 case PEP_rating_b0rken:
578 static void decorate_message(
581 stringlist_t *keylist
586 add_opt_field(msg, "X-pEp-Version", "1.0");
588 if (color != PEP_rating_undefined)
589 add_opt_field(msg, "X-EncStatus", color_to_string(color));
592 char *_keylist = keylist_to_string(keylist);
593 add_opt_field(msg, "X-KeyList", _keylist);
598 static PEP_color _rating(PEP_comm_type ct)
600 if (ct == PEP_ct_unknown)
601 return PEP_rating_undefined;
603 else if (ct == PEP_ct_compromized)
604 return PEP_rating_under_attack;
606 else if (ct >= PEP_ct_confirmed_enc_anon)
607 return PEP_rating_trusted_and_anonymized;
609 else if (ct >= PEP_ct_strong_encryption)
610 return PEP_rating_trusted;
612 else if (ct >= PEP_ct_strong_but_unconfirmed && ct < PEP_ct_confirmed)
613 return PEP_rating_reliable;
615 else if (ct == PEP_ct_no_encryption || ct == PEP_ct_no_encrypted_channel)
616 return PEP_rating_unencrypted;
619 return PEP_rating_unreliable;
622 static bool is_encrypted_attachment(const bloblist_t *blob)
628 if (blob->filename == NULL)
631 ext = strrchr(blob->filename, '.');
635 if (strcmp(blob->mime_type, "application/octet-stream") == 0) {
636 if (strcmp(ext, ".pgp") == 0 || strcmp(ext, ".gpg") == 0 ||
637 strcmp(ext, ".asc") == 0)
640 else if (strcmp(blob->mime_type, "text/plain") == 0) {
641 if (strcmp(ext, ".asc") == 0)
648 static bool is_encrypted_html_attachment(const bloblist_t *blob)
651 assert(blob->filename);
653 if (strncmp(blob->filename, "PGPexch.htm.", 12) == 0) {
654 if (strcmp(blob->filename + 11, ".pgp") == 0 ||
655 strcmp(blob->filename + 11, ".asc") == 0)
662 static char * without_double_ending(const char *filename)
668 ext = strrchr(filename, '.');
672 return strndup(filename, ext - filename);
675 static PEP_color decrypt_color(PEP_STATUS status)
678 case PEP_UNENCRYPTED:
680 case PEP_VERIFY_NO_KEY:
681 case PEP_VERIFIED_AND_TRUSTED:
682 return PEP_rating_unencrypted;
685 return PEP_rating_unreliable;
687 case PEP_DECRYPTED_AND_VERIFIED:
688 return PEP_rating_reliable;
690 case PEP_DECRYPT_NO_KEY:
691 return PEP_rating_have_no_key;
693 case PEP_DECRYPT_WRONG_FORMAT:
694 case PEP_CANNOT_DECRYPT_UNKNOWN:
695 return PEP_rating_cannot_decrypt;
698 return PEP_rating_undefined;
702 static PEP_color key_color(PEP_SESSION session, const char *fpr)
704 PEP_comm_type comm_type = PEP_ct_unknown;
709 PEP_STATUS status = get_key_rating(session, fpr, &comm_type);
710 if (status != PEP_STATUS_OK)
711 return PEP_rating_undefined;
713 return _rating(comm_type);
716 static PEP_color keylist_color(PEP_SESSION session, stringlist_t *keylist)
718 PEP_color color = PEP_rating_reliable;
720 assert(keylist && keylist->value);
721 if (keylist == NULL || keylist->value == NULL)
722 return PEP_rating_unencrypted;
725 for (_kl = keylist; _kl && _kl->value; _kl = _kl->next) {
729 color = key_color(session, _kl->value);
730 if (color == PEP_rating_under_attack)
731 return PEP_rating_under_attack;
733 if (color >= PEP_rating_reliable) {
734 status = least_trust(session, _kl->value, &ct);
735 if (status != PEP_STATUS_OK)
736 return PEP_rating_undefined;
737 if (ct == PEP_ct_unknown)
738 color = PEP_rating_unreliable;
747 static PEP_comm_type _get_comm_type(
749 PEP_comm_type max_comm_type,
753 PEP_STATUS status = update_identity(session, ident);
755 if (max_comm_type == PEP_ct_compromized)
756 return PEP_ct_compromized;
758 if (status == PEP_STATUS_OK) {
759 if (ident->comm_type == PEP_ct_compromized)
760 return PEP_ct_compromized;
762 return MIN(max_comm_type, ident->comm_type);
765 return PEP_ct_unknown;
769 void import_attached_keys(PEP_SESSION session, const message *msg)
775 for (bl = msg->attachments; bl && bl->value; bl = bl->next) {
776 assert(bl && bl->value && bl->size);
778 // workaround for Apple Mail bugs
779 if (is_mime_type(bl, "application/x-apple-msg-attachment")) {
780 if (is_fileending(bl, ".asc")) {
781 if (strlen(bl->filename) == 14 &&
782 bl->filename[0] == '0' && bl->filename[1] == 'x')
783 import_key(session, bl->value, bl->size);
784 else if (strlen(bl->filename) == 12)
785 import_key(session, bl->value, bl->size);
788 else if (bl->mime_type == NULL ||
789 is_mime_type(bl, "application/octet-stream")) {
790 if (is_fileending(bl, ".pgp") || is_fileending(bl, ".gpg") ||
791 is_fileending(bl, ".key") || is_fileending(bl, ".asc"))
792 import_key(session, bl->value, bl->size);
794 else if (is_mime_type(bl, "application/pgp-keys")) {
795 import_key(session, bl->value, bl->size);
797 else if (is_mime_type(bl, "text/plain")) {
798 if (is_fileending(bl, ".pgp") || is_fileending(bl, ".gpg") ||
799 is_fileending(bl, ".key") || is_fileending(bl, ".asc"))
800 import_key(session, bl->value, bl->size);
805 void attach_own_key(PEP_SESSION session, message *msg)
814 if (msg->dir == PEP_dir_incoming)
817 assert(msg->from && msg->from->fpr);
818 if (msg->from == NULL || msg->from->fpr == NULL)
821 PEP_STATUS status = export_key(session, msg->from->fpr, &keydata, &size);
822 assert(status == PEP_STATUS_OK);
823 if (status != PEP_STATUS_OK)
827 bl = bloblist_add(msg->attachments, keydata, size, "application/pgp-keys",
829 if (msg->attachments == NULL && bl)
830 msg->attachments = bl;
833 PEP_cryptotech determine_encryption_format(message *msg)
837 if (is_PGP_message_text(msg->longmsg)) {
838 msg->enc_format = PEP_enc_pieces;
839 return PEP_crypt_OpenPGP;
841 else if (msg->attachments && msg->attachments->next &&
842 is_mime_type(msg->attachments, "application/pgp-encrypted") &&
843 is_PGP_message_text(msg->attachments->next->value)
845 msg->enc_format = PEP_enc_PGP_MIME;
846 return PEP_crypt_OpenPGP;
849 msg->enc_format = PEP_enc_none;
850 return PEP_crypt_none;
854 DYNAMIC_API PEP_STATUS encrypt_message(
857 stringlist_t * extra,
859 PEP_enc_format enc_format
862 PEP_STATUS status = PEP_STATUS_OK;
863 message * msg = NULL;
864 stringlist_t * keys = NULL;
869 assert(enc_format != PEP_enc_none);
871 if (!(session && src && dst && enc_format != PEP_enc_none))
872 return PEP_ILLEGAL_VALUE;
874 determine_encryption_format(src);
875 if (src->enc_format != PEP_enc_none)
876 return PEP_ILLEGAL_VALUE;
880 status = myself(session, src->from);
881 if (status != PEP_STATUS_OK)
884 keys = new_stringlist(src->from->fpr);
888 stringlist_t *_k = keys;
891 _k = stringlist_append(_k, extra);
896 bool dest_keys_found = true;
899 for (_il = src->to; _il && _il->ident; _il = _il->next) {
900 PEP_STATUS _status = update_identity(session, _il->ident);
901 if (_status != PEP_STATUS_OK) {
906 if (_il->ident->fpr && _il->ident->fpr[0]) {
907 _k = stringlist_add(_k, _il->ident->fpr);
912 dest_keys_found = false;
913 status = PEP_KEY_NOT_FOUND;
917 for (_il = src->cc; _il && _il->ident; _il = _il->next) {
918 PEP_STATUS _status = update_identity(session, _il->ident);
919 if (_status != PEP_STATUS_OK)
925 if (_il->ident->fpr && _il->ident->fpr[0]) {
926 _k = stringlist_add(_k, _il->ident->fpr);
931 dest_keys_found = false;
932 status = PEP_KEY_NOT_FOUND;
936 if (!dest_keys_found) {
937 free_stringlist(keys);
938 attach_own_key(session, src);
939 return PEP_UNENCRYPTED;
942 msg = clone_to_empty_message(src);
946 switch (enc_format) {
947 case PEP_enc_PGP_MIME:
948 case PEP_enc_PEP: // BUG: should be implemented extra
949 status = encrypt_PGP_MIME(session, src, keys, msg);
953 status = encrypt_PGP_in_pieces(session, src, keys, msg);
962 status = PEP_ILLEGAL_VALUE;
966 if (status == PEP_OUT_OF_MEMORY)
969 if (status != PEP_STATUS_OK) {
970 attach_own_key(session, src);
974 attach_own_key(session, msg);
978 free_stringlist(keys);
980 if (msg && msg->shortmsg == NULL)
981 msg->shortmsg = strdup("pEp");
984 decorate_message(msg, PEP_rating_undefined, NULL);
990 status = PEP_OUT_OF_MEMORY;
993 free_stringlist(keys);
999 DYNAMIC_API PEP_STATUS decrypt_message(
1000 PEP_SESSION session,
1003 stringlist_t **keylist,
1007 PEP_STATUS status = PEP_STATUS_OK;
1008 PEP_STATUS decrypt_status = PEP_CANNOT_DECRYPT_UNKNOWN;
1009 message *msg = NULL;
1014 stringlist_t *_keylist = NULL;
1022 if (!(session && src && dst && keylist && color))
1023 return PEP_ILLEGAL_VALUE;
1025 import_attached_keys(session, src);
1026 PEP_cryptotech crypto = determine_encryption_format(src);
1030 *color = PEP_rating_undefined;
1032 switch (src->enc_format) {
1034 *color = PEP_rating_unencrypted;
1035 return PEP_UNENCRYPTED;
1037 case PEP_enc_PGP_MIME:
1038 ctext = src->attachments->next->value;
1039 csize = src->attachments->next->size;
1041 status = cryptotech[crypto].decrypt_and_verify(session, ctext,
1042 csize, &ptext, &psize, &_keylist);
1043 if (status > PEP_CANNOT_DECRYPT_UNKNOWN)
1045 decrypt_status = status;
1048 case PEP_enc_pieces:
1049 ctext = src->longmsg;
1050 csize = strlen(ctext);
1052 status = cryptotech[crypto].decrypt_and_verify(session, ctext,
1053 csize, &ptext, &psize, &_keylist);
1054 if (status > PEP_CANNOT_DECRYPT_UNKNOWN)
1056 decrypt_status = status;
1063 *color = decrypt_color(status);
1065 if (*color != PEP_rating_under_attack) {
1066 PEP_color kl_color = PEP_rating_undefined;
1069 kl_color = keylist_color(session, _keylist);
1071 if (kl_color == PEP_rating_under_attack) {
1072 *color = PEP_rating_under_attack;
1074 else if (*color >= PEP_rating_reliable &&
1075 kl_color < PEP_rating_reliable) {
1076 *color = PEP_rating_unreliable;
1078 else if (*color >= PEP_rating_reliable &&
1079 kl_color >= PEP_rating_reliable) {
1080 if (!(src->from && src->from->user_id && src->from->user_id[0])) {
1081 *color = PEP_rating_unreliable;
1084 char *fpr = _keylist->value;
1085 pEp_identity *_from = new_identity(src->from->address, fpr,
1086 src->from->user_id, src->from->username);
1089 status = update_identity(session, _from);
1090 if (_from->comm_type != PEP_ct_unknown)
1091 *color = _rating(_from->comm_type);
1092 free_identity(_from);
1093 if (status != PEP_STATUS_OK)
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 if (msg->longmsg == NULL)
1116 bloblist_t *_m = msg->attachments;
1117 if (_m == NULL && src->attachments && src->attachments->value) {
1118 msg->attachments = new_bloblist(NULL, 0, NULL, NULL);
1119 _m = msg->attachments;
1123 for (_s = src->attachments; _s && _s->value; _s = _s->next) {
1124 if (is_encrypted_attachment(_s)) {
1125 stringlist_t *_keylist = NULL;
1129 status = decrypt_and_verify(session, ctext, csize,
1130 &ptext, &psize, &_keylist);
1131 free_stringlist(_keylist);
1134 if (is_encrypted_html_attachment(_s)) {
1135 msg->longmsg_formatted = strdup(ptext);
1136 if (msg->longmsg_formatted == NULL)
1140 char * mime_type = "application/octet-stream";
1142 without_double_ending(_s->filename);
1143 if (filename == NULL)
1146 char *_ptext = malloc(psize);
1150 memcpy(_ptext, ptext, psize);
1152 _m = bloblist_add(_m, _ptext, psize, mime_type,
1157 if (msg->attachments == NULL)
1158 msg->attachments = _m;
1162 char *copy = malloc(_s->size);
1166 memcpy(copy, _s->value, _s->size);
1167 _m = bloblist_add(_m, copy, _s->size, _s->mime_type, _s->filename);
1173 char *copy = malloc(_s->size);
1177 memcpy(copy, _s->value, _s->size);
1178 _m = bloblist_add(_m, copy, _s->size, _s->mime_type, _s->filename);
1187 // BUG: must implement more
1191 switch (src->enc_format) {
1192 case PEP_enc_PGP_MIME:
1193 case PEP_enc_pieces:
1194 status = copy_fields(msg, src);
1195 if (status != PEP_STATUS_OK)
1198 if (src->shortmsg == NULL || strcmp(src->shortmsg, "pEp") == 0)
1203 int r = seperate_short_and_long(msg->longmsg, &shortmsg,
1208 free(msg->shortmsg);
1211 msg->shortmsg = shortmsg;
1212 msg->longmsg = longmsg;
1215 msg->shortmsg = strdup(src->shortmsg);
1216 if (msg->shortmsg == NULL)
1222 // BUG: must implement more
1226 import_attached_keys(session, msg);
1230 decorate_message(msg, *color, _keylist);
1233 *keylist = _keylist;
1235 return PEP_STATUS_OK;
1238 status = PEP_OUT_OF_MEMORY;
1242 free_stringlist(_keylist);
1247 DYNAMIC_API PEP_STATUS outgoing_message_color(
1248 PEP_SESSION session,
1253 PEP_STATUS status = PEP_STATUS_OK;
1254 PEP_comm_type max_comm_type = PEP_ct_pEp;
1255 bool comm_type_determined = false;
1261 assert(msg->dir == PEP_dir_outgoing);
1264 if (!(session && msg && color))
1265 return PEP_ILLEGAL_VALUE;
1267 if (msg->from == NULL || msg->dir != PEP_dir_outgoing)
1268 return PEP_ILLEGAL_VALUE;
1270 *color = PEP_rating_undefined;
1272 status = myself(session, msg->from);
1273 if (status != PEP_STATUS_OK)
1276 for (il = msg->to; il != NULL; il = il->next) {
1278 update_identity(session, il->ident);
1279 max_comm_type = _get_comm_type(session, max_comm_type,
1281 comm_type_determined = true;
1285 for (il = msg->cc; il != NULL; il = il->next) {
1287 update_identity(session, il->ident);
1288 max_comm_type = _get_comm_type(session, max_comm_type,
1290 comm_type_determined = true;
1294 if (comm_type_determined == false)
1295 *color = PEP_rating_undefined;
1297 *color = MAX(_rating(max_comm_type), PEP_rating_unencrypted);
1299 return PEP_STATUS_OK;
1302 DYNAMIC_API PEP_STATUS identity_color(
1303 PEP_SESSION session,
1304 pEp_identity *ident,
1308 PEP_STATUS status = PEP_STATUS_OK;
1314 if (!(session && ident && color))
1315 return PEP_ILLEGAL_VALUE;
1318 status = myself(session, ident);
1320 status = update_identity(session, ident);
1322 if (status == PEP_STATUS_OK)
1323 *color = _rating(ident->comm_type);