2 * Copyright (c) 2015 Apple Inc. All rights reserved.
4 * @APPLE_APACHE_LICENSE_HEADER_START@
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
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
18 * @APPLE_APACHE_LICENSE_HEADER_END@
21 #ifndef __FIREHOSE_SERVER_PRIVATE__
22 #define __FIREHOSE_SERVER_PRIVATE__
25 #include <dispatch/dispatch.h>
26 #include "firehose_buffer_private.h"
31 * SPI intended for logd only
34 #pragma mark - Firehose Client
37 * @typedef firehose_client_t
40 * Represents a firehose client.
43 * Firehose client objects are os_object_t's, and it's legal to retain/release
44 * them with os_retain / os_release.
46 OS_OBJECT_DECL_CLASS(firehose_client
);
49 * @typedef firehose_event_t
51 * @const FIREHOSE_EVENT_NONE
52 * Never passed to callbacks, meaningful for
53 * firehose_client_metadata_stream_peek.
55 * @const FIREHOSE_EVENT_CLIENT_CONNECTED
56 * A new client has connected
58 * This is the first event delivered, and no event is delivered until
59 * the handler of that event returns
61 * The `page` argument really is really a firehose_client_connected_info_t.
63 * @const FIREHOSE_EVENT_CLIENT_DIED
64 * The specified client is gone and will not flush new buffers
66 * This is the last event delivered, it is never called before all other
67 * event handlers have returned. This event is generated even when a
68 * FIREHOSE_EVENT_CLIENT_CORRUPTED event has been generated.
70 * @const FIREHOSE_EVENT_IO_BUFFER_RECEIVED
71 * A new buffer needs to be pushed, `page` is set to that buffer.
73 * This event can be sent concurrently wrt FIREHOSE_EVENT_MEM_BUFFER_RECEIVED
76 * @const FIREHOSE_EVENT_MEM_BUFFER_RECEIVED
77 * A new buffer needs to be pushed, `page` is set to that buffer.
79 * This event can be sent concurrently wrt FIREHOSE_EVENT_IO_BUFFER_RECEIVED
82 * @const FIREHOSE_EVENT_CLIENT_CORRUPTED
83 * This event is received when a client is found being corrupted.
84 * `page` is set to the buffer header page. When this event is received,
85 * logs have likely been lost for this client.
87 * This buffer isn't really a proper firehose buffer page, but its content may
88 * be useful for debugging purposes.
90 * @const FIREHOSE_EVENT_CLIENT_FINALIZE
91 * This event is received when a firehose client structure is about to be
92 * destroyed. Only firehose_client_get_context() can ever be called with
93 * the passed firehose client. The `page` argument is NULL for this event.
95 * The event is sent from the context that is dropping the last refcount
98 OS_ENUM(firehose_event
, unsigned long,
99 FIREHOSE_EVENT_NONE
= 0,
100 FIREHOSE_EVENT_CLIENT_CONNECTED
,
101 FIREHOSE_EVENT_CLIENT_DIED
,
102 FIREHOSE_EVENT_IO_BUFFER_RECEIVED
,
103 FIREHOSE_EVENT_MEM_BUFFER_RECEIVED
,
104 FIREHOSE_EVENT_CLIENT_CORRUPTED
,
105 FIREHOSE_EVENT_CLIENT_FINALIZE
,
108 #define FIREHOSE_CLIENT_CONNECTED_INFO_VERSION 1
111 * @typedef firehose_client_connected_info
114 * Type of the data passed to CLIENT_CONNECTED events.
116 typedef struct firehose_client_connected_info_s
{
117 unsigned long fcci_version
;
119 const void *fcci_data
;
121 } *firehose_client_connected_info_t
;
124 * @function firehose_client_get_unique_pid
127 * Returns the unique pid of the specified firehose client
130 * The specified client.
133 * The pid for this client.
136 * The unique pid of the specified client.
138 OS_NOTHROW OS_NONNULL1
140 firehose_client_get_unique_pid(firehose_client_t client
, pid_t
*pid
);
143 * @function firehose_client_get_metadata_buffer
146 * Returns the metadata buffer for the specified firehose client
149 * The specified client.
152 * The size of the metadata buffer.
155 * The pointer to the buffer.
157 OS_NOTHROW OS_NONNULL_ALL
159 firehose_client_get_metadata_buffer(firehose_client_t client
, size_t *size
);
162 * @function firehose_client_get_context
165 * Gets the context for the specified client.
168 * The specified client.
171 * The context set for the client with firehose_client_set_context
173 OS_NOTHROW OS_NONNULL1
175 firehose_client_get_context(firehose_client_t client
);
178 * @function firehose_client_set_context
181 * Sets the context for the specified client.
184 * Setting the context exchanges the context pointer, but the client must
185 * ensure proper synchronization with possible getters.
187 * The lifetime of the context is under the control of the API user,
188 * it is suggested to destroy the context when the CLIENT_DIED event is
192 * The specified client.
195 * The new context to set.
198 * The previous context set for the client.
200 OS_NOTHROW OS_NONNULL1
202 firehose_client_set_context(firehose_client_t client
, void *ctxt
);
205 * @function firehose_client_metadata_stream_peek
208 * Peek at the metadata stream in flight buffers for a given client
211 * This function should never be called from the context of a snapshot
215 * The specified client
218 * If this function is called synchronously from the handler passed to
219 * firehose_server_init, then `context` should be the event being processed.
220 * Else pass FIREHOSE_EVENT_NONE.
222 * @param peek_should_start
223 * Handler that is called prior to peeking to solve the race of metadata
224 * buffers not beeing processed yet at first lookup time, and being processed
225 * before the peek enumeration starts.
227 * If the handler returns false, then the enumeration doesn't start.
228 * If the race cannot happen, pass NULL.
231 * Handler that will receive all the live metadata buffers for this process.
232 * If the handler returns false, the enumeration is interrupted.
234 OS_NOTHROW OS_NONNULL1 OS_NONNULL4
236 firehose_client_metadata_stream_peek(firehose_client_t client
,
237 firehose_event_t context
, OS_NOESCAPE
bool (^peek_should_start
)(void),
238 OS_NOESCAPE
bool (^peek
)(firehose_buffer_chunk_t fbc
));
240 #pragma mark - Firehose Server
243 * @typedef firehose_handler_t
246 * Type of the handler block for firehose_server_init()
248 typedef void (^firehose_handler_t
)(firehose_client_t client
,
249 firehose_event_t event
, firehose_buffer_chunk_t page
);
252 * @function firehose_server_init
255 * Initializes the firehose MiG server
258 * Initializes the firehose MiG server by boostrap registering the services
259 * and creating dispatch_sources for the same.
263 firehose_server_init(mach_port_t firehose_comm_port
,
264 firehose_handler_t handler
);
267 * @function firehose_server_assert_spi_version
270 * Checks that libdispatch and firehose components all match
273 * Will assert that all the components have the same SPI versions
277 firehose_server_assert_spi_version(uint32_t spi_version
);
280 * @function firehose_server_resume
283 * Allows firehose events to flow
286 * Must be called after firehose_server_init()
290 firehose_server_resume(void);
292 #pragma mark - Firehose Snapshot
295 * @typedef firehose_snapshot_event
298 OS_ENUM(firehose_snapshot_event
, unsigned long,
299 FIREHOSE_SNAPSHOT_EVENT_IO_START
= 1,
300 FIREHOSE_SNAPSHOT_EVENT_MEM_START
,
301 FIREHOSE_SNAPSHOT_EVENT_IO_BUFFER
,
302 FIREHOSE_SNAPSHOT_EVENT_MEM_BUFFER
,
303 FIREHOSE_SNAPSHOT_EVENT_COMPLETE
,
307 * @typedef firehose_snapshot_handler_t
310 * Type of the handler block for firehose_snapshot
312 typedef void (^firehose_snapshot_handler_t
)(firehose_client_t client
,
313 firehose_snapshot_event_t event
, firehose_buffer_chunk_t page
);
316 * @function firehose_snapshot
319 * Gather a snapshot for the current firehose state.
322 * This function can be called several times, in which case snapshots are taken
323 * one after the other. If coalescing is desired, it has to be built around this
328 firehose_snapshot(firehose_snapshot_handler_t handler
);
330 #endif // OS_FIREHOSE_SPI
332 #endif // __FIREHOSE_SERVER_PRIVATE__