-
Notifications
You must be signed in to change notification settings - Fork 202
/
cfe_es_syslog.c
566 lines (511 loc) · 18 KB
/
cfe_es_syslog.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
/*
** GSC-18128-1, "Core Flight Executive Version 6.7"
**
** Copyright (c) 2006-2019 United States Government as represented by
** the Administrator of the National Aeronautics and Space Administration.
** All Rights Reserved.
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
/*
** File:
** cfe_es_syslog.c
**
** Purpose:
** This file implements the cFE Executive Services System Log functions.
**
** References:
** Flight Software Branch C Coding Standard Version 1.0a
** cFE Flight Software Application Developers Guide
**
** Notes:
**
** Some functions have EXTERNAL SYNC REQUIREMENTS
**
** SysLog functions marked with "Unsync" in their name are designated
** as functions which are _not_ safe to be called concurrently by multiple
** threads, and also do _not_ implement any locking or protection. These
** functions expect the caller to perform all thread synchronization before
** calling it.
**
** The synchronization requirement is across all functions; i.e. it is not safe
** to call B_Unsync() while A_Unsync() is executing or vice-versa. The external
** lock must wait until A_Unsync() finishes before calling B_Unsync().
**
** The expectation is that the required level of synchronization can be achieved
** using the existing ES shared data lock. However, if it becomes necessary, this
** could be replaced with a finer grained syslog-specific lock.
*/
/*
** Required header files.
*/
#include "cfe_es_module_all.h"
#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#include <ctype.h>
/*******************************************************************
*
* Non-synchronized helper functions
*
* An external mutex be held while calling any function marked "Unsync"
* These helper functions are local to the ES subsystem and must _NOT_
* be exposed to the public API.
*
* For external access, a public wrapper API must first acquire the
* necessary mutex before calling any function marked as "Unsync"
*
*******************************************************************/
/*----------------------------------------------------------------
*
* Function: CFE_ES_SysLogClear_Unsync
*
* Application-scope internal function
* See description in header file for argument/return detail
*
*-----------------------------------------------------------------*/
void CFE_ES_SysLogClear_Unsync(void)
{
/*
* Note - no need to actually memset the SystemLog buffer -
* by simply zeroing out the indices will cover it.
*/
CFE_ES_Global.ResetDataPtr->SystemLogWriteIdx = 0;
CFE_ES_Global.ResetDataPtr->SystemLogEndIdx = 0;
CFE_ES_Global.ResetDataPtr->SystemLogEntryNum = 0;
}
/*----------------------------------------------------------------
*
* Function: CFE_ES_SysLogReadStart_Unsync
*
* Application-scope internal function
* See description in header file for argument/return detail
*
*-----------------------------------------------------------------*/
void CFE_ES_SysLogReadStart_Unsync(CFE_ES_SysLogReadBuffer_t *Buffer)
{
size_t ReadIdx;
size_t EndIdx;
size_t TotalSize;
ReadIdx = CFE_ES_Global.ResetDataPtr->SystemLogWriteIdx;
EndIdx = CFE_ES_Global.ResetDataPtr->SystemLogEndIdx;
TotalSize = EndIdx;
/*
* Ensure that we start reading at the start of a message
* Likely pointing to an old fragment right now -- find the end of it
*/
while (TotalSize > 0 && ReadIdx < EndIdx)
{
++ReadIdx;
--TotalSize;
if (CFE_ES_Global.ResetDataPtr->SystemLog[ReadIdx - 1] == '\n')
{
break;
}
}
Buffer->SizeLeft = TotalSize;
Buffer->LastOffset = ReadIdx;
Buffer->EndIdx = EndIdx;
Buffer->BlockSize = 0;
}
/*----------------------------------------------------------------
*
* Function: CFE_ES_SysLogAppend_Unsync
*
* Application-scope internal function
* See description in header file for argument/return detail
*
*-----------------------------------------------------------------*/
int32 CFE_ES_SysLogAppend_Unsync(const char *LogString)
{
int32 ReturnCode;
size_t MessageLen;
size_t WriteIdx;
size_t EndIdx;
/*
* Sanity check - Make sure the message length is actually reasonable
* Do not allow any single message to consume more than half of the total log
* (even this may be overly generous)
*/
MessageLen = strlen(LogString);
if (MessageLen > (CFE_PLATFORM_ES_SYSTEM_LOG_SIZE / 2))
{
MessageLen = CFE_PLATFORM_ES_SYSTEM_LOG_SIZE / 2;
ReturnCode = CFE_ES_ERR_SYS_LOG_TRUNCATED;
}
else
{
ReturnCode = CFE_SUCCESS;
}
/*
* Final sanity check -- do not bother logging empty messages
*/
if (MessageLen == 0)
{
return ReturnCode;
}
/*
* Real work begins --
* Take a local snapshot of the head & tail index values
*
* WriteIdx -> indicates 1 byte past the end of the newest message
* (this is the place where new messages will be added)
*
* EndIdx -> indicates the entire size of the buffer
*
* Keeping them in local stack variables allows more efficient modification,
* since CFE_ES_Global.ResetDataPtr may point directly into a slower NVRAM space.
*/
WriteIdx = CFE_ES_Global.ResetDataPtr->SystemLogWriteIdx;
EndIdx = CFE_ES_Global.ResetDataPtr->SystemLogEndIdx;
/*
* Check if the log message plus will fit between
* the HeadIdx and the end of the buffer.
*
* If so, then the process can proceed as normal.
*
* If not, then the action depends on the setting of "SystemLogMode" which will be
* to either discard (default) or overwrite
*/
if ((WriteIdx + MessageLen) > CFE_PLATFORM_ES_SYSTEM_LOG_SIZE)
{
if (CFE_ES_Global.ResetDataPtr->SystemLogMode == CFE_ES_LogMode_OVERWRITE)
{
/* In "overwrite" mode, start back at the beginning of the buffer */
EndIdx = WriteIdx;
WriteIdx = 0;
}
else if (WriteIdx < (CFE_PLATFORM_ES_SYSTEM_LOG_SIZE - CFE_TIME_PRINTED_STRING_SIZE))
{
/* In "discard" mode, save as much as possible and discard the remainder of the message
* However this should only be done if there is enough room for at least a full timestamp,
* otherwise the fragment will not be useful at all. */
MessageLen = CFE_PLATFORM_ES_SYSTEM_LOG_SIZE - WriteIdx;
ReturnCode = CFE_ES_ERR_SYS_LOG_TRUNCATED;
}
else
{
/* entire message must be discarded */
MessageLen = 0;
}
}
if (MessageLen == 0)
{
ReturnCode = CFE_ES_ERR_SYS_LOG_FULL;
}
else
{
/*
* Copy the message in, EXCEPT for the last char which is probably a newline
*/
memcpy(&CFE_ES_Global.ResetDataPtr->SystemLog[WriteIdx], LogString, MessageLen - 1);
WriteIdx += MessageLen;
/*
* Ensure the that last-written character is a newline.
* This would have been enforced already except in cases where
* the message got truncated.
*/
CFE_ES_Global.ResetDataPtr->SystemLog[WriteIdx - 1] = '\n';
/*
* Keep track of the buffer endpoint for future reference
*/
if (WriteIdx > EndIdx)
{
EndIdx = WriteIdx;
}
/*
* Export updated index values to the reset area for next time.
*/
CFE_ES_Global.ResetDataPtr->SystemLogWriteIdx = WriteIdx;
CFE_ES_Global.ResetDataPtr->SystemLogEndIdx = EndIdx;
++CFE_ES_Global.ResetDataPtr->SystemLogEntryNum;
}
return (ReturnCode);
}
/*----------------------------------------------------------------
*
* Function: CFE_ES_SysLogWrite_Unsync
*
* Application-scope internal function
* See description in header file for argument/return detail
*
*-----------------------------------------------------------------*/
int32 CFE_ES_SysLogWrite_Unsync(const char *SpecStringPtr, ...)
{
char TmpString[CFE_ES_MAX_SYSLOG_MSG_SIZE];
va_list ArgPtr;
va_start(ArgPtr, SpecStringPtr);
CFE_ES_SysLog_vsnprintf(TmpString, sizeof(TmpString), SpecStringPtr, ArgPtr);
va_end(ArgPtr);
/* Output the entry to the console */
OS_printf("%s", TmpString);
/*
* Append to the syslog buffer
*/
return CFE_ES_SysLogAppend_Unsync(TmpString);
}
/*******************************************************************
*
* Additional helper functions
*
* These functions either perform all necessary synchronization internally,
* or they have no specific synchronization requirements
*
*******************************************************************/
/*----------------------------------------------------------------
*
* Function: CFE_ES_SysLogReadData
*
* Application-scope internal function
* See description in header file for argument/return detail
*
*-----------------------------------------------------------------*/
void CFE_ES_SysLogReadData(CFE_ES_SysLogReadBuffer_t *Buffer)
{
size_t BlockSize;
Buffer->BlockSize = 0;
while (Buffer->SizeLeft > 0 && Buffer->BlockSize < sizeof(Buffer->Data))
{
/*
* The next block to copy will be the SMALLEST of:
* - total remaining (un-copied) size of the syslog data
* - space available in the output buffer
* - space between the current read offset and the end of the log buffer (wrap point)
*/
BlockSize = sizeof(Buffer->Data) - Buffer->BlockSize;
if (Buffer->LastOffset >= Buffer->EndIdx)
{
Buffer->LastOffset = 0;
}
if ((Buffer->LastOffset + BlockSize) > Buffer->EndIdx)
{
BlockSize = Buffer->EndIdx - Buffer->LastOffset;
}
if (BlockSize > Buffer->SizeLeft)
{
BlockSize = Buffer->SizeLeft;
}
if (BlockSize == 0)
{
/* should be impossible for this to happen,
* just in case, do not spin endlessly */
break;
}
memcpy(&Buffer->Data[Buffer->BlockSize], &CFE_ES_Global.ResetDataPtr->SystemLog[Buffer->LastOffset], BlockSize);
Buffer->BlockSize += BlockSize;
Buffer->LastOffset += BlockSize;
Buffer->SizeLeft -= BlockSize;
}
}
/*----------------------------------------------------------------
*
* Function: CFE_ES_SysLogSetMode
*
* Application-scope internal function
* See description in header file for argument/return detail
*
*-----------------------------------------------------------------*/
int32 CFE_ES_SysLogSetMode(CFE_ES_LogMode_Enum_t Mode)
{
int32 Status;
if ((Mode == CFE_ES_LogMode_OVERWRITE) || (Mode == CFE_ES_LogMode_DISCARD))
{
CFE_ES_Global.ResetDataPtr->SystemLogMode = Mode;
Status = CFE_SUCCESS;
}
else
{
Status = CFE_ES_BAD_ARGUMENT;
}
return Status;
}
/*----------------------------------------------------------------
*
* Function: CFE_ES_SysLog_vsnprintf
*
* Application-scope internal function
* See description in header file for argument/return detail
*
*-----------------------------------------------------------------*/
void CFE_ES_SysLog_vsnprintf(char *Buffer, size_t BufferSize, const char *SpecStringPtr, va_list ArgPtr)
{
size_t StringLen;
size_t MaxLen;
int PrintLen;
/*
* write the current time into the TmpString buffer
*
* Note that CFE_TIME_Print() is expected to produce a string of exactly
* CFE_TIME_PRINTED_STRING_SIZE in length.
*/
StringLen = 0;
if (BufferSize > (CFE_TIME_PRINTED_STRING_SIZE + 2))
{
/*
* The "useful" buffer size is two less than the supplied buffer -
* due to the addition of a newline and a null char to terminate the string
*/
MaxLen = BufferSize - 2;
CFE_TIME_Print(Buffer, CFE_TIME_GetTime());
/* using strlen() anyway in case the specific format of CFE_TIME_Print() changes someday */
StringLen = strlen(Buffer);
if (StringLen < MaxLen)
{
/* overwrite null with a space to separate the timestamp from the content */
Buffer[StringLen] = ' ';
++StringLen;
/* note that vsnprintf() may return a size larger than the buffer, if it truncates. */
PrintLen = vsnprintf(&Buffer[StringLen], BufferSize - StringLen, SpecStringPtr, ArgPtr);
if (PrintLen > 0)
{
StringLen += PrintLen;
}
}
if (StringLen > MaxLen)
{
/* the message got truncated */
StringLen = MaxLen;
}
/*
* Finalize the output string.
*
* To be consistent when writing to the console, it is important that
* every printed string end in a newline - particularly if the console is buffered.
*
* The caller may or may not have included a newline in the original format
* string. Most callers do, but some do not.
*
* Strip off all trailing whitespace, and add back a single newline
*/
while (StringLen > 0 && isspace((unsigned char)Buffer[StringLen - 1]))
{
--StringLen;
}
Buffer[StringLen] = '\n';
++StringLen;
}
if (BufferSize > 0)
{
/* always output a null terminated string */
Buffer[StringLen] = 0;
}
}
/*----------------------------------------------------------------
*
* Function: CFE_ES_SysLog_snprintf
*
* Application-scope internal function
* See description in header file for argument/return detail
*
*-----------------------------------------------------------------*/
void CFE_ES_SysLog_snprintf(char *Buffer, size_t BufferSize, const char *SpecStringPtr, ...)
{
va_list ArgPtr;
va_start(ArgPtr, SpecStringPtr);
CFE_ES_SysLog_vsnprintf(Buffer, BufferSize, SpecStringPtr, ArgPtr);
va_end(ArgPtr);
}
/*----------------------------------------------------------------
*
* Function: CFE_ES_SysLogDump
*
* Application-scope internal function
* See description in header file for argument/return detail
*
*-----------------------------------------------------------------*/
int32 CFE_ES_SysLogDump(const char *Filename)
{
osal_id_t fd;
int32 Status;
size_t WritePos;
size_t TotalSize;
size_t LastReqSize;
union
{
CFE_ES_SysLogReadBuffer_t LogData;
CFE_FS_Header_t FileHdr;
} Buffer;
Status = OS_OpenCreate(&fd, Filename, OS_FILE_FLAG_CREATE | OS_FILE_FLAG_TRUNCATE, OS_WRITE_ONLY);
if (Status < 0)
{
CFE_EVS_SendEvent(CFE_ES_SYSLOG2_ERR_EID, CFE_EVS_EventType_ERROR, "Error creating file %s, RC = 0x%08X",
Filename, (unsigned int)Status);
return CFE_ES_FILE_IO_ERR;
} /* end if */
CFE_FS_InitHeader(&Buffer.FileHdr, CFE_ES_SYS_LOG_DESC, CFE_FS_SubType_ES_SYSLOG);
TotalSize = 0;
LastReqSize = sizeof(CFE_FS_Header_t);
Status = CFE_FS_WriteHeader(fd, &Buffer.FileHdr);
if (Status >= 0)
{
TotalSize += Status;
/*
* Get a snapshot of the buffer pointers and read the first block of
* data while locked - ensuring that nothing additional can be written
* into the syslog buffer while getting the first block of log data.
*/
CFE_ES_LockSharedData(__func__, __LINE__);
CFE_ES_SysLogReadStart_Unsync(&Buffer.LogData);
CFE_ES_SysLogReadData(&Buffer.LogData);
CFE_ES_UnlockSharedData(__func__, __LINE__);
while (Buffer.LogData.BlockSize > 0)
{
WritePos = 0;
while (WritePos < Buffer.LogData.BlockSize)
{
LastReqSize = Buffer.LogData.BlockSize - WritePos;
Status = OS_write(fd, &Buffer.LogData.Data[WritePos], LastReqSize);
if (Status <= 0)
{
break;
} /* end if */
WritePos += Status;
TotalSize += Status;
}
if (Status <= 0)
{
break;
}
/*
* _NOT_ taking the lock for subsequent reads --
*
* All syslog index values use the local snapshots that were taken earlier.
* (The shared memory index values are not referenced on subsequent reads)
*
* If a new syslog message _does_ get written while this is in progress, it
* should be writing to a different part of the syslog buffer anyway, and
* probably will not overwrite the data about to be read here.
*
* There is still a possibility of a "flood" of syslogs coming in which would
* potentially overwrite unread data and cause message loss/corruption. However
* taking a lock here will not alleviate that situation - this means that the
* buffer simply isn't big enough.
*/
CFE_ES_SysLogReadData(&Buffer.LogData);
}
}
OS_close(fd);
if (Status <= 0)
{
CFE_ES_FileWriteByteCntErr(Filename, LastReqSize, Status);
Status = CFE_ES_FILE_IO_ERR;
}
else
{
CFE_EVS_SendEvent(CFE_ES_SYSLOG2_EID, CFE_EVS_EventType_DEBUG, "%s written:Size=%lu,Entries=%u", Filename,
(unsigned long)TotalSize,
(unsigned int)CFE_ES_Global.TaskData.HkPacket.Payload.SysLogEntries);
Status = CFE_SUCCESS;
}
return Status;
}