2 * Copyright (c) 2006-2011 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 OR NON-INFRINGEMENT. Please see the
18 * License for the specific language governing rights and limitations
21 * @APPLE_LICENSE_HEADER_END@
25 #include <sys/types.h>
26 #include <sys/socket.h>
34 #include <dispatch/dispatch.h>
35 #include <os/assumes.h>
37 #include <asl_private.h>
39 static uint8_t *b64charset
= (uint8_t *)"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
42 asl_is_utf8_char(const unsigned char *p
, int *state
, int *ctype
)
53 if ((*p
>= 0xc2) && (*p
<= 0xdf)) *ctype
= 1;
54 else if (*p
== 0xe0) *ctype
= 2;
55 else if ((*p
>= 0xe1) && (*p
<= 0xef)) *ctype
= 3;
56 else if (*p
== 0xf0) *ctype
= 4;
57 else if ((*p
>= 0xf1) && (*p
<= 0xf3)) *ctype
= 5;
58 else if (*p
== 0xf4) *ctype
= 6;
71 if ((*p
>= 0x80) && (*p
<= 0xbf)) *state
= 0;
78 if ((*p
>= 0xa0) && (*p
<= 0xbf)) *state
= 2;
85 if ((*p
>= 0x80) && (*p
<= 0xbf)) *state
= 2;
92 if ((*p
>= 0x90) && (*p
<= 0xbf)) *state
= 2;
99 if ((*p
>= 0x80) && (*p
<= 0xbf)) *state
= 2;
106 if ((*p
>= 0x80) && (*p
<= 0x8f)) *state
= 2;
119 if ((*ctype
>= 2) && (*ctype
<= 3))
121 if ((*p
>= 0x80) && (*p
<= 0xbf)) *state
= 0;
124 else if ((*ctype
>= 4) && (*ctype
<= 6))
126 if ((*p
>= 0x80) && (*p
<= 0xbf)) *state
= 3;
139 if ((*ctype
>= 4) && (*ctype
<= 6))
141 if ((*p
>= 0x80) && (*p
<= 0xbf)) *state
= 0;
158 __private_extern__
int
159 asl_is_utf8(const char *str
)
161 const unsigned char *p
;
166 if (str
== NULL
) return flag
;
168 for (p
= (const unsigned char *)str
; (*p
!= '\0') && (flag
== 1); p
++)
170 flag
= asl_is_utf8_char(p
, &state
, &ctype
);
176 __private_extern__
uint8_t *
177 asl_b64_encode(const uint8_t *buf
, size_t len
)
181 size_t i0
, i1
, i2
, j
, outlen
;
183 if (buf
== NULL
) return NULL
;
184 if (len
== 0) return NULL
;
186 outlen
= ((len
+ 2) / 3) * 4;
187 out
= (uint8_t *)malloc(outlen
+ 1);
204 out
[j
++] = b64charset
[b
];
206 b
= ((buf
[i0
] & 0x03) << 4) | (buf
[i1
] >> 4);
207 out
[j
++] = b64charset
[b
];
209 b
= ((buf
[i1
] & 0x0f) << 2) | ((buf
[i2
] & 0xc0) >> 6);
210 out
[j
++] = b64charset
[b
];
213 out
[j
++] = b64charset
[b
];
223 out
[j
++] = b64charset
[b
];
225 b
= (buf
[i0
] & 0x03) << 4;
227 if (i1
< len
) b
|= (buf
[i1
] >> 4);
228 out
[j
++] = b64charset
[b
];
237 b
= (buf
[i1
] & 0x0f) << 2;
238 out
[j
++] = b64charset
[b
];
245 static xpc_connection_t
246 _create_aslmanager_connection(void)
248 xpc_connection_t connection
;
250 connection
= xpc_connection_create_mach_service(ASLMANAGER_SERVICE_NAME
, NULL
, XPC_CONNECTION_MACH_SERVICE_PRIVILEGED
);
251 xpc_connection_set_event_handler(connection
, ^(xpc_object_t xobj
) { if (xobj
!= NULL
) {}; });
252 xpc_connection_resume(connection
);
258 asl_trigger_aslmanager(void)
260 xpc_connection_t connection
= _create_aslmanager_connection();
261 if (connection
== NULL
) return -1;
263 xpc_object_t request
= xpc_dictionary_create(NULL
, NULL
, 0);
264 if (request
== NULL
) return -1;
266 xpc_object_t reply
= xpc_connection_send_message_with_reply_sync(connection
, request
);
268 if (reply
!= NULL
) xpc_release(reply
);
269 xpc_release(request
);
270 xpc_release(connection
);