OIDError.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. /*! @file OIDError.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2015 Google Inc. All Rights Reserved.
  5. @copydetails
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. */
  16. #import <Foundation/Foundation.h>
  17. NS_ASSUME_NONNULL_BEGIN
  18. /*! @brief The error domain for all NSErrors returned from the AppAuth library.
  19. */
  20. extern NSString *const OIDGeneralErrorDomain;
  21. /*! @brief The error domain for OAuth specific errors on the authorization endpoint.
  22. @discussion This error domain is used when the server responds to an authorization request
  23. with an explicit OAuth error, as defined by RFC6749 Section 4.1.2.1. If the authorization
  24. response is invalid and not explicitly an error response, another error domain will be used.
  25. The error response parameter dictionary is available in the
  26. \NSError_userInfo dictionary using the @c ::OIDOAuthErrorResponseErrorKey key.
  27. The \NSError_code will be one of the @c ::OIDErrorCodeOAuthAuthorization enum values.
  28. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  29. */
  30. extern NSString *const OIDOAuthAuthorizationErrorDomain;
  31. /*! @brief The error domain for OAuth specific errors on the token endpoint.
  32. @discussion This error domain is used when the server responds with HTTP 400 and an OAuth error,
  33. as defined RFC6749 Section 5.2. If an HTTP 400 response does not parse as an OAuth error
  34. (i.e. no 'error' field is present or the JSON is invalid), another error domain will be
  35. used. The entire OAuth error response dictionary is available in the \NSError_userInfo
  36. dictionary using the @c ::OIDOAuthErrorResponseErrorKey key. Unlike transient network
  37. errors, errors in this domain invalidate the authentication state, and either indicate a
  38. client error or require user interaction (i.e. reauthentication) to resolve.
  39. The \NSError_code will be one of the @c ::OIDErrorCodeOAuthToken enum values.
  40. @see https://tools.ietf.org/html/rfc6749#section-5.2
  41. */
  42. extern NSString *const OIDOAuthTokenErrorDomain;
  43. /*! @brief The error domain for dynamic client registration errors.
  44. @discussion This error domain is used when the server responds with HTTP 400 and an OAuth error,
  45. as defined in OpenID Connect Dynamic Client Registration 1.0 Section 3.3. If an HTTP 400
  46. response does not parse as an OAuth error (i.e. no 'error' field is present or the JSON is
  47. invalid), another error domain will be used. The entire OAuth error response dictionary is
  48. available in the \NSError_userInfo dictionary using the @c ::OIDOAuthErrorResponseErrorKey
  49. key. Unlike transient network errors, errors in this domain invalidate the authentication
  50. state, and indicates a client error.
  51. The \NSError_code will be one of the @c ::OIDErrorCodeOAuthToken enum values.
  52. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationError
  53. */
  54. extern NSString *const OIDOAuthRegistrationErrorDomain;
  55. /*! @brief The error domain for authorization errors encountered out of band on the resource server.
  56. */
  57. extern NSString *const OIDResourceServerAuthorizationErrorDomain;
  58. /*! @brief An error domain representing received HTTP errors.
  59. */
  60. extern NSString *const OIDHTTPErrorDomain;
  61. /*! @brief An error key for the original OAuth error response (if any).
  62. */
  63. extern NSString *const OIDOAuthErrorResponseErrorKey;
  64. /*! @brief The key of the 'error' response field in a RFC6749 Section 5.2 response.
  65. @remark error
  66. @see https://tools.ietf.org/html/rfc6749#section-5.2
  67. */
  68. extern NSString *const OIDOAuthErrorFieldError;
  69. /*! @brief The key of the 'error_description' response field in a RFC6749 Section 5.2 response.
  70. @remark error_description
  71. @see https://tools.ietf.org/html/rfc6749#section-5.2
  72. */
  73. extern NSString *const OIDOAuthErrorFieldErrorDescription;
  74. /*! @brief The key of the 'error_uri' response field in a RFC6749 Section 5.2 response.
  75. @remark error_uri
  76. @see https://tools.ietf.org/html/rfc6749#section-5.2
  77. */
  78. extern NSString *const OIDOAuthErrorFieldErrorURI;
  79. /*! @brief The various error codes returned from the AppAuth library.
  80. */
  81. typedef NS_ENUM(NSInteger, OIDErrorCode) {
  82. /*! @brief Indicates a problem parsing an OpenID Connect Service Discovery document.
  83. */
  84. OIDErrorCodeInvalidDiscoveryDocument = -2,
  85. /*! @brief Indicates the user manually canceled the OAuth authorization code flow.
  86. */
  87. OIDErrorCodeUserCanceledAuthorizationFlow = -3,
  88. /*! @brief Indicates an OAuth authorization flow was programmatically cancelled.
  89. */
  90. OIDErrorCodeProgramCanceledAuthorizationFlow = -4,
  91. /*! @brief Indicates a network error or server error occurred.
  92. */
  93. OIDErrorCodeNetworkError = -5,
  94. /*! @brief Indicates a server error occurred.
  95. */
  96. OIDErrorCodeServerError = -6,
  97. /*! @brief Indicates a problem occurred deserializing the response/JSON.
  98. */
  99. OIDErrorCodeJSONDeserializationError = -7,
  100. /*! @brief Indicates a problem occurred constructing the token response from the JSON.
  101. */
  102. OIDErrorCodeTokenResponseConstructionError = -8,
  103. /*! @brief @c UIApplication.openURL: returned NO when attempting to open the authorization
  104. request in mobile Safari.
  105. */
  106. OIDErrorCodeSafariOpenError = -9,
  107. /*! @brief @c NSWorkspace.openURL returned NO when attempting to open the authorization
  108. request in the default browser.
  109. */
  110. OIDErrorCodeBrowserOpenError = -10,
  111. /*! @brief Indicates a problem when trying to refresh the tokens.
  112. */
  113. OIDErrorCodeTokenRefreshError = -11,
  114. /*! @brief Indicates a problem occurred constructing the registration response from the JSON.
  115. */
  116. OIDErrorCodeRegistrationResponseConstructionError = -12,
  117. /*! @brief Indicates a problem occurred deserializing the response/JSON.
  118. */
  119. OIDErrorCodeJSONSerializationError = -13,
  120. /*! @brief The ID Token did not parse.
  121. */
  122. OIDErrorCodeIDTokenParsingError = -14,
  123. /*! @brief The ID Token did not pass validation (e.g. issuer, audience checks).
  124. */
  125. OIDErrorCodeIDTokenFailedValidationError = -15,
  126. };
  127. /*! @brief Enum of all possible OAuth error codes as defined by RFC6749
  128. @discussion Used by @c ::OIDErrorCodeOAuthAuthorization and @c ::OIDErrorCodeOAuthToken
  129. which define endpoint-specific subsets of OAuth codes. Those enum types are down-castable
  130. to this one.
  131. @see https://tools.ietf.org/html/rfc6749#section-11.4
  132. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  133. @see https://tools.ietf.org/html/rfc6749#section-5.2
  134. */
  135. typedef NS_ENUM(NSInteger, OIDErrorCodeOAuth) {
  136. /*! @remarks invalid_request
  137. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  138. @see https://tools.ietf.org/html/rfc6749#section-5.2
  139. */
  140. OIDErrorCodeOAuthInvalidRequest = -2,
  141. /*! @remarks unauthorized_client
  142. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  143. @see https://tools.ietf.org/html/rfc6749#section-5.2
  144. */
  145. OIDErrorCodeOAuthUnauthorizedClient = -3,
  146. /*! @remarks access_denied
  147. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  148. */
  149. OIDErrorCodeOAuthAccessDenied = -4,
  150. /*! @remarks unsupported_response_type
  151. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  152. */
  153. OIDErrorCodeOAuthUnsupportedResponseType = -5,
  154. /*! @remarks invalid_scope
  155. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  156. @see https://tools.ietf.org/html/rfc6749#section-5.2
  157. */
  158. OIDErrorCodeOAuthInvalidScope = -6,
  159. /*! @remarks server_error
  160. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  161. */
  162. OIDErrorCodeOAuthServerError = -7,
  163. /*! @remarks temporarily_unavailable
  164. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  165. */
  166. OIDErrorCodeOAuthTemporarilyUnavailable = -8,
  167. /*! @remarks invalid_client
  168. @see https://tools.ietf.org/html/rfc6749#section-5.2
  169. */
  170. OIDErrorCodeOAuthInvalidClient = -9,
  171. /*! @remarks invalid_grant
  172. @see https://tools.ietf.org/html/rfc6749#section-5.2
  173. */
  174. OIDErrorCodeOAuthInvalidGrant = -10,
  175. /*! @remarks unsupported_grant_type
  176. @see https://tools.ietf.org/html/rfc6749#section-5.2
  177. */
  178. OIDErrorCodeOAuthUnsupportedGrantType = -11,
  179. /*! @remarks invalid_redirect_uri
  180. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationError
  181. */
  182. OIDErrorCodeOAuthInvalidRedirectURI = -12,
  183. /*! @remarks invalid_client_metadata
  184. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationError
  185. */
  186. OIDErrorCodeOAuthInvalidClientMetadata = -13,
  187. /*! @brief An authorization error occurring on the client rather than the server. For example,
  188. due to a state mismatch or misconfiguration. Should be treated as an unrecoverable
  189. authorization error.
  190. */
  191. OIDErrorCodeOAuthClientError = -0xEFFF,
  192. /*! @brief An OAuth error not known to this library
  193. @discussion Indicates an OAuth error as per RFC6749, but the error code was not in our
  194. list. It could be a custom error code, or one from an OAuth extension. See the "error" key
  195. of the \NSError_userInfo property. Such errors are assumed to invalidate the
  196. authentication state
  197. */
  198. OIDErrorCodeOAuthOther = -0xF000,
  199. };
  200. /*! @brief The error codes for the @c ::OIDOAuthAuthorizationErrorDomain error domain
  201. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  202. */
  203. typedef NS_ENUM(NSInteger, OIDErrorCodeOAuthAuthorization) {
  204. /*! @remarks invalid_request
  205. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  206. */
  207. OIDErrorCodeOAuthAuthorizationInvalidRequest = OIDErrorCodeOAuthInvalidRequest,
  208. /*! @remarks unauthorized_client
  209. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  210. */
  211. OIDErrorCodeOAuthAuthorizationUnauthorizedClient = OIDErrorCodeOAuthUnauthorizedClient,
  212. /*! @remarks access_denied
  213. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  214. */
  215. OIDErrorCodeOAuthAuthorizationAccessDenied =
  216. OIDErrorCodeOAuthAccessDenied,
  217. /*! @remarks unsupported_response_type
  218. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  219. */
  220. OIDErrorCodeOAuthAuthorizationUnsupportedResponseType =
  221. OIDErrorCodeOAuthUnsupportedResponseType,
  222. /*! @brief Indicates a network error or server error occurred.
  223. @remarks invalid_scope
  224. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  225. */
  226. OIDErrorCodeOAuthAuthorizationAuthorizationInvalidScope = OIDErrorCodeOAuthInvalidScope,
  227. /*! @brief Indicates a server error occurred.
  228. @remarks server_error
  229. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  230. */
  231. OIDErrorCodeOAuthAuthorizationServerError = OIDErrorCodeOAuthServerError,
  232. /*! @remarks temporarily_unavailable
  233. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  234. */
  235. OIDErrorCodeOAuthAuthorizationTemporarilyUnavailable = OIDErrorCodeOAuthTemporarilyUnavailable,
  236. /*! @brief An authorization error occurring on the client rather than the server. For example,
  237. due to a state mismatch or client misconfiguration. Should be treated as an unrecoverable
  238. authorization error.
  239. */
  240. OIDErrorCodeOAuthAuthorizationClientError = OIDErrorCodeOAuthClientError,
  241. /*! @brief An authorization OAuth error not known to this library
  242. @discussion this indicates an OAuth error as per RFC6749, but the error code was not in our
  243. list. It could be a custom error code, or one from an OAuth extension. See the "error" key
  244. of the \NSError_userInfo property. We assume such errors are not transient.
  245. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  246. */
  247. OIDErrorCodeOAuthAuthorizationOther = OIDErrorCodeOAuthOther,
  248. };
  249. /*! @brief The error codes for the @c ::OIDOAuthTokenErrorDomain error domain
  250. @see https://tools.ietf.org/html/rfc6749#section-5.2
  251. */
  252. typedef NS_ENUM(NSInteger, OIDErrorCodeOAuthToken) {
  253. /*! @remarks invalid_request
  254. @see https://tools.ietf.org/html/rfc6749#section-5.2
  255. */
  256. OIDErrorCodeOAuthTokenInvalidRequest = OIDErrorCodeOAuthInvalidRequest,
  257. /*! @remarks invalid_client
  258. @see https://tools.ietf.org/html/rfc6749#section-5.2
  259. */
  260. OIDErrorCodeOAuthTokenInvalidClient = OIDErrorCodeOAuthInvalidClient,
  261. /*! @remarks invalid_grant
  262. @see https://tools.ietf.org/html/rfc6749#section-5.2
  263. */
  264. OIDErrorCodeOAuthTokenInvalidGrant = OIDErrorCodeOAuthInvalidGrant,
  265. /*! @remarks unauthorized_client
  266. @see https://tools.ietf.org/html/rfc6749#section-5.2
  267. */
  268. OIDErrorCodeOAuthTokenUnauthorizedClient = OIDErrorCodeOAuthUnauthorizedClient,
  269. /*! @remarks unsupported_grant_type
  270. @see https://tools.ietf.org/html/rfc6749#section-5.2
  271. */
  272. OIDErrorCodeOAuthTokenUnsupportedGrantType = OIDErrorCodeOAuthUnsupportedGrantType,
  273. /*! @remarks invalid_scope
  274. @see https://tools.ietf.org/html/rfc6749#section-5.2
  275. */
  276. OIDErrorCodeOAuthTokenInvalidScope = OIDErrorCodeOAuthInvalidScope,
  277. /*! @brief An unrecoverable token error occurring on the client rather than the server.
  278. */
  279. OIDErrorCodeOAuthTokenClientError = OIDErrorCodeOAuthClientError,
  280. /*! @brief A token endpoint OAuth error not known to this library
  281. @discussion this indicates an OAuth error as per RFC6749, but the error code was not in our
  282. list. It could be a custom error code, or one from an OAuth extension. See the "error" key
  283. of the \NSError_userInfo property. We assume such errors are not transient.
  284. @see https://tools.ietf.org/html/rfc6749#section-5.2
  285. */
  286. OIDErrorCodeOAuthTokenOther = OIDErrorCodeOAuthOther,
  287. };
  288. /*! @brief The error codes for the @c ::OIDOAuthRegistrationErrorDomain error domain
  289. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationError
  290. */
  291. typedef NS_ENUM(NSInteger, OIDErrorCodeOAuthRegistration) {
  292. /*! @remarks invalid_request
  293. @see http://tools.ietf.org/html/rfc6750#section-3.1
  294. */
  295. OIDErrorCodeOAuthRegistrationInvalidRequest = OIDErrorCodeOAuthInvalidRequest,
  296. /*! @remarks invalid_redirect_uri
  297. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationError
  298. */
  299. OIDErrorCodeOAuthRegistrationInvalidRedirectURI = OIDErrorCodeOAuthInvalidRedirectURI,
  300. /*! @remarks invalid_client_metadata
  301. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationError
  302. */
  303. OIDErrorCodeOAuthRegistrationInvalidClientMetadata = OIDErrorCodeOAuthInvalidClientMetadata,
  304. /*! @brief An unrecoverable token error occurring on the client rather than the server.
  305. */
  306. OIDErrorCodeOAuthRegistrationClientError = OIDErrorCodeOAuthClientError,
  307. /*! @brief A registration endpoint OAuth error not known to this library
  308. @discussion this indicates an OAuth error, but the error code was not in our
  309. list. It could be a custom error code, or one from an OAuth extension. See the "error" key
  310. of the \NSError_userInfo property. We assume such errors are not transient.
  311. @see https://tools.ietf.org/html/rfc6749#section-5.2
  312. */
  313. OIDErrorCodeOAuthRegistrationOther = OIDErrorCodeOAuthOther,
  314. };
  315. /*! @brief The exception text for the exception which occurs when a
  316. @c OIDExternalUserAgentSession receives a message after it has already completed.
  317. */
  318. extern NSString *const OIDOAuthExceptionInvalidAuthorizationFlow;
  319. /*! @brief The text for the exception which occurs when a Token Request is constructed
  320. with a null redirectURL for a grant_type that requires a nonnull Redirect
  321. */
  322. extern NSString *const OIDOAuthExceptionInvalidTokenRequestNullRedirectURL;
  323. NS_ASSUME_NONNULL_END