OIDAuthorizationRequest.m 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. /*! @file OIDAuthorizationRequest.m
  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 "OIDAuthorizationRequest.h"
  17. #import "OIDDefines.h"
  18. #import "OIDScopeUtilities.h"
  19. #import "OIDServiceConfiguration.h"
  20. #import "OIDTokenUtilities.h"
  21. #import "OIDURLQueryComponent.h"
  22. /*! @brief The key for the @c configuration property for @c NSSecureCoding
  23. */
  24. static NSString *const kConfigurationKey = @"configuration";
  25. /*! @brief Key used to encode the @c responseType property for @c NSSecureCoding, and on the URL
  26. request.
  27. */
  28. static NSString *const kResponseTypeKey = @"response_type";
  29. /*! @brief Key used to encode the @c clientID property for @c NSSecureCoding, and on the URL
  30. request.
  31. */
  32. static NSString *const kClientIDKey = @"client_id";
  33. /*! @brief Key used to encode the @c clientSecret property for @c NSSecureCoding.
  34. */
  35. static NSString *const kClientSecretKey = @"client_secret";
  36. /*! @brief Key used to encode the @c scope property for @c NSSecureCoding, and on the URL request.
  37. */
  38. static NSString *const kScopeKey = @"scope";
  39. /*! @brief Key used to encode the @c redirectURL property for @c NSSecureCoding, and on the URL
  40. request.
  41. */
  42. static NSString *const kRedirectURLKey = @"redirect_uri";
  43. /*! @brief Key used to encode the @c state property for @c NSSecureCoding, and on the URL request.
  44. */
  45. static NSString *const kStateKey = @"state";
  46. /*! @brief Key used to encode the @c nonce property for @c NSSecureCoding, and on the URL request.
  47. */
  48. static NSString *const kNonceKey = @"nonce";
  49. /*! @brief Key used to encode the @c codeVerifier property for @c NSSecureCoding.
  50. */
  51. static NSString *const kCodeVerifierKey = @"code_verifier";
  52. /*! @brief Key used to send the @c codeChallenge on the URL request.
  53. */
  54. static NSString *const kCodeChallengeKey = @"code_challenge";
  55. /*! @brief Key used to send the @c codeChallengeMethod on the URL request.
  56. */
  57. static NSString *const kCodeChallengeMethodKey = @"code_challenge_method";
  58. /*! @brief Key used to encode the @c additionalParameters property for
  59. @c NSSecureCoding
  60. */
  61. static NSString *const kAdditionalParametersKey = @"additionalParameters";
  62. /*! @brief Number of random bytes generated for the @ state.
  63. */
  64. static NSUInteger const kStateSizeBytes = 32;
  65. /*! @brief Number of random bytes generated for the @ codeVerifier.
  66. */
  67. static NSUInteger const kCodeVerifierBytes = 32;
  68. /*! @brief Assertion text for unsupported response types.
  69. */
  70. static NSString *const OIDOAuthUnsupportedResponseTypeMessage =
  71. @"The response_type \"%@\" isn't supported. AppAuth only supports the \"code\" or \"code id_token\" response_type.";
  72. /*! @brief Code challenge request method.
  73. */
  74. NSString *const OIDOAuthorizationRequestCodeChallengeMethodS256 = @"S256";
  75. @implementation OIDAuthorizationRequest
  76. - (instancetype)init
  77. OID_UNAVAILABLE_USE_INITIALIZER(
  78. @selector(initWithConfiguration:
  79. clientId:
  80. scopes:
  81. redirectURL:
  82. responseType:
  83. additionalParameters:)
  84. )
  85. /*! @brief Check if the response type is one AppAuth supports
  86. @remarks AppAuth only supports the `code` and `code id_token` response types.
  87. @see https://github.com/openid/AppAuth-iOS/issues/98
  88. @see https://github.com/openid/AppAuth-iOS/issues/292
  89. */
  90. + (BOOL)isSupportedResponseType:(NSString *)responseType
  91. {
  92. NSString *codeIdToken = [@[OIDResponseTypeCode, OIDResponseTypeIDToken]
  93. componentsJoinedByString:@" "];
  94. NSString *idTokenCode = [@[OIDResponseTypeIDToken, OIDResponseTypeCode]
  95. componentsJoinedByString:@" "];
  96. return [responseType isEqualToString:OIDResponseTypeCode]
  97. || [responseType isEqualToString:codeIdToken]
  98. || [responseType isEqualToString:idTokenCode];
  99. }
  100. - (instancetype)initWithConfiguration:(OIDServiceConfiguration *)configuration
  101. clientId:(NSString *)clientID
  102. clientSecret:(nullable NSString *)clientSecret
  103. scope:(nullable NSString *)scope
  104. redirectURL:(NSURL *)redirectURL
  105. responseType:(NSString *)responseType
  106. state:(nullable NSString *)state
  107. nonce:(nullable NSString *)nonce
  108. codeVerifier:(nullable NSString *)codeVerifier
  109. codeChallenge:(nullable NSString *)codeChallenge
  110. codeChallengeMethod:(nullable NSString *)codeChallengeMethod
  111. additionalParameters:(nullable NSDictionary<NSString *, NSString *> *)additionalParameters
  112. {
  113. self = [super init];
  114. if (self) {
  115. _configuration = [configuration copy];
  116. _clientID = [clientID copy];
  117. _clientSecret = [clientSecret copy];
  118. _scope = [scope copy];
  119. _redirectURL = [redirectURL copy];
  120. _responseType = [responseType copy];
  121. if (![[self class] isSupportedResponseType:_responseType]) {
  122. NSAssert(NO, OIDOAuthUnsupportedResponseTypeMessage, _responseType);
  123. return nil;
  124. }
  125. _state = [state copy];
  126. _nonce = [nonce copy];
  127. _codeVerifier = [codeVerifier copy];
  128. _codeChallenge = [codeChallenge copy];
  129. _codeChallengeMethod = [codeChallengeMethod copy];
  130. _additionalParameters =
  131. [[NSDictionary alloc] initWithDictionary:additionalParameters copyItems:YES];
  132. }
  133. return self;
  134. }
  135. - (instancetype)
  136. initWithConfiguration:(OIDServiceConfiguration *)configuration
  137. clientId:(NSString *)clientID
  138. clientSecret:(NSString *)clientSecret
  139. scopes:(nullable NSArray<NSString *> *)scopes
  140. redirectURL:(NSURL *)redirectURL
  141. responseType:(NSString *)responseType
  142. additionalParameters:(nullable NSDictionary<NSString *, NSString *> *)additionalParameters {
  143. // generates PKCE code verifier and challenge
  144. NSString *codeVerifier = [[self class] generateCodeVerifier];
  145. NSString *codeChallenge = [[self class] codeChallengeS256ForVerifier:codeVerifier];
  146. return [self initWithConfiguration:configuration
  147. clientId:clientID
  148. clientSecret:clientSecret
  149. scope:[OIDScopeUtilities scopesWithArray:scopes]
  150. redirectURL:redirectURL
  151. responseType:responseType
  152. state:[[self class] generateState]
  153. nonce:[[self class] generateState]
  154. codeVerifier:codeVerifier
  155. codeChallenge:codeChallenge
  156. codeChallengeMethod:OIDOAuthorizationRequestCodeChallengeMethodS256
  157. additionalParameters:additionalParameters];
  158. }
  159. - (instancetype)
  160. initWithConfiguration:(OIDServiceConfiguration *)configuration
  161. clientId:(NSString *)clientID
  162. scopes:(nullable NSArray<NSString *> *)scopes
  163. redirectURL:(NSURL *)redirectURL
  164. responseType:(NSString *)responseType
  165. additionalParameters:(nullable NSDictionary<NSString *, NSString *> *)additionalParameters {
  166. return [self initWithConfiguration:configuration
  167. clientId:clientID
  168. clientSecret:nil
  169. scopes:scopes
  170. redirectURL:redirectURL
  171. responseType:responseType
  172. additionalParameters:additionalParameters];
  173. }
  174. #pragma mark - NSCopying
  175. - (instancetype)copyWithZone:(nullable NSZone *)zone {
  176. // The documentation for NSCopying specifically advises us to return a reference to the original
  177. // instance in the case where instances are immutable (as ours is):
  178. // "Implement NSCopying by retaining the original instead of creating a new copy when the class
  179. // and its contents are immutable."
  180. return self;
  181. }
  182. #pragma mark - NSSecureCoding
  183. + (BOOL)supportsSecureCoding {
  184. return YES;
  185. }
  186. - (instancetype)initWithCoder:(NSCoder *)aDecoder {
  187. OIDServiceConfiguration *configuration =
  188. [aDecoder decodeObjectOfClass:[OIDServiceConfiguration class]
  189. forKey:kConfigurationKey];
  190. NSString *responseType = [aDecoder decodeObjectOfClass:[NSString class] forKey:kResponseTypeKey];
  191. NSString *clientID = [aDecoder decodeObjectOfClass:[NSString class] forKey:kClientIDKey];
  192. NSString *clientSecret = [aDecoder decodeObjectOfClass:[NSString class] forKey:kClientSecretKey];
  193. NSString *scope = [aDecoder decodeObjectOfClass:[NSString class] forKey:kScopeKey];
  194. NSURL *redirectURL = [aDecoder decodeObjectOfClass:[NSURL class] forKey:kRedirectURLKey];
  195. NSString *state = [aDecoder decodeObjectOfClass:[NSString class] forKey:kStateKey];
  196. NSString *nonce = [aDecoder decodeObjectOfClass:[NSString class] forKey:kNonceKey];
  197. NSString *codeVerifier = [aDecoder decodeObjectOfClass:[NSString class] forKey:kCodeVerifierKey];
  198. NSString *codeChallenge =
  199. [aDecoder decodeObjectOfClass:[NSString class] forKey:kCodeChallengeKey];
  200. NSString *codeChallengeMethod =
  201. [aDecoder decodeObjectOfClass:[NSString class] forKey:kCodeChallengeMethodKey];
  202. NSSet *additionalParameterCodingClasses = [NSSet setWithArray:@[
  203. [NSDictionary class],
  204. [NSString class]
  205. ]];
  206. NSDictionary *additionalParameters =
  207. [aDecoder decodeObjectOfClasses:additionalParameterCodingClasses
  208. forKey:kAdditionalParametersKey];
  209. self = [self initWithConfiguration:configuration
  210. clientId:clientID
  211. clientSecret:clientSecret
  212. scope:scope
  213. redirectURL:redirectURL
  214. responseType:responseType
  215. state:state
  216. nonce:nonce
  217. codeVerifier:codeVerifier
  218. codeChallenge:codeChallenge
  219. codeChallengeMethod:codeChallengeMethod
  220. additionalParameters:additionalParameters];
  221. return self;
  222. }
  223. - (void)encodeWithCoder:(NSCoder *)aCoder {
  224. [aCoder encodeObject:_configuration forKey:kConfigurationKey];
  225. [aCoder encodeObject:_responseType forKey:kResponseTypeKey];
  226. [aCoder encodeObject:_clientID forKey:kClientIDKey];
  227. [aCoder encodeObject:_clientSecret forKey:kClientSecretKey];
  228. [aCoder encodeObject:_scope forKey:kScopeKey];
  229. [aCoder encodeObject:_redirectURL forKey:kRedirectURLKey];
  230. [aCoder encodeObject:_state forKey:kStateKey];
  231. [aCoder encodeObject:_nonce forKey:kNonceKey];
  232. [aCoder encodeObject:_codeVerifier forKey:kCodeVerifierKey];
  233. [aCoder encodeObject:_codeChallenge forKey:kCodeChallengeKey];
  234. [aCoder encodeObject:_codeChallengeMethod forKey:kCodeChallengeMethodKey];
  235. [aCoder encodeObject:_additionalParameters forKey:kAdditionalParametersKey];
  236. }
  237. #pragma mark - NSObject overrides
  238. - (NSString *)description {
  239. return [NSString stringWithFormat:@"<%@: %p, request: %@>",
  240. NSStringFromClass([self class]),
  241. (void *)self,
  242. self.authorizationRequestURL];
  243. }
  244. #pragma mark - State and PKCE verifier/challenge generation Methods
  245. + (nullable NSString *)generateCodeVerifier {
  246. return [OIDTokenUtilities randomURLSafeStringWithSize:kCodeVerifierBytes];
  247. }
  248. + (nullable NSString *)generateState {
  249. return [OIDTokenUtilities randomURLSafeStringWithSize:kStateSizeBytes];
  250. }
  251. + (nullable NSString *)codeChallengeS256ForVerifier:(NSString *)codeVerifier {
  252. if (!codeVerifier) {
  253. return nil;
  254. }
  255. // generates the code_challenge per spec https://tools.ietf.org/html/rfc7636#section-4.2
  256. // code_challenge = BASE64URL-ENCODE(SHA256(ASCII(code_verifier)))
  257. // NB. the ASCII conversion on the code_verifier entropy was done at time of generation.
  258. NSData *sha256Verifier = [OIDTokenUtilities sha256:codeVerifier];
  259. return [OIDTokenUtilities encodeBase64urlNoPadding:sha256Verifier];
  260. }
  261. #pragma mark -
  262. - (NSURL *)authorizationRequestURL {
  263. OIDURLQueryComponent *query = [[OIDURLQueryComponent alloc] init];
  264. // Required parameters.
  265. [query addParameter:kResponseTypeKey value:_responseType];
  266. [query addParameter:kClientIDKey value:_clientID];
  267. // Add any additional parameters the client has specified.
  268. [query addParameters:_additionalParameters];
  269. // Add optional parameters, as applicable.
  270. if (_redirectURL) {
  271. [query addParameter:kRedirectURLKey value:_redirectURL.absoluteString];
  272. }
  273. if (_scope) {
  274. [query addParameter:kScopeKey value:_scope];
  275. }
  276. if (_state) {
  277. [query addParameter:kStateKey value:_state];
  278. }
  279. if (_nonce) {
  280. [query addParameter:kNonceKey value:_nonce];
  281. }
  282. if (_codeChallenge) {
  283. [query addParameter:kCodeChallengeKey value:_codeChallenge];
  284. }
  285. if (_codeChallengeMethod) {
  286. [query addParameter:kCodeChallengeMethodKey value:_codeChallengeMethod];
  287. }
  288. // Construct the URL:
  289. return [query URLByReplacingQueryInURL:_configuration.authorizationEndpoint];
  290. }
  291. #pragma mark - OIDExternalUserAgentRequest
  292. - (NSURL *)externalUserAgentRequestURL {
  293. return [self authorizationRequestURL];
  294. }
  295. - (NSString *)redirectScheme {
  296. return [[self redirectURL] scheme];
  297. }
  298. @end