FreeRDP
Loading...
Searching...
No Matches
errconnect.c
1
21#include <freerdp/config.h>
22
23#include <stdio.h>
24
25#include <freerdp/log.h>
26
27#include "errinfo.h"
28
29#define ERRCONNECT_DEFINE(_code, category) \
30 { \
31 ERRCONNECT_##_code, "ERRCONNECT_" #_code, ERRCONNECT_##_code##_STRING, category \
32 }
33
34/* Protocol-independent codes */
35
36#define ERRCONNECT_PRE_CONNECT_FAILED_STRING \
37 "A configuration error prevented a connection to be established."
38
39#define ERRCONNECT_CONNECT_UNDEFINED_STRING "A undefined connection error occurred."
40
41#define ERRCONNECT_POST_CONNECT_FAILED_STRING \
42 "The connection attempt was aborted due to post connect configuration errors."
43
44#define ERRCONNECT_DNS_ERROR_STRING "The DNS entry could not be resolved."
45
46#define ERRCONNECT_DNS_NAME_NOT_FOUND_STRING "The DNS host name was not found."
47
48#define ERRCONNECT_CONNECT_FAILED_STRING "The connection failed."
49
50#define ERRCONNECT_MCS_CONNECT_INITIAL_ERROR_STRING "The connection failed at initial MCS connect"
51
52#define ERRCONNECT_TLS_CONNECT_FAILED_STRING "The connection failed at TLS connect."
53
54#define ERRCONNECT_AUTHENTICATION_FAILED_STRING "An authentication failure aborted the connection."
55
56#define ERRCONNECT_INSUFFICIENT_PRIVILEGES_STRING \
57 "Insufficient privileges to establish a connection."
58
59#define ERRCONNECT_CONNECT_CANCELLED_STRING "The connection was cancelled."
60
61#define ERRCONNECT_SECURITY_NEGO_CONNECT_FAILED_STRING \
62 "The connection failed at negotiating security settings."
63
64#define ERRCONNECT_CONNECT_TRANSPORT_FAILED_STRING "The connection transport layer failed."
65
66#define ERRCONNECT_PASSWORD_EXPIRED_STRING "The password has expired and must be changed."
67
68#define ERRCONNECT_PASSWORD_CERTAINLY_EXPIRED_STRING \
69 "The password has certainly expired and must be changed."
70
71#define ERRCONNECT_CLIENT_REVOKED_STRING "The client has been revoked."
72
73#define ERRCONNECT_KDC_UNREACHABLE_STRING "The KDC is unreachable."
74
75#define ERRCONNECT_ACCOUNT_DISABLED_STRING "The account is disabled."
76
77#define ERRCONNECT_PASSWORD_MUST_CHANGE_STRING "The password must be changed."
78
79#define ERRCONNECT_LOGON_FAILURE_STRING "Logon failed."
80
81#define ERRCONNECT_WRONG_PASSWORD_STRING "Wrong password supplied."
82
83#define ERRCONNECT_ACCESS_DENIED_STRING "Access denied."
84
85#define ERRCONNECT_ACCOUNT_RESTRICTION_STRING "Account restriction."
86
87#define ERRCONNECT_ACCOUNT_LOCKED_OUT_STRING "Account locked out."
88
89#define ERRCONNECT_ACCOUNT_EXPIRED_STRING "Account expired."
90
91#define ERRCONNECT_LOGON_TYPE_NOT_GRANTED_STRING "Logon type not granted."
92
93#define ERRCONNECT_NO_OR_MISSING_CREDENTIALS_STRING "Credentials invalid or missing."
94
95#define ERRCONNECT_ACTIVATION_TIMEOUT_STRING "Timeout waiting for activation."
96
97#define ERRCONNECT_TARGET_BOOTING_STRING "Starting your VM. It may take up to 5 minutes."
98
99#define ERRCONNECT_HYBRID_REQUIRED_BY_SERVER_STRING \
100 "The server requires Network Level Authentication, but it is not enabled."
101
102/* Special codes */
103#define ERRCONNECT_SUCCESS_STRING "Success."
104#define ERRCONNECT_NONE_STRING ""
105
106static const ERRINFO ERRCONNECT_CODES[] = {
107 ERRCONNECT_DEFINE(SUCCESS, CAT_NONE),
108
109 ERRCONNECT_DEFINE(PRE_CONNECT_FAILED, CAT_CONFIG),
110 ERRCONNECT_DEFINE(CONNECT_UNDEFINED, CAT_USE),
111 ERRCONNECT_DEFINE(POST_CONNECT_FAILED, CAT_CONFIG),
112 ERRCONNECT_DEFINE(DNS_ERROR, CAT_USE),
113 ERRCONNECT_DEFINE(DNS_NAME_NOT_FOUND, CAT_CONFIG),
114 ERRCONNECT_DEFINE(CONNECT_FAILED, CAT_USE),
115 ERRCONNECT_DEFINE(MCS_CONNECT_INITIAL_ERROR, CAT_PROTOCOL),
116 ERRCONNECT_DEFINE(TLS_CONNECT_FAILED, CAT_USE),
117 ERRCONNECT_DEFINE(AUTHENTICATION_FAILED, CAT_USE),
118 ERRCONNECT_DEFINE(INSUFFICIENT_PRIVILEGES, CAT_ADMIN),
119 ERRCONNECT_DEFINE(CONNECT_CANCELLED, CAT_USE),
120 ERRCONNECT_DEFINE(SECURITY_NEGO_CONNECT_FAILED, CAT_USE),
121 ERRCONNECT_DEFINE(CONNECT_TRANSPORT_FAILED, CAT_USE),
122 ERRCONNECT_DEFINE(PASSWORD_EXPIRED, CAT_ADMIN),
123 ERRCONNECT_DEFINE(PASSWORD_CERTAINLY_EXPIRED, CAT_ADMIN),
124 ERRCONNECT_DEFINE(CLIENT_REVOKED, CAT_ADMIN),
125 ERRCONNECT_DEFINE(KDC_UNREACHABLE, CAT_ADMIN),
126 ERRCONNECT_DEFINE(ACCOUNT_DISABLED, CAT_ADMIN),
127 ERRCONNECT_DEFINE(PASSWORD_MUST_CHANGE, CAT_ADMIN),
128 ERRCONNECT_DEFINE(LOGON_FAILURE, CAT_USE),
129 ERRCONNECT_DEFINE(WRONG_PASSWORD, CAT_USE),
130 ERRCONNECT_DEFINE(ACCESS_DENIED, CAT_ADMIN),
131 ERRCONNECT_DEFINE(ACCOUNT_RESTRICTION, CAT_ADMIN),
132 ERRCONNECT_DEFINE(ACCOUNT_LOCKED_OUT, CAT_ADMIN),
133 ERRCONNECT_DEFINE(ACCOUNT_EXPIRED, CAT_ADMIN),
134 ERRCONNECT_DEFINE(LOGON_TYPE_NOT_GRANTED, CAT_ADMIN),
135 ERRCONNECT_DEFINE(NO_OR_MISSING_CREDENTIALS, CAT_USE),
136 ERRCONNECT_DEFINE(ACTIVATION_TIMEOUT, CAT_PROTOCOL),
137 ERRCONNECT_DEFINE(TARGET_BOOTING, CAT_ADMIN),
138 ERRCONNECT_DEFINE(HYBRID_REQUIRED_BY_SERVER, CAT_CONFIG),
139
140 ERRCONNECT_DEFINE(NONE, CAT_NONE)
141};
142
143const char* freerdp_get_error_connect_string(UINT32 code)
144{
145 const ERRINFO* errInfo = nullptr;
146 errInfo = &ERRCONNECT_CODES[0];
147
148 while (errInfo->code != ERRCONNECT_NONE)
149 {
150 if (code == errInfo->code)
151 {
152 return errInfo->info;
153 }
154
155 errInfo++;
156 }
157
158 return "ERRCONNECT_UNKNOWN";
159}
160
161const char* freerdp_get_error_connect_category(UINT32 code)
162{
163 const ERRINFO* errInfo = nullptr;
164 errInfo = &ERRCONNECT_CODES[0];
165
166 while (errInfo->code != ERRCONNECT_NONE)
167 {
168 if (code == errInfo->code)
169 {
170 return errInfo->category;
171 }
172
173 errInfo++;
174 }
175
176 return "ERRCONNECT_UNKNOWN";
177}
178
179const char* freerdp_get_error_connect_name(UINT32 code)
180{
181 const ERRINFO* errInfo = nullptr;
182 errInfo = &ERRCONNECT_CODES[0];
183
184 while (errInfo->code != ERRCONNECT_NONE)
185 {
186 if (code == errInfo->code)
187 {
188 return errInfo->name;
189 }
190
191 errInfo++;
192 }
193
194 return "ERRCONNECT_UNKNOWN";
195}