/* Derived from source code of TrueCrypt 7.1a, which is Copyright (c) 2008-2012 TrueCrypt Developers Association and which is governed by the TrueCrypt License 3.0. Modifications and additions to the original source code (contained in this file) and all other portions of this file are Copyright (c) 2013-2017 IDRIX and are governed by the Apache License 2.0 the full text of which is contained in the file License.txt included in VeraCrypt binary and source code distribution packages. */ #ifndef TC_HEADER_Common_SecurityToken #define TC_HEADER_Common_SecurityToken #include "Platform/PlatformBase.h" #if defined (TC_WINDOWS) && !defined (TC_PROTOTYPE) # include "Exception.h" #else # include "Platform/Exception.h" #endif #ifndef NULL_PTR # define NULL_PTR 0 #endif #define CK_PTR * #define CK_CALLBACK_FUNCTION(RET_TYPE, NAME) RET_TYPE (* NAME) #ifdef TC_WINDOWS # include # define CK_DEFINE_FUNCTION(RET_TYPE, NAME) RET_TYPE __declspec(dllexport) NAME # define CK_DECLARE_FUNCTION(RET_TYPE, NAME) RET_TYPE __declspec(dllimport) NAME # define CK_DECLARE_FUNCTION_POINTER(RET_TYPE, NAME) RET_TYPE __declspec(dllimport) (* NAME) # pragma pack(push, cryptoki, 1) # include # pragma pack(pop, cryptoki) #else // !TC_WINDOWS # define CK_DEFINE_FUNCTION(RET_TYPE, NAME) RET_TYPE NAME # define CK_DECLARE_FUNCTION(RET_TYPE, NAME) RET_TYPE NAME # define CK_DECLARE_FUNCTION_POINTER(RET_TYPE, NAME) RET_TYPE (* NAME) # include #endif // !TC_WINDOWS #define TC_SECURITY_TOKEN_KEYFILE_URL_PREFIX L"token://" #define TC_SECURITY_TOKEN_KEYFILE_URL_SLOT L"slot" #define TC_SECURITY_TOKEN_KEYFILE_URL_FILE L"file" namespace VeraCrypt { struct SecurityTokenInfo { CK_SLOT_ID SlotId; CK_FLAGS Flags; wstring Label; string LabelUtf8; }; struct SecurityTokenKeyfilePath { SecurityTokenKeyfilePath () { } SecurityTokenKeyfilePath (const wstring &path) : Path (path) { } operator wstring () const { return Path; } wstring Path; }; struct SecurityTokenKeyfile { SecurityTokenKeyfile () : Handle(CK_INVALID_HANDLE), SlotId(CK_UNAVAILABLE_INFORMATION) { Token.SlotId = CK_UNAVAILABLE_INFORMATION; Token.Flags = 0; } SecurityTokenKeyfile (const SecurityTokenKeyfilePath &path); operator SecurityTokenKeyfilePath () const; CK_OBJECT_HANDLE Handle; wstring Id; string IdUtf8; CK_SLOT_ID SlotId; SecurityTokenInfo Token; }; struct Pkcs11Exception : public Exception { Pkcs11Exception (CK_RV errorCode = (CK_RV) -1) : ErrorCode (errorCode), SubjectErrorCodeValid (false), SubjectErrorCode( (uint64) -1) { } Pkcs11Exception (CK_RV errorCode, uint64 subjectErrorCode) : ErrorCode (errorCode), SubjectErrorCodeValid (true), SubjectErrorCode (subjectErrorCode) { } #ifdef TC_HEADER_Platform_Exception virtual ~Pkcs11Exception () throw () { } TC_SERIALIZABLE_EXCEPTION (Pkcs11Exception); #else void Show (HWND parent) const; #endif operator string () const; CK_RV GetErrorCode () const { return ErrorCode; } protected: CK_RV ErrorCode; bool SubjectErrorCodeValid; uint64 SubjectErrorCode; }; #ifdef TC_HEADER_Platform_Exception #define TC_EXCEPTION(NAME) TC_EXCEPTION_DECL(NAME,Exception) #undef TC_EXCEPTION_SET #define TC_EXCEPTION_SET \ TC_EXCEPTION_NODECL (Pkcs11Exception); \ TC_EXCEPTION (InvalidSecurityTokenKeyfilePath); \ TC_EXCEPTION (SecurityTokenLibraryNotInitialized); \ TC_EXCEPTION (SecurityTokenKeyfileAlreadyExists); \ TC_EXCEPTION (SecurityTokenKeyfileNotFound); TC_EXCEPTION_SET; #undef TC_EXCEPTION #else // !TC_HEADER_Platform_Exception struct SecurityTokenLibraryNotInitialized : public Exception { void Show (HWND parent) const { Error (SecurityTokenLibraryPath[0] == 0 ? "NO_PKCS11_MODULE_SPECIFIED" : "PKCS11_MODULE_INIT_FAILED", parent); } }; struct InvalidSecurityTokenKeyfilePath : public Exception { void Show (HWND parent) const { Error ("INVALID_TOKEN_KEYFILE_PATH", parent); } }; struct SecurityTokenKeyfileAlreadyExists : public Exception { void Show (HWND parent) const { Error ("TOKEN_KEYFILE_ALREADY_EXISTS", parent); } }; struct SecurityTokenKeyfileNotFound : public Exception { void Show (HWND parent) const { Error ("TOKEN_KEYFILE_NOT_FOUND", parent); } }; #endif // !TC_HEADER_Platform_Exception struct Pkcs11Session { Pkcs11Session () : Handle (CK_UNAVAILABLE_INFORMATION), UserLoggedIn (false) { } CK_SESSION_HANDLE Handle; bool UserLoggedIn; }; struct GetPinFunctor { virtual ~GetPinFunctor () { } virtual void operator() (string &str) = 0; virtual void notifyIncorrectPin () = 0; }; struct SendExceptionFunctor { virtual ~SendExceptionFunctor () { } virtual void operator() (const Exception &e) = 0; }; class SecurityToken { public: static void CloseAllSessions () throw (); static void CloseLibrary (); static void CreateKeyfile (CK_SLOT_ID slotId, vector &keyfileData, const string &name); static void DeleteKeyfile (const SecurityTokenKeyfile &keyfile); static vector GetAvailableKeyfiles (CK_SLOT_ID *slotIdFilter = nullptr, const wstring keyfileIdFilter = wstring()); static void GetKeyfileData (const SecurityTokenKeyfile &keyfile, vector &keyfileData); static list GetAvailableTokens (); static SecurityTokenInfo GetTokenInfo (CK_SLOT_ID slotId); #ifdef TC_WINDOWS static void InitLibrary (const wstring &pkcs11LibraryPath, auto
#ifndef _HAD_ZIPCONF_H
#define _HAD_ZIPCONF_H

/*
   zipconf.h -- platform specific include file

   This file was generated automatically by CMake
   based on ../cmake-zipconf.h.in.
 */

#define LIBZIP_VERSION "1.10.1"
#define LIBZIP_VERSION_MAJOR 1
#define LIBZIP_VERSION_MINOR 10
#define LIBZIP_VERSION_MICRO 1

/* #undef ZIP_STATIC */

#define _Nullable
#define _Nonnull

#if !defined(__STDC_FORMAT_MACROS)
#define __STDC_FORMAT_MACROS 1
#endif
#if defined(_MSC_VER) && _MSC_VER < 1700
#include <stdint.h>
#define PRIu32 "lu"
#define PRIu64 "llu"
#else
#include <inttypes.h>
#endif

typedef int8_t zip_int8_t;
typedef uint8_t zip_uint8_t;
typedef int16_t zip_int16_t;
typedef uint16_t zip_uint16_t;
typedef int32_t zip_int32_t;
typedef uint32_t zip_uint32_t;
typedef int64_t zip_int64_t;
typedef uint64_t zip_uint64_t;

#define ZIP_INT8_MIN	 (-ZIP_INT8_MAX-1)
#define ZIP_INT8_MAX	 0x7f
#define ZIP_UINT8_MAX	 0xff

#define ZIP_INT16_MIN	 (-ZIP_INT16_MAX-1)
#define ZIP_INT16_MAX	 0x7fff
#define ZIP_UINT16_MAX	 0xffff

#define ZIP_INT32_MIN	 (-ZIP_INT32_MAX-1L)
#define ZIP_INT32_MAX	 0x7fffffffL
#define ZIP_UINT32_MAX	 0xffffffffLU

#define ZIP_INT64_MIN	 (-ZIP_INT64_MAX-1LL)
#define ZIP_INT64_MAX	 0x7fffffffffffffffLL
#define ZIP_UINT64_MAX	 0xffffffffffffffffULL

#endif /* zipconf.h */