1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 // The build system builds the rust library ipcclientcerts as a static library
9 // called ipcclientcerts_static. On macOS and Windows, that static library can
10 // be linked with an empty file and turned into a shared library with the
11 // function C_GetFunctionList exposed. This allows that shared library to be
12 // used as a PKCS#11 module (see osclientcerts).
13 // Unfortunately, on Linux, exposing the C_GetFunctionList in the static
14 // library doesn't work for some unknown reason. As a workaround, this file
15 // declares its own C_GetFunctionList that can be exposed in the shared
16 // library. It then calls the function IPCCC_GetFunctionList exposed
17 // (internally to the linkage in question) by ipcclientcerts. This enables
18 // the build system to ultimately turn ipcclientcerts into a shared library
19 // that exposes a C_GetFunctionList function, meaning it can be used as a
22 CK_RV
IPCCC_GetFunctionList(CK_FUNCTION_LIST_PTR_PTR ppFunctionList
);
24 CK_RV
C_GetFunctionList(CK_FUNCTION_LIST_PTR_PTR ppFunctionList
) {
25 return IPCCC_GetFunctionList(ppFunctionList
);
28 // On MinGW there's a toolchain mismatch that results in _Unwind_Resume being
29 // undefined. It's never going to get called here anyway, so this defines it to
30 // satisfy the linker. See bug 1745855 and
31 // https://github.com/rust-lang/rust/issues/79609#issuecomment-987107562.
33 # include "mozilla/Assertions.h"
34 void _Unwind_Resume() { MOZ_CRASH("Unexpected call to _Unwind_*"); }
35 void _Unwind_GetDataRelBase() { _Unwind_Resume(); }
36 void _Unwind_GetTextRelBase() { _Unwind_Resume(); }
37 void _Unwind_GetLanguageSpecificData() { _Unwind_Resume(); }
38 void _Unwind_GetIPInfo() { _Unwind_Resume(); }
39 void _Unwind_GetRegionStart() { _Unwind_Resume(); }
40 void _Unwind_SetGR() { _Unwind_Resume(); }
41 void _Unwind_SetIP() { _Unwind_Resume(); }
42 void _GCC_specific_handler() { _Unwind_Resume(); }