VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common/PCSCException.h
blob: 6c7766b58f200ab9b60e27b03c3a1daa5b93671d (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#ifndef TC_HEADER_Common_PCSCException
#define TC_HEADER_Common_PCSCException

#include "Platform/PlatformBase.h"
#if defined (TC_WINDOWS) && !defined (TC_PROTOTYPE)
#	include "Exception.h"
#else
#	include "Platform/Exception.h"
#endif

#include "SCardLoader.h"

#ifdef TC_MACOSX
#define LONG_PCSC uint32_t
#else
#define LONG_PCSC LONG
#endif

namespace VeraCrypt
{
	struct PCSCException: public Exception
	{
		PCSCException(LONG_PCSC errorCode = (LONG_PCSC)-1): ErrorCode(errorCode){}

#ifdef TC_HEADER_Platform_Exception
		virtual ~PCSCException() throw () { }
		TC_SERIALIZABLE_EXCEPTION(PCSCException);
#else
		void Show(HWND parent) const;
#endif

		operator string () const;
		LONG_PCSC GetErrorCode() const { return ErrorCode; }

	protected:
		LONG_PCSC ErrorCode;
	};

	struct CommandAPDUNotValid: public Exception
	{
		CommandAPDUNotValid() : SrcPos (""), ErrorStr ("") { }
		CommandAPDUNotValid(const string& srcPos, const string& errorStr) : SrcPos (srcPos), ErrorStr(errorStr) { }

#ifdef TC_HEADER_Platform_Exception
		virtual ~CommandAPDUNotValid() throw () { }
		TC_SERIALIZABLE_EXCEPTION(CommandAPDUNotValid);
#else
		void Show(HWND parent) const;
#endif

		operator string () const;

	protected:
		string SrcPos;
		string ErrorStr;
	};

#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 (PCSCException); \
	TC_EXCEPTION_NODECL (CommandAPDUNotValid); \
	TC_EXCEPTION (ExtendedAPDUNotSupported); \
	TC_EXCEPTION (ScardLibraryInitializationFailed); \
	TC_EXCEPTION (EMVUnknownCardType); \
	TC_EXCEPTION (EMVSelectAIDFailed); \
	TC_EXCEPTION (EMVIccCertNotFound); \
	TC_EXCEPTION (EMVIssuerCertNotFound); \
	TC_EXCEPTION (EMVCPLCNotFound); \
	TC_EXCEPTION (InvalidEMVPath); \
	TC_EXCEPTION (EMVKeyfileDataNotFound); \
	TC_EXCEPTION (EMVPANNotFound); \
	
	TC_EXCEPTION_SET;

	#undef TC_EXCEPTION

#else // !TC_HEADER_Platform_Exception	

	struct ExtendedAPDUNotSupported: public Exception
	{
		void Show(HWND parent) const { Error("EXTENDED_APDU_UNSUPPORTED", parent); }
	};

	struct ScardLibraryInitializationFailed: public Exception
	{
		void Show(HWND parent) const { Error("SCARD_MODULE_INIT_FAILED", parent); }
	};

	struct EMVUnknownCardType: public Exception
	{
		void Show(HWND parent) const { Error("EMV_UNKNOWN_CARD_TYPE", parent); }
	};

	struct EMVSelectAIDFailed: public Exception
	{
		void Show(HWND parent) const { Error("EMV_SELECT_AID_FAILED", parent); }
	};

	struct EMVIccCertNotFound: public Exception
	{
		void Show(HWND parent) const { Error("EMV_ICC_CERT_NOTFOUND", parent); }
	};

	struct EMVIssuerCertNotFound: public Exception
	{
		void Show(HWND parent) const { Error("EMV_ISSUER_CERT_NOTFOUND", parent); }
	};

	struct EMVCPLCNotFound: public Exception
	{
		void Show(HWND parent) const { Error("EMV_CPLC_NOTFOUND", parent); }
	};

	struct EMVPANNotFound: public Exception
	{
		void Show(HWND parent) const { Error("EMV_PAN_NOTFOUND", parent); }
	};

	struct InvalidEMVPath: public Exception
	{
		void Show(HWND parent) const { Error("INVALID_EMV_PATH", parent); }
	};

	struct EMVKeyfileDataNotFound: public Exception
	{
		void Show(HWND parent) const { Error("EMV_KEYFILE_DATA_NOTFOUND", parent); }
	};

#endif // !TC_HEADER_Platform_Exception
}

#endif // TC_HEADER_Common_PCSCException