2 * Copyright (c) 2010-2012,2014 Apple Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
24 #include "SecEncodeTransform.h"
25 #include "SecDecodeTransform.h"
26 #include "SecCustomTransform.h"
27 #include "CoreFoundation/CoreFoundation.h"
29 #include "Utilities.h"
31 #include <malloc/malloc.h>
33 const static CFStringRef DecodeName
= CFSTR("com.apple.security.Decoder");
34 const static CFStringRef EncodeName
= CFSTR("com.apple.security.Encoder");
35 // base32 & base64 are as per RFC 4648
36 const CFStringRef kSecBase64Encoding
= CFSTR("base64");
37 const CFStringRef kSecBase32Encoding
= CFSTR("base32");
38 // kSecBase32FDEEncoding is SPI (8436055), it avoids I and O, and uses 8 and 9.
39 // Not good for number form dislexics, but avoids the appearance of a conflict
40 // between 0 and O or 1 and I (note: 0 and 1 are not used anyway, so there is
42 const CFStringRef kSecBase32FDEEncoding
= CFSTR("base32FDE");
43 const CFStringRef kSecZLibEncoding
= CFSTR("zlib");
44 const CFStringRef kSecEncodeTypeAttribute
= CFSTR("EncodeType");
45 const CFStringRef kSecDecodeTypeAttribute
= CFSTR("DecodeType");
46 const CFStringRef kSecEncodeLineLengthAttribute
= CFSTR("LineLength");
47 const CFStringRef kSecCompressionRatio
= CFSTR("CompressionRatio");
49 // There is no way to initialize a const CFNumberRef, so these
50 // either need to be non-const, or they need to be a CF type
51 // with a const constructor (CFStringRef).
52 const CFStringRef kSecLineLength64
= CFSTR("64");
53 const CFStringRef kSecLineLength76
= CFSTR("76");
55 static unsigned char Base64Vals
[] =
56 {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
59 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
60 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
61 0xff, 0xff, 0xff, 0x3e, 0xff, 0xff, 0xff, 0x3f,
62 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,
63 0x3c, 0x3d, 0xff, 0xff, 0xff, 0x40, 0xff, 0xff,
64 0xff, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
65 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
66 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,
67 0x17, 0x18, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff,
68 0xff, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,
69 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,
70 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,
71 0x31, 0x32, 0x33, 0xff, 0xff, 0xff, 0xff, 0xff,
72 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
73 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
74 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
75 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
76 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
77 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
78 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
79 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
80 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
81 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
82 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
83 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
84 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
85 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
86 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
87 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
89 static char Base64Chars
[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
90 "abcdefghijklmnopqrstuvwxyz"
94 static unsigned char Base32Vals
[] = {0xff, 0xff, 0xff,
95 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
96 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
97 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
98 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
99 0xff, 0xff, 0xff, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0xff, 0xff,
100 0xff, 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0x00, 0x01, 0x02, 0x03,
101 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
102 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,
103 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
104 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
105 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
106 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
107 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
108 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
109 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
110 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
111 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
112 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
113 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
114 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
115 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
116 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
117 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
119 static unsigned char Base32FDEVals
[] = {0xff, 0xff, 0xff,
120 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
121 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
122 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
123 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
124 0xff, 0xff, 0xff, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x08, 0x12,
125 0xff, 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0x00, 0x01, 0x02, 0x03,
126 0x04, 0x05, 0x06, 0x07, 0xff, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
127 0x0f, 0x10, 0x11, 0xff, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,
128 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
129 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
130 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
131 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
132 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
133 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
134 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
135 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
136 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
137 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
138 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
139 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
140 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
141 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
142 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
144 /* --------------------------------------------------------------------------
145 function: DecodeTransform
146 description: This function returns a block that implements the
148 -------------------------------------------------------------------------- */
149 static SecTransformInstanceBlock
DecodeTransform(CFStringRef name
,
150 SecTransformRef newTransform
,
151 SecTransformImplementationRef ref
)
153 SecTransformInstanceBlock instanceBlock
=
155 CFErrorRef result
= NULL
;
156 SecTransformCustomSetAttribute(ref
, kSecDecodeTypeAttribute
,
157 kSecTransformMetaAttributeRequired
, kCFBooleanTrue
);
159 SecTransformSetAttributeAction(ref
,
160 kSecTransformActionAttributeNotification
,
161 kSecDecodeTypeAttribute
,
162 ^(SecTransformStringOrAttributeRef attribute
, CFTypeRef value
)
164 if (NULL
== value
|| CFGetTypeID(value
) != CFStringGetTypeID())
166 CFErrorRef errorResult
= fancy_error(kSecTransformErrorDomain
,
167 kSecTransformErrorInvalidInput
,
168 CFSTR("Decode type was not a CFStringRef"));
169 return (CFTypeRef
)errorResult
;
171 // value is a CFStringRef
172 if (kCFCompareEqualTo
== CFStringCompare(value
, kSecBase64Encoding
, 0))
174 __block
struct { unsigned char a
[4]; } leftover
;
175 static const short int in_chunk_size
= 4;
176 static const short int out_chunk_size
= 3;
177 __block
int leftover_cnt
= 0;
179 SecTransformSetDataAction(ref
, kSecTransformActionProcessData
,
183 CFIndex enc_cnt
= d
? CFDataGetLength(d
) : 0;
184 const unsigned char *enc
= d
? CFDataGetBytePtr(d
) : NULL
;
185 const unsigned char *enc_end
= enc
+ enc_cnt
;
186 long n_chunks
= (leftover_cnt
+ enc_cnt
) / out_chunk_size
+ 1;
188 unsigned char *out_base
= malloc(n_chunks
* out_chunk_size
);
190 return (CFTypeRef
) GetNoMemoryError();
192 unsigned char *out_end
= out_base
+ n_chunks
* out_chunk_size
;
193 unsigned char *out
= out_base
;
194 int chunk_i
= leftover_cnt
;
196 for(; enc
< enc_end
|| !enc
; chunk_i
++) {
203 if (ch
== ' ' || ch
== '\n' || ch
== '\r') {
210 leftover
.a
[chunk_i
] = b
;
213 if (chunk_i
== in_chunk_size
-1 || ch
== '=') {
214 *out
= (leftover
.a
[0] & 0x3f) << 2;
215 *out
++ |= ((leftover
.a
[1] & 0x3f) >> 4);
216 *out
= (leftover
.a
[1] & 0x0f) << 4;
217 *out
++ |= (leftover
.a
[2] & 0x3f) >> 2;
218 *out
= (leftover
.a
[2] & 0x03) << 6;
219 *out
++ |= (leftover
.a
[3] & 0x3f);
232 leftover_cnt
= (chunk_i
> 0) ? chunk_i
: 0;
234 // We really shouldn't get here, but if we do we just smashed something.
238 CFDataRef ret
= CFDataCreateWithBytesNoCopy(NULL
, out_base
, out
- out_base
, kCFAllocatorMalloc
);
240 SecTransformCustomSetAttribute(ref
, kSecTransformOutputAttributeName
,
241 kSecTransformMetaAttributeValue
, ret
);
245 return (CFTypeRef
)ret
;
248 else if (kCFCompareEqualTo
== CFStringCompare(value
, kSecBase32Encoding
, 0) || kCFCompareEqualTo
== CFStringCompare(value
, kSecBase32FDEEncoding
, 0))
250 __block
struct { uint64_t a
[2]; } accumulator
= { .a
= {0, 0}};
251 __block
short int bits_accumulated
= 0;
252 //static const short int in_chunk_size = 5, out_chunk_size = 8;
253 static const short int out_chunk_size
= 8;
254 const short int full_accumulator
= 80;
255 unsigned char *base32values
= NULL
;
257 if (kCFCompareEqualTo
== CFStringCompare(value
, kSecBase32Encoding
, 0)) {
258 base32values
= Base32Vals
;
259 } else if (kCFCompareEqualTo
== CFStringCompare(value
, kSecBase32FDEEncoding
, 0)) {
260 base32values
= Base32FDEVals
;
263 if (NULL
== base32values
) {
264 // There is only one supported type, so we don't want to mention it in an error message
265 CFErrorRef bad_type
= CreateSecTransformErrorRef(kSecTransformErrorInvalidInput
, "Unknown base32 type '%@'", value
);
267 SecTransformCustomSetAttribute(ref
, kSecTransformAbortAttributeName
, kSecTransformMetaAttributeValue
, bad_type
);
269 return (CFTypeRef
)bad_type
;
272 SecTransformSetDataAction(ref
, kSecTransformActionProcessData
,
276 CFIndex enc_cnt
= d
? CFDataGetLength(d
) : 0;
277 const unsigned char *enc
= d
? CFDataGetBytePtr(d
) : NULL
;
278 const unsigned char *enc_end
= enc
+ enc_cnt
;
279 long n_chunks
= (bits_accumulated
/8 + enc_cnt
) / out_chunk_size
+ 1;
281 unsigned char *out_base
= malloc(n_chunks
* out_chunk_size
);
283 return (CFTypeRef
)GetNoMemoryError();
285 unsigned char *out_end
= out_base
+ n_chunks
* out_chunk_size
;
286 unsigned char *out
= out_base
;
288 for(; enc
< enc_end
|| !d
;) {
296 b
= base32values
[ch
];
302 // 5 new low order bits
303 accumulator
.a
[1] = accumulator
.a
[1] << 5 | (0x1f & (accumulator
.a
[0] >> (64 -5)));
304 accumulator
.a
[0] = accumulator
.a
[0] << 5 | b
;
305 bits_accumulated
+= 5;
307 if (bits_accumulated
== full_accumulator
|| ch
== '=') {
309 for(; shifted
+ bits_accumulated
< full_accumulator
; shifted
+= 5) {
310 accumulator
.a
[1] = accumulator
.a
[1] << 5 | (0x1f & accumulator
.a
[0] >> (64 -5));
311 accumulator
.a
[0] = accumulator
.a
[0] << 5;
313 for(; bits_accumulated
>= 8; bits_accumulated
-= 8) {
315 *out
++ = accumulator
.a
[1] >> (80 - 64 - 8);
316 accumulator
.a
[1] = (accumulator
.a
[1] << 8 | accumulator
.a
[0] >> (64 - 8)) & 0xffff;
317 accumulator
.a
[0] = accumulator
.a
[0] << 8;
319 bits_accumulated
= 0;
326 // We really shouldn't get here, but if we do we just smashed something.
330 CFDataRef ret
= CFDataCreateWithBytesNoCopy(NULL
, out_base
, out
- out_base
, kCFAllocatorMalloc
);
332 SecTransformCustomSetAttribute(ref
, kSecTransformOutputAttributeName
,
333 kSecTransformMetaAttributeValue
, ret
);
337 return (CFTypeRef
)ret
;
340 else if (kCFCompareEqualTo
== CFStringCompare(value
, kSecZLibEncoding
, 0))
343 __block Boolean started
= FALSE
;
345 CFBooleanRef hasRatio
= (CFBooleanRef
)SecTranformCustomGetAttribute(ref
,
346 kSecCompressionRatio
, kSecTransformMetaAttributeHasOutboundConnections
);
347 Boolean ratio_connected
= (kCFBooleanTrue
== hasRatio
);
349 bzero(&zs
, sizeof(zs
));
351 SecTransformSetDataAction(ref
, kSecTransformActionProcessData
,
357 return (CFTypeRef
)NULL
;
364 zs
.next_in
= (UInt8
*)(CFDataGetBytePtr(d
)); // we know that zlib will not 'futz' with the data
365 zs
.avail_in
= (uInt
)CFDataGetLength(d
);
373 CFIndex buf_sz
= malloc_good_size(zs
.avail_in
? zs
.avail_in
: 1024 * 4);
375 while ((d
&& zs
.avail_in
) || (d
== NULL
&& rc
!= Z_STREAM_END
)) {
376 unsigned char *buf
= malloc(buf_sz
);
378 return (CFTypeRef
)GetNoMemoryError();
382 zs
.avail_out
= (uInt
)buf_sz
;
384 rc
= inflate(&zs
, d
? Z_NO_FLUSH
: Z_FINISH
);
386 CFIndex buf_used
= buf_sz
- zs
.avail_out
;
387 #ifdef DEBUG_ZLIB_MEMORY_USE
388 // It might be useful to look at these and tweak things like when we should use DataCreate vs. DataCreateWithBytesNoCopy
389 CFfprintf(stderr
, ">>zavail_in %d buf_sz %d; d %p; ", zs
.avail_in
, buf_sz
, d
);
390 CFfprintf(stderr
, "rc=%d %s", rc
, (rc
== Z_OK
) ? "Z_OK" : (rc
== Z_STREAM_END
) ? "Z_STREAM_END" : (rc
== Z_BUF_ERROR
) ? "Z_BUF_ERROR" : "?");
391 CFfprintf(stderr
, " (output used %d, input left %d)\n", buf_used
, zs
.avail_in
);
393 if (rc
== Z_OK
|| rc
== Z_STREAM_END
) {
395 if ((4 * buf_used
) / buf_sz
<= 1) {
396 // we would waste 25%+ of the buffer, make a smaller copy and release the original
397 d
= CFDataCreate(NULL
, buf
, buf_used
);
400 d
= CFDataCreateWithBytesNoCopy(NULL
, buf
, buf_used
, kCFAllocatorMalloc
);
402 SecTransformCustomSetAttribute(ref
, kSecTransformOutputAttributeName
,
403 kSecTransformMetaAttributeValue
, d
);
405 } else if (rc
== Z_BUF_ERROR
) {
407 if ((int)buf_sz
> (1 << Z_BEST_COMPRESSION
) && 0 == zs
.avail_in
) {
408 // zlib has an odd convention about EOF and Z_BUF_ERROR, see http://www.zlib.net/zlib_how.html
409 // Z_BUF_ERROR can mean "you don't have a big enough output buffer, please enlarge", or "the input buffer is
410 // empty, please get more data". So if we get Z_BUF_ERROR, and there are 0 bytes of input, and the output
411 // buffer is larger the the maximum number of bytes a single symbol can decode to (2^compression level, which
412 // is at most Z_BEST_COMPRESSION) we KNOW the complaint isn't about the output buffer, but the input
413 // buffer and we are free to go. NOTE: we will only hit this if we are at the end of the stream, and the prior
414 // data chunk was already entirely decoded.
417 buf_sz
= malloc_good_size(buf_sz
* 2);
420 CFStringRef emsg
= CFStringCreateWithFormat(NULL
, NULL
, CFSTR("Zlib error#%d"), rc
);
421 CFErrorRef err
= fancy_error(kSecTransformErrorDomain
, kSecTransformErrorInvalidInput
, emsg
);
423 return (CFTypeRef
)err
;
427 if (ratio_connected
&& zs
.total_in
&& zs
.total_out
) {
428 float r
= (float)zs
.total_in
/ zs
.total_out
;
429 CFNumberRef ratio
= CFNumberCreate(NULL
, kCFNumberFloatType
, &r
);
430 SecTransformCustomSetAttribute(ref
, kSecCompressionRatio
,
431 kSecTransformMetaAttributeValue
, ratio
);
436 return (CFTypeRef
)SecTransformNoData();
437 } else if (rc
== Z_STREAM_END
) {
440 return (CFTypeRef
)NULL
;
442 CFStringRef emsg
= CFStringCreateWithFormat(NULL
, NULL
, CFSTR("Zlib error#%d"), rc
);
443 CFErrorRef err
= fancy_error(kSecTransformErrorDomain
, kSecTransformErrorInvalidInput
, emsg
);
445 return (CFTypeRef
)err
;
450 CFErrorRef bad_type
= CreateSecTransformErrorRef(kSecTransformErrorInvalidInput
, "Unsupported decode type '%@', supported types are kSecBase64Encoding, kSecBase32Encoding, and kSecGZipEncoding", value
);
452 SecTransformCustomSetAttribute(ref
, kSecTransformAbortAttributeName
, kSecTransformMetaAttributeValue
, bad_type
);
454 return (CFTypeRef
)bad_type
;
462 return Block_copy(instanceBlock
);
466 SecTransformRef
SecDecodeTransformCreate(CFTypeRef DecodeType
, CFErrorRef
* error
) {
468 static dispatch_once_t once
;
469 __block Boolean ok
= TRUE
;
470 CFErrorRef localError
= NULL
;
472 dispatch_block_t aBlock
= ^
474 ok
= SecTransformRegister(DecodeName
, &DecodeTransform
, (CFErrorRef
*)&localError
);
477 dispatch_once(&once
, aBlock
);
479 if (!ok
|| NULL
!= localError
)
488 SecTransformRef tr
= SecTransformCreate(DecodeName
, &localError
);
489 if (!tr
|| NULL
!= localError
)
491 // There might be a leak if tr is returned but localError is
492 // not NULL, but that should not happen
500 SecTransformSetAttribute(tr
, kSecDecodeTypeAttribute
, DecodeType
, &localError
);
501 if (NULL
!= localError
)
515 unsigned char *encode_base64(const unsigned char *bin
, unsigned char *base64
, CFIndex bin_cnt
) {
516 for(; bin_cnt
> 0; bin_cnt
-= 3, base64
+= 4, bin
+= 3) {
521 base64
[0] = Base64Chars
[((bin
[0] >> 2) & 0x3f)];
522 base64
[1] = Base64Chars
[((bin
[0] & 0x03) << 4) |
523 ((bin
[1] >> 4) & 0x0f)];
524 base64
[2] = Base64Chars
[((bin
[1] & 0x0f) << 2) |
525 ((bin
[2] >> 6) & 0x03)];
526 base64
[3] = Base64Chars
[(bin
[2] & 0x3f)];
531 base64
[0] = Base64Chars
[((bin
[0] >> 2) & 0x3f)];
532 base64
[1] = Base64Chars
[((bin
[0] & 0x03) << 4) |
533 ((bin
[1] >> 4) & 0x0f)];
534 base64
[2] = Base64Chars
[((bin
[1] & 0x0f) << 2)];
538 base64
[3] = base64
[2] = '=';
539 base64
[0] = Base64Chars
[((bin
[0] >> 2) & 0x3f)];
540 base64
[1] = Base64Chars
[((bin
[0] & 0x03) << 4)];
544 base64
[0] = base64
[1] = base64
[2] = base64
[3] = '=';
553 /* --------------------------------------------------------------------------
554 function: DecodeTransform
555 description: This function returns a block that implements the
557 -------------------------------------------------------------------------- */
558 static SecTransformInstanceBlock
EncodeTransform(CFStringRef name
,
559 SecTransformRef newTransform
,
560 SecTransformImplementationRef ref
)
563 SecTransformInstanceBlock instanceBlock
=
565 CFErrorRef result
= NULL
;
566 SecTransformCustomSetAttribute(ref
, kSecEncodeTypeAttribute
,
567 kSecTransformMetaAttributeRequired
, kCFBooleanTrue
);
569 __block
int line_length
= 0, target_line_length
= 0;
571 SecTransformSetAttributeAction(ref
, kSecTransformActionAttributeNotification
,
572 kSecEncodeLineLengthAttribute
,
573 ^(SecTransformStringOrAttributeRef attribute
, CFTypeRef value
)
575 SecTransformPushbackAttribute(ref
, attribute
, value
);
579 CFTypeRef (^new_line_length
)(int out_chunk_size
, CFTypeRef value
) = ^(int out_chunk_size
, CFTypeRef value
)
581 if (CFGetTypeID(value
) == CFNumberGetTypeID()) {
582 CFNumberGetValue((CFNumberRef
)value
, kCFNumberIntType
, &target_line_length
);
583 } else if (CFGetTypeID(value
) == CFStringGetTypeID()) {
584 int requested_length
= CFStringGetIntValue(value
);
585 if (requested_length
== 0 && CFStringCompare(CFSTR("0"), value
, kCFCompareAnchored
)) {
586 SecTransformCustomSetAttribute(ref
, kSecTransformAbortAttributeName
, kSecTransformMetaAttributeValue
, CreateSecTransformErrorRef(kSecTransformErrorInvalidInput
, "Could not convert '%@' to a number, please set %@ to a numeric value", kSecEncodeLineLengthAttribute
, value
));
588 target_line_length
= requested_length
;
591 CFStringRef valueType
= CFCopyTypeIDDescription(CFGetTypeID(value
));
592 SecTransformCustomSetAttribute(ref
, kSecTransformAbortAttributeName
, kSecTransformMetaAttributeValue
, CreateSecTransformErrorRef(kSecTransformErrorInvalidType
, "%@ requires a CFNumber, but was set to a %@ (%@)", kSecEncodeLineLengthAttribute
, valueType
, value
));
593 CFRelease(valueType
);
595 target_line_length
-= target_line_length
% out_chunk_size
;
597 if (target_line_length
< 0) {
598 target_line_length
= 0;
604 SecTransformSetAttributeAction(ref
, kSecTransformActionAttributeNotification
,
605 kSecEncodeTypeAttribute
,
606 ^(SecTransformStringOrAttributeRef attribute
, CFTypeRef value
)
608 if (NULL
== value
|| CFGetTypeID(value
) != CFStringGetTypeID())
610 CFErrorRef errorResult
= fancy_error(kSecTransformErrorDomain
,
611 kSecTransformErrorInvalidInput
,
612 CFSTR("Encode type was not a CFStringRef"));
613 return (CFTypeRef
)errorResult
;
616 if (kCFCompareEqualTo
== CFStringCompare(value
, kSecBase64Encoding
, 0))
618 __block
struct { unsigned char a
[3]; } leftover
;
619 static const short int in_chunk_size
= 3, out_chunk_size
= 4;
620 __block CFIndex leftover_cnt
= 0;
622 SecTransformSetAttributeAction(ref
, kSecTransformActionAttributeNotification
,
623 kSecEncodeLineLengthAttribute
,
624 ^(SecTransformStringOrAttributeRef attribute
, CFTypeRef value
)
626 return new_line_length(out_chunk_size
, value
);
629 SecTransformSetDataAction(ref
, kSecTransformActionProcessData
,
633 CFIndex in_len
= d
? CFDataGetLength(d
) : 0;
634 const unsigned char *in
= d
? CFDataGetBytePtr(d
) : NULL
;
635 CFIndex n_chunks
= in_len
/ in_chunk_size
+ 3;
636 CFIndex buf_len
= n_chunks
* out_chunk_size
;
639 if (target_line_length
)
641 line_len
=(n_chunks
* out_chunk_size
) / target_line_length
;
646 || (n_chunks
> LONG_LONG_MAX
/out_chunk_size
)
647 || (buf_len
> LONG_LONG_MAX
-line_len
)
649 || (n_chunks
> LONG_MAX
/out_chunk_size
)
650 || (buf_len
> LONG_MAX
-line_len
)
652 || (buf_len
+line_len
<in_len
))
654 CFErrorRef errorResult
= fancy_error(kSecTransformErrorDomain
,
655 kSecTransformErrorInvalidLength
,
656 CFSTR("Invalid length"));
657 return (CFTypeRef
)errorResult
;
660 unsigned char *out
= malloc(buf_len
);
661 unsigned char *out_end
= out
+ buf_len
, *out_base
= out
;
664 return (CFTypeRef
)GetNoMemoryError();
666 if ((leftover_cnt
) && (in_chunk_size
>= leftover_cnt
))
668 CFIndex copy_len
= in_chunk_size
- leftover_cnt
;
669 copy_len
= (copy_len
> in_len
) ? in_len
: copy_len
;
670 memcpy(leftover
.a
+ leftover_cnt
, in
, copy_len
);
672 if (copy_len
+ leftover_cnt
== in_chunk_size
|| d
== NULL
)
674 out
= encode_base64(leftover
.a
, out
, copy_len
+ leftover_cnt
);
684 leftover_cnt
+= copy_len
;
685 return (CFTypeRef
)SecTransformNoData();
689 CFIndex chunked_in_len
;
690 while (in_len
>= in_chunk_size
)
692 chunked_in_len
= in_len
- (in_len
% in_chunk_size
);
693 if (target_line_length
)
695 if (target_line_length
<= line_length
+ out_chunk_size
)
700 int max_process
= (((target_line_length
- line_length
) / out_chunk_size
) * in_chunk_size
);
701 chunked_in_len
= (chunked_in_len
< max_process
) ? chunked_in_len
: max_process
;
703 unsigned char *old_out
= out
;
704 out
= encode_base64(in
, out
, chunked_in_len
);
705 line_length
+= out
- old_out
;
706 in
+= chunked_in_len
;
707 in_len
-= chunked_in_len
;
709 leftover_cnt
= in_len
;
712 memcpy(leftover
.a
, in
, leftover_cnt
);
717 // we should never hit this, but if we do there is no recovery: we smashed past a buffer into the heap
721 CFTypeRef ret
= CFDataCreateWithBytesNoCopy(NULL
, out_base
, out
- out_base
, kCFAllocatorMalloc
);
724 SecTransformCustomSetAttribute(ref
,kSecTransformOutputAttributeName
, kSecTransformMetaAttributeValue
, ret
);
731 else if (kCFCompareEqualTo
== CFStringCompare(value
, kSecBase32Encoding
, 0) || kCFCompareEqualTo
== CFStringCompare(value
, kSecBase32FDEEncoding
, 0))
733 __block
struct { uint64_t a
[2]; } accumulator
= { .a
= {0, 0} };
734 __block
short int bits_accumulated
= 0;
735 static const short int in_chunk_size
= 5;
736 static const short int out_chunk_size
= 8;
737 char *base32alphabet
= NULL
;
739 if (kCFCompareEqualTo
== CFStringCompare(value
, kSecBase32Encoding
, 0)) {
740 base32alphabet
= "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";
741 } else if (kCFCompareEqualTo
== CFStringCompare(value
, kSecBase32FDEEncoding
, 0)) {
742 base32alphabet
= "ABCDEFGH8JKLMNOPQR9TUVWXYZ234567";
745 if (NULL
== base32alphabet
) {
746 // There is only one supported type, so we don't want to mention it in an error message
747 CFErrorRef bad_type
= CreateSecTransformErrorRef(kSecTransformErrorInvalidInput
, "Unknown base32 type '%@'", value
);
749 SecTransformCustomSetAttribute(ref
, kSecTransformAbortAttributeName
, kSecTransformMetaAttributeValue
, bad_type
);
751 return (CFTypeRef
)bad_type
;
754 SecTransformSetAttributeAction(ref
, kSecTransformActionAttributeNotification
,
755 kSecEncodeLineLengthAttribute
,
756 ^(SecTransformStringOrAttributeRef attribute
, CFTypeRef value
)
758 return new_line_length(out_chunk_size
, value
);
761 SecTransformSetDataAction(ref
, kSecTransformActionProcessData
,
765 CFIndex in_len
= d
? CFDataGetLength(d
) : 0;
766 const unsigned char *in
= d
? CFDataGetBytePtr(d
) : NULL
;
767 const unsigned char *in_end
= in
+ in_len
;
768 CFIndex n_chunks
= in_len
/ in_chunk_size
+ 3;
769 CFIndex buf_len
= n_chunks
* out_chunk_size
;
770 if (target_line_length
)
772 buf_len
+= (n_chunks
* out_chunk_size
) / target_line_length
;
774 __block
unsigned char *out
= malloc(buf_len
);
775 unsigned char *out_end
= out
+ buf_len
, *out_base
= out
;
777 return (CFTypeRef
)GetNoMemoryError();
780 void (^chunk
)(void) = ^{
781 // Grab the 5 bit (log(32)==5) values from the 80 bit accumulator. Most signifigant bits first
783 // (this could be done without the loop, which would save few cycles at the end of a stream)
784 short int shift
= 80 - bits_accumulated
;
785 for(; shift
> 0; shift
-= 8) {
786 accumulator
.a
[1] = accumulator
.a
[1] << 8 | accumulator
.a
[0] >> (64 - 8);
787 accumulator
.a
[0] = accumulator
.a
[0] << 8;
790 for(; bits_accumulated
> 0; bits_accumulated
-= 5) {
791 *out
++ = base32alphabet
[(accumulator
.a
[1] >> 11) & 0x1f];
792 accumulator
.a
[1] = 0xffff & (accumulator
.a
[1] << 5 | (accumulator
.a
[0] >> (64 - 5)));
793 accumulator
.a
[0] = accumulator
.a
[0] << 5;
794 if (++line_length
>= target_line_length
&& target_line_length
) {
799 bits_accumulated
= 0;
802 for (; in
< in_end
; in
++)
804 accumulator
.a
[1] = accumulator
.a
[1] << 8 | accumulator
.a
[0] >> (64 - 8);
805 accumulator
.a
[0] = accumulator
.a
[0] << 8 | *in
;
806 bits_accumulated
+= 8;
807 if (bits_accumulated
== 8*in_chunk_size
)
813 if (!d
&& bits_accumulated
) {
814 short int padding
= 0;
815 switch(bits_accumulated
) {
831 for(i
= 0; i
< padding
; i
++) {
837 // we should never hit this, but if we do there is no recovery: we smashed past a buffer into the heap
841 CFTypeRef ret
= NULL
;
842 if (out
- out_base
) {
843 ret
= CFDataCreateWithBytesNoCopy(NULL
, out_base
, out
- out_base
, kCFAllocatorMalloc
);
845 ret
= SecTransformNoData();
848 if (ret
!= SecTransformNoData()) {
849 SecTransformCustomSetAttribute(ref
, kSecTransformOutputAttributeName
,
850 kSecTransformMetaAttributeValue
, ret
);
858 else if (kCFCompareEqualTo
== CFStringCompare(value
, kSecZLibEncoding
, 0))
861 bzero(&zs
, sizeof(zs
));
862 __block
int clevel
= Z_DEFAULT_COMPRESSION
;
863 __block Boolean started
= FALSE
;
865 CFBooleanRef hasRatio
= (CFBooleanRef
)SecTranformCustomGetAttribute(ref
, kSecCompressionRatio
,
866 kSecTransformMetaAttributeHasOutboundConnections
);
868 Boolean ratio_connected
= (kCFBooleanTrue
== hasRatio
);
870 SecTransformSetDataAction(ref
, kSecTransformActionProcessData
,
877 deflateInit(&zs
, clevel
);
881 zs
.next_in
= (UInt8
*)CFDataGetBytePtr(d
); // We know that xLib will not 'Futz' with the data
882 zs
.avail_in
= (uInt
)CFDataGetLength(d
);
888 int rc
= Z_BUF_ERROR
;
890 CFIndex buf_sz
= malloc_good_size(zs
.avail_in
? zs
.avail_in
: 1024 * 4);
892 while ((d
&& zs
.avail_in
) || (d
== NULL
&& rc
!= Z_STREAM_END
)) {
893 unsigned char *buf
= malloc(buf_sz
);
895 return (CFTypeRef
)GetNoMemoryError();
899 zs
.avail_out
= (uInt
)buf_sz
;
901 rc
= deflate(&zs
, d
? Z_NO_FLUSH
: Z_FINISH
);
903 CFIndex buf_used
= buf_sz
- zs
.avail_out
;
904 #ifdef DEBUG_ZLIB_MEMORY_USE
905 // It might be useful to look at these and tweak things like when we should use DataCreate vs. DataCreateWithBytesNoCopy
906 CFfprintf(stderr
, "<<zavail_in %d buf_sz %d; d %p; ", zs
.avail_in
, buf_sz
, d
);
907 CFfprintf(stderr
, "rc=%d %s", rc
, (rc
== Z_OK
) ? "Z_OK" : (rc
== Z_STREAM_END
) ? "Z_FINISH" : (rc
== Z_BUF_ERROR
) ? "Z_BUF_ERROR" : "?");
908 CFfprintf(stderr
, " (output used %d, input left %d)\n", buf_used
, zs
.avail_in
);
910 if (rc
== Z_OK
|| rc
== Z_STREAM_END
) {
912 if ((4 * buf_used
) / buf_sz
<= 1) {
913 // we would waste 25%+ of the buffer, make a smaller copy and release the original
914 d
= CFDataCreate(NULL
, buf
, buf_used
);
917 d
= CFDataCreateWithBytesNoCopy(NULL
, buf
, buf_used
, kCFAllocatorMalloc
);
919 SecTransformCustomSetAttribute(ref
, kSecTransformOutputAttributeName
,
920 kSecTransformMetaAttributeValue
, d
);
922 } else if (rc
== Z_BUF_ERROR
) {
924 buf_sz
= malloc_good_size(buf_sz
* 2);
927 CFStringRef emsg
= CFStringCreateWithFormat(NULL
, NULL
, CFSTR("Zlib error#%d"), rc
);
928 CFErrorRef err
= fancy_error(kSecTransformErrorDomain
, kSecTransformErrorInvalidInput
, emsg
);
930 return (CFTypeRef
)err
;
933 if (ratio_connected
&& zs
.total_in
&& zs
.total_out
) {
934 float r
= (float)zs
.total_out
/ zs
.total_in
;
935 CFNumberRef ratio
= CFNumberCreate(NULL
, kCFNumberFloatType
, &r
);
936 SecTransformCustomSetAttribute(ref
, kSecCompressionRatio
,
937 kSecTransformMetaAttributeValue
, ratio
);
941 return (CFTypeRef
)SecTransformNoData();
945 return (CFTypeRef
)NULL
;
949 SecTransformSetAttributeAction(ref
, kSecTransformActionAttributeNotification
,
950 kSecEncodeLineLengthAttribute
, ^(SecTransformStringOrAttributeRef attribute
, CFTypeRef value
)
957 CFErrorRef bad_type
= CreateSecTransformErrorRef(kSecTransformErrorInvalidInput
, "Unsupported encode type '%@', supported types are kSecBase64Encoding, kSecBase32Encoding, and kSecGZipEncoding", value
);
959 SecTransformCustomSetAttribute(ref
, kSecTransformAbortAttributeName
, kSecTransformMetaAttributeValue
, bad_type
);
961 return (CFTypeRef
)bad_type
;
964 return (CFTypeRef
)value
;
970 return Block_copy(instanceBlock
);
973 SecTransformRef
SecEncodeTransformCreate(CFTypeRef EncodeType
, CFErrorRef
* error
)
976 static dispatch_once_t once
;
977 __block Boolean ok
= TRUE
;
978 CFErrorRef localError
= NULL
;
980 dispatch_block_t aBlock
= ^
982 ok
= SecTransformRegister(EncodeName
, &EncodeTransform
, (CFErrorRef
*)&localError
);
985 dispatch_once(&once
, aBlock
);
987 if (!ok
|| NULL
!= localError
)
997 SecTransformRef tr
= SecTransformCreate(EncodeName
, &localError
);
998 if (!tr
|| NULL
!= localError
)
1000 // There might be a leak if tr is returned but localError is
1001 // not NULL, but that should not happen
1004 *error
= localError
;
1009 SecTransformSetAttribute(tr
, kSecEncodeTypeAttribute
, EncodeType
, &localError
);
1010 if (NULL
!= localError
)
1016 *error
= localError
;