summaryrefslogtreecommitdiffstats
path: root/ipc/mscom/Utils.cpp
blob: 7c031bb52a38158d11beb6e05bc202b0ef443541 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

// We need Windows 7 headers
#ifdef NTDDI_VERSION
#undef NTDDI_VERSION
#endif
#define NTDDI_VERSION 0x06010000
#ifdef _WIN32_WINNT
#undef _WIN32_WINNT
#endif
#define _WIN32_WINNT 0x0601

#include "DynamicallyLinkedFunctionPtr.h"
#include "mozilla/mscom/Utils.h"
#include "mozilla/RefPtr.h"

#include <objidl.h>

static bool
IsCurrentThreadMTALegacy()
{
  // We don't use RefPtr for token because CoGetContextToken does *not*
  // increment its refcount!
  IUnknown* token = nullptr;
  HRESULT hr =
    CoGetContextToken(reinterpret_cast<ULONG_PTR*>(&token));
  if (FAILED(hr)) {
    return false;
  }

  RefPtr<IComThreadingInfo> threadingInfo;
  hr = token->QueryInterface(IID_IComThreadingInfo,
                             getter_AddRefs(threadingInfo));
  if (FAILED(hr)) {
    return false;
  }

  APTTYPE aptType;
  hr = threadingInfo->GetCurrentApartmentType(&aptType);
  if (FAILED(hr)) {
    return false;
  }

  return aptType == APTTYPE_MTA;
}

namespace mozilla {
namespace mscom {

bool
IsCurrentThreadMTA()
{
  static DynamicallyLinkedFunctionPtr<decltype(&::CoGetApartmentType)>
    pCoGetApartmentType(L"ole32.dll", "CoGetApartmentType");

  if (!pCoGetApartmentType) {
    // XP and Vista do not expose the newer API.
    return IsCurrentThreadMTALegacy();
  }

  APTTYPE aptType;
  APTTYPEQUALIFIER aptTypeQualifier;
  HRESULT hr = pCoGetApartmentType(&aptType, &aptTypeQualifier);
  if (FAILED(hr)) {
    return false;
  }

  return aptType == APTTYPE_MTA;
}

bool
IsProxy(IUnknown* aUnknown)
{
  if (!aUnknown) {
    return false;
  }

  // Only proxies implement this interface, so if it is present then we must
  // be dealing with a proxied object.
  RefPtr<IClientSecurity> clientSecurity;
  HRESULT hr = aUnknown->QueryInterface(IID_IClientSecurity,
                                        (void**)getter_AddRefs(clientSecurity));
  if (SUCCEEDED(hr) || hr == RPC_E_WRONG_THREAD) {
    return true;
  }
  return false;
}

} // namespace mscom
} // namespace mozilla