Bug 390002 - Message viewer: attached .doc file is shown as encrypted
Summary: Message viewer: attached .doc file is shown as encrypted
Status: RESOLVED FIXED
Alias: None
Product: kmail2
Classification: Applications
Component: misc (show other bugs)
Version: Git (master)
Platform: Other Linux
: NOR normal
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
: 406808 435504 (view as bug list)
Depends on:
Blocks:
 
Reported: 2018-02-07 13:01 UTC by Jonathan Marten
Modified: 2022-02-22 20:32 UTC (History)
4 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments
Screen shot 1 - Initial message preview display (17.77 KB, image/png)
2018-02-07 13:01 UTC, Jonathan Marten
Details
Screen shot 2 - After clicking on "Decrypt message" (15.61 KB, image/png)
2018-02-07 13:03 UTC, Jonathan Marten
Details
Test message - open in KMail View or import (12.80 KB, message/rfc822)
2018-02-07 13:04 UTC, Jonathan Marten
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jonathan Marten 2018-02-07 13:01:38 UTC
Created attachment 110397 [details]
Screen shot 1 - Initial message preview display

When a message is received that has a .doc file (or multiple such files) attached, they are initially shown in the message preview as encrypted (see screen shot 1).  Note that they are shown as such in the message body, but are shown in their unencrypted form with correct file names in the message header.

Clicking on the "Decrypt Message" action link does not prompt for any further information but simply displays the attachment as expected, see screen shot 2.

Clicking on either the attachment shown after "decryption", or the original attachment from the header, opens it in LibreOffice as expected.

Double clicking on the message (to open it in a separate viewer window) does not show this problem, the attachments are shown as expected.

The .doc file does not have to be from Microsoft Word, a file created in LibreOffice does the same.  I have not observed this happening with anything other than .doc files.

A test case is attached; neither the message nor the attached document contain any personal information.  Opening the .eml file in the KMail View will show the same behaviour.

This is using KMail with a single POP3 fetching account and no encryption or signing in use.  Headers are set to "Fancy Headers", attachment display is set to "As Icons".
Comment 1 Jonathan Marten 2018-02-07 13:03:55 UTC
Created attachment 110398 [details]
Screen shot 2 - After clicking on "Decrypt message"
Comment 2 Jonathan Marten 2018-02-07 13:04:56 UTC
Created attachment 110399 [details]
Test message - open in KMail View or import
Comment 3 Jonathan Marten 2019-09-12 07:26:26 UTC
Have done some investigating and found that the root cause is the MS Word binary format being detected as PGP encrypted data, in EncryptedBodyPartFormatter::process().  The result of GpgME::data().type() is returned as GpgME::Data::PGPOther for the attachment part.

One solution that I have found so far is to remove the preset formatter

 insert(QStringLiteral("application/octet-stream"), EncryptedBodyPartFormatter::create());

from BodyPartFormatterFactoryPrivate::messageviewer_create_builtin_bodypart_formatters().  The detection from the binary data is too sensitive for the catch-all MIME type.  This still allows PGP encrypted parts to be detected as long as they have the correct MIME type (which any decent sending mailer should use, it's 2019 now).
Comment 4 Jonathan Marten 2021-04-08 16:49:49 UTC
See also bug 435504 for possibly the same effect with ODT files.
Comment 5 Friedrich W. H. Kossebau 2021-09-01 19:17:46 UTC
Bug is still present in master branches of today, for the same reason as mentioned in comment 3.

Pulling Ingo as a representative(? if not, please forward) of GPGMe into the discussion, to ask whether this should be also considered a bug in GPGMe that a msword or odt data blob is detected to be of type GpgME::Data::PGPOther? Works properly to report GpgME::Data::Unknown e.g. for PDF data blobs for me.

On our side should registering EncryptedBodyPartFormatter as handler for "application/octet-stream" indeed be reconsidered and probably replaced with some special handling for known cases where the content type is not properly set to "text/pgp"?
Comment 6 Antonio Rojas 2021-09-01 20:56:12 UTC
*** Bug 406808 has been marked as a duplicate of this bug. ***
Comment 7 Ingo Klöcker 2021-09-01 21:53:18 UTC
I had a quick look at what GpgME::data().type() is doing. It looks as if any data that starts with something that looks even remotely like a valid OpenPGP packet is identified as some OpenPGP data. The code trying to identifying the data basically only looks at the first byte. If bit 7 is set, then there is
a chance of 31:127 that the data is identified as some kind of OpenPGP data and a chance of 15:127 that the data is identified as GpgME::Data::PGPOther.

There is special code to prevent PNG files starting with "\x89PNG" from being identified as some kind of OpenPGP data, but that's the only blacklisting that's done.

Given this, I conclude that GpgME::data().type() is not suitable for checking if arbitrary data is some kind of OpenPGP data. In my opinion, it should only be used on data if there are good reasons to assume that this data is indeed OpenPGP data, but if it's not clear what kind of OpenPGP data.

For identifying data of type application/octet-stream, we should use file type detection provided by other libraries. Isn't there something in KF5 maybe in KIO that determines the mimetype? Or are we doing the GpgME::data().type() only after KIO returns application/octet-stream?
Comment 8 Friedrich W. H. Kossebau 2021-09-04 19:56:50 UTC
Thanks for the quick reply and research, Ingo. Okay, so we need to fix/improve things on our side.  Only on my schedule for next week#'s WE to continue here, so anyone is invited to have a look & go themselves until ;)
Comment 9 Bug Janitor Service 2022-02-17 12:35:19 UTC
A possibly relevant merge request was started @ https://invent.kde.org/pim/messagelib/-/merge_requests/83
Comment 10 Ingo Klöcker 2022-02-22 07:51:42 UTC
Git commit 3f53b7394ffc75264442a2dd09e845a7a80f3dae by Ingo Klöcker, on behalf of Jonathan Marten.
Committed on 22/02/2022 at 07:51.
Pushed by kloecker into branch 'master'.

Fix MS Word attachments being detected as encrypted

Caused by EncryptedBodyPartFormatter (via GpgME upstream) being too
enthusiastic and detecting the binary data as PGP encrypted.  Only
enable this formatter for binary body parts explicitly declared as
encrypted by their MIME type.  See the referenced bug for more
information.

M  +17   -0    mimetreeparser/autotests/basicobjecttreeparsertest.cpp
M  +1    -0    mimetreeparser/autotests/basicobjecttreeparsertest.h
A  +61   -0    mimetreeparser/autotests/data/binary-attachment-not-pgp.mbox
M  +2    -3    mimetreeparser/autotests/data/openpgp-inline-encrypted-with-attachment.mbox.tree
M  +27   -10   mimetreeparser/src/bodyformatter/encrypted.cpp
M  +12   -4    mimetreeparser/src/bodyformatter/encrypted.h
M  +2    -2    mimetreeparser/src/bodypartformatter.cpp

https://invent.kde.org/pim/messagelib/commit/3f53b7394ffc75264442a2dd09e845a7a80f3dae
Comment 11 Jonathan Marten 2022-02-22 20:32:10 UTC
*** Bug 435504 has been marked as a duplicate of this bug. ***