2 * Copyright (c) 2004-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, 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 <TargetConditionals.h>
26 #if TARGET_OS_SIMULATOR
30 #include <sys/types.h>
32 #include <sys/socket.h>
43 #define forever for(;;)
45 #define MY_ID "klog_in"
46 #define BUFF_SIZE 4096
48 static char inbuf
[BUFF_SIZE
];
51 static dispatch_source_t in_src
;
52 static dispatch_queue_t in_queue
;
55 klog_in_acceptdata(int fd
)
62 len
= read(fd
, inbuf
+ bx
, BUFF_SIZE
- bx
);
68 for (i
= 0; i
< len
; i
++, q
++)
73 m
= asl_input_parse(p
, q
- p
, NULL
, SOURCE_KERN
);
74 process_message(m
, SOURCE_KERN
);
81 memmove(inbuf
, p
, BUFF_SIZE
- bx
- 1);
89 static dispatch_once_t once
;
91 dispatch_once(&once
, ^{
92 in_queue
= dispatch_queue_create(MY_ID
, NULL
);
95 asldebug("%s: init\n", MY_ID
);
96 if (kfd
>= 0) return 0;
98 kfd
= open(_PATH_KLOG
, O_RDONLY
, 0);
101 asldebug("%s: couldn't open %s: %s\n", MY_ID
, _PATH_KLOG
, strerror(errno
));
105 if (fcntl(kfd
, F_SETFL
, O_NONBLOCK
) < 0)
109 asldebug("%s: couldn't set O_NONBLOCK for fd %d (%s): %s\n", MY_ID
, kfd
, _PATH_KLOG
, strerror(errno
));
113 in_src
= dispatch_source_create(DISPATCH_SOURCE_TYPE_READ
, (uintptr_t)kfd
, 0, in_queue
);
114 dispatch_source_set_event_handler(in_src
, ^{ klog_in_acceptdata(kfd
); });
116 dispatch_resume(in_src
);
123 if (kfd
< 0) return 1;
125 dispatch_source_cancel(in_src
);
126 dispatch_release(in_src
);
141 #endif /* !TARGET_OS_SIMULATOR */