2 * Dlt- Diagnostic Log and Trace daemon
\r
5 * Copyright (C) 2011, BMW AG - Alexander Wenzel <alexander.wenzel@bmw.de>
7 * This program is free software; you can redistribute it and/or modify it under the terms of the
8 * GNU Lesser General Public License, version 2.1, as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
10 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
11 * Public License, version 2.1, for more details.
13 * You should have received a copy of the GNU Lesser General Public License, version 2.1, along
14 * with this program; if not, see <http://www.gnu.org/licenses/lgpl-2.1.html>.
16 * Note that the copyright holders assume that the GNU Lesser General Public License, version 2.1, may
17 * also be applicable to programs even in cases in which the program is not a library in the technical sense.
19 * Linking DLT statically or dynamically with other modules is making a combined work based on DLT. You may
20 * license such other modules under the GNU Lesser General Public License, version 2.1. If you do not want to
21 * license your linked modules under the GNU Lesser General Public License, version 2.1, you
22 * may use the program under the following exception.
24 * As a special exception, the copyright holders of DLT give you permission to combine DLT
25 * with software programs or libraries that are released under any license unless such a combination is not
26 * permitted by the license of such a software program or library. You may copy and distribute such a
27 * system following the terms of the GNU Lesser General Public License, version 2.1, including this
28 * special exception, for DLT and the licenses of the other code concerned.
30 * Note that people who make modified versions of DLT are not obligated to grant this special exception
31 * for their modified versions; it is their choice whether to do so. The GNU Lesser General Public License,
32 * version 2.1, gives permission to release a modified version without this exception; this exception
33 * also makes it possible to release a modified version which carries forward this exception.
39 /*******************************************************************************
\r
41 ** SRC-MODULE: dlt_daemon_common.h **
\r
43 ** TARGET : linux **
\r
47 ** AUTHOR : Alexander Wenzel Alexander.AW.Wenzel@bmw.de **
\r
54 ** PLATFORM DEPENDANT [yes/no]: yes **
\r
56 ** TO BE CHANGED BY USER [yes/no]: no **
\r
58 *******************************************************************************/
\r
60 /*******************************************************************************
\r
61 ** Author Identity **
\r
62 ********************************************************************************
\r
64 ** Initials Name Company **
\r
65 ** -------- ------------------------- ---------------------------------- **
\r
66 ** aw Alexander Wenzel BMW **
\r
67 ** mk Markus Klein Fraunhofer ESK **
\r
68 *******************************************************************************/
\r
70 /*******************************************************************************
\r
71 ** Revision Control History **
\r
72 *******************************************************************************/
\r
75 * $LastChangedRevision: 1670 $
\r
76 * $LastChangedDate: 2011-04-08 15:12:06 +0200 (Fr, 08. Apr 2011) $
\r
78 Initials Date Comment
\r
79 aw 15.02.2010 initial
\r
82 #ifndef DLT_DAEMON_COMMON_H
\r
83 #define DLT_DAEMON_COMMON_H
\r
86 \defgroup daemonapi DLT Daemon API
\r
87 \addtogroup daemonapi
\r
91 #include <semaphore.h>
\r
92 #include "dlt_common.h"
\r
93 #include "dlt_user.h"
\r
99 #define DLT_DAEMON_RINGBUFFER_SIZE 100000 /**< Ring buffer size for storing log messages while no client is connected */
\r
101 #define DLT_DAEMON_STORE_TO_BUFFER -2 /**< Constant value to identify the command "store to buffer" */
\r
103 /* Use a semaphore or mutex from your OS to prevent concurrent access to the DLT buffer. */
\r
105 #define DLT_DAEMON_SEM_LOCK() { sem_wait(&dlt_daemon_mutex); }
\r
106 #define DLT_DAEMON_SEM_FREE() { sem_post(&dlt_daemon_mutex); }
\r
107 extern sem_t dlt_daemon_mutex;
\r
111 * The parameters of a daemon application.
\r
115 char apid[DLT_ID_SIZE]; /**< application id */
\r
116 pid_t pid; /**< process id of user application */
\r
117 int user_handle; /**< connection handle for connection to user application */
\r
118 char *application_description; /**< context description */
\r
119 int num_contexts; /**< number of contexts for this application */
\r
120 } DltDaemonApplication;
\r
123 * The parameters of a daemon context.
\r
127 char apid[DLT_ID_SIZE]; /**< application id */
\r
128 char ctid[DLT_ID_SIZE]; /**< context id */
\r
129 int8_t log_level; /**< the current log level of the context */
\r
130 int8_t trace_status; /**< the current trace status of the context */
\r
131 int log_level_pos; /**< offset of context in context field on user application */
\r
132 int user_handle; /**< connection handle for connection to user application */
\r
133 char *context_description; /**< context description */
\r
134 } DltDaemonContext;
\r
137 * The parameters of a daemon.
\r
141 int num_contexts; /**< Total number of all contexts in all applications */
\r
142 DltDaemonContext *contexts; /**< Pointer to contexts */
\r
143 int num_applications; /**< Number of available application */
\r
144 DltDaemonApplication *applications; /**< Pointer to applications */
\r
145 int8_t default_log_level; /**< Default log level (of daemon) */
\r
146 int8_t default_trace_status; /**< Default trace status (of daemon) */
\r
147 int message_buffer_overflow; /**< Set to one, if buffer overflow has occured, zero otherwise */
\r
148 int runtime_context_cfg_loaded; /**< Set to one, if runtime context configuration has been loaded, zero otherwise */
\r
149 char ecuid[DLT_ID_SIZE]; /**< ECU ID of daemon */
\r
150 int sendserialheader; /**< 1: send serial header; 0 don't send serial header */
\r
151 int timingpackets; /**< 1: send continous timing packets; 0 don't send continous timing packets */
\r
152 char runtime_application_cfg[256]; /**< Path and filename of persistent application configuration */
\r
153 char runtime_context_cfg[256]; /**< Path and filename of persistent context configuration */
\r
154 char runtime_configuration[256]; /**< Path and filename of persistent configuration */
\r
155 DltUserLogMode mode; /**< Mode used for tracing: off, external, internal, both */
\r
156 char state; /**< state for tracing: 0 = no client connected, 1 = client connected */
\r
160 * Initialise the dlt daemon structure
\r
161 * This function must be called before using further dlt daemon structure
\r
162 * @param daemon pointer to dlt daemon structure
\r
163 * @param runtime_directory Directory of persistent configuration
\r
164 * @param verbose if set to true verbose information is printed out.
\r
165 * @return negative value if there was an error
\r
167 int dlt_daemon_init(DltDaemon *daemon,const char *runtime_directory,int verbose);
\r
169 * De-Initialise the dlt daemon structure
\r
170 * @param daemon pointer to dlt daemon structure
\r
171 * @param verbose if set to true verbose information is printed out.
\r
172 * @return negative value if there was an error
\r
174 int dlt_daemon_free(DltDaemon *daemon,int verbose);
\r
177 * Add (new) application to internal application management
\r
178 * @param daemon pointer to dlt daemon structure
\r
179 * @param apid pointer to application id
\r
180 * @param pid process id of user application
\r
181 * @param description description of application
\r
182 * @param verbose if set to true verbose information is printed out.
\r
183 * @return Pointer to added context, null pointer on error
\r
185 DltDaemonApplication* dlt_daemon_application_add(DltDaemon *daemon,char *apid,pid_t pid,char *description, int verbose);
\r
187 * Delete application from internal application management
\r
188 * @param daemon pointer to dlt daemon structure
\r
189 * @param application pointer to application to be deleted
\r
190 * @param verbose if set to true verbose information is printed out.
\r
191 * @return negative value if there was an error
\r
193 int dlt_daemon_application_del(DltDaemon *daemon, DltDaemonApplication *application, int verbose);
\r
195 * Find application with specific application id
\r
196 * @param daemon pointer to dlt daemon structure
\r
197 * @param apid pointer to application id
\r
198 * @param verbose if set to true verbose information is printed out.
\r
199 * @return Pointer to application, null pointer on error or not found
\r
201 DltDaemonApplication* dlt_daemon_application_find(DltDaemon *daemon,char *apid,int verbose);
\r
203 * Load applications from file to internal context management
\r
204 * @param daemon pointer to dlt daemon structure
\r
205 * @param filename name of file to be used for loading
\r
206 * @param verbose if set to true verbose information is printed out.
\r
207 * @return negative value if there was an error
\r
209 int dlt_daemon_applications_load(DltDaemon *daemon,const char *filename, int verbose);
\r
211 * Save applications from internal context management to file
\r
212 * @param daemon pointer to dlt daemon structure
\r
213 * @param filename name of file to be used for saving
\r
214 * @param verbose if set to true verbose information is printed out.
\r
215 * @return negative value if there was an error
\r
217 int dlt_daemon_applications_save(DltDaemon *daemon,const char *filename, int verbose);
\r
219 * Clear all applications in internal application management
\r
220 * @param daemon pointer to dlt daemon structure
\r
221 * @param verbose if set to true verbose information is printed out.
\r
222 * @return negative value if there was an error
\r
224 int dlt_daemon_applications_clear(DltDaemon *daemon,int verbose);
\r
227 * Add (new) context to internal context management
\r
228 * @param daemon pointer to dlt daemon structure
\r
229 * @param apid pointer to application id
\r
230 * @param ctid pointer to context id
\r
231 * @param log_level log level of context
\r
232 * @param trace_status trace status of context
\r
233 * @param log_level_pos offset of context in context field on user application
\r
234 * @param user_handle connection handle for connection to user application
\r
235 * @param description description of context
\r
236 * @param verbose if set to true verbose information is printed out.
\r
237 * @return Pointer to added context, null pointer on error
\r
239 DltDaemonContext* dlt_daemon_context_add(DltDaemon *daemon,char *apid,char *ctid,int8_t log_level,int8_t trace_status,int log_level_pos, int user_handle,char *description,int verbose);
\r
241 * Delete context from internal context management
\r
242 * @param daemon pointer to dlt daemon structure
\r
243 * @param context pointer to context to be deleted
\r
244 * @param verbose if set to true verbose information is printed out.
\r
245 * @return negative value if there was an error
\r
247 int dlt_daemon_context_del(DltDaemon *daemon, DltDaemonContext* context, int verbose);
\r
249 * Find context with specific application id and context id
\r
250 * @param daemon pointer to dlt daemon structure
\r
251 * @param apid pointer to application id
\r
252 * @param ctid pointer to context id
\r
253 * @param verbose if set to true verbose information is printed out.
\r
254 * @return Pointer to context, null pointer on error or not found
\r
256 DltDaemonContext* dlt_daemon_context_find(DltDaemon *daemon,char *apid,char *ctid,int verbose);
\r
258 * Clear all contexts in internal context management
\r
259 * @param daemon pointer to dlt daemon structure
\r
260 * @param verbose if set to true verbose information is printed out.
\r
261 * @return negative value if there was an error
\r
263 int dlt_daemon_contexts_clear(DltDaemon *daemon,int verbose);
\r
265 * Load contexts from file to internal context management
\r
266 * @param daemon pointer to dlt daemon structure
\r
267 * @param filename name of file to be used for loading
\r
268 * @param verbose if set to true verbose information is printed out.
\r
269 * @return negative value if there was an error
\r
271 int dlt_daemon_contexts_load(DltDaemon *daemon,const char *filename, int verbose);
\r
273 * Save contexts from internal context management to file
\r
274 * @param daemon pointer to dlt daemon structure
\r
275 * @param filename name of file to be used for saving
\r
276 * @param verbose if set to true verbose information is printed out.
\r
277 * @return negative value if there was an error
\r
279 int dlt_daemon_contexts_save(DltDaemon *daemon,const char *filename, int verbose);
\r
281 * Load persistant configuration
\r
282 * @param daemon pointer to dlt daemon structure
\r
283 * @param filename name of file to be used for loading
\r
284 * @param verbose if set to true verbose information is printed out.
\r
285 * @return negative value if there was an error
\r
287 int dlt_daemon_configuration_load(DltDaemon *daemon,const char *filename, int verbose);
\r
289 * Save configuration persistantly
\r
290 * @param daemon pointer to dlt daemon structure
\r
291 * @param filename name of file to be used for saving
\r
292 * @param verbose if set to true verbose information is printed out.
\r
293 * @return negative value if there was an error
\r
295 int dlt_daemon_configuration_save(DltDaemon *daemon,const char *filename, int verbose);
\r
299 * Send user message DLT_USER_MESSAGE_LOG_LEVEL to user application
\r
300 * @param daemon pointer to dlt daemon structure
\r
301 * @param context pointer to context for response
\r
302 * @param verbose if set to true verbose information is printed out.
\r
303 * @return negative value if there was an error
\r
305 int dlt_daemon_user_send_log_level(DltDaemon *daemon,DltDaemonContext *context, int verbose);
\r
308 * Send user message DLT_USER_MESSAGE_LOG_STATE to user application
\r
309 * @param daemon pointer to dlt daemon structure
\r
310 * @param app pointer to application for response
\r
311 * @param verbose if set to true verbose information is printed out.
\r
312 * @return negative value if there was an error
\r
314 int dlt_daemon_user_send_log_state(DltDaemon *daemon,DltDaemonApplication *app,int verbose);
\r
317 * Send user messages to all user applications using default context, or trace status
\r
318 * to update those values
\r
319 * @param daemon pointer to dlt daemon structure
\r
320 * @param verbose if set to true verbose information is printed out.
\r
322 void dlt_daemon_user_send_default_update(DltDaemon *daemon, int verbose);
\r
325 * Send user messages to all user applications the log status
\r
326 * everytime the client is connected or disconnected.
\r
327 * @param daemon pointer to dlt daemon structure
\r
328 * @param verbose if set to true verbose information is printed out.
\r
330 void dlt_daemon_user_send_all_log_state(DltDaemon *daemon, int verbose);
\r
333 * Process received control message from dlt client
\r
334 * @param sock connection handle used for sending response
\r
335 * @param daemon pointer to dlt daemon structure
\r
336 * @param msg pointer to received control message
\r
337 * @param verbose if set to true verbose information is printed out.
\r
339 int dlt_daemon_control_process_control(int sock, DltDaemon *daemon, DltMessage *msg, int verbose);
\r
341 * Generate response to control message from dlt client
\r
342 * @param sock connection handle used for sending response
\r
343 * @param daemon pointer to dlt daemon structure
\r
344 * @param service_id service id of control message
\r
345 * @param status status of response (e.g. ok, not supported, error)
\r
346 * @param verbose if set to true verbose information is printed out.
\r
348 void dlt_daemon_control_service_response(int sock, DltDaemon *daemon, uint32_t service_id, int8_t status, int verbose);
\r
350 * Send out response message to dlt client
\r
351 * @param sock connection handle used for sending response
\r
352 * @param daemon pointer to dlt daemon structure
\r
353 * @param msg pointer to response message
\r
354 * @param appid pointer to application id to be used in response message
\r
355 * @param contid pointer to context id to be used in response message
\r
356 * @param verbose if set to true verbose information is printed out.
\r
358 void dlt_daemon_control_send_control_message(int sock, DltDaemon *daemon, DltMessage *msg, char* appid, char* contid, int verbose);
\r
361 * Process and generate response to received sw injection control message
\r
362 * @param sock connection handle used for sending response
\r
363 * @param daemon pointer to dlt daemon structure
\r
364 * @param msg pointer to received sw injection control message
\r
365 * @param verbose if set to true verbose information is printed out.
\r
367 void dlt_daemon_control_callsw_cinjection(int sock, DltDaemon *daemon, DltMessage *msg, int verbose);
\r
369 * Process and generate response to received set log level control message
\r
370 * @param sock connection handle used for sending response
\r
371 * @param daemon pointer to dlt daemon structure
\r
372 * @param msg pointer to received control message
\r
373 * @param verbose if set to true verbose information is printed out.
\r
375 void dlt_daemon_control_set_log_level(int sock, DltDaemon *daemon, DltMessage *msg, int verbose);
\r
377 * Process and generate response to received set trace status control message
\r
378 * @param sock connection handle used for sending response
\r
379 * @param daemon pointer to dlt daemon structure
\r
380 * @param msg pointer to received control message
\r
381 * @param verbose if set to true verbose information is printed out.
\r
383 void dlt_daemon_control_set_trace_status(int sock, DltDaemon *daemon, DltMessage *msg, int verbose);
\r
385 * Process and generate response to received set default log level control message
\r
386 * @param sock connection handle used for sending response
\r
387 * @param daemon pointer to dlt daemon structure
\r
388 * @param msg pointer to received control message
\r
389 * @param verbose if set to true verbose information is printed out.
\r
391 void dlt_daemon_control_set_default_log_level(int sock, DltDaemon *daemon, DltMessage *msg, int verbose);
\r
393 * Process and generate response to received set default trace status control message
\r
394 * @param sock connection handle used for sending response
\r
395 * @param daemon pointer to dlt daemon structure
\r
396 * @param msg pointer to received control message
\r
397 * @param verbose if set to true verbose information is printed out.
\r
399 void dlt_daemon_control_set_default_trace_status(int sock, DltDaemon *daemon, DltMessage *msg, int verbose);
\r
401 * Process and generate response to set timing packets control message
\r
402 * @param sock connection handle used for sending response
\r
403 * @param daemon pointer to dlt daemon structure
\r
404 * @param msg pointer to received control message
\r
405 * @param verbose if set to true verbose information is printed out.
\r
407 void dlt_daemon_control_set_timing_packets(int sock, DltDaemon *daemon, DltMessage *msg, int verbose);
\r
409 * Process and generate response to received get software version control message
\r
410 * @param sock connection handle used for sending response
\r
411 * @param daemon pointer to dlt daemon structure
\r
412 * @param verbose if set to true verbose information is printed out.
\r
414 void dlt_daemon_control_get_software_version(int sock, DltDaemon *daemon, int verbose);
\r
416 * Process and generate response to received get default log level control message
\r
417 * @param sock connection handle used for sending response
\r
418 * @param daemon pointer to dlt daemon structure
\r
419 * @param verbose if set to true verbose information is printed out.
\r
421 void dlt_daemon_control_get_default_log_level(int sock, DltDaemon *daemon, int verbose);
\r
423 * Process and generate response to received get log info control message
\r
424 * @param sock connection handle used for sending response
\r
425 * @param daemon pointer to dlt daemon structure
\r
426 * @param msg pointer to received control message
\r
427 * @param verbose if set to true verbose information is printed out.
\r
429 void dlt_daemon_control_get_log_info(int sock, DltDaemon *daemon, DltMessage *msg, int verbose);
\r
431 * Process and generate response to message buffer overflow control message
\r
432 * @param sock connection handle used for sending response
\r
433 * @param daemon pointer to dlt daemon structure
\r
434 * @param verbose if set to true verbose information is printed out.
\r
436 void dlt_daemon_control_message_buffer_overflow(int sock, DltDaemon *daemon, int verbose);
\r
438 * Process reset to factory default control message
\r
439 * @param daemon pointer to dlt daemon structure
\r
440 * @param filename name of file containing the runtime defaults for applications
\r
441 * @param filename1 name of file containing the runtime defaults for contexts
\r
442 * @param verbose if set to true verbose information is printed out.
\r
444 void dlt_daemon_control_reset_to_factory_default(DltDaemon *daemon,const char *filename, const char *filename1, int verbose);
\r
446 * Send time control message
\r
447 * @param sock connection handle used for sending response
\r
448 * @param daemon pointer to dlt daemon structure
\r
449 * @param verbose if set to true verbose information is printed out.
\r
451 void dlt_daemon_control_message_time(int sock, DltDaemon *daemon, int verbose);
\r
461 #endif /* DLT_DAEMON_COMMON_H */
\r