Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F19741799
mailitem-events.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
24 KB
Subscribers
None
mailitem-events.cpp
View Options
/* mailitem-events.h - Event handling for mails.
* Copyright (C) 2015 by Bundesamt für Sicherheit in der Informationstechnik
* Software engineering by Intevation GmbH
*
* This file is part of GpgOL.
*
* GpgOL is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* GpgOL is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include
"config.h"
#include
"common.h"
#include
"eventsink.h"
#include
"eventsinks.h"
#include
"mymapi.h"
#include
"mymapitags.h"
#include
"oomhelp.h"
#include
"ocidl.h"
#include
"windowmessages.h"
#include
"mail.h"
#include
"mapihelp.h"
#include
"gpgoladdin.h"
#undef _
#define _(a) utf8_gettext (a)
const
wchar_t
*
prop_blacklist
[]
=
{
L
"Body"
,
L
"HTMLBody"
,
L
"To"
,
/* Somehow this is done when a mail is opened */
L
"CC"
,
/* Ditto */
L
"BCC"
,
/* Ditto */
L
"Categories"
,
L
"UnRead"
,
L
"OutlookVersion"
,
L
"OutlookInternalVersion"
,
NULL
};
typedef
enum
{
AfterWrite
=
0xFC8D
,
AttachmentAdd
=
0xF00B
,
AttachmentRead
=
0xF00C
,
AttachmentRemove
=
0xFBAE
,
BeforeAttachmentAdd
=
0xFBB0
,
BeforeAttachmentPreview
=
0xFBAF
,
BeforeAttachmentRead
=
0xFBAB
,
BeforeAttachmentSave
=
0xF00D
,
BeforeAttachmentWriteToTempFile
=
0xFBB2
,
BeforeAutoSave
=
0xFC02
,
BeforeCheckNames
=
0xF00A
,
BeforeDelete
=
0xFA75
,
BeforeRead
=
0xFC8C
,
Close
=
0xF004
,
CustomAction
=
0xF006
,
CustomPropertyChange
=
0xF008
,
Forward
=
0xF468
,
Open
=
0xF003
,
PropertyChange
=
0xF009
,
Read
=
0xF001
,
ReadComplete
=
0xFC8F
,
Reply
=
0xF466
,
ReplyAll
=
0xF467
,
Send
=
0xF005
,
Unload
=
0xFBAD
,
Write
=
0xF002
}
MailEvent
;
/* Mail Item Events */
BEGIN_EVENT_SINK
(
MailItemEvents
,
IDispatch
)
/* We are still in the class declaration */
private
:
Mail
*
m_mail
;
/* The mail object related to this mailitem */
};
MailItemEvents
::
MailItemEvents
()
:
m_object
(
NULL
),
m_pCP
(
NULL
),
m_cookie
(
0
),
m_ref
(
1
),
m_mail
(
NULL
)
{
}
MailItemEvents
::~
MailItemEvents
()
{
if
(
m_pCP
)
m_pCP
->
Unadvise
(
m_cookie
);
if
(
m_object
)
gpgol_release
(
m_object
);
}
static
bool
propchangeWarnShown
=
false
;
static
DWORD
WINAPI
do_delayed_locate
(
LPVOID
arg
)
{
Sleep
(
100
);
do_in_ui_thread
(
RECIPIENT_ADDED
,
arg
);
return
0
;
}
/* The main Invoke function. The return value of this
function does not appear to have any effect on outlook
although I have read in an example somewhere that you
should return S_OK so that outlook continues to handle
the event I have not yet seen any effect by returning
error values here and no MSDN documentation about the
return values.
*/
EVENT_SINK_INVOKE
(
MailItemEvents
)
{
USE_INVOKE_ARGS
if
(
!
m_mail
)
{
m_mail
=
Mail
::
get_mail_for_item
(
m_object
);
if
(
!
m_mail
)
{
log_error
(
"%s:%s: mail event without mail object known. Bug."
,
SRCNAME
,
__func__
);
return
S_OK
;
}
}
switch
(
dispid
)
{
case
Open
:
{
log_oom_extra
(
"%s:%s: Open : %p"
,
SRCNAME
,
__func__
,
m_mail
);
LPMESSAGE
message
;
if
(
g_ol_version_major
<
14
&&
m_mail
->
set_uuid
())
{
/* In Outlook 2007 we need the uid for every
open mail to track the message in case
it is sent and crypto is required. */
log_debug
(
"%s:%s: Failed to set uuid."
,
SRCNAME
,
__func__
);
delete
m_mail
;
/* deletes this, too */
return
S_OK
;
}
int
draft_flags
=
0
;
if
(
!
opt
.
encrypt_default
&&
!
opt
.
sign_default
)
{
return
S_OK
;
}
message
=
get_oom_base_message
(
m_object
);
if
(
!
message
)
{
log_error
(
"%s:%s: Failed to get message."
,
SRCNAME
,
__func__
);
break
;
}
if
(
opt
.
encrypt_default
)
{
draft_flags
=
1
;
}
if
(
opt
.
sign_default
)
{
draft_flags
+=
2
;
}
set_gpgol_draft_info_flags
(
message
,
draft_flags
);
gpgol_release
(
message
);
break
;
}
case
BeforeRead
:
{
log_oom_extra
(
"%s:%s: BeforeRead : %p"
,
SRCNAME
,
__func__
,
m_mail
);
if
(
m_mail
->
pre_process_message
())
{
log_error
(
"%s:%s: Pre process message failed."
,
SRCNAME
,
__func__
);
}
break
;
}
case
Read
:
{
log_oom_extra
(
"%s:%s: Read : %p"
,
SRCNAME
,
__func__
,
m_mail
);
if
(
!
m_mail
->
is_crypto_mail
())
{
log_debug
(
"%s:%s: Non crypto mail %p opened. Updating sigstatus."
,
SRCNAME
,
__func__
,
m_mail
);
/* Ensure that no wrong sigstatus is shown */
CloseHandle
(
CreateThread
(
NULL
,
0
,
delayed_invalidate_ui
,
(
LPVOID
)
this
,
0
,
NULL
));
break
;
}
if
(
m_mail
->
set_uuid
())
{
log_debug
(
"%s:%s: Failed to set uuid."
,
SRCNAME
,
__func__
);
delete
m_mail
;
/* deletes this, too */
return
S_OK
;
}
if
(
m_mail
->
decrypt_verify
())
{
log_error
(
"%s:%s: Decrypt message failed."
,
SRCNAME
,
__func__
);
}
if
(
!
opt
.
enable_smime
&&
m_mail
->
is_smime
())
{
/* We want to save the mail when it's an smime mail and smime
is disabled to revert it. */
log_debug
(
"%s:%s: S/MIME mail but S/MIME is disabled."
" Need save."
,
SRCNAME
,
__func__
);
m_mail
->
set_needs_save
(
true
);
}
break
;
}
case
PropertyChange
:
{
if
(
!
parms
||
parms
->
cArgs
!=
1
||
parms
->
rgvarg
[
0
].
vt
!=
VT_BSTR
||
!
parms
->
rgvarg
[
0
].
bstrVal
)
{
log_error
(
"%s:%s: Unexpected params."
,
SRCNAME
,
__func__
);
break
;
}
const
wchar_t
*
prop_name
=
parms
->
rgvarg
[
0
].
bstrVal
;
if
(
!
m_mail
->
is_crypto_mail
())
{
if
(
!
opt
.
autoresolve
)
{
break
;
}
if
(
!
wcscmp
(
prop_name
,
L
"To"
)
/* ||
!wcscmp (prop_name, L"BCC") ||
!wcscmp (prop_name, L"CC")
Testing shows that Outlook always sends these three in a row
*/
)
{
if
((
m_mail
->
needs_crypto
()
&
1
))
{
/* XXX Racy race. This is a fix for crashes
that happend if a resolved recipient is copied an pasted.
If we then access the recipients object in the Property
Change event we crash. Thus we do the delay dance. */
HANDLE
thread
=
CreateThread
(
NULL
,
0
,
do_delayed_locate
,
(
LPVOID
)
m_mail
,
0
,
NULL
);
CloseHandle
(
thread
);
}
}
break
;
}
for
(
const
wchar_t
**
cur
=
prop_blacklist
;
*
cur
;
cur
++
)
{
if
(
!
wcscmp
(
prop_name
,
*
cur
))
{
log_oom
(
"%s:%s: Message %p propchange: %ls discarded."
,
SRCNAME
,
__func__
,
m_object
,
prop_name
);
return
S_OK
;
}
}
log_oom
(
"%s:%s: Message %p propchange: %ls."
,
SRCNAME
,
__func__
,
m_object
,
prop_name
);
/* We have tried several scenarios to handle propery changes.
Only save the property in MAPI and call MAPI SaveChanges
worked and did not leak plaintext but this caused outlook
still to break the attachments of PGP/MIME Mails into two
attachments and add them as winmail.dat so other clients
are broken.
Alternatively reverting the mail, saving the property and
then decrypt again also worked a bit but there were some
weird side effects and breakages. But this has the usual
problem of a revert that the mail is created by outlook and
e.g. multipart/signed signatures from most MUA's are broken.
Some things to try out might be the close approach and then
another open or a selection change. But for now we just warn.
As a workardound a user should make property changes when
the mail was not read by us. */
if
(
propchangeWarnShown
)
{
return
S_OK
;
}
wchar_t
*
title
=
utf8_to_wchar
(
_
(
"Sorry, that's not possible, yet"
));
char
*
fmt
;
gpgrt_asprintf
(
&
fmt
,
_
(
"GpgOL has prevented the change to the
\"
%s
\"
property.
\n
"
"Property changes are not yet handled for crypto messages.
\n\n
"
"To workaround this limitation please change the property when the "
"message is not open in any window and not selected in the "
"messagelist.
\n\n
For example by right clicking but not selecting the message.
\n
"
),
wchar_to_utf8
(
prop_name
));
wchar_t
*
msg
=
utf8_to_wchar
(
fmt
);
xfree
(
fmt
);
MessageBoxW
(
get_active_hwnd
(),
msg
,
title
,
MB_ICONINFORMATION
|
MB_OK
);
xfree
(
msg
);
xfree
(
title
);
propchangeWarnShown
=
true
;
return
S_OK
;
}
case
CustomPropertyChange
:
{
log_oom_extra
(
"%s:%s: CustomPropertyChange : %p"
,
SRCNAME
,
__func__
,
m_mail
);
/* TODO */
break
;
}
case
Send
:
{
/* This is the only event where we can cancel the send of a
mailitem. But it is too early for us to encrypt as the MAPI
structures are not yet filled. Crypto based on the
Outlook Object Model data did not work as the messages
were only sent out empty. See 2b376a48 for a try of
this.
This is why we store send_seen and invoke a save which
may result in an error but only after triggering all the
behavior we need -> filling mapi structures and invoking the
AfterWrite handler where we encrypt.
If this encryption is successful and we pass the send
as then the encrypted data is sent.
*/
log_oom_extra
(
"%s:%s: Send : %p"
,
SRCNAME
,
__func__
,
m_mail
);
if
(
!
m_mail
->
needs_crypto
())
{
log_debug
(
"%s:%s: No crypto neccessary. Passing send for %p obj %p"
,
SRCNAME
,
__func__
,
m_mail
,
m_object
);
break
;
}
if
(
parms
->
cArgs
!=
1
||
parms
->
rgvarg
[
0
].
vt
!=
(
VT_BOOL
|
VT_BYREF
))
{
log_debug
(
"%s:%s: Uncancellable send event."
,
SRCNAME
,
__func__
);
break
;
}
if
(
m_mail
->
crypt_state
()
==
Mail
::
NoCryptMail
&&
m_mail
->
needs_crypto
())
{
// First contact with a mail to encrypt update
// state and oom data.
m_mail
->
update_oom_data
();
m_mail
->
set_crypt_state
(
Mail
::
NeedsFirstAfterWrite
);
// Save the Mail
invoke_oom_method
(
m_object
,
"Save"
,
NULL
);
// The afterwrite in the save should have triggered
// the encryption. We cancel send for our asyncness.
// Cancel send
*
(
parms
->
rgvarg
[
0
].
pboolVal
)
=
VARIANT_TRUE
;
}
if
(
m_mail
->
crypt_state
()
==
Mail
::
NeedsUpdateInOOM
)
{
m_mail
->
update_crypt_oom
();
}
if
(
m_mail
->
crypt_state
()
==
Mail
::
WantsSend
)
{
/* Fishy behavior catcher: Sometimes the save does not clean
out the body. Weird. Happened at least for one user.
The following code checks for plain text leaks and
prevents send in case the body can't be wiped. */
if
(
!
m_mail
->
get_body
().
empty
()
||
!
m_mail
->
get_html_body
().
empty
())
{
log_debug
(
"%s:%s: Body found after encryption %p."
,
SRCNAME
,
__func__
,
m_object
);
if
(
m_mail
->
should_inline_crypt
())
{
if
(
m_mail
->
inline_body_to_body
())
{
log_debug
(
"%s:%s: Inline body to body failed %p."
,
SRCNAME
,
__func__
,
m_object
);
}
}
const
auto
body
=
m_mail
->
get_body
();
if
(
body
.
size
()
>
10
&&
!
strncmp
(
body
.
c_str
(),
"-----BEGIN"
,
10
))
{
log_debug
(
"%s:%s: Looks like inline body. You can pass %p."
,
SRCNAME
,
__func__
,
m_object
);
break
;
}
if
(
m_mail
->
wipe
(
true
))
{
log_debug
(
"%s:%s: Cancel send for %p."
,
SRCNAME
,
__func__
,
m_object
);
wchar_t
*
title
=
utf8_to_wchar
(
_
(
"GpgOL: Encryption not possible!"
));
wchar_t
*
msg
=
utf8_to_wchar
(
_
(
"Outlook returned an error when trying to send the encrypted mail.
\n\n
"
"Please restart Outlook and try again.
\n\n
"
"If it still fails consider using an encrypted attachment or
\n
"
"switching to PGP/Inline in GpgOL's options."
));
MessageBoxW
(
get_active_hwnd
(),
msg
,
title
,
MB_ICONERROR
|
MB_OK
);
xfree
(
msg
);
xfree
(
title
);
*
(
parms
->
rgvarg
[
0
].
pboolVal
)
=
VARIANT_TRUE
;
return
S_OK
;
}
{
/* Now we adress T3656 if Outlooks internal S/MIME is somehow
* mixed in (even if it is enabled and then disabled) it might
* cause strange behavior in that it sends the plain message
* and not the encrypted message. Tests have shown that we can
* bypass that by calling submit message on our base
* message.
*
* We do this conditionally as our other way of using OOM
* to send is proven to work and we don't want to mess
* with it.
*/
// Get the Message class.
HRESULT
hr
;
LPSPropValue
propval
=
NULL
;
// It's important we use the _not_ base message here.
LPMESSAGE
message
=
get_oom_message
(
m_object
);
hr
=
HrGetOneProp
((
LPMAPIPROP
)
message
,
PR_MESSAGE_CLASS_A
,
&
propval
);
gpgol_release
(
message
);
if
(
FAILED
(
hr
))
{
log_error
(
"%s:%s: HrGetOneProp() failed: hr=%#lx
\n
"
,
SRCNAME
,
__func__
,
hr
);
gpgol_release
(
message
);
break
;
}
if
(
propval
->
Value
.
lpszA
&&
!
strstr
(
propval
->
Value
.
lpszA
,
"GpgOL"
))
{
// Does not have a message class by us.
log_debug
(
"%s:%s: Message %p - No GpgOL Message class after encryption."
,
SRCNAME
,
__func__
,
m_object
);
log_debug
(
"%s:%s: Message %p - Activating T3656 Workaround"
,
SRCNAME
,
__func__
,
m_object
);
message
=
get_oom_base_message
(
m_object
);
// It's important we use the _base_ message here.
mapi_save_changes
(
message
,
KEEP_OPEN_READWRITE
|
FORCE_SAVE
);
message
->
SubmitMessage
(
0
);
gpgol_release
(
message
);
// Cancel send
*
(
parms
->
rgvarg
[
0
].
pboolVal
)
=
VARIANT_TRUE
;
// Close the composer and trigger unloads
CloseHandle
(
CreateThread
(
NULL
,
0
,
close_mail
,
(
LPVOID
)
m_mail
,
0
,
NULL
));
}
MAPIFreeBuffer
(
propval
);
}
if
(
*
(
parms
->
rgvarg
[
0
].
pboolVal
)
==
VARIANT_TRUE
)
{
break
;
}
}
log_debug
(
"%s:%s: Passing send event for message %p."
,
SRCNAME
,
__func__
,
m_object
);
break
;
}
else
{
log_debug
(
"%s:%s: Message %p cancelling send - crypto failed."
,
SRCNAME
,
__func__
,
m_object
);
*
(
parms
->
rgvarg
[
0
].
pboolVal
)
=
VARIANT_TRUE
;
}
return
S_OK
;
}
case
Write
:
{
log_oom_extra
(
"%s:%s: Write : %p"
,
SRCNAME
,
__func__
,
m_mail
);
/* This is a bit strange. We sometimes get multiple write events
without a read in between. When we access the message in
the second event it fails and if we cancel the event outlook
crashes. So we have keep the m_needs_wipe state variable
to keep track of that. */
if
(
parms
->
cArgs
!=
1
||
parms
->
rgvarg
[
0
].
vt
!=
(
VT_BOOL
|
VT_BYREF
))
{
/* This happens in the weird case */
log_debug
(
"%s:%s: Uncancellable write event."
,
SRCNAME
,
__func__
);
break
;
}
if
(
m_mail
->
is_crypto_mail
()
&&
!
m_mail
->
needs_save
())
{
/* We cancel the write event to stop outlook from excessively
syncing our changes.
if smime support is disabled and we still have an smime
mail we also don't want to cancel the write event
to enable reverting this mails.
*/
*
(
parms
->
rgvarg
[
0
].
pboolVal
)
=
VARIANT_TRUE
;
log_debug
(
"%s:%s: Canceling write event."
,
SRCNAME
,
__func__
);
return
S_OK
;
}
if
(
m_mail
->
is_crypto_mail
()
&&
m_mail
->
needs_save
()
&&
m_mail
->
revert
())
{
/* An error cleaning the mail should not happen normally.
But just in case there is an error we cancel the
write here. */
log_debug
(
"%s:%s: Failed to remove plaintext."
,
SRCNAME
,
__func__
);
*
(
parms
->
rgvarg
[
0
].
pboolVal
)
=
VARIANT_TRUE
;
}
log_debug
(
"%s:%s: Passing write event. Subject: %s Body: %s MsgCls: %s"
,
SRCNAME
,
__func__
,
m_mail
->
get_subject
().
c_str
(),
m_mail
->
get_body
().
c_str
(),
get_oom_string
(
m_object
,
"MessageClass"
));
log_debug
(
"%s:%s: Passing write event."
,
SRCNAME
,
__func__
);
m_mail
->
set_needs_save
(
false
);
break
;
}
case
AfterWrite
:
{
log_oom_extra
(
"%s:%s: AfterWrite : %p"
,
SRCNAME
,
__func__
,
m_mail
);
if
(
m_mail
->
crypt_state
()
==
Mail
::
NeedsFirstAfterWrite
)
{
/* Seen the first after write. Advance the state */
m_mail
->
set_crypt_state
(
Mail
::
NeedsActualCrypt
);
m_mail
->
encrypt_sign_start
();
return
S_OK
;
}
if
(
m_mail
->
crypt_state
()
==
Mail
::
NeedsSecondAfterWrite
)
{
m_mail
->
set_crypt_state
(
Mail
::
NeedsUpdateInMAPI
);
m_mail
->
update_crypt_mapi
();
return
S_OK
;
}
break
;
}
case
Close
:
{
log_oom_extra
(
"%s:%s: Close : %p"
,
SRCNAME
,
__func__
,
m_mail
);
if
(
m_mail
->
is_crypto_mail
())
{
/* Close. This happens when an Opened mail is closed.
To prevent the question of wether or not to save the changes
(Which would save the decrypted data without an event to
prevent it) we cancel the close and then either close it
with discard changes or revert / save it.
Contrary to documentation we can invoke close from
close.
*/
if
(
parms
->
cArgs
!=
1
||
parms
->
rgvarg
[
0
].
vt
!=
(
VT_BOOL
|
VT_BYREF
))
{
/* This happens in the weird case */
log_debug
(
"%s:%s: Uncancellable close event."
,
SRCNAME
,
__func__
);
break
;
}
if
(
m_mail
->
get_close_triggered
())
{
/* Our close with discard changes, pass through */
m_mail
->
set_close_triggered
(
false
);
return
S_OK
;
}
*
(
parms
->
rgvarg
[
0
].
pboolVal
)
=
VARIANT_TRUE
;
log_oom_extra
(
"%s:%s: Canceling close event."
,
SRCNAME
,
__func__
);
if
(
Mail
::
close
(
m_mail
))
{
log_debug
(
"%s:%s: Close request failed."
,
SRCNAME
,
__func__
);
}
}
return
S_OK
;
}
case
Unload
:
{
log_oom_extra
(
"%s:%s: Unload : %p"
,
SRCNAME
,
__func__
,
m_mail
);
log_debug
(
"%s:%s: Removing Mail for message: %p."
,
SRCNAME
,
__func__
,
m_object
);
delete
m_mail
;
return
S_OK
;
}
case
Forward
:
case
Reply
:
case
ReplyAll
:
{
log_oom_extra
(
"%s:%s: Reply Forward ReplyAll: %p"
,
SRCNAME
,
__func__
,
m_mail
);
if
(
!
opt
.
reply_crypt
)
{
break
;
}
int
crypto_flags
=
0
;
if
(
!
(
crypto_flags
=
m_mail
->
get_crypto_flags
()))
{
break
;
}
if
(
parms
->
cArgs
!=
2
||
parms
->
rgvarg
[
1
].
vt
!=
(
VT_DISPATCH
)
||
parms
->
rgvarg
[
0
].
vt
!=
(
VT_BOOL
|
VT_BYREF
))
{
/* This happens in the weird case */
log_debug
(
"%s:%s: Unexpected args %i %x %x named: %i"
,
SRCNAME
,
__func__
,
parms
->
cArgs
,
parms
->
rgvarg
[
0
].
vt
,
parms
->
rgvarg
[
1
].
vt
,
parms
->
cNamedArgs
);
break
;
}
LPMESSAGE
msg
=
get_oom_base_message
(
parms
->
rgvarg
[
1
].
pdispVal
);
if
(
!
msg
)
{
log_debug
(
"%s:%s: Failed to get base message"
,
SRCNAME
,
__func__
);
break
;
}
set_gpgol_draft_info_flags
(
msg
,
crypto_flags
);
gpgol_release
(
msg
);
break
;
}
default
:
log_oom_extra
(
"%s:%s: Message:%p Unhandled Event: %lx
\n
"
,
SRCNAME
,
__func__
,
m_object
,
dispid
);
}
return
S_OK
;
}
END_EVENT_SINK
(
MailItemEvents
,
IID_MailItemEvents
)
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sat, Feb 1, 9:14 AM (1 d, 7 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
6f/5b/783442ca4716ca6c5cccf62c8716
Attached To
rO GpgOL
Event Timeline
Log In to Comment