arq_restore/cocoastack/s3/S3SignatureV1AuthorizationProvider.m
2017-02-03 10:04:07 -05:00

163 lines
6.1 KiB
Objective-C

/*
Copyright (c) 2009-2017, Haystack Software LLC https://www.arqbackup.com
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the names of PhotoMinds LLC or Haystack Software, nor the names of
their contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#import "S3SignatureV1AuthorizationProvider.h"
#import "LocalS3Signer.h"
#import "HTTPConnection.h"
@implementation S3SignatureV1AuthorizationProvider
- (id)initWithAccessKey:(NSString *)access secretKey:(NSString *)secret {
if (self = [super init]) {
NSAssert(access != nil, @"access key can't be nil");
NSAssert(secret != nil, @"secret key can't be nil");
accessKey = [access copy];
signer = [[LocalS3Signer alloc] initWithSecretKey:secret];
}
return self;
}
- (void)dealloc {
[accessKey release];
[signer release];
[super dealloc];
}
#pragma mark S3AuthorizationProvider
- (int)signatureVersion {
return 1;
}
- (BOOL)setAuthorizationOnHTTPConnection:(id <HTTPConnection>)conn contentSHA256:(NSString *)theContentSHA256 now:(NSDate *)now stringToSign:(NSString **)outStringToSign canonicalRequest:(NSString **)outCanonicalRequest error:(NSError **)error {
NSString *stringToSign = [self stringToSignForConnection:conn];
if (outStringToSign != NULL) {
*outStringToSign = stringToSign;
}
NSString *authorization = [self authorizationForString:stringToSign error:error];
if (authorization == nil) {
return NO;
}
[conn setRequestHeader:authorization forKey:@"Authorization"];
return YES;
}
#pragma mark NSCopying
- (id)copyWithZone:(NSZone *)zone {
return [[S3SignatureV1AuthorizationProvider alloc] initWithAccessKey:accessKey signer:signer];
}
#pragma mark internal
- (id)initWithAccessKey:(NSString *)access signer:(id <S3Signer>)theSigner {
if (self = [super init]) {
accessKey = [access retain];
signer = [theSigner retain];
}
return self;
}
- (NSString *)authorizationForString:(NSString *)stringToSign error:(NSError **)error {
NSString *signature = [signer sign:stringToSign error:error];
if (signature == nil) {
return nil;
}
NSMutableString *buf = [[[NSMutableString alloc] init] autorelease];
[buf appendString:@"AWS "];
[buf appendString:accessKey];
[buf appendString:@":"];
[buf appendString:signature];
NSString *ret = [NSString stringWithString:buf];
if ([ret hasSuffix:@"\n"]) {
NSUInteger length = [ret length];
ret = [ret substringToIndex:(length - 1)];
}
return ret;
}
- (NSString *)stringToSignForConnection:(id <HTTPConnection>)theConnection {
NSMutableString *buf = [[[NSMutableString alloc] init] autorelease];
[buf appendString:[theConnection requestMethod]];
[buf appendString:@"\n"];
NSString *contentMd5 = [theConnection requestHeaderForKey:@"Content-Md5"];
if (contentMd5 != nil) {
[buf appendString:contentMd5];
}
[buf appendString:@"\n"];
NSString *contentType = [theConnection requestHeaderForKey:@"Content-Type"];
if (contentType != nil) {
[buf appendString:contentType];
}
[buf appendString:@"\n"];
[buf appendString:[theConnection requestHeaderForKey:@"Date"]];
[buf appendString:@"\n"];
NSMutableArray *xamzHeaders = [NSMutableArray array];
for (NSString *headerName in [theConnection requestHeaderKeys]) {
NSString *lower = [headerName lowercaseString];
if ([lower hasPrefix:@"x-amz-"]) {
[xamzHeaders addObject:[NSString stringWithFormat:@"%@:%@\n", lower, [theConnection requestHeaderForKey:headerName]]];
}
}
[xamzHeaders sortUsingSelector:@selector(compare:)];
for (NSString *xamz in xamzHeaders) {
[buf appendString:xamz];
}
NSString *pathInfo = [theConnection requestPathInfo];
if (pathInfo != nil) {
[buf appendString:pathInfo];
}
NSString *queryString = [theConnection requestQueryString];
if ([queryString isEqualToString:@"acl"]
|| [queryString isEqualToString:@"logging"]
|| [queryString isEqualToString:@"torrent"]
|| [queryString isEqualToString:@"location"]
|| [queryString isEqualToString:@"lifecycle"]
|| [queryString isEqualToString:@"restore"]
|| [queryString isEqualToString:@"delete"]) {
[buf appendString:@"?"];
[buf appendString:queryString];
}
#if 0
{
HSLogDebug(@"v1 string to sign: <%@>", buf);
const char *stringToSignBytes = [buf UTF8String];
int stringToSignLen = (int)strlen(stringToSignBytes);
NSMutableString *displayBytes = [[[NSMutableString alloc] init] autorelease];
for (int i = 0; i < stringToSignLen; i++) {
[displayBytes appendString:[NSString stringWithFormat:@"%02x ", stringToSignBytes[i]]];
}
HSLogDebug(@"string to sign bytes: <%@>", displayBytes);
}
#endif
return buf;
}
@end