Compare commits

..
108 Commits
Author SHA1 Message Date
Juro Bystricky 8ca299314c configure.ac: bump version
Increase the version to 2.3.2 to reflect the fact that
bertprobe was entirely removed. The bertprobe functionality
was moved to klogscanner.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-12-17 18:39:20 -08:00
Juro Bystricky 53d4c229a7 klog_scanner.c: truncate payload if needed
Payloads can exceed MAX_PAYLOAD_SIZE, in which case the probe
will fail to send any data to the backend server. This was observed
with BERT payloads, but other payload types can exceed the maximum
size as well.

This patch truncates the payload if needed. It is better to receive
a truncated report than none.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-12-16 10:49:50 -08:00
Juro Bystricky 7a3082eb59 Merge BERT probe with klogscanner
New Linux kernels detect/interpret/display BERT errors in klog.
This makes bertprobe unnecessary, as all the information can
be simply grabbed from klog. This also removes the need to
encode the binary data into HEX/ASCII, so all the encoding
code can be removed as well, including the test suite.

The change was implemented by adding a new pattern for BERT
in the oops_parser.c with some additional minor changes.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-12-13 15:16:20 -08:00
avjarami 071ad2c883 configure.ac: bump version to v2.3.1
Bump version to release fixes to BERT probe.

Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
2019-11-25 18:32:38 +00:00
Juro Bystricky 72ea0d9360 bertprobe: fix failures and logging
Fix a reported problem: https://github.com/clearlinux/telemetrics-client/issues/170

This patch fixes the case when there is no error reported via BERT data
and yet the probe fails with error such as:
"Failed to read payload from: /sys/firmware/acpi/tables/data/BERT"
Which then results in journalprobe reporting:
"bert-probe.service: Main process exited, code=exited, status=1/FAILURE"

The file BERT data file now has root only read permissions:

 $ ls -al /sys/firmware/acpi/tables/data/BERT
-r-------- 1 root root 32768 Nov 25 07:37 /sys/firmware/acpi/tables/data/BERT

Hence the user "telemetry" cannot read it anymore. In addition, the file size
can be more than max payload size (4k). However, the file can be completely
blank. The probe inspects the block_status for any present errors.
If there aren't any, probe does not report anything.

While in there, for consistency reasons, modified "printf" statements with
error messages to telem_log(LOG_ERR, msg)

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-11-25 10:22:31 -08:00
Juro Bystricky 49823eae83 configure.ac: bump version to v2.3.0
Bump due to switching from opt-out to opt-in.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-11-12 10:26:30 -08:00
Juro Bystricky a12c1d8761 telemctl.c: validate privileges
Not all commands need to be run as root.
In particular "is-active".
While in there, some minor formatting fixes.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-11-12 10:26:30 -08:00
Auke Kok eb1e670b5f Add github actions CI. 2019-11-07 14:04:14 -08:00
Alex Jaramillo 5cbd31cbf2 Require explicit telemctl opt-in
telemetrics-client installation starts when the package is installed,
this change makes sure that to start telemetry the first time two steps
are needed: 1- telemctl opt-in and 2- telemctl start

Signed-off-by: Alex Jaramillo <alex.jch@gmail.com>
2019-10-14 11:02:20 -07:00
Juro Bystricky 4119bdea33 configure.ac: bump version to 2.2.3
Version bump to reflect changes in the package.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-10-08 09:53:02 -07:00
Juro Bystricky 2395f6bf3e python-probe.c: remove python probe
Remove all references to python probe. The python exceptions
are handled entirely in Python code. This telemetrics-client
package does not need to be aware of the Python code exception handling
and does not need to make any provisions for it (such as creating
services and directories).
It is the responsibility of Python exception handling to properly
interface with the telemetry library.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-10-08 09:52:35 -07:00
Tian Baofeng bc7e2610ee pstore_probe.c: add ramoops file support in pstore probe for cl telemetry
Add support for ramoops files in pstore probe, get the crash information
from "/sys/fs/pstore/dmesg-ramoops-x" files.
Add the "-f" cmd option support to input runtime config file when
running the probe.

Change-Id: Id7f26d6e07a7c215027b9be039356b2633d4869f
Signed-off-by: Tian Baofeng <baofeng.tian@intel.com>
2019-09-16 14:16:40 -07:00
Juro Bystricky a4774bde2e configure.ac: bump version to 2.2.2
Version bump from 2.2.1 to 2.2.2

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-09-03 09:52:20 -07:00
Juro Bystricky 63574e7406 crash_probe.c: improve error handling
Routine frame_cb: if asprintf fails, assume destination string
is not initialized properly.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-30 09:38:33 -07:00
Juro Bystricky ce35876b55 telemdaemon.c: sanity check for record size
handle_client: added a reasonable sanity check for record size.
Currently it is not possible to get max size of headers, so
the assumption is each line in header will be at most 80 chars.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-30 09:37:02 -07:00
Juro Bystricky 055e55b2f3 telemdaemon.c: modify handle_client
Split a fairly convoluted loop in "handle_client" into
two distinct steps:

1. Read the record size by reading the first 4 bytes.
2. Once the record size is known, read the rest of the record
   into a buffer.

All the buffer for the record allocation/deallocations are handled
in this routine as well. The new code does not need to know any datails
about the record buffer layout. This needed a minor modification of the
record itself, the first 4 bytes of the record now contain the length of
the entire record (including the 4 bytes). This required a minor change
in "telemtry.c" the routine tm_send_record. The previous "total_size"
in the 4 bytes did not include the terminator and header_size, so
"handle_client" needed to adjust for those to get the real expected
record size.

Also declared "terminate_client" and "process_record" as static.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-26 14:27:18 -07:00
Juro Bystricky 84b4266bc2 telempostdaemon.c: fix unitialized variable
Upon (error) exit the field buf.st_blocks may contain garbage.
Make sure buf.st_blocks is deterministic.
While in there, also removed some redundant round brackets.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-23 10:07:10 -07:00
Juro Bystricky e7d9d7b0ba telem_recoder_gen.c: remove redundant if statement
Removed the last error test from routine "instanciate_record".

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-23 09:17:59 -07:00
Juro Bystricky b0effc8850 telemctl.c: changed handling of opt_in/opt_out
Simplified the code for telemctl_opt_out and telemctl_opt_in.
There is no real need to call "access" to determine if opted_out
file exists, we get the same info by scrutinizing the errno.
This fixes any potential TOCTOU problems between access/create and access/unlink.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-22 14:57:35 -07:00
Alex Jaramillo e9ce8bc1ae Fix build warning not used variable 2019-08-22 14:57:19 -07:00
Alex Jaramillo ea1480fb04 Allow record creation on opt-out
When telemetry is opt-out, telem-record-gen is unable to print a
telemetry record. This change enables printing a record to stdout
without allowing the record to be submitted.

Signed-off-by: Alex Jaramillo <alex.jch@gmail.com>
2019-08-22 14:57:19 -07:00
Juro Bystricky a6e81aa3bb journal.c: fix some resource leaks
open_journal: Fix leaked file pointer on error exits.

print_journal: Make sure we always call free_journal_entry(entry),
regardless if we print the entry or not.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-22 09:12:10 -07:00
Juro Bystricky fffe9755ad journal.c: deserialize_journal_entry fixes
1. Return a known (NULL) value of "*entry" if the function fails.
2. Remove some dead code. Since the loop index ranges 0..4, it is
   pointless to have a switch statement outsized of this range.
3. Ensure all pointers within the allocated structure JournalEntry
   are defined. (They are initialized as NULL courtesy of calloc),
   otherwise we may end up freeing some random pointers in
   "free_journal_entry"

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-21 16:40:08 -07:00
Juro Bystricky b465d35b24 telemctl.c: avoid using fscanf
Don't use fscanf in order to avoid a potential string overflow.
Use code that is aware of allocated buffer sizes.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-21 09:41:07 -07:00
Juro Bystricky e2aeda86eb telem_record_gen.c: fix a potential resource leak
Routine "print_record": always call tm_free_record before
exiting the routine.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-21 09:40:55 -07:00
Juro Bystricky 6b4089075f telemctl.c: allow deleting of files not owned by telemetry
Folders owned by "telemetry" may contain files that are not
owned by "telemetry". Allow deleting those.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-20 15:08:39 -07:00
Juro Bystricky 83bb3df20a inifile.c: Check for NULL pointer
Don't assume calloc cannot fail, test the return value.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-20 15:08:25 -07:00
Juro Bystricky e855a19c88 oops_parser.c: remove needless check
Remove a test for a valid pointer. The test hase been done
already. Also the pointer has been dereferenced already.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-20 15:08:10 -07:00
Juro Bystricky 7173e1fede oops_parser.c: detect kernel panic
Add pattern for kernel panic. The new pattern can be tested with:

  $ sudo sh -c "echo 'c' > /proc/sysrq-trigger"

The above command will crash the system immediately, however upon reboot
the pstoreprobe will send the crah report.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-20 11:05:07 -07:00
Juro Bystricky a4bc8b55dd iorecord.c: fix a potential race
Prevent time of check to time of use exploit.
Don't use "stat" to get the file size. The "stat" and "fopen"
could refer to two different files.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-20 11:04:55 -07:00
Juro Bystricky d81ac1e8f3 telemctl.c: fix resource leak
Close a file descriptor for a freshly created & opened file
when not needed.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-20 11:04:38 -07:00
Juro Bystricky b0d448e9e7 telemetry.c: remove unneeded test
tm_set_event_id: if a record exists, then the record headers
array exists as well as it is a part of the record itself.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-19 09:29:18 -07:00
Juro Bystricky 88ee43f528 telempostdaemon.c: avoid freeing of uninitialized variables
"save_entry_to_journal": fix potential freeing of uninitilized
variables.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-19 09:22:08 -07:00
Juro Bystricky 49a1d41a3a telemdaemon.c: fix for a potential string overflow
In the routine "machine_id_replace" replace "strcpy" with
a safer "strncpy".
Also declare the routine as static as it is not used outside
of this file.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-19 09:21:54 -07:00
Juro Bystricky 0e20d62c9e oops_parser.c: remove unneeded check
Remove a useless test.
Routine "stack_frame_append": don't test again if a pointer
is NULL. It has been done already. Also, the pointer was
already dereferenced before the test.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-19 09:21:20 -07:00
Juro Bystricky d314c1a88b telemdaemon.c: properly handle mkstemp error
If mkstemp fails, it returns a negative value (-1).
So adjust the test accordingly. Also don't attempt to close
an invalid file descriptor. Don't unlink a file that failed
to be created.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-16 14:51:42 -07:00
Juro Bystricky b9ad4c2f14 telem_recorde_gen.c: fix potential memory leaks
It is allowed to enter the same command line argument more than once,
the later value overriding the previous one.
Make sure any previous value is properly de-allocated.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-16 13:48:53 -07:00
Juro Bystricky 9fd3c280ba telem_record_gen.c: return correct error in instanciate_record
In the routine "instanciate_record":
If the user passed event_id on the command line and it was incorrect,
any returned error from tm_set_event was ignored and "instanciate_record"
could return success (0).

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-16 13:48:39 -07:00
Juro Bystricky 75255fff50 telemdaemon.c: don't assume correct machine_id length
"fscanf" assumes an arbitrarily long string, so limit the scan to
32 characters to avoid a potential buffer overflow.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-16 13:48:25 -07:00
Juro Bystricky b2adc08d4f util.c: correct return value from "get_header_value"
Even if errors were encounterd parsing the header we used to
return success ("true") by a mistake.
Fix this by correcting the test.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-16 13:47:58 -07:00
Juro Bystricky e6357bb051 iorecord.c: fix memory allocation check
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-16 10:42:11 -07:00
Mohammed Khajapasha 15b5df2f47 Fix double free in deserialize_journal_entry and print_journal
Causing double free case when an empty line has been
passed to deserialize_journal_entry() from print_journal()
to print the report, This case double free can be occured
at print_journal() and deserialize_journal_entry().

Signed-off-by: Mohammed Khajapasha <mohammed.khajapasha@intel.com>
2019-08-12 10:00:42 -07:00
Juro Bystricky f516d85e59 telemctl: binary version
Create a binary executable "telemctl" that is equivalent
to the shell script "telemctl".
Main reason is to make (future) localization easier.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-06 09:57:29 -07:00
Ammy Yi ce2ad0c2b0 Add "ACPI Error:" pattern for ACPI issues.
If "ACPI Error:" happen, it means there is kernel or bios issue.

Signed-off-by: Ammy Yi <ammy.yi@intel.com>
2019-08-06 09:51:54 -07:00
Juro Bystricky afb7572adf configure.ac: bump version to 2.2.1
Version bump from 2.2.0 to 2.2.1

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-02 15:05:03 -07:00
Juro Bystricky 3337c45b08 man pages: remove references to telemd
"telemd" was replaced by "telemprobd" a long time
ago, however several man pages still contain refererences
to "telemd".
This patch replaces all references accordingly.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-08-02 15:04:43 -07:00
Juro Bystricky 672e741e5d Fix build for logtype=systemd
Build is broken for multiple binaries when configured for logging
to systemd journal:

$ ./configure --enable-logtype=systemd
$ make

All binaries that use the routine "telem_log" must link to additional
libraries when logging to systemd journal.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-07-29 09:57:46 -07:00
Juro Bystricky e19e72a5b3 crash_probe: Limit the size of backtrace
A simple program that is highly recursive (or very deeply nested)
and causes stack overflow or segmentation fault can take hours
for crash_probe to process.
This patch fixes this by limiting the size of the stacktrace to 64.
(64 is also the size of the stack trace used by systemd).
64 lines of 80 characters == 5120 bytes. Enough to leave room for
telemetry headers and have a reasonable chance of making the 8k payload
limit.

If the stack trace is truncated, the payload will contain a message:

"Too many frames. Backtrace truncated".

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-07-25 08:40:04 -07:00
Juro Bystricky 9a25115d8e configure.ac: bump version to 2.2.0
Version bump from 2.1.1 to 2.2.0

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-07-09 09:36:31 -07:00
Juro Bystricky 11c5808fd9 telem_journal: improve usage message
No functional changes.
Provide additional info in the usage message, based on user feedback.
While in there, some additional minor changes..

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-06-12 10:42:33 -07:00
Juro Bystricky 9f67a1ca8a Updated AUTHORS
Added recent authors.
Also removed TODO, as it has not been maintained for several years.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-06-12 10:40:30 -07:00
Juro Bystricky 781d9382d0 Fix compiler warnings [-Wstringop-truncation]
Modify code to avoid generating compiler warning such as:
warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-06-05 10:56:52 -07:00
Juro Bystricky 2a29191c5f telem_record_gen.c: fix for compiler warning [-Wstringop-overflow=]
Replace strncpy with memcpy to avoid GCC9 warning:
warning: ‘__builtin___strncpy_chk’ specified bound depends on the length of the source argument [-Wstringop-overflow=]

There is no danger of overflow. The destination buffer is guaranteed to
be of MAX_PAYLOAD_LENGTH.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-06-05 10:56:36 -07:00
Juro Bystricky c264cd044c check_probes.c: fix for compiler warning [-Wstringop-overflow=]
Replaced strncpy with memcpy and added some buffer overflow checks in
order to avoid GCC9 compiler warning:
warning: ‘__builtin___strncpy_chk’ specified bound depends on the length of the source argument [-Wstringop-overflow=]

While in there, removed one unused global variable and declared the remaining
global variables as static.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-06-05 10:56:18 -07:00
California Sullivan ad4dde288b journal.c: reduce severity of message when failing to opening old records
The default configuration for telemetry is to not store records that
were successfully sent. This would result in a multitude of errors when
calling the journal program with --include_record, as the records no
longer existed to open.

Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
2019-06-03 14:23:34 -07:00
Alex Jaramillo 48527a343b Protect security checks from removal
Compiler optimization can remove certain security checks for undefined
behavior. Add compiler flags that restrict arbitrary decisions when
handling undefined behaviors.

* fno-strict-overflow, do not assume signed overflow does not occur.
* fno-delete-null-pointer-checks, do not assume null pointer deference
does not exists.
* fwrapv, always wrap signed overflow.

Signed-off-by: Alex Jaramillo <alex.jch@gmail.com>
2019-05-30 11:02:44 -07:00
California Sullivan d13073ff25 src: standardize log and debug messages
Use the telem_log, telem_debug, and telem_perror macros to print
messages instead of printf and fprintf where appropriate. These macros
may be configured to print to many standard locations at compile time,
such as the syslog, the journal, or stderr. The remaining uses of
fprintf in printing errors is only for command line utilities.

When using telem_debug, we don't need to surround it with #ifdef DEBUG
statements, as the macro does that itself.

Finally, stop hiding real errors behind #ifdef DEBUGs. If an error
occurs, it should be logged.

Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
2019-05-02 14:44:35 -07:00
California Sullivan 43c506382a log.h: fix telem_debug macro
The telem_debug macro was apparently never tested previously, as it
didn't compile.

Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
2019-05-02 14:44:35 -07:00
Juro Bystricky aca23d1c54 Minor houskeeping
Moved a misplaced comment to where it belongs.
Fixed incorrectly formatted log string.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-04-25 09:27:24 -07:00
Juro Bystricky 2639e4d042 daemons: name space separation
The telempostd and telemprobd daemons both used identical
name "initialize_daemon" for daemon initialization.
Although the name was identical, the code for each daemon initialization
was different, leading to some potential confusion.
Also moved telemprobd specific code "stage_record" from iorecord.c to
telemdaemon.c
Modified local.mk accordingly.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-04-22 19:45:40 -07:00
California Sullivan cc70c3ffba telemetry.c: support variants in the system_name header
Read the VARIANT_ID field of the os-release file and add it to our
system_name header. This allows differentiation of different variants of
an operating system on the backend.

The header will be unchanged on operating systems without a VARIANT_ID
in their os-release file. Also continue limiting the header length to 80
characters.

Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
2019-04-22 10:31:09 -07:00
California Sullivan ba62496248 telempostdaemon: fix retries loop
The 'else if (retry_attempt == MAX_RETRY_ATTEMPTS)' section would get
hit the first time through the loop on every invocation, printing the
failed to deliver error to the journal.

To fix it, initialize retry_attempt to zero and check that we're above
zero retries to enter retry sections.

This fixes the false "Record deliver failed after 8 attempts" message
that was getting spewed into the journal.

Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
2019-04-22 10:30:45 -07:00
California Sullivan d873c4e067 configuration: rework to allow layered configuration
Have a default configuration set in the binary, with conf files only
being used to change from the defaults. This allows making simpler
configs which only toggle specific options, which may be useful for user
configuration or testing. See src/data/example.2.conf for an example of
a new simplified config.

By default the telemetrics-client is configured with
https://clr.telemetry.intel.com/v2/collector as the built-in server
location. This is the normal Clear Linux telemetrics backend. It can
be changed via the configure flag --with-backendserveraddr=URI. This
allows anyone else using this project to easily specify their own
default backend without patching. As per usual, users can specify a
different server location in a configuration file.

Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
2019-04-22 10:29:59 -07:00
Juro Bystricky 335ed440bc telem_record_gen: various changes
1. Declare all local routines as static
2. Added support for custom config files (implemented the option "-f")
3. bugfix: -P option with non existing file would not fail.
4. More stringent parsing of classification, avoid hard coded numbers,
   use pre-defined constants from "common.h" instead.
   Also detect MAX_SUBCAT_LENGTH violation.
5. Some local routines were declared as "bool" instead of "int":
   These routines used to return 1 if successful and 0 if failed.
   This was confusing as all API routines return 0 upon success
   and non-zero value if error.
6. Replaced the whole routine "allocate_payload_buffer" with a single
   call to "calloc".

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-04-22 09:30:02 -07:00
Juro Bystricky 297e59fe5b Improve support of non-default configuration files.
Most probes allow passing of non-default configuration file
via command line using the "-f" switch.
For example:

$ hprobe -f custom_cfg_file.conf

If the file "custom_cfg_file.conf" contains

server = http://<my backend server>

one would expect the hprobe payload will be sent to the server
http://<my backend server>. However, this is not the case, as the
various daemons delivering the payload to the backend are blissfully
unaware of the of the config file hprobe wanted to use.

The solution is to include the absolute path of the config file
specified on the command line as part of the payload. Once the
payload is about to be sent via the routine "post_record_http",
the routine checks if a non-default config file was requested.
If so, configuration is re-initialized with the file.
Upon exit, the routine re-initializes the original (default) configuration.

The non-default file may not exist at the send time anymore,
for example when sending some spooled records. In that case we
intentionally don't send anything to the backend.

If the record does not contain the optional configuration file
information, it's business as usual.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-04-22 09:29:30 -07:00
Juro Bystricky 4a2cfd99ad spool.c: fix memory leak
In case of memory allocation failures or record parsing failures,
"transmit_spooled_record" may have returned without freeing any previously
allocated memory.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-03-22 14:37:33 -07:00
Alex Jaramillo 46f2e0c8cb Release v2.1.1 2019-02-25 21:14:14 +00:00
Juro Bystricky ffc0554346 pythonprobe: fix folders
Python3 expects two "well known" folders to exist in order to generate exception
payloads:

/var/tmp/telemetry
/var/lib/telemetry/python

Both folders must exist at the above absolute locations in order to properly
create and submit Python3 telemetry unhandled exception payload.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-02-25 13:07:06 -08:00
Alex Jaramillo 191d91e8e3 Release v2.1.0 2019-02-20 18:09:47 +00:00
California Sullivan 4b777f71f7 journalprobe: don't process entire journal on restart
This adds an optional argument to journalprobe that allows seeking to
the end of the journal. This is then used in a new service file that is
called by telemctl on restart. This allows us to scan the entire journal
on boot, and only scan new journal entries when restarting, or opting
into telemetry manually. This reduces spam from repeated messages and
fixes a possible privacy concern, as previously running telemctl start
could include journal errors that occurred before telemetrics was opted
into.

Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
2019-02-18 09:09:39 -08:00
Juro Bystricky e27051d1a2 heartbeat: modified payload
Also report locale and uptime.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-02-18 08:59:05 -08:00
Juro Bystricky b7cdf9255d hello.c: additional payload content
Optionally add locale, uptime and list of installed bundles
to the payload. The default behavior is as before.
Additional payload is can be enabled via cmd line arguments:

-l : add locale info
-b : add installed bundles info
-u : add uptime info

For consistency, always use telem_log(LOG_ERR,...) instead
of fprintf(stderr,...).

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-02-07 17:11:51 -08:00
ajch 35b5d98c66 Security disclosures link
Added required link for security disclosures.
2019-01-28 11:37:53 -08:00
Patrick McCarty 29917fb464 Add missing entries to gitignore
Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2019-01-28 09:01:59 -08:00
Patrick McCarty 264f53dd47 crashprobe: always remove core files, except when passing --core-file
In modern times, the default core_pattern for Clear Linux OS is set to

    |/usr/lib/systemd/coredump-wrapper %E %P %u %g %s %t %c %h %e

This wrapper script sends core files to both systemd-coredump and
crashprobe (if installed).

Because systemd-coredump will store core files in the systemd journal,
there is no longer a strong reason to preserve the crashprobe core files
in /tmp, aside from when crashprobe's --core-file option is used. If
developers wish to access core files, they can use `coredumpctl` instead
to extract them from the systemd journal.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2019-01-28 09:01:59 -08:00
Juro Bystricky 0705f89533 bert_probe.c: don't return EXIT_SUCCESS in case of a failure
The original code "allocate_payload_buffer" returned 0 if "malloc" failed
and 1 if "malloc" succeeded. The "bertprobe" used this return value upon
exit. However "bertprobe" return code 0 corresponds to EXIT_SUCCESS
and return code 1 corresponds to EXIT_FALURE.

Similarily, "nc_b64enc_filename" returns 1 upon success and 0 upon
failure, so if the function fails, "bertprobe" exits with EXIT_SUCCESS.

To fix this, simplify the code and return with -ENOMEM immediately if memory
allocation fails and explicitly set return value to EXIT_FAILURE if
"nc_b64enc_filename" returns 0.

While at it, rename the label "fail" to "done" as this is common cleanup
exit code for both EXIT_SUCCESS and EXIT_FAILURE.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-01-28 08:59:55 -08:00
Juro Bystricky 57db31a2c8 pythonprobe: don't use inotify
Don't wait for new payload via inotify, let systemd path unit
detect any new payloads in /usr/lib/telemetry/python and start
the pythonprobe service.
Also set the sticky bit for the above folder, preventing users to
modify permissions.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-01-23 20:56:21 -08:00
California Sullivan e20e572fad telemprobd,telempostd: greatly reduce timeouts
We don't need to stay resident for a static two hours. Instead, exit
cleanly after five minutes idle. This also involves reducing the default
and maximum values of spool_process_time, as it was previously set to 30
minutes.

telempostd required several changes with timers, whereas telemprobd only
required changing the values of spool_process_time and
TM_DAEMON_EXIT_TIME, and refreshing the timeout when handling a client.

Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
2019-01-20 21:21:50 -08:00
Juro Bystricky 6b44aa21c7 klogscanner: merge functionality with oopsprobe
The previous sequence of operations was:
1. klogscanner waits for/monitors kernel buffer for messages.
2. If they come, it creates a "raw" file in /var/cache/telemetry/oops.
3. Once this file is placed into /var/cache/telemetry/oops, it is detected by oopsprobe.
4. oopsprobe parses the "raw" file, creates new payload and and sends it to the backend.

This commit merges the operations:
1. klogscanner waits for/monitors kernel buffer for messages.
2. If they come, parses the klog buffer, creates new payload and and sends it to the backend.

While at it, also declare routines as "static" when possible.
Fixed a few missplaced memory freeing.
Simplify the main loop operations, move allocate/free buffer outside
of the loop.

Return SUCCESS if terminated by the signal SIGTERM. This is a clean
way to stop the service. This prevents spamming the journal (and sending
journal/error telemetry data via journalprobe) each time telemetry is
restarted.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-01-20 21:18:58 -08:00
Juro Bystricky dce6e0ee1d python-probe: Initial commit
The purpose of the python-probe is to monitor a specific folder
(as defined by PYTHON_TELEMETRY_DIR) for any Python generated reports.
If any such file is detected, it is sent to the telemetry backend
for analysis.

The reports are typically tracebacks of unhandled Python exceptions
caused by Python programs residing in /usr/bin. It is the responsibility
of Python to generate the traceback files and place them in
PYTHON_TELEMTRY_DIR. The probe will only detect the presence of the files
and send the content of the files as a payload.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-01-15 16:05:04 -07:00
Juro Bystricky d7c1603d12 tm_set_config_file: return status and call from all probes
This change was on a TODO list for a few years.
The function tm_set_config_file could silently fail as it did not
return any status. This forced implementing of all error checks by
the callers of this function.
The current implementation does its own error checks and string copying.
The function returns an error code if errors were encountered.
Since this is a library function, all callers needed to be modified as well.
However, the modifications are code simplifications so this is not too painful.
In addition, the change also affected library documentation as well (void -> int).

As a direct consequence, this change allows simple implementation of the command
line argument "--config_file" uniformly across all probes.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-01-09 11:55:39 -07:00
Alex Jaramillo bb6a08378c Fix for missing restart units
This change fixes a bug where the oops probe and journal probe are not
restarted when telemctl restart is executed.

Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
2019-01-04 13:47:06 -07:00
Juro Bystricky 196721b0a1 hello.c: various tweaks
1. Use stderr to print error messages
2. Rename the label 'fail' to 'done' as even non-failing code falls through the label
3. Consistently use EXIT_FAILURE/EXIT_SUCCESS, code sometimes used 1/0 instead.
4. free memory allocated via asprintf
5. Declare print_usage as 'static'

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2018-12-21 11:51:04 -07:00
Juro Bystricky fbc52d01bf bert_probe.c: remove unsupported cmdline option
There is no entry for 'H' command line option, yet the
getopt_long accepts it as a valid option.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2018-12-21 11:17:18 -07:00
Juro Bystricky 452c4d6ef5 Update docs/README.md
We switched from .md files to .rst files a while ago in v1.11.1.
Since then we genarate man pages using 'rst2man.py', hence the README.md
file needs to be modified to reflect this change.
(/usr/bin/ronn is actually not even availabel in CLR anymore)

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2018-12-21 11:16:53 -07:00
Juro Bystricky 5488d4f75a man pages: update
The .rst were updated. All man pages need to be rebuilt/updated as well.
(Mostly removing/replacing "telemd" references)

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2018-12-19 14:33:24 -07:00
ajch 30fe6b9de1 Adding build status badge from travis 2018-12-19 09:25:59 -08:00
Juro Bystricky a7db38d500 Remove redundant definition MAX_PAYLOAD_SIZE
The file common.h contained two definitions to specify the
maximum allowable payload:

define MAX_PAYLOAD_SIZE 8192
define MAX_PAYLOAD_LENGTH 8192

This patch removes the definition for MAX_PAYLOAD_SIZE and replaces all
occurences of MAX_PAYLOAD_SIZE with MAX_PAYLOAD_LENGTH.

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2018-12-19 10:20:37 -07:00
California Sullivan 4524205238 probes/telem_record_gen.c: fix possible segfault in print_record
When opt-out is enabled, the instanciate_record() function will return
-111 and the headers will not be allocated. Since print_record only
checks that instanciate_record does not return -1 before trying to go
through the headers, a segfault will occur.

This can be seen via:
$ sudo touch /etc/telemetrics/opt-out
$ telem-record-gen -c a/b/c -o -n -p 'payload goes here'

Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
2018-11-30 14:33:01 -08:00
Beth Dean a6ab9fab7e Docs: update .rst files to remove telemd references 2018-11-15 09:03:40 -08:00
Alex Jaramillo d8d3cdee49 Release v2.0.1
Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
2018-09-25 15:57:03 +00:00
Alex Jaramillo 839ee5c126 Retry logic for post failure on boot
This change alters the logic of post telemetry message to backend to
handle cases when the network or name resolution service is not
available when the daemon starts. Currently if a message is not
delivered it will be spooled and it should have to wait 900 seconds
(default value) for a future loop to process this message. With this
change when the daemon is started and is unable to deliver telemetry
messages it will atempt to re-send those messages using a t*t delay in
seconds up to t = 7 (or 1, 4, 9, 16, 25, 36, 49 seconds).

Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
2018-09-24 15:18:12 -07:00
Alex Jaramillo a08a89ab7f Fix send record check bug
This change fixes a bug where the telem-record-gen probe returns 1
though the execution of the probe was successful.

Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
2018-09-06 13:33:39 -07:00
Alex Jaramillo f81e4c7fba Telemetry refactoring
This change adds a daemon that handles telemetry record retention,
record reporting, and record limiting policies. This new daemon
receives records in a folder that is monitored by inotify.

Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
2018-09-06 09:57:01 -07:00
Alex Jaramillo 0d07d50a1f Addressing comments 2018-08-27 10:40:12 -07:00
Alex Jaramillo 3b096674dc Addresing comment 2018-08-27 10:40:12 -07:00
Alex Jaramillo c946c7dae9 Clip new line in model string 2018-08-27 10:40:12 -07:00
Alex Jaramillo 91a5c82bd3 Fix memory leak 2018-08-27 10:40:12 -07:00
Alex Jaramillo c02f74be5b Add print only option 2018-08-27 10:40:12 -07:00
Patrick McCarty 2082befdb7 Revert "Removing crash dump configuration"
Installing a crashprobe sysctl conf file by default is, in my opinion,
the most useful way to enable the crashprobe for Linux distributions.

The fact that Clear Linux does not use it anymore does not necessarily
dictate policy for telemetrics-client itself. My preference would be to
simply exclude the conf file in the Clear Linux telemetrics-client
package, since that is very easy to do with autospec. Also, the new
crash handling implementation in Clear Linux requires a systemd patch
that won't be upstreamed, so this is another good reason to install the
conf by default.

This reverts commit d1425173a9.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2018-07-30 16:20:05 -07:00
Patrick McCarty f2206d1cc8 crash probe: retry processing when errors occur
It is possible that transient errors may be raised when processing the
core file, so speculatively retry for any processing errors that appear
for the first run.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2018-07-27 20:54:49 -07:00
Alex Jaramillo d1425173a9 Removing crash dump configuration
This change removes the crash probe exclusive use of the core dump
reported by the kernel. Other component above telemetry will handle
this to properly report core dumps to telemetry (when available).

Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
2018-07-27 15:25:01 -07:00
Alex Jaramillo 98b36d5609 Release v1.16.2
This realease contains changes to add source file references as a
workaround for failing libcheck tests. This changes allows telemetry
client to be built using gcc8. This has to be fixed properly in the
future.

Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
2018-07-27 14:19:11 -07:00
Alex Jaramillo e59b75689e Release v1.16.1
This release contains:

* Fix for failing unit tests during build when the system where the
package is being built has a telemetry client running.

* Added documentation to probes.

* Documenting local debugging features.

Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
2018-05-14 14:39:30 +00:00
Alex Jaramillo e301dad48e Fix for journal tmp directory
This change fixes a bug where journal unit tests fail if the system
where the code is build has telemetry running.

Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
2018-05-14 07:22:39 -07:00
Alex Jaramillo 16d8abae81 Bumping libcheck version to 0.12
Bumping libcheck version to 0.12 this version provides additional assertions.

Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
2018-05-14 07:22:39 -07:00
avjarami 4aa1f9f3c4 Adding documentation for probes
Including description of collected metadata and specific information
about what data is collected by default probes that are provided by
telemetry client.

Signed-off-by: avjarami <alex.v.jaramillo@intel.com>
2018-04-11 09:19:41 -07:00
avjarami af35ee3a9d Docs for new features
* Added brief description of new configuration values.
* Documenting new header.
* Describing use of features for local debug.

Signed-off-by: avjarami <alex.v.jaramillo@intel.com>
2018-04-10 21:22:22 -07:00
94 changed files with 4290 additions and 2948 deletions
+29
View File
@@ -0,0 +1,29 @@
name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install dependencies
run: sudo apt-get install libcurl4-gnutls-dev valgrind libelf-dev libdw-dev
- name: install check
run: wget https://github.com/libcheck/check/releases/download/0.12.0/check-0.12.0.tar.gz &&
tar xf check-0.12.0.tar.gz &&
pushd check-0.12.0 &&
./configure --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu &&
make -j8 && sudo make install && popd
- name: autogen
run: sh autogen.sh
- name: configure
run: ./configure
- name: make
run: make -j8
- name: check
run: make check
- name: make distcheck
run: make distcheck
+5 -3
View File
@@ -33,17 +33,16 @@ build-aux/m4/ltversion.m4
*.trs *.trs
/cscope.* /cscope.*
/tags /tags
telemd telemprobd
telempostd
autoscan.log autoscan.log
configure.scan configure.scan
tprobe tprobe
hprobe hprobe
bertprobe
crashprobe crashprobe
journalprobe journalprobe
telem-record-gen telem-record-gen
klogscanner klogscanner
oopsprobe
pstoreclean pstoreclean
pstoreprobe pstoreprobe
telem_journal telem_journal
@@ -55,7 +54,10 @@ src/gcc.out
tests/demo tests/demo
tests/check_config tests/check_config
tests/check_daemon tests/check_daemon
tests/check_journal
tests/check_libtelemetry tests/check_libtelemetry
tests/check_postd
tests/check_probd
tests/check_probes tests/check_probes
src/data/*.path src/data/*.path
src/data/*.service src/data/*.service
+3
View File
@@ -3,3 +3,6 @@ Patrick McCarty <patrick.mccarty@intel.com>
Rob Nesius <robert.a.nesius@intel.com> Rob Nesius <robert.a.nesius@intel.com>
Gabrielle N. Beyer <gabrielle.n.beyer@intel.com> Gabrielle N. Beyer <gabrielle.n.beyer@intel.com>
Pam Leonard <pam.leonard@intel.com> Pam Leonard <pam.leonard@intel.com>
Alex V. Jaramillo <alex.v.jaramillo@intel.com>
California Sullivan <california.l.sullivan@intel.com>
Juro Bystricky <juro.bystricky@intel.com>
-1
View File
@@ -15,7 +15,6 @@ DISTCHECK_CONFIGURE_FLAGS = \
include $(top_srcdir)/build-aux/make/cflags.make include $(top_srcdir)/build-aux/make/cflags.make
include $(top_srcdir)/build-aux/make/ldflags.make include $(top_srcdir)/build-aux/make/ldflags.make
include $(top_srcdir)/docs/local.mk include $(top_srcdir)/docs/local.mk
include $(top_srcdir)/scripts/local.mk
include $(top_srcdir)/src/local.mk include $(top_srcdir)/src/local.mk
include $(top_srcdir)/src/data/local.mk include $(top_srcdir)/src/data/local.mk
include $(top_srcdir)/src/nica/local.mk include $(top_srcdir)/src/nica/local.mk
+98 -32
View File
@@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.org/clearlinux/telemetrics-client.svg?branch=master)](https://travis-ci.org/clearlinux/telemetrics-client)
Telemetrics-client Telemetrics-client
================== ==================
@@ -6,12 +8,15 @@ solution for Linux-based operating systems. Specifically, the front end
component includes: component includes:
- telemetrics probes that collect specific types of data from the operating - telemetrics probes that collect specific types of data from the operating
system. system. For more info on probes go [here](./src/probes).
- a library, libtelemetry, that telemetrics probes use to create telemetrics - a library, libtelemetry, that telemetrics probes use to create telemetrics
records and send them to the daemon for further processing. records and send them to the daemon for further processing.
- a daemon, telemd, that prepares the records to send to a telemetrics server - telemprobd, a daemon that handles communication with probes and forwards records
to a second daemon.
- telempostd, this daemon sends telemetry records to a telemetrics server
(not included in this source tree), or spools the records on disk in case (not included in this source tree), or spools the records on disk in case
it's unable to successfully deliver them. it's unable to successfully deliver them.
@@ -30,7 +35,7 @@ Build dependencies
- elfutils, which provides libelf and libdwfl libraries.. - elfutils, which provides libelf and libdwfl libraries..
- (optional) libsystemd, for syslog-style logging to the systemd journal, and - (optional) libsystemd, for syslog-style logging to the systemd journal, and
socket/path activation of telemd by systemd. socket/path activation of telemprobd and telempostd by systemd.
Build and installation Build and installation
@@ -60,54 +65,71 @@ and modify the /etc version.
Descriptions of config options are listed below in the Usage section. Descriptions of config options are listed below in the Usage section.
Starting the daemon Starting the client
--------------------- ---------------------
To use the telemetrics client a one time explicit ```opt-in``` is required (this is
Method 1 (recommended): also true when the contents of the directory ```/etc/telemetrics/``` are removed).
To opt-in to telemetrics-client use the command:
```{r, engine='bash', count_lines} ```{r, engine='bash', count_lines}
systemctl start telemd.socket telemd.path telemctl opt-in
``` ```
**Note** this is a change from previous versions, before 2.3.0 installation of
telemetrics client was enough to enable the client and if needed the client could
be disabled with ```telemctl opt-out```. This command in previous versions created
```/etc/telemetrics/opt-out``` file (after telemetrics-client version 2.3.0 this
file can be safely removed).
If the client was compiled with systemd support the respective activation units
should be already in place (after a ```make install``` invocation). In this case
the client wil start automatically when data is made available to it. i.e. when
executing an ```/usr/bin/hprobe``` command. Otherwise use the following command:
```{r, engine='bash', count_lines}
telemctl start
```
Note: the above invocation technically readies the service for both socket and Note: the above invocation technically readies the service for both socket and
path activation, so you may not see the daemon start right away. path activation, so you may not see an "active" status. To check the status of
telemetrics-client use:
Method 2:
```{r, engine='bash', count_lines} ```{r, engine='bash', count_lines}
systemctl start telemd.service telemctl is-active
telemprobd : active
telempostd : active
``` ```
Method 3: Starting individual service units ```telempostd.service``` or ```telemeprobd.service```
is discouraged.
```{r, engine='bash', count_lines} Configure the client to autostart at boot
telemd &
```
Configure the daemon to autostart at boot
--------------------- ---------------------
As longs as the first time ```opt-in``` was performed, the following methods are valid:
Method 1 (recommended): Method 1 (recommended):
Enable the socket-activated service and path unit: Enable the socket-activated service and path unit:
```{r, engine='bash', count_lines} ```{r, engine='bash', count_lines}
systemctl enable telemd.socket telemd.path systemctl enable telemprobd.socket telempostd.path
``` ```
Method 2: Method 2:
Enable the service itself, which automatically enables the socket and path Enable services, which automatically enables the socket and path
units as well: units as well:
```{r, engine='bash', count_lines} ```{r, engine='bash', count_lines}
systemctl enable telemd.service systemctl enable telemprobd.service
systemctl enable telempostd.service
``` ```
Usage Usage
--------------------- ---------------------
Once the daemon is running, the telemetrics probes will be ready to use. Once the client is running, the telemetrics probes will be ready to use.
Available probes: Available probes:
@@ -117,11 +139,11 @@ that telemetrics-client works. It sends a "hello world" record to the server.
* crash probe: A handler for core files that sends the corresponding backtraces * crash probe: A handler for core files that sends the corresponding backtraces
to the server. to the server.
The daemon uses the following configuration options from the configuration file: The client uses the following configuration options from the configuration file:
* server: This specifies the web server that the daemon sends the telemetry records to * server: This specifies the web server that the telempostd sends the telemetry records to
* socket_path: This specifies the path of the unix domain socket that the * socket_path: This specifies the path of the unix domain socket that the
daemon listens on for connections from the probes telemprobd listens on for connections from the probes
* spool_dir: This config option is related to spooling. If the daemon is not * spool_dir: This config option is related to spooling. If the daemon is not
able to send the telemetry records to the backend server due to reasons such able to send the telemetry records to the backend server due to reasons such
as the network availability, then it stores the records in a spool directory. as the network availability, then it stores the records in a spool directory.
@@ -131,7 +153,7 @@ The daemon uses the following configuration options from the configuration file:
```{r, engine='bash', count_lines} ```{r, engine='bash', count_lines}
mkdir -p /var/spool/telemetry mkdir -p /var/spool/telemetry
chown -R telemetry:telemetry /var/spool/telemetry chown -R telemetry:telemetry /var/spool/telemetry
systemctl restart telemd.service systemctl restart telemprobd.service
``` ```
* record_expiry: This is the time in minutes after which the records in the * record_expiry: This is the time in minutes after which the records in the
@@ -178,6 +200,45 @@ The daemon uses the following configuration options from the configuration file:
telemetry records locally only. telemetry records locally only.
Data reported
---------------------
The data reported by the telemetry client could be understood as two main sets:
metadata and a payload.
The metadata is used to report details of a machine's architecture. The
following are the metadata values currently collected (Record Format Version 4):
* record_format_version: version of the record, currently is 'Version 4'. This
value changes when new metadata is added.
* classification: this field is used to identify the type of record sent by a
specific client probe; classifications use the format DOMAIN/PROBE/REST, where
DOMAIN is the vendor of the probe, PROBE is the probe name, and REST is a
probe-defined field to classify what is contained in the payload.
* severity: this is an integer value between 1 and 4 where 1 is "low" and 4 is
"critical"
* machine_id: a machine identifier that is rotate every 3 days for privacy reasons.
* creation_timestamp: timestamp when the record was collected.
* arch: a string describing machine architecture i.e. 'x86_64'.
* host_type: a string with the combination of 'System Vendor', 'Product Name', and
'Product Version' read from dmi file system.
* build: OS build number.
* kernel_version: Kernel version.
* payload_format_version: version of the payload, currently is 'Version 1'.
* system_name: the value after 'ID=' from '/etc/os-release' (or distribution
provided folder)
* board_name: a string read from dmi file system that combines 'Board Name' and
'Board Vendor'.
* cpu_model: cpu model name extracted from '/proc/cpuinfo'.
* bios_version: BIOS version.
* event_id: an id to group multiple records if these were generated by a single
event occurrence.
The payload as mentioned above is reported by probes. The telemetry library adds
the metadata to the payload (done programatically when using library API) for
more information about probes go [here](./src/probes).
Machine id Machine id
--------------------- ---------------------
@@ -192,17 +253,17 @@ you can opt in by creating a static machine id file named
# echo "unique machine ID" > /etc/telemetrics/opt-in-static-machine-id # echo "unique machine ID" > /etc/telemetrics/opt-in-static-machine-id
``` ```
The telemetry daemon reads, at most, the first 32 characters from this file The telemetry client reads, at most, the first 32 characters from this file
uses it for the machine id. You can put a string like 'my-machine-name' in this uses it for the machine id. You can put a string like 'my-machine-name' in this
file to easily identify your machine. Restart telemd for the machine id file to easily identify your machine. Restart telemprobd for the machine id
changes to take effect by running: changes to take effect by running:
```{r, engine='bash', count_lines} ```{r, engine='bash', count_lines}
# systemctl restart telemd.service # systemctl restart telemprobd.service
``` ```
You can switch back to the rotating machine id by deleting the override file You can switch back to the rotating machine id by deleting the override file
and restarting the daemon. You can do a quick test to check that your and restarting the client. You can do a quick test to check that your
machine-id has changed by running "hprobe" and verifying that a record has machine-id has changed by running "hprobe" and verifying that a record has
landed on your backend telemetrics server, with the specified machine id. landed on your backend telemetrics server, with the specified machine id.
@@ -232,18 +293,18 @@ developers not always have access to the backend in these case users can leverag
features added for local debugging. The following is a list of steps to enable features added for local debugging. The following is a list of steps to enable
local debug: local debug:
* *Enabling record retention*: this step configures telemd to keep * *Enabling record retention*: this step configures telempostd to keep
copies of telemetry records locally. To enable record retention set the value of copies of telemetry records locally. To enable record retention set the value of
```record_retention_enabled``` from ```false``` to ```true```. Optionally set ```record_retention_enabled``` from ```false``` to ```true```. Optionally set
```record_server_delivery_enabled`` to ```false``` to keep records local only. ```record_server_delivery_enabled`` to ```false``` to keep records local only.
Remember to restart the daemon after configuration values are updated Remember to restart the client after configuration values are updated
(```telemctl restart```). (```telemctl restart```).
* *Creating a record*: run ```hprobe``` command to create a record for the purposes * *Creating a record*: run ```hprobe``` command to create a record for the purposes
of this step by step guide. Once we have the record or records that you need to of this step by step guide. Once we have the record or records that you need to
capture locally you can display the data. capture locally you can display the data.
* *Displaying record metadata*: telemd keeps metadata of any valid record, * *Displaying record metadata*: telempostd keeps metadata of any valid record,
to display this data a new option to telemctl was added ```telemctl journal```. to display this data a new option to telemctl was added ```telemctl journal```.
Assuming that the last record created was the record from previous step `hprobe` we Assuming that the last record created was the record from previous step `hprobe` we
can use `tail -n 1` to print the last created record only, i.e. can use `tail -n 1` to print the last created record only, i.e.
@@ -271,3 +332,8 @@ $ sudo telemctl journal --record_id a19a0d41ba16788881e274b19b8a1be4 --include_r
$ org.clearlinux/hello/world Mon 2018-04-02 17:48:01 UTC a19a0d41ba16788881e274b19b8a1be4 5de9de8d5f3c6a7d445d75ba01cc3322 60c014cd-4693-40f1-b334-548cd932949b $ org.clearlinux/hello/world Mon 2018-04-02 17:48:01 UTC a19a0d41ba16788881e274b19b8a1be4 5de9de8d5f3c6a7d445d75ba01cc3322 60c014cd-4693-40f1-b334-548cd932949b
$ hello $ hello
``` ```
## Security Disclosures
To report a security issue or receive security advisories please follow procedures
in this [link](https://01.org/security).
-24
View File
@@ -1,24 +0,0 @@
Build
=====
- make sure our AM_CFLAGS do not break older compilers, e.g. compilers
that do not support -fstack-protector-strong
Probes
======
- add pstore probe (Archana)
- journal probe: detect kernel oopses (Patrick)
- crash probe: add function/register value info to crash payloads (Patrick)
- crash probe: if some symbols are missing from backtraces, attempt the
debuginfo lookup again after a certain timeout (Patrick)
- crash probe: for non-debug builds, ensure that we are invoked by the kernel,
and write tests to verify that attempts to run the crash probe for non-debug
builds fail. (Patrick)
Library
=======
- add API for structured payloads
Other
=====
- set fixed size for system-wide core file ulimit, and afterward notify QA team
to update the BAT test that checks for the ulimit value.
+6 -3
View File
@@ -12,7 +12,10 @@ AM_CFLAGS = \
-Wunreachable-code \ -Wunreachable-code \
-funsigned-char \ -funsigned-char \
-fPIE \ -fPIE \
-fPIC -fPIC \
-fno-strict-overflow \
-fno-delete-null-pointer-checks \
-fwrapv
AM_CPPFLAGS = \ AM_CPPFLAGS = \
-D_FORTIFY_SOURCE=2 \ -D_FORTIFY_SOURCE=2 \
@@ -24,8 +27,8 @@ AM_CPPFLAGS = \
-DABSTOPSRCDIR=\"$(abs_top_srcdir)\" \ -DABSTOPSRCDIR=\"$(abs_top_srcdir)\" \
-DDATADIR=\"$(datadir)\" \ -DDATADIR=\"$(datadir)\" \
-DLOCALSTATEDIR=\"$(localstatedir)\" \ -DLOCALSTATEDIR=\"$(localstatedir)\" \
-DKERNELOOPSDIR=\"$(localstatedir)/cache/telemetry/oops\" \
-DPSTOREDIR=\"$(localstatedir)/cache/telemetry/pstore\" \ -DPSTOREDIR=\"$(localstatedir)/cache/telemetry/pstore\" \
-DTESTOOPSDIR=\"$(top_srcdir)/tests/oops_test_files\" -DTESTOOPSDIR=\"$(top_srcdir)/tests/oops_test_files\" \
-DBACKEND_ADDR=\"$(BACKEND_ADDR)\"
# vim: filetype=automake tabstop=8 shiftwidth=8 noexpandtab # vim: filetype=automake tabstop=8 shiftwidth=8 noexpandtab
+8 -3
View File
@@ -2,13 +2,13 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69]) AC_PREREQ([2.69])
AC_INIT([telemetrics-client], [1.16.0], [https://clearlinux.org/]) AC_INIT([telemetrics-client], [2.3.2], [https://clearlinux.org/])
AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([1.14 -Wall -Werror -Wno-extra-portability foreign subdir-objects]) AM_INIT_AUTOMAKE([1.14 -Wall -Werror -Wno-extra-portability foreign subdir-objects])
AM_SILENT_RULES([yes]) AM_SILENT_RULES([yes])
LT_INIT([disable-static]) LT_INIT([disable-static])
AC_CONFIG_MACRO_DIRS([build-aux/m4]) AC_CONFIG_MACRO_DIRS([build-aux/m4])
AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_SRCDIR([src/probe.c])
AC_CONFIG_HEADERS([config.h]) AC_CONFIG_HEADERS([config.h])
# Checks for programs. # Checks for programs.
@@ -23,7 +23,7 @@ AC_PROG_MAKE_SET
# Checks for libraries. # Checks for libraries.
# check >= 0.9.12 is required for TAP output # check >= 0.9.12 is required for TAP output
PKG_CHECK_MODULES([CHECK], [check >= 0.9.12]) PKG_CHECK_MODULES([CHECK], [check >= 0.12])
PKG_CHECK_MODULES([CURL], [libcurl]) PKG_CHECK_MODULES([CURL], [libcurl])
AC_CHECK_LIB([elf], [elf_begin], [have_elflib=yes], [AC_MSG_ERROR([Unable to find libelf from elfutils])]) AC_CHECK_LIB([elf], [elf_begin], [have_elflib=yes], [AC_MSG_ERROR([Unable to find libelf from elfutils])])
AC_CHECK_LIB([dw], [dwfl_begin], [have_dwlib=yes], [AC_MSG_ERROR([Unable to find libdw from elfutils])]) AC_CHECK_LIB([dw], [dwfl_begin], [have_dwlib=yes], [AC_MSG_ERROR([Unable to find libdw from elfutils])])
@@ -119,6 +119,11 @@ AC_ARG_WITH([loglevel], AS_HELP_STRING([--with-loglevel=NUM],
[loglevel=5]) [loglevel=5])
AC_DEFINE_UNQUOTED([MAX_LOG_LEVEL], [${loglevel}], [Maximum log level for binaries]) AC_DEFINE_UNQUOTED([MAX_LOG_LEVEL], [${loglevel}], [Maximum log level for binaries])
AC_ARG_WITH([backendserveraddr], AS_HELP_STRING([--with-backendserveraddr=URI],
[uri to telemetrics backend server @<:@default=https://clr.telemetry.intel.com/v2/collector@:>@]), [backendaddr=${withval}])
test -z "${backendaddr}" && backendaddr=https://clr.telemetry.intel.com/v2/collector
AC_SUBST(BACKEND_ADDR, [${backendaddr}])
AC_ARG_ENABLE([logtype], AS_HELP_STRING([--enable-logtype], AC_ARG_ENABLE([logtype], AS_HELP_STRING([--enable-logtype],
[Vector for logging: stderr (default), syslog, systemd]), [Vector for logging: stderr (default), syslog, systemd]),
[case ${enableval} in [case ${enableval} in
+3 -3
View File
@@ -1,9 +1,9 @@
## Notes on manual pages ## Notes on manual pages
The manual pages are generated using `ronn(1)`. To recreate them, The manual pages are generated using `rst2man.py`. To recreate them,
run `make manpages` in the toplevel folder. If you want to edit run `make manpages` in the toplevel folder. If you want to edit
the documentation for upstream changes, make sure to edit the `*.md` the documentation for upstream changes, make sure to edit the `*.rst`
files and not the shipped nroff output files. files and not the shipped nroff output files.
+2 -1
View File
@@ -1,6 +1,7 @@
MANPAGES = \ MANPAGES = \
docs/man/telemctl.1 \ docs/man/telemctl.1 \
docs/man/telemd.1 \ docs/man/telemprobd.1 \
docs/man/telempostd.1 \
docs/man/telem-record-gen.1 \ docs/man/telem-record-gen.1 \
docs/man/telemetry.3 \ docs/man/telemetry.3 \
docs/man/telemetrics.conf.5 docs/man/telemetrics.conf.5
+6 -3
View File
@@ -35,10 +35,10 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
\fBtelem\-record\-gen\fP <options> \fBtelem\-record\-gen\fP <options>
.SH DESCRIPTION .SH DESCRIPTION
.sp .sp
Generate and attempt to send a telemetry record to \fBtelemd\fP(1). This Generate and attempt to send a telemetry record to \fBtelemprobd\fP(1). This
program can be used to create a telemetry record from a shell script program can be used to create a telemetry record from a shell script
or from another program using e.g. \fBsystem()\fP\&. The program connects or from another program using e.g. \fBsystem()\fP\&. The program connects
to a local \fBtelemd\fP(1) daemon to spool the record for delivery to to a local \fBtelemprobd\fP(1) daemon to spool the record for delivery to
the actual collection service. the actual collection service.
.sp .sp
The payload can be provided as standard input, as a file with the The payload can be provided as standard input, as a file with the
@@ -77,6 +77,9 @@ File to read payload from.
.IP \(bu 2 .IP \(bu 2
\fB\-R\fP, \fB\-\-record\-version\fP <version>: \fB\-R\fP, \fB\-\-record\-version\fP <version>:
Version number for format of payload (default 1). Version number for format of payload (default 1).
.IP \(bu 2
\fB\-e\fP, \fB\-\-event\-id\fP <version>:
Event id to use in the record. If not provided a randomly generated id will be assigned to record.
.UNINDENT .UNINDENT
.UNINDENT .UNINDENT
.UNINDENT .UNINDENT
@@ -86,7 +89,7 @@ Version number for format of payload (default 1).
.SH SEE ALSO .SH SEE ALSO
.INDENT 0.0 .INDENT 0.0
.IP \(bu 2 .IP \(bu 2
\fBtelemd\fP(1) \fBtelemprobd\fP(1)
.IP \(bu 2 .IP \(bu 2
\fI\%https://github.com/clearlinux/telemetrics\-client\fP \fI\%https://github.com/clearlinux/telemetrics\-client\fP
.IP \(bu 2 .IP \(bu 2
+7 -4
View File
@@ -19,10 +19,10 @@ SYNOPSIS
DESCRIPTION DESCRIPTION
=========== ===========
Generate and attempt to send a telemetry record to ``telemd``\(1). This Generate and attempt to send a telemetry record to ``telemprobd``\(1). This
program can be used to create a telemetry record from a shell script program can be used to create a telemetry record from a shell script
or from another program using e.g. ``system()``. The program connects or from another program using e.g. ``system()``. The program connects
to a local ``telemd``\(1) daemon to spool the record for delivery to to a local ``telemprobd``\(1) daemon to spool the record for delivery to
the actual collection service. the actual collection service.
The payload can be provided as standard input, as a file with the The payload can be provided as standard input, as a file with the
@@ -62,6 +62,10 @@ OPTIONS
* ``-R``, ``--record-version`` <version>: * ``-R``, ``--record-version`` <version>:
Version number for format of payload (default 1). Version number for format of payload (default 1).
* ``-e``, ``--event-id`` <version>:
Event id to use in the record. If not provided a randomly generated id will be assigned to record.
RETURN VALUES RETURN VALUES
============= =============
@@ -72,7 +76,6 @@ RETURN VALUES
SEE ALSO SEE ALSO
======== ========
* ``telemd``\(1) * ``telemprobd``\(1)
* https://github.com/clearlinux/telemetrics-client * https://github.com/clearlinux/telemetrics-client
* https://clearlinux.org/documentation/ * https://clearlinux.org/documentation/
+11 -8
View File
@@ -34,12 +34,11 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
.sp .sp
\fBtelemctl\fP \fBtelemctl\fP
.sp .sp
\fB/etc/telemetrics/opt\-out\fP \fB/etc/telemetrics/opt\-in\fP
.SH DESCRIPTION .SH DESCRIPTION
.sp .sp
Control actions for telemetry services. The command can be used to start, Control actions for telemetry services. The command can be used to start,
restart, or stop \fBtelemd\fP(1), or to opt\-in or opt\-out of telemetry delivery restart, or stop \fBtelemprobd\fP(1) and \fBtelempostd\fP(1), or to opt\-in or opt\-out of telemetry delivery of records to a central telemetry service.
of records to a central telemetry service.
.SH OPTIONS .SH OPTIONS
.INDENT 0.0 .INDENT 0.0
.INDENT 3.5 .INDENT 3.5
@@ -49,12 +48,16 @@ of records to a central telemetry service.
Starts, stops or restarts all running telemetry services. Starts, stops or restarts all running telemetry services.
.IP \(bu 2 .IP \(bu 2
\fBopt\-in\fP: \fBopt\-in\fP:
Opts in to telemetry, and starts telemetry services. The opt\-out file Opts in to telemetry and the opt\-in file \fB/etc/telemetrics/opt\-in\fP
\fB/etc/telemetrics/opt\-out\fP is removed. is created. Note: this is a one time required operation before
telemetry can be used the first time.
.IP \(bu 2 .IP \(bu 2
\fBopt\-out\fP: \fBopt\-out\fP:
Opts out of telemetry, and stops telemetry services. The opt\-out file Opts out of telemetry, and stops telemetry services. The opt\-in file
\fB/etc/telemetrics/opt\-out\fP is created. \fB/etc/telemetrics/opt\-in\fP is deleted.
.IP \(bu 2
\fBis\-active\fP:
Checks if telemetry client daemons are active (telemprobd and telempostd).
.UNINDENT .UNINDENT
.UNINDENT .UNINDENT
.UNINDENT .UNINDENT
@@ -64,7 +67,7 @@ Opts out of telemetry, and stops telemetry services. The opt\-out file
.SH SEE ALSO .SH SEE ALSO
.INDENT 0.0 .INDENT 0.0
.IP \(bu 2 .IP \(bu 2
\fBtelemd\fP(1) \fBtelemprobd\fP(1)
.IP \(bu 2 .IP \(bu 2
\fI\%https://github.com/clearlinux/telemetrics\-client\fP \fI\%https://github.com/clearlinux/telemetrics\-client\fP
.IP \(bu 2 .IP \(bu 2
+13 -11
View File
@@ -15,15 +15,14 @@ SYNOPSIS
``telemctl`` ``telemctl``
``/etc/telemetrics/opt-out`` ``/etc/telemetrics/opt-in``
DESCRIPTION DESCRIPTION
=========== ===========
Control actions for telemetry services. The command can be used to start, Control actions for telemetry services. The command can be used to start,
restart, or stop ``telemd``\(1), or to opt-in or opt-out of telemetry delivery restart, or stop ``telemprobd``\(1) and ``telempostd``\(1), or to opt-in or opt-out of telemetry delivery of records to a central telemetry service.
of records to a central telemetry service.
OPTIONS OPTIONS
@@ -32,13 +31,17 @@ OPTIONS
* ``start``|``stop``|``restart``: * ``start``|``stop``|``restart``:
Starts, stops or restarts all running telemetry services. Starts, stops or restarts all running telemetry services.
* ``opt-in``: * ``opt-in``:
Opts in to telemetry, and starts telemetry services. The opt-out file Opts in to telemetry and the opt-in file ``/etc/telemetrics/opt-in``
``/etc/telemetrics/opt-out`` is removed. is created. Note: this is a one time required operation before
telemetry can be used the first time.
* ``opt-out``: * ``opt-out``:
Opts out of telemetry, and stops telemetry services. The opt-out file Opts out of telemetry, and stops telemetry services. The opt-in file
``/etc/telemetrics/opt-out`` is created. ``/etc/telemetrics/opt-in`` is deleted.
* ``is-active``:
Checks if telemetry client daemons are active (telemprobd and telempostd).
RETURN VALUES RETURN VALUES
@@ -50,7 +53,6 @@ RETURN VALUES
SEE ALSO SEE ALSO
======== ========
* ``telemd``\(1) * ``telemprobd``\(1)
* https://github.com/clearlinux/telemetrics-client * https://github.com/clearlinux/telemetrics-client
* https://clearlinux.org/documentation/ * https://clearlinux.org/documentation/
+6 -5
View File
@@ -37,8 +37,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
\fB/usr/share/defaults/telemetrics/telemetrics.conf\fP \fB/usr/share/defaults/telemetrics/telemetrics.conf\fP
.SH DESCRIPTION .SH DESCRIPTION
.sp .sp
This file contains configuration parameters for the \fBtelemd\fP(1) telemetry This file contains configuration parameters for the \fBtelemprobd\fP(1) and \fBtelempostd\fP(1) telemetry service daemons. The daemon reads this file at startup if it exists.
service daemon. The daemon reads this file at startup if it exists.
.SH SYNTAX .SH SYNTAX
.sp .sp
The configuration file contains \fBkey=value\fP pairs, formatted as plain The configuration file contains \fBkey=value\fP pairs, formatted as plain
@@ -54,7 +53,7 @@ Server URL including protocol designator.
.IP \(bu 2 .IP \(bu 2
\fBsocket_path=<path>\fP \fBsocket_path=<path>\fP
.sp .sp
Path to the socket that \fItelemd\fP will listen on. Path to the socket that \fItelemprobd\fP will listen on.
.IP \(bu 2 .IP \(bu 2
\fBcainfo=<path>\fP \fBcainfo=<path>\fP
.sp .sp
@@ -82,7 +81,7 @@ and not the actual size of the record itself.
.IP \(bu 2 .IP \(bu 2
\fBspool_process_time=<seconds>\fP \fBspool_process_time=<seconds>\fP
.sp .sp
Time in seconds for processing spool. Valid range: 120..3600. Values Time in seconds for processing spool. Valid range: 120..300. Values
outside this range are clamped. outside this range are clamped.
.IP \(bu 2 .IP \(bu 2
\fBrate_limit_enabled=<true|false>\fP \fBrate_limit_enabled=<true|false>\fP
@@ -114,7 +113,9 @@ delivery over network. Valid stategies: \fBspool\fP, \fBdrop\fP\&.
.SH SEE ALSO .SH SEE ALSO
.INDENT 0.0 .INDENT 0.0
.IP \(bu 2 .IP \(bu 2
\fBtelemd\fP(1) \fBtelemprobd\fP(1)
.IP \(bu 2
\fBtelempostd\fP(1)
.IP \(bu 2 .IP \(bu 2
\fI\%https://github.com/clearlinux/telemetrics\-client\fP \fI\%https://github.com/clearlinux/telemetrics\-client\fP
.IP \(bu 2 .IP \(bu 2
+5 -6
View File
@@ -21,8 +21,7 @@ SYNOPSIS
DESCRIPTION DESCRIPTION
=========== ===========
This file contains configuration parameters for the ``telemd``\(1) telemetry This file contains configuration parameters for the ``telemprobd``\(1) and ``telempostd``\(1) telemetry service daemons. The daemon reads this file at startup if it exists.
service daemon. The daemon reads this file at startup if it exists.
SYNTAX SYNTAX
@@ -43,7 +42,7 @@ OPTIONS
- ``socket_path=<path>`` - ``socket_path=<path>``
Path to the socket that `telemd` will listen on. Path to the socket that `telemprobd` will listen on.
- ``cainfo=<path>`` - ``cainfo=<path>``
@@ -71,7 +70,7 @@ OPTIONS
- ``spool_process_time=<seconds>`` - ``spool_process_time=<seconds>``
Time in seconds for processing spool. Valid range: 120..3600. Values Time in seconds for processing spool. Valid range: 120..300. Values
outside this range are clamped. outside this range are clamped.
- ``rate_limit_enabled=<true|false>`` - ``rate_limit_enabled=<true|false>``
@@ -104,7 +103,7 @@ OPTIONS
SEE ALSO SEE ALSO
======== ========
* ``telemd``\(1) * ``telemprobd``\(1)
* ``telempostd``\(1)
* https://github.com/clearlinux/telemetrics-client * https://github.com/clearlinux/telemetrics-client
* https://clearlinux.org/documentation/ * https://clearlinux.org/documentation/
+12 -6
View File
@@ -44,11 +44,13 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
.sp .sp
\fBvoid tm_free_record(struct telem_ref *t_ref)\fP \fBvoid tm_free_record(struct telem_ref *t_ref)\fP
.sp .sp
\fBvoid tm_set_config_file(char *c_file)\fP \fBint tm_set_config_file(const char *c_file)\fP
.sp
\fBint tm_is_opted_in(void)\fP
.SH DESCRIPTION .SH DESCRIPTION
.sp .sp
The functions in the telemetry library facilitate the delivery of The functions in the telemetry library facilitate the delivery of
telemetry data to the \fBtelemd\fP(1) service. telemetry data to the \fBtelemprobd\fP(1) service.
.sp .sp
The function \fBtm_create_record()\fP initializes a telemetry record and The function \fBtm_create_record()\fP initializes a telemetry record and
sets the severity and classification of that record, as well as the sets the severity and classification of that record, as well as the
@@ -60,19 +62,23 @@ The function \fBtm_set_payload()\fP attaches the provided telemetry record
data to the telemetry record. The current maximum payload size is 8192b. data to the telemetry record. The current maximum payload size is 8192b.
.sp .sp
The function \fBtm_send_record()\fP delivers the record to the local The function \fBtm_send_record()\fP delivers the record to the local
\fBtelemd\fP(1) service. \fBtelemprobd\fP(1) service.
.sp .sp
The function \fBtm_set_config_file()\fP can be used to provide an alternate The function \fBtm_set_config_file()\fP can be used to provide an alternate
configuration path to the telemetry library. configuration path to the telemetry library.
.sp
\fBtm_is_opted_in\fP is a utility provided to check if the one time opt\-in
has been performed.
.SH RETURN VALUES .SH RETURN VALUES
.sp .sp
All these functions return \fB0\fP on success, or a non\-zero return value All these functions return \fB0\fP on success, or a non\-zero return value
if an error occurred. The functions \fBtm_free_record()\fP and \fBtm_set_config_file()\fP if an error occurred. The function \fBtm_free_record()\fP does not return
do not return any values. any value. \fBtm_is_opted_in\fP returns \fB1\fP when telemetry is opted\-in
otherwise \fB0\fP\&.
.SH SEE ALSO .SH SEE ALSO
.INDENT 0.0 .INDENT 0.0
.IP \(bu 2 .IP \(bu 2
\fBtelemd\fP(1) \fBtelemprobd\fP(1)
.IP \(bu 2 .IP \(bu 2
\fI\%https://github.com/clearlinux/telemetrics\-client\fP \fI\%https://github.com/clearlinux/telemetrics\-client\fP
.IP \(bu 2 .IP \(bu 2
+13 -9
View File
@@ -14,9 +14,9 @@ SYNOPSIS
======== ========
``#include "telemetry.h"`` ``#include "telemetry.h"``
``struct telem_ref { struct telem_record *record; };`` ``struct telem_ref { struct telem_record *record; };``
``int tm_create_record(struct telem_ref **t_ref, uint32_t severity, char *classification, uint32_t payload_version)`` ``int tm_create_record(struct telem_ref **t_ref, uint32_t severity, char *classification, uint32_t payload_version)``
``int tm_set_payload(struct telem_ref *t_ref, char *payload)`` ``int tm_set_payload(struct telem_ref *t_ref, char *payload)``
@@ -25,14 +25,16 @@ SYNOPSIS
``void tm_free_record(struct telem_ref *t_ref)`` ``void tm_free_record(struct telem_ref *t_ref)``
``void tm_set_config_file(char *c_file)`` ``int tm_set_config_file(const char *c_file)``
``int tm_is_opted_in(void)``
DESCRIPTION DESCRIPTION
=========== ===========
The functions in the telemetry library facilitate the delivery of The functions in the telemetry library facilitate the delivery of
telemetry data to the ``telemd``\(1) service. telemetry data to the ``telemprobd``\(1) service.
The function ``tm_create_record()`` initializes a telemetry record and The function ``tm_create_record()`` initializes a telemetry record and
sets the severity and classification of that record, as well as the sets the severity and classification of that record, as well as the
@@ -44,24 +46,26 @@ The function ``tm_set_payload()`` attaches the provided telemetry record
data to the telemetry record. The current maximum payload size is 8192b. data to the telemetry record. The current maximum payload size is 8192b.
The function ``tm_send_record()`` delivers the record to the local The function ``tm_send_record()`` delivers the record to the local
``telemd``\(1) service. ``telemprobd``\(1) service.
The function ``tm_set_config_file()`` can be used to provide an alternate The function ``tm_set_config_file()`` can be used to provide an alternate
configuration path to the telemetry library. configuration path to the telemetry library.
``tm_is_opted_in`` is a utility provided to check if the one time opt-in
has been performed.
RETURN VALUES RETURN VALUES
============= =============
All these functions return ``0`` on success, or a non-zero return value All these functions return ``0`` on success, or a non-zero return value
if an error occurred. The functions ``tm_free_record()`` and ``tm_set_config_file()`` if an error occurred. The function ``tm_free_record()`` does not return
do not return any values. any value. ``tm_is_opted_in`` returns ``1`` when telemetry is opted-in
otherwise ``0``.
SEE ALSO SEE ALSO
======== ========
* ``telemd``\(1) * ``telemprobd``\(1)
* https://github.com/clearlinux/telemetrics-client * https://github.com/clearlinux/telemetrics-client
* https://clearlinux.org/documentation/ * https://clearlinux.org/documentation/
+97
View File
@@ -0,0 +1,97 @@
.\" Man page generated from reStructuredText.
.
.TH TELEMPOSTD 1 "" "" ""
.SH NAME
telempostd \- Telemetry client service
.
.nr rst2man-indent-level 0
.
.de1 rstReportMargin
\\$1 \\n[an-margin]
level \\n[rst2man-indent-level]
level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
-
\\n[rst2man-indent0]
\\n[rst2man-indent1]
\\n[rst2man-indent2]
..
.de1 INDENT
.\" .rstReportMargin pre:
. RS \\$1
. nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
. nr rst2man-indent-level +1
.\" .rstReportMargin post:
..
.de UNINDENT
. RE
.\" indent \\n[an-margin]
.\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
.nr rst2man-indent-level -1
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.SH SYNOPSIS
.sp
\fBtelempostd\fP <flags>
.sp
\fB/etc/telemetrics/telemetrics.conf\fP
.sp
\fB/usr/share/defaults/telemetrics/telemetrics.conf\fP
.sp
\fB/etc/telemetrics/opt\-in\-static\-machine\-id\fP
.SH DESCRIPTION
.sp
The \fBtelempostd\fP program delivers locally generated telemetry records to a remote
telemetry service. Telemetry data can be in any format, and is relayed as\-is.
.SH OPTIONS
.INDENT 0.0
.INDENT 3.5
.INDENT 0.0
.IP \(bu 2
\fB\-f\fP, \fB\-\-config_file\fP [<file>]:
Configuration file. This overrides the other parameters.
.IP \(bu 2
\fB\-h\fP, \fB\-\-help\fP:
Display this help message.
.IP \(bu 2
\fB\-V\fP, \fB\-\-version\fP:
Print the program version.
.UNINDENT
.UNINDENT
.UNINDENT
.SH FILES
.INDENT 0.0
.IP \(bu 2
\fB/usr/share/defaults/telemetrics/telemetrics.conf\fP
.INDENT 2.0
.INDENT 3.5
If no custom configuration file is found, \fBtelempostd\fP uses the
settings in this file.
.UNINDENT
.UNINDENT
.IP \(bu 2
\fB/etc/telemetrics/telemetrics.conf\fP
.INDENT 2.0
.INDENT 3.5
Custom configuration file that \fBtelempostd\fP reads. See \fBtelemetrics.conf\fP(5).
.UNINDENT
.UNINDENT
.UNINDENT
.SH EXIT STATUS
.sp
0 when no errors occurred. A non\-zero exit status indicates a failure occurred.
.SH SEE ALSO
.INDENT 0.0
.IP \(bu 2
\fBtelemetry\fP(3)
.IP \(bu 2
\fBtelemetrics.conf\fP(5)
.IP \(bu 2
\fI\%https://github.com/clearlinux/telemetrics\-client\fP
.IP \(bu 2
\fI\%https://clearlinux.org/documentation/\fP
.UNINDENT
.SH COPYRIGHT
(C) 2018 Intel Corporation, CC-BY-SA-3.0
.\" Generated by docutils manpage writer.
.
+71
View File
@@ -0,0 +1,71 @@
==========
telempostd
==========
------------------------
Telemetry client service
------------------------
:Copyright: \(C) 2018 Intel Corporation, CC-BY-SA-3.0
:Manual section: 1
SYNOPSIS
========
``telempostd`` \<flags\>
``/etc/telemetrics/telemetrics.conf``
``/usr/share/defaults/telemetrics/telemetrics.conf``
``/etc/telemetrics/opt-in-static-machine-id``
DESCRIPTION
===========
The ``telempostd`` program delivers locally generated telemetry records to a remote
telemetry service. Telemetry data can be in any format, and is relayed as-is.
OPTIONS
=======
* ``-f``, ``--config_file`` \[\<file\>\]:
Configuration file. This overrides the other parameters.
* ``-h``, ``--help``:
Display this help message.
* ``-V``, ``--version``:
Print the program version.
FILES
=====
* ``/usr/share/defaults/telemetrics/telemetrics.conf``
If no custom configuration file is found, ``telempostd`` uses the
settings in this file.
* ``/etc/telemetrics/telemetrics.conf``
Custom configuration file that ``telempostd`` reads. See ``telemetrics.conf``\(5).
EXIT STATUS
===========
0 when no errors occurred. A non-zero exit status indicates a failure occurred.
SEE ALSO
========
* ``telemetry``\(3)
* ``telemetrics.conf``\(5)
* https://github.com/clearlinux/telemetrics-client
* https://clearlinux.org/documentation/
+7 -7
View File
@@ -1,8 +1,8 @@
.\" Man page generated from reStructuredText. .\" Man page generated from reStructuredText.
. .
.TH TELEMD 1 "" "" "" .TH TELEMPROBD 1 "" "" ""
.SH NAME .SH NAME
telemd \- Telemetry client service telemprobd \- Telemetry probes service
. .
.nr rst2man-indent-level 0 .nr rst2man-indent-level 0
. .
@@ -32,7 +32,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
.. ..
.SH SYNOPSIS .SH SYNOPSIS
.sp .sp
\fBtelemd\fP <flags> \fBtelemprobd\fP <flags>
.sp .sp
\fB/etc/telemetrics/telemetrics.conf\fP \fB/etc/telemetrics/telemetrics.conf\fP
.sp .sp
@@ -41,8 +41,8 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
\fB/etc/telemetrics/opt\-in\-static\-machine\-id\fP \fB/etc/telemetrics/opt\-in\-static\-machine\-id\fP
.SH DESCRIPTION .SH DESCRIPTION
.sp .sp
The \fBtelemd\fP program delivers locally generated telemetry records to a remote The \fBtelemprobd\fP program handles communication between telemetry client and telemetry
telemetry service. Telemetry data can be in any format, and is relayed as\-is. probes.
.SH OPTIONS .SH OPTIONS
.INDENT 0.0 .INDENT 0.0
.INDENT 3.5 .INDENT 3.5
@@ -65,7 +65,7 @@ Print the program version.
\fB/usr/share/defaults/telemetrics/telemetrics.conf\fP \fB/usr/share/defaults/telemetrics/telemetrics.conf\fP
.INDENT 2.0 .INDENT 2.0
.INDENT 3.5 .INDENT 3.5
If no custom configuration file is found, \fBtelemd\fP uses the If no custom configuration file is found, \fBtelemprobd\fP uses the
settings in this file. settings in this file.
.UNINDENT .UNINDENT
.UNINDENT .UNINDENT
@@ -73,7 +73,7 @@ settings in this file.
\fB/etc/telemetrics/telemetrics.conf\fP \fB/etc/telemetrics/telemetrics.conf\fP
.INDENT 2.0 .INDENT 2.0
.INDENT 3.5 .INDENT 3.5
Custom configuration file that \fBtelemd\fP reads. See \fBtelemetrics.conf\fP(5). Custom configuration file that \fBtelemprobd\fP reads. See \fBtelemetrics.conf\fP(5).
.UNINDENT .UNINDENT
.UNINDENT .UNINDENT
.IP \(bu 2 .IP \(bu 2
@@ -1,9 +1,9 @@
====== ==========
telemd telemprobd
====== ==========
------------------------ ------------------------
Telemetry client service Telemetry probes service
------------------------ ------------------------
:Copyright: \(C) 2017 Intel Corporation, CC-BY-SA-3.0 :Copyright: \(C) 2017 Intel Corporation, CC-BY-SA-3.0
@@ -13,7 +13,7 @@ Telemetry client service
SYNOPSIS SYNOPSIS
======== ========
``telemd`` \<flags\> ``telemprobd`` \<flags\>
``/etc/telemetrics/telemetrics.conf`` ``/etc/telemetrics/telemetrics.conf``
@@ -25,8 +25,8 @@ SYNOPSIS
DESCRIPTION DESCRIPTION
=========== ===========
The ``telemd`` program delivers locally generated telemetry records to a remote The ``telemprobd`` program handles communication between telemetry client and telemetry
telemetry service. Telemetry data can be in any format, and is relayed as-is. probes.
OPTIONS OPTIONS
@@ -47,12 +47,12 @@ FILES
* ``/usr/share/defaults/telemetrics/telemetrics.conf`` * ``/usr/share/defaults/telemetrics/telemetrics.conf``
If no custom configuration file is found, ``telemd`` uses the If no custom configuration file is found, ``telemprobd`` uses the
settings in this file. settings in this file.
* ``/etc/telemetrics/telemetrics.conf`` * ``/etc/telemetrics/telemetrics.conf``
Custom configuration file that ``telemd`` reads. See ``telemetrics.conf``\(5). Custom configuration file that ``telemprobd`` reads. See ``telemetrics.conf``\(5).
* ``/etc/telemetrics/opt-in-static-machine-id`` * ``/etc/telemetrics/opt-in-static-machine-id``
-3
View File
@@ -1,3 +0,0 @@
dist_bin_SCRIPTS = %D%/telemctl
# vim: filetype=automake tabstop=8 shiftwidth=8 noexpandtab
-147
View File
@@ -1,147 +0,0 @@
#!/bin/bash
declare -a SPECIAL_UNITS=(
hprobe.timer
telemd.socket
telemd.path
)
declare -a SERVICES=(
hprobe.service
journal-probe.service
oops-probe.service
pstore-probe.service
klogscanner.service
telemd.service
)
SCRIPT="$0"
TELEM_DIR=/etc/telemetrics
OPT_OUT_FILE=${TELEM_DIR}/opt-out
TELEM_WRK_DIRS_CONF=/usr/lib/tmpfiles.d/telemetrics-dirs.conf
create_work_dirs() {
# Creates dirs if missing, adjust ownership if exists
systemd-tmpfiles --create ${TELEM_WRK_DIRS_CONF}
}
telem_remove_work_dirs() {
# Remove dirs
awk '/^d/{print $2}' ${TELEM_WRK_DIRS_CONF} | xargs rm -rf;
}
exit_ok() {
echo "$1" > /dev/stderr
exit 0
}
exit_err() {
echo "$1" > /dev/stderr
exit 1
}
notice() {
echo "$1" > /dev/stderr
}
for_each_service() {
local action=$1 && shift
local -a array=($*)
for service in "${array[@]}"; do
systemctl $action $service
[ $? -ne 0 ] && notice "Failed to $action ${service}. Continuing..."
done
}
telem_stop() {
# the special units must be stopped first so that activation no longer happens
for_each_service "stop" ${SPECIAL_UNITS[@]}
for_each_service "stop" ${SERVICES[@]}
}
telem_start() {
[ -f $OPT_OUT_FILE ] && exit_err "Opt out is enabled. Cannot start services."
# trigger systemd-tmpfiles work dirs creation
create_work_dirs
# the units in SERVICES are activated as needed, so no need to start them
for_each_service "start" ${SPECIAL_UNITS[@]}
}
telem_is_active() {
# check only activation units
systemctl is-active telemd.socket
}
telem_opt_out() {
[ -f $OPT_OUT_FILE ] && exit_ok "Already opted out. Nothing to do."
mkdir -p $TELEM_DIR || exit_err "Failed to create ${TELEM_DIR}."
touch $OPT_OUT_FILE || exit_err "Failed to create ${OPT_OUT_FILE}."
telem_stop
telem_remove_work_dirs
}
telem_opt_in() {
[ ! -f $OPT_OUT_FILE ] && exit_ok "Already opted in. Nothing to do."
rm -f $OPT_OUT_FILE || exit_err "Failed to remove ${OPT_OUT_FILE}."
telem_start
}
telem_restart() {
telem_stop
telem_start
}
telem_journal_cli() {
telem_journal "$@"
}
usage() {
format=' %-10s %s\n'
printf "\n"
printf "%s - Control actions for telemetry services\n" "$SCRIPT"
printf "\n"
printf "$format" "stop" "Stops all running telemetry services"
printf "$format" "start" "Starts all telemetry services"
printf "$format" "restart" "Restarts all telemetry services"
printf "$format" "is-active" "Checks if telemd is active"
printf "$format" "opt-in" "Opts in to telemetry, and starts telemetry services"
printf "$format" "opt-out" "Opts out of telemetry, and stops telemetry services"
printf "$format" "journal" "Prints telemd journal contents. Use -h argument with"
printf "$format" "" "command for more options"
printf "\n"
exit 2
}
if [ "$1" != "journal" ] && [ $# -ne 1 ]; then
usage
fi
if [ $EUID -ne 0 ]; then
exit_err "Must be root to run this command. Exiting..."
fi
SUBCOMMAND=$1
case $SUBCOMMAND in
opt-out)
telem_opt_out ;;
opt-in)
telem_opt_in ;;
stop)
telem_stop ;;
start)
telem_start ;;
restart)
telem_restart ;;
is-active)
telem_is_active ;;
journal)
telem_journal_cli "$@" ;;
*)
notice "Unknown command passed to $SCRIPT"
usage ;;
esac
exit 0
# vi: ts=8 sw=2 sts=2 et tw=80
+11 -8
View File
@@ -75,10 +75,10 @@ static const uint32_t RECORD_FORMAT_VERSION = 4;
#define TM_SITE_VERSION_FILE "/etc/os-release" #define TM_SITE_VERSION_FILE "/etc/os-release"
#define TM_DIST_VERSION_FILE "/usr/lib/os-release" #define TM_DIST_VERSION_FILE "/usr/lib/os-release"
#define TM_OPT_OUT_FILE "/etc/telemetrics/opt-out" #define TM_OPT_IN_FILE "/etc/telemetrics/opt-in"
/* Currently max supported payload size is 8kb */ /* Currently max supported payload size is 8kb */
#define MAX_PAYLOAD_SIZE 8192 #define MAX_PAYLOAD_LENGTH 8192
/* Maximum size for a category string is 122 bytes */ /* Maximum size for a category string is 122 bytes */
#define MAX_CLASS_LENGTH 122 #define MAX_CLASS_LENGTH 122
@@ -86,12 +86,12 @@ static const uint32_t RECORD_FORMAT_VERSION = 4;
/* Maximum size for a sub category 40 bytes */ /* Maximum size for a sub category 40 bytes */
#define MAX_SUBCAT_LENGTH 40 #define MAX_SUBCAT_LENGTH 40
/* Max Payload size is 8 kibabytes (8192) */ /* Exit daemon after idle for this duration in seconds */
#define MAX_PAYLOAD_LENGTH 8192 #define TM_DAEMON_EXIT_TIME (5 * 60)
/* SPOOL DEFINES */ /* SPOOL DEFINES */
/* Spooling should run every TM_SPOOL_RUN_MAX atleast */ /* Spooling should run at least every TM_SPOOL_RUN_MAX */
#define TM_SPOOL_RUN_MAX (60 /*min*/ * 60 /*sec*/) #define TM_SPOOL_RUN_MAX TM_DAEMON_EXIT_TIME
/* Spooling should not run more often than TM_SPOOL_RUN_MIN */ /* Spooling should not run more often than TM_SPOOL_RUN_MIN */
#define TM_SPOOL_RUN_MIN (2 /*min*/ * 60 /*sec*/) #define TM_SPOOL_RUN_MIN (2 /*min*/ * 60 /*sec*/)
@@ -102,8 +102,10 @@ static const uint32_t RECORD_FORMAT_VERSION = 4;
/* Maximum records that can be processed in a single spool run loop*/ /* Maximum records that can be processed in a single spool run loop*/
#define TM_SPOOL_MAX_PROCESS_RECORDS 60 #define TM_SPOOL_MAX_PROCESS_RECORDS 60
/* Time to check to exit from the daemon */ /* Definitions for config file override */
#define TM_DAEMON_EXIT_TIME (2 /*h*/ * 60 /*m*/ * 60 /*sec*/) #define CFG_PREFIX "CFG:"
#define CFG_PREFIX_LENGTH 4
#define CFG_PREFIX_32BIT 0x3a474643
/* Very simple structure. Array of header strings and a payload. Calling /* Very simple structure. Array of header strings and a payload. Calling
* program is reponsible for passing in the payload as a simple string. * program is reponsible for passing in the payload as a simple string.
@@ -117,4 +119,5 @@ struct telem_record {
const char *get_header_name(int ind); const char *get_header_name(int ind);
/* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */ /* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */
+126 -66
View File
@@ -28,6 +28,7 @@
#include "configuration.h" #include "configuration.h"
#include "util.h" #include "util.h"
#include "common.h" #include "common.h"
#include "log.h"
#include "nica/inifile.h" #include "nica/inifile.h"
@@ -38,21 +39,50 @@ static NcHashmap *keyfile = NULL;
static bool cmd_line_cfg = false; static bool cmd_line_cfg = false;
/* Conf strings, integers, and booleans expected in the conf file */ /* Conf strings, integers, and booleans expected in the conf file */
const char *config_key_str[] = { NULL, "server", "socket_path", "spool_dir", static const char *config_key_str[] = { "server",
"rate_limit_strategy", "cainfo", "socket_path",
"tidheader", NULL }; "spool_dir",
"rate_limit_strategy",
"cainfo",
"tidheader"};
const char *config_key_int[] = { NULL, "record_expiry", "spool_max_size", static const char *config_key_int[] = { "record_expiry",
"spool_process_time", "record_window_length", "spool_max_size",
"byte_window_length", "record_burst_limit", "spool_process_time",
"byte_burst_limit", NULL }; "record_window_length",
"byte_window_length",
"record_burst_limit",
"byte_burst_limit" };
static const char *config_key_bool[] = { "rate_limit_enabled",
"daemon_recycling_enabled",
"record_retention_enabled",
"record_server_delivery_enabled" };
static const char *config_str_default[] = { DEFAULT_SERVER_ADDR,
DEFAULT_SOCKET_PATH,
DEFAULT_SPOOL_DIR,
DEFAULT_RATE_LIMIT_STRATEGY,
DEFAULT_CAINFO,
DEFAULT_TIDHEADER };
static const bool config_bool_default[] = { DEFAULT_RATE_LIMIT_ENABLED,
DEFAULT_DAEMON_RECYCLING_ENABLED,
DEFAULT_RECORD_RETENTION_ENABLED,
DEFAULT_RECORD_SERVER_DELIVERY_ENABLED };
static const int config_int_default[] = { DEFAULT_RECORD_EXPIRY,
DEFAULT_SPOOL_MAX_SIZE,
DEFAULT_SPOOL_PROCESS_TIME,
DEFAULT_RECORD_WINDOW_LENGTH,
DEFAULT_BYTE_WINDOW_LENGTH,
DEFAULT_RECORD_BURST_LIMIT,
DEFAULT_BYTE_BURST_LIMIT };
const char *config_key_bool[] = { NULL, "rate_limit_enabled", "daemon_recycling_enabled",
"record_retention_enabled", "record_server_delivery_enabled", NULL };
static struct configuration config = { { 0 }, { 0 }, { 0 }, false, NULL }; static struct configuration config = { { 0 }, { 0 }, { 0 }, false, NULL };
int validate_config_file(char *f) static int validate_config_file(const char *f)
{ {
struct stat sbuf; struct stat sbuf;
@@ -60,26 +90,66 @@ int validate_config_file(char *f)
return -EINVAL; return -EINVAL;
} }
/* check if the file exists and is a regular file */
if (stat(f, &sbuf) != 0) { if (stat(f, &sbuf) != 0) {
return -errno; return -errno;
} }
if (!S_ISREG(sbuf.st_mode)) {
return -EINVAL;
}
return 0; return 0;
} }
void set_config_file(char *filename) const char *get_config_file(void)
{ {
return config_file;
}
/* TODO: This should return a status, but that will require coordinating const char *get_cmd_line_config_file(void)
* an API change. For now, config-entries referencing a null config {
* file will fail, so the end result still works. */ if (cmd_line_cfg == true) {
return config_file;
}
return NULL;
}
if (validate_config_file(filename) == 0) { int set_config_file(const char *filename)
config_file = strdup(filename); {
cmd_line_cfg = true; int ret;
if ((ret = validate_config_file(filename)) == 0) {
char *filename1 = strdup(filename);
if (filename1 == NULL) {
ret = -errno;
} else {
config_file = filename1;
cmd_line_cfg = true;
}
} }
return ret;
}
bool set_default_config_values(struct configuration *config)
{
for (int i = 0; i < CONF_STR_MAX; i++) {
config->strValues[i] = strdup(config_str_default[i]);
if (config->strValues[i] == NULL) {
telem_log(LOG_ERR, "Could not set config item %s: %s\n",
config_key_str[i], strerror(errno));
return false;
}
}
for (int i = 0; i < CONF_INT_MAX; i++) {
config->intValues[i] = config_int_default[i];
}
for (int i = 0; i < CONF_BOOL_MAX; i++) {
config->boolValues[i] = config_bool_default[i];
}
return true;
} }
bool read_config_from_file(char *config_file, struct configuration *config) bool read_config_from_file(char *config_file, struct configuration *config)
@@ -90,73 +160,64 @@ bool read_config_from_file(char *config_file, struct configuration *config)
keyfile = nc_ini_file_parse(config_file); keyfile = nc_ini_file_parse(config_file);
if (!keyfile) { if (!keyfile) {
#ifdef DEBUG telem_log(LOG_ERR, "Failed to read config file\n");
fprintf(stderr, "ERR: Failed to read config file\n");
#endif
return false; return false;
} else { } else {
for (int i = CONF_STR_MIN + 1; i < CONF_STR_MAX; i++) { for (int i = 0; i < CONF_STR_MAX; i++) {
char *ptr; char *ptr;
ptr = nc_hashmap_get(nc_hashmap_get(keyfile, "settings"), config_key_str[i]); ptr = nc_hashmap_get(nc_hashmap_get(keyfile, "settings"), config_key_str[i]);
if (ptr) { if (ptr) {
config->strValues[i] = strdup(ptr); config->strValues[i] = strdup(ptr);
if (config->strValues[i] == NULL) { if (config->strValues[i] == NULL) {
telem_log(LOG_ERR, "Could not set config item %s: %s\n",
config_key_str[i], strerror(errno));
return false; return false;
} }
} else { } else {
fprintf(stderr, "ERR: missing key with string value: %s\n", config_key_str[i]); config->strValues[i] = strdup(config_str_default[i]);
return false;
} }
} }
for (int i = CONF_INT_MIN + 1; i < CONF_INT_MAX; i++) {
for (int i = 0; i < CONF_INT_MAX; i++) {
char *ptr; char *ptr;
ptr = nc_hashmap_get(nc_hashmap_get(keyfile, "settings"), config_key_int[i]); ptr = nc_hashmap_get(nc_hashmap_get(keyfile, "settings"), config_key_int[i]);
if (ptr) { if (ptr) {
errno = 0;
config->intValues[i] = strtoll(ptr, NULL, 10); config->intValues[i] = strtoll(ptr, NULL, 10);
if (errno != 0) {
telem_log(LOG_ERR, "Error while parsing value of option %s: %s\n",
config_key_int[i], strerror(errno));
return false;
}
} else { } else {
fprintf(stderr, "ERR: missing key with integer value: %s\n", config_key_int[i]); config->intValues[i] = config_int_default[i];
return false;
} }
} }
for (int i = CONF_BOOL_MIN + 1; i < CONF_BOOL_MAX; i++) { for (int i = 0; i < CONF_BOOL_MAX; i++) {
char *ptr; char *ptr;
ptr = nc_hashmap_get(nc_hashmap_get(keyfile, "settings"), config_key_bool[i]); ptr = nc_hashmap_get(nc_hashmap_get(keyfile, "settings"), config_key_bool[i]);
config->boolValues[i] = false;
if (ptr) { if (ptr) {
if (strcasecmp(ptr, "TRUE") == 0) { if ((strcasecmp(ptr, "TRUE") == 0) || (strcmp(ptr, "1") == 0)) {
config->boolValues[i] = true; config->boolValues[i] = true;
} } else if ((strcasecmp(ptr, "FALSE") == 0) || (strcmp(ptr, "0") == 0)) {
if (strcasecmp(ptr, "1") == 0) { config->boolValues[i] = false;
config->boolValues[i] = true;
}
} else {
/* New configuration keys, CONF_RECORD_RETENTION_ENABLED and CONF_RECORD_SERVER_DELIVERY_ENABLED
* default values, otherwise update will require changes in custom configurations */
if (i == CONF_RECORD_RETENTION_ENABLED) {
#ifdef DEBUG
fprintf(stderr, "WARN: missing boolean optional key: %s\n", config_key_bool[i]);
#endif
config->boolValues[i] = RECORD_RETENTION_ENABLED_DEFAULT;
} else if (i == CONF_RECORD_SERVER_DELIVERY_ENABLED) {
#ifdef DEBUG
fprintf(stderr, "WARN: missing boolean optional key: %s\n", config_key_bool[i]);
#endif
config->boolValues[i] = RECORD_SERVER_DELIVERY_ENABLED_DEFAULT;
} else { } else {
fprintf(stderr, "ERR: missing key with boolean value: %s\n", config_key_bool[i]); telem_log(LOG_ERR, "Configuration item '%s' requires a boolean value\n",
config_key_bool[i]);
return false; return false;
} }
} else {
config->boolValues[i] = config_bool_default[i];
} }
} }
} }
config->initialized = true;
return true; return true;
} }
void initialize_config(void) static void initialize_config(void)
{ {
if (config.initialized) { if (config.initialized) {
return; return;
@@ -167,26 +228,25 @@ void initialize_config(void)
if (access(etc_config_file, R_OK) == 0) { if (access(etc_config_file, R_OK) == 0) {
config_file = etc_config_file; config_file = etc_config_file;
} else { } else {
if (access(default_config_file, if (access(default_config_file, R_OK) == 0) {
R_OK) == 0) {
config_file = default_config_file; config_file = default_config_file;
} else {
/* If there is no default config, exit with failure */
#ifdef DEBUG
fprintf(stderr, "ERR: No configuration file"
" found, exiting\n");
#endif
exit(EXIT_FAILURE);
} }
} }
} }
if (!read_config_from_file(config_file, &config)) {
/* Error while parsing file */ if (config_file) {
#ifdef DEBUG if (!read_config_from_file(config_file, &config)) {
fprintf(stderr, "ERR: Error while parsing configuration file\n"); /* Error while parsing file */
#endif exit(EXIT_FAILURE);
exit(EXIT_FAILURE); }
} }
else {
if (!set_default_config_values(&config)) {
exit(EXIT_FAILURE);
}
}
config.initialized = true;
} }
void reload_config(void) void reload_config(void)
@@ -206,7 +266,7 @@ void free_configuration(void)
return; return;
} }
for (int i = CONF_STR_MIN + 1; i < CONF_STR_MAX; i++) { for (int i = 0; i < CONF_STR_MAX; i++) {
free(config.strValues[i]); free(config.strValues[i]);
} }
+34 -9
View File
@@ -18,13 +18,31 @@
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
/* Default configuration settings */
#define DEFAULT_SERVER_ADDR BACKEND_ADDR
#define DEFAULT_SOCKET_PATH "/run/telem-0"
#define DEFAULT_SPOOL_DIR LOCALSTATEDIR "/spool/telemetry"
#define DEFAULT_RATE_LIMIT_STRATEGY "spool"
#define DEFAULT_CAINFO ""
#define DEFAULT_TIDHEADER "X-Telemetry-TID: 6907c830-eed9-4ce9-81ae-76daf8d88f0f"
#define DEFAULT_RECORD_EXPIRY 1200
#define DEFAULT_SPOOL_MAX_SIZE 5120
#define DEFAULT_SPOOL_PROCESS_TIME 120
#define DEFAULT_RECORD_WINDOW_LENGTH 15
#define DEFAULT_BYTE_WINDOW_LENGTH 20
#define DEFAULT_RECORD_BURST_LIMIT 1000
#define DEFAULT_BYTE_BURST_LIMIT -1
#define DEFAULT_RATE_LIMIT_ENABLED true
#define DEFAULT_DAEMON_RECYCLING_ENABLED true
#define DEFAULT_RECORD_RETENTION_ENABLED false
#define DEFAULT_RECORD_SERVER_DELIVERY_ENABLED true
#define TM_MAX_WINDOW_LENGTH (1 /*h*/ * 60 /*m*/) #define TM_MAX_WINDOW_LENGTH (1 /*h*/ * 60 /*m*/)
#define RECORD_RETENTION_ENABLED_DEFAULT false
#define RECORD_SERVER_DELIVERY_ENABLED_DEFAULT true
enum config_str_keys { enum config_str_keys {
CONF_STR_MIN = 0, CONF_SERVER_ADDR = 0,
CONF_SERVER_ADDR,
CONF_SOCKET_PATH, CONF_SOCKET_PATH,
CONF_SPOOL_DIR, CONF_SPOOL_DIR,
CONF_RATE_LIMIT_STRATEGY, CONF_RATE_LIMIT_STRATEGY,
@@ -34,8 +52,7 @@ enum config_str_keys {
}; };
enum config_int_keys { enum config_int_keys {
CONF_INT_MIN = 0, CONF_RECORD_EXPIRY = 0,
CONF_RECORD_EXPIRY,
CONF_SPOOL_MAX_SIZE, CONF_SPOOL_MAX_SIZE,
CONF_SPOOL_PROCESS_TIME, CONF_SPOOL_PROCESS_TIME,
CONF_RECORD_WINDOW_LENGTH, CONF_RECORD_WINDOW_LENGTH,
@@ -46,8 +63,7 @@ enum config_int_keys {
}; };
enum config_bool_keys { enum config_bool_keys {
CONF_BOOL_MIN = 0, CONF_RATE_LIMIT_ENABLED = 0,
CONF_RATE_LIMIT_ENABLED,
CONF_DAEMON_RECYCLING_ENABLED, CONF_DAEMON_RECYCLING_ENABLED,
CONF_RECORD_RETENTION_ENABLED, CONF_RECORD_RETENTION_ENABLED,
CONF_RECORD_SERVER_DELIVERY_ENABLED, CONF_RECORD_SERVER_DELIVERY_ENABLED,
@@ -63,7 +79,16 @@ typedef struct configuration {
} configuration; } configuration;
/* Sets the configuration file to be used later */ /* Sets the configuration file to be used later */
void set_config_file(char *filename); int set_config_file(const char *filename);
/* Gets the configuration currently in use */
const char *get_config_file(void);
/* Gets the configuration specified via command line or NULL */
const char *get_cmd_line_config_file(void);
/* Sets all default configuration values to a given config */
bool set_default_config_values(struct configuration *config);
/* Parses the ini format config file */ /* Parses the ini format config file */
bool read_config_from_file(char *filename, struct configuration *config); bool read_config_from_file(char *filename, struct configuration *config);
-13
View File
@@ -1,13 +0,0 @@
[Unit]
Description=Telemetrics BERT Probe
Requires=telemd.socket
After=telemd.socket
ConditionPathExists=!/etc/telemetrics/opt-out
ConditionPathExists=/sys/firmware/acpi/tables/data/BERT
[Service]
ExecStart=@bindir@/bertprobe
User=telemetry
[Install]
WantedBy=multi-user.target
+4
View File
@@ -0,0 +1,4 @@
[settings]
server=http://127.0.0.1
cainfo=/tmp/cacert.crt
+1 -1
View File
@@ -16,7 +16,7 @@ spool_dir=/tmp/spool
spool_max_size=1024 spool_max_size=1024
#time in seconds for processing spool #time in seconds for processing spool
spool_process_time=900 spool_process_time=180
#rate limiting record burst limit #rate limiting record burst limit
record_burst_limit=100 record_burst_limit=100
+4 -4
View File
@@ -1,11 +1,11 @@
[Unit] [Unit]
Description=Telemetrics Heartbeat Probe Description=Telemetrics Heartbeat Probe
Requires=telemd.socket Requires=telemprobd.socket
After=telemd.socket After=telemprobd.socket
ConditionPathExists=!/etc/telemetrics/opt-out ConditionPathExists=/etc/telemetrics/opt-in
[Service] [Service]
ExecStart=@bindir@/hprobe -H ExecStart=@bindir@/hprobe -Hlu
User=telemetry User=telemetry
[Install] [Install]
+1 -1
View File
@@ -1,6 +1,6 @@
[Unit] [Unit]
Description=Daily Heartbeat for Telemetrics Description=Daily Heartbeat for Telemetrics
ConditionPathExists=!/etc/telemetrics/opt-out ConditionPathExists=/etc/telemetrics/opt-in
[Timer] [Timer]
OnCalendar=daily OnCalendar=daily
+12
View File
@@ -0,0 +1,12 @@
[Unit]
Description=Telemetrics Systemd Journal Probe
Requires=telemprobd.socket
After=telemprobd.socket
ConditionPathExists=/etc/telemetrics/opt-in
[Service]
ExecStart=@bindir@/journalprobe -t
User=telemetry
[Install]
WantedBy=multi-user.target
+3 -3
View File
@@ -1,8 +1,8 @@
[Unit] [Unit]
Description=Telemetrics Systemd Journal Probe Description=Telemetrics Systemd Journal Probe
Requires=telemd.socket Requires=telemprobd.socket
After=telemd.socket After=telemprobd.socket
ConditionPathExists=!/etc/telemetrics/opt-out ConditionPathExists=/etc/telemetrics/opt-in
[Service] [Service]
ExecStart=@bindir@/journalprobe ExecStart=@bindir@/journalprobe
+2 -2
View File
@@ -1,7 +1,7 @@
[Unit] [Unit]
Description=Telemetrics Kernel Log Scanner Description=Telemetrics Kernel Log Scanner
Requires=telemd.socket Requires=telemprobd.socket
After=telemd.socket oops-probe.service After=telemprobd.socket
[Service] [Service]
ExecStart=@bindir@/klogscanner ExecStart=@bindir@/klogscanner
+29 -27
View File
@@ -5,26 +5,28 @@ pathfix = @sed \
-e 's|@localstatedir[@]|$(localstatedir)|g' \ -e 's|@localstatedir[@]|$(localstatedir)|g' \
-e 's|@PACKAGE_VERSION[@]|$(PACKAGE_VERSION)|g' \ -e 's|@PACKAGE_VERSION[@]|$(PACKAGE_VERSION)|g' \
-e 's|@SOCKETDIR[@]|$(SOCKETDIR)|g' \ -e 's|@SOCKETDIR[@]|$(SOCKETDIR)|g' \
-e 's|@systemctldir[@]|$(SYSTEMD_SYSTEMCTLDIR)|g' -e 's|@systemctldir[@]|$(SYSTEMD_SYSTEMCTLDIR)|g' \
-e 's|@BACKEND_ADDR[@]|$(BACKEND_ADDR)|g'
EXTRA_DIST += \ EXTRA_DIST += \
%D%/40-core-ulimit.conf \ %D%/40-core-ulimit.conf \
%D%/40-crash-probe.conf.in \ %D%/40-crash-probe.conf.in \
%D%/example.conf \ %D%/example.conf \
%D%/example.1.conf \ %D%/example.1.conf \
%D%/example.2.conf \
%D%/hprobe.service.in \ %D%/hprobe.service.in \
%D%/hprobe.timer \ %D%/hprobe.timer \
%D%/bert-probe.service.in \
%D%/journal-probe.service.in \ %D%/journal-probe.service.in \
%D%/oops-probe.service.in \ %D%/journal-probe-tail.service.in \
%D%/pstore-probe.service.in \ %D%/pstore-probe.service.in \
%D%/klogscanner.service.in \ %D%/klogscanner.service.in \
%D%/pstore-clean.service.in \ %D%/pstore-clean.service.in \
%D%/libtelemetry.pc.in \ %D%/libtelemetry.pc.in \
%D%/telemd.path.in \ %D%/telempostd.service.in \
%D%/telemd.service.in \ %D%/telempostd.path.in \
%D%/telemd.socket.in \ %D%/telemprobd.service.in \
%D%/telemd-update-trigger.service.in \ %D%/telemprobd.socket.in \
%D%/telemprobd-update-trigger.service.in \
%D%/telemetrics-dirs.conf.in \ %D%/telemetrics-dirs.conf.in \
%D%/telemetrics.conf.in %D%/telemetrics.conf.in
@@ -50,27 +52,24 @@ systemdunitdir = @SYSTEMD_UNITDIR@
systemdunit_DATA = \ systemdunit_DATA = \
%D%/hprobe.service \ %D%/hprobe.service \
%D%/hprobe.timer \ %D%/hprobe.timer \
%D%/bert-probe.service \
%D%/journal-probe.service \ %D%/journal-probe.service \
%D%/oops-probe.service \ %D%/journal-probe-tail.service \
%D%/pstore-probe.service \ %D%/pstore-probe.service \
%D%/klogscanner.service \ %D%/klogscanner.service \
%D%/pstore-clean.service \ %D%/pstore-clean.service \
%D%/telemd.service \ %D%/telemprobd.service \
%D%/telemd.socket \ %D%/telemprobd.socket \
%D%/telemd-update-trigger.service \ %D%/telemprobd-update-trigger.service \
%D%/telemd.path %D%/telempostd.service \
%D%/telempostd.path
%D%/hprobe.service: %D%/hprobe.service.in %D%/hprobe.service: %D%/hprobe.service.in
$(pathfix) < $< > $@ $(pathfix) < $< > $@
%D%/bert-probe.service: %D%/bert-probe.service.in
$(pathfix) < $< > $@
%D%/journal-probe.service: %D%/journal-probe.service.in %D%/journal-probe.service: %D%/journal-probe.service.in
$(pathfix) < $< > $@ $(pathfix) < $< > $@
%D%/oops-probe.service: %D%/oops-probe.service.in %D%/journal-probe-tail.service: %D%/journal-probe-tail.service.in
$(pathfix) < $< > $@ $(pathfix) < $< > $@
%D%/pstore-probe.service: %D%/pstore-probe.service.in %D%/pstore-probe.service: %D%/pstore-probe.service.in
@@ -82,16 +81,19 @@ systemdunit_DATA = \
%D%/pstore-clean.service: %D%/pstore-clean.service.in %D%/pstore-clean.service: %D%/pstore-clean.service.in
$(pathfix) < $< > $@ $(pathfix) < $< > $@
%D%/telemd.service: %D%/telemd.service.in %D%/telempostd.path: %D%/telempostd.path.in
$(pathfix) < $< > $@ $(pathfix) < $< > $@
%D%/telemd.socket: %D%/telemd.socket.in %D%/telempostd.service: %D%/telempostd.service.in
$(pathfix) < $< > $@ $(pathfix) < $< > $@
%D%/telemd.path: %D%/telemd.path.in %D%/telemprobd.service: %D%/telemprobd.service.in
$(pathfix) < $< > $@ $(pathfix) < $< > $@
%D%/telemd-update-trigger.service: %D%/telemd-update-trigger.service.in %D%/telemprobd.socket: %D%/telemprobd.socket.in
$(pathfix) < $< > $@
%D%/telemprobd-update-trigger.service: %D%/telemprobd-update-trigger.service.in
$(pathfix) < $< > $@ $(pathfix) < $< > $@
sysctldir = @SYSTEMD_SYSCTLDIR@ sysctldir = @SYSTEMD_SYSCTLDIR@
@@ -104,19 +106,19 @@ systemconfdir = @SYSTEMD_SYSTEMCONFDIR@
systemconf_DATA = %D%/40-core-ulimit.conf systemconf_DATA = %D%/40-core-ulimit.conf
clean-local: clean-local:
-rm -f %D%/telemd.service \ -rm -f %D%/telemprobd.service \
%D%/telemd.socket \ %D%/telemprobd.socket \
%D%/telemd.path \ %D%/telempostd.service \
%D%/telemd-update-trigger.service \ %D%/telempostd.path \
%D%/telemprobd-update-trigger.service \
%D%/telemetrics.conf \ %D%/telemetrics.conf \
%D%/telemetrics-dirs.conf \ %D%/telemetrics-dirs.conf \
%D%/libtelemetry.pc \ %D%/libtelemetry.pc \
%D%/40-crash-probe.conf \ %D%/40-crash-probe.conf \
%D%/journal-probe.service \ %D%/journal-probe.service \
%D%/oops-probe.service \ %D%/journal-probe-tail.service \
%D%/pstore-probe.service \ %D%/pstore-probe.service \
%D%/klogscanner.service \ %D%/klogscanner.service \
%D%/pstore-clean.service \ %D%/pstore-clean.service \
%D%/hprobe.service \ %D%/hprobe.service \
%D%/bert-probe.service \
%D%/.dirstamp %D%/.dirstamp
-11
View File
@@ -1,11 +0,0 @@
[Unit]
Description=Telemetrics Kernel Oops Probe
Requires=telemd.socket
After=telemd.socket
[Service]
ExecStart=@bindir@/oopsprobe
User=telemetry
[Install]
WantedBy=multi-user.target
+3 -2
View File
@@ -1,7 +1,8 @@
[Unit] [Unit]
Description=Telemetrics Pstore Probe Description=Telemetrics Pstore Probe
Requires=telemd.socket Requires=telemprobd.socket
After=telemd.socket After=telemprobd.socket
ConditionPathExists=/etc/telemetrics/opt-in
[Service] [Service]
ExecStart=@bindir@/pstoreprobe ExecStart=@bindir@/pstoreprobe
-1
View File
@@ -3,5 +3,4 @@ d @localstatedir@/spool/telemetry 0750 telemetry telemetry -
d @localstatedir@/log/telemetry 0750 telemetry telemetry - d @localstatedir@/log/telemetry 0750 telemetry telemetry -
d @localstatedir@/log/telemetry/records 0750 telemetry telemetry - d @localstatedir@/log/telemetry/records 0750 telemetry telemetry -
d @localstatedir@/cache/telemetry 0750 telemetry telemetry - d @localstatedir@/cache/telemetry 0750 telemetry telemetry -
d @localstatedir@/cache/telemetry/oops 0750 telemetry telemetry -
d @localstatedir@/cache/telemetry/pstore 0750 telemetry telemetry - d @localstatedir@/cache/telemetry/pstore 0750 telemetry telemetry -
+20 -18
View File
@@ -1,67 +1,69 @@
# values represent their default state
# copy to /etc/telemetrics/telemetrics.conf and modify for user config
[settings] [settings]
# ip address of destination server for record delivery # ip address of destination server for record delivery
server=https://clr.telemetry.intel.com/v2/collector #server=@BACKEND_ADDR@
socket_path=@SOCKETDIR@/telem-0 #socket_path=@SOCKETDIR@/telem-0
# certificate file to use to validate ssl endpoint # certificate file to use to validate ssl endpoint
cainfo= #cainfo=
# Telemetry id - post header used to group records in ingestion service, # Telemetry id - post header used to group records in ingestion service,
# which may be ingesting for more than one set of clients. Can be set # which may be ingesting for more than one set of clients. Can be set
# to any string. # to any string.
tidheader=X-Telemetry-TID:\s6907c830-eed9-4ce9-81ae-76daf8d88f0f #tidheader=X-Telemetry-TID:\s6907c830-eed9-4ce9-81ae-76daf8d88f0f
# record expiry time in minutes # record expiry time in minutes
record_expiry=1200 #record_expiry=1200
spool_dir=@localstatedir@/spool/telemetry #spool_dir=@localstatedir@/spool/telemetry
# maximum size of the spool directory in KB, -1 = quota disabled. # maximum size of the spool directory in KB, -1 = quota disabled.
# The block size of the files in this directory is considered, # The block size of the files in this directory is considered,
# and not the actual size of the record itself. # and not the actual size of the record itself.
spool_max_size=5120 #spool_max_size=5120
# time in seconds for processing spool # time in seconds for processing spool
# Valid range: 120..3600. Values outside this range are clamped. # Valid range: 120..300. Values outside this range are clamped.
spool_process_time=900 #spool_process_time=120
# rate limit enabled - if this is set to false then all rate-limiting disabled. # rate limit enabled - if this is set to false then all rate-limiting disabled.
# It is possible to disable each rate-limit individually below. # It is possible to disable each rate-limit individually below.
rate_limit_enabled=true #rate_limit_enabled=true
# rate limiting record burst limit # rate limiting record burst limit
# Valid Range: 0..INT_MAX, -1 = disabled. # Valid Range: 0..INT_MAX, -1 = disabled.
record_burst_limit=1000 #record_burst_limit=1000
# rate limiting record window length in minutes # rate limiting record window length in minutes
# Valid Range: 0..59 # Valid Range: 0..59
record_window_length=15 #record_window_length=15
# rate limiting byte burst limit # rate limiting byte burst limit
# Valid Range: 0..INT_MAX, -1 = disabled. # Valid Range: 0..INT_MAX, -1 = disabled.
byte_burst_limit=-1 #byte_burst_limit=-1
# rate limiting byte window length in minutes # rate limiting byte window length in minutes
# Valid Range: 0..59 # Valid Range: 0..59
byte_window_length=20 #byte_window_length=20
# rate limit strategy - what to do with record if rate-limiting prevents # rate limit strategy - what to do with record if rate-limiting prevents
# delivery over network # delivery over network
# Valid stategies: spool, drop # Valid stategies: spool, drop
rate_limit_strategy=spool #rate_limit_strategy=spool
# daemon recycling enabled - if daemon has been running for a while (2 hours), # daemon recycling enabled - if daemon has been running for a while (2 hours),
# has not any client nor spool data, then it exits. # has not any client nor spool data, then it exits.
# this is to ensure that latest code runs. # this is to ensure that latest code runs.
daemon_recycling_enabled=true #daemon_recycling_enabled=true
# record server delivery enabled - when enabled records will be delivered # record server delivery enabled - when enabled records will be delivered
# to server otherwise records will be ignored. This configuration can be used # to server otherwise records will be ignored. This configuration can be used
# with 'record_retention_enable' configuration value to keep records local only. # with 'record_retention_enable' configuration value to keep records local only.
record_server_delivery_enabled=true #record_server_delivery_enabled=true
# record retention enabled - when enabled a copy of reported telemetry records # record retention enabled - when enabled a copy of reported telemetry records
# will be kept locally. This configuration combined with 'record_server_delivery_enabled' # will be kept locally. This configuration combined with 'record_server_delivery_enabled'
# value can be used to keep records local only. # value can be used to keep records local only.
record_retention_enabled=false #record_retention_enabled=false
@@ -1,6 +1,6 @@
[Unit] [Unit]
Description=Telemetry Daemon Spool Description=Telemetry Post Daemon staging
ConditionPathExists=!/etc/telemetrics/opt-out ConditionPathExists=/etc/telemetrics/opt-in
[Path] [Path]
DirectoryNotEmpty=@localstatedir@/spool/telemetry DirectoryNotEmpty=@localstatedir@/spool/telemetry
+12
View File
@@ -0,0 +1,12 @@
[Unit]
Description=Telemetrics Post Daemon
ConditionPathExists=/etc/telemetrics/opt-in
[Service]
ExecStart=@bindir@/telempostd
WorkingDirectory=@localstatedir@/spool/telemetry
User=telemetry
[Install]
Also=telempostd.path
WantedBy=multi-user.target
@@ -4,4 +4,4 @@ BindsTo=update-triggers.target
[Service] [Service]
Type=oneshot Type=oneshot
ExecStart=@systemctldir@/systemctl try-restart telemd.service ExecStart=@systemctldir@/systemctl try-restart telemprobd.service
@@ -1,12 +1,12 @@
[Unit] [Unit]
Description=Telemetrics Daemon Description=Telemetrics Daemon
ConditionPathExists=!/etc/telemetrics/opt-out ConditionPathExists=/etc/telemetrics/opt-in
[Service] [Service]
ExecStart=@bindir@/telemd ExecStart=@bindir@/telemprobd
WorkingDirectory=@localstatedir@/spool/telemetry WorkingDirectory=@localstatedir@/spool/telemetry
User=telemetry User=telemetry
[Install] [Install]
Also=telemd.socket telemd.path Also=telemprobd.socket
WantedBy=multi-user.target WantedBy=multi-user.target
@@ -1,6 +1,6 @@
[Unit] [Unit]
Description=Telemetrics Daemon Description=Telemetrics Daemon
ConditionPathExists=!/etc/telemetrics/opt-out ConditionPathExists=/etc/telemetrics/opt-in
[Socket] [Socket]
ListenStream=@SOCKETDIR@/telem-0 ListenStream=@SOCKETDIR@/telem-0
+143
View File
@@ -0,0 +1,143 @@
/*
* This program is part of the Clear Linux Project
*
* Copyright 2018 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <limits.h>
#include <stdbool.h>
#include <sys/stat.h>
#include "log.h"
#include "util.h"
#include "common.h"
#include "iorecord.h"
bool _fgets(char *s, int n, FILE *stream)
{
char *i;
if (!fgets(s, n, stream)) {
return false;
}
if ((i = strchr(s, '\n')) != NULL) {
*i = '\0';
}
return true;
}
bool read_record(char *fullpath, char *headers[], char **body, char **cfg_file)
{
int i = 0;
bool result = false;
FILE *fp = NULL;
long offset;
#if (LINE_MAX > PATH_MAX)
char line[LINE_MAX+1] = { 0 };
#else
char line[PATH_MAX+1] = { 0 };
#endif
long size;
uint32_t cfg_prefix = 0;
fp = fopen(fullpath, "r");
if (fp == NULL) {
telem_log(LOG_ERR, "Unable to open file %s in staging\n", fullpath);
return false;
}
// Get the file size
fseek(fp, 0 , SEEK_END);
size = ftell(fp);
fseek(fp, 0 , SEEK_SET);
// First line may contain configuration file path
if (fread(&cfg_prefix, CFG_PREFIX_LENGTH, 1, fp) != 1) {
telem_log(LOG_ERR, "Error while parsing staged record configuration info.\n");
goto read_error;
}
if (cfg_prefix == CFG_PREFIX_32BIT) {
if (!_fgets(line, sizeof(line), fp)) {
telem_log(LOG_ERR, "Error while parsing staged record [%x]\n", cfg_prefix);
goto read_error;
}
size_t pathlen = strlen(line);
*cfg_file = malloc(pathlen + 1);
if (*cfg_file == NULL) {
telem_log(LOG_ERR, "Could not allocate memory for config file path\n");
goto read_error;
}
strcpy (*cfg_file, line);
telem_debug("DEBUG: cfg_file specified: %s\n", *cfg_file);
} else {
telem_debug("DEBUG: no user cfg file specified, cfg_prefix: %08x\n", cfg_prefix);
*cfg_file = NULL;
rewind(fp);
}
for (i = 0; i < NUM_HEADERS; i++) {
const char *header_name = get_header_name(i);
if (!_fgets(line, sizeof(line), fp)) {
telem_log(LOG_ERR, "Error while parsing staged record\n");
fclose(fp);
return false;
}
//Get rid of trailing newline
result = get_header(line, header_name, &headers[i]);
if (!result) {
telem_log(LOG_ERR, "read_record: Incorrect"
" headers in record\n");
goto read_error;
}
}
offset = ftell(fp);
if (offset == -1) {
telem_perror("Failed to get staged file offset of record payload");
result = false;
goto read_error;
}
size = size - offset + 1;
*body = malloc((size_t)size);
if (*body == NULL) {
telem_log(LOG_ERR, "Could not allocate memory for payload from staged file\n");
result = false;
goto read_error;
}
memset(*body, 0, (size_t)size);
//read rest of file
size_t newlen = fread(*body, sizeof(char), (size_t)size, fp);
if (newlen == 0) {
telem_perror("Error reading staged file");
result = false;
goto read_error;
} else {
result = true;
}
read_error:
if (fp) {
fclose(fp);
}
return result;
}
+28
View File
@@ -0,0 +1,28 @@
/*
* This program is part of the Clear Linux Project
*
* Copyright 2018 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
#include <stdbool.h>
/**
* Reads a telemetry record
*
* @param fullpath pointer to full path file name
* @param headers pointer to array of headers and values
* @param body record message content
*
* @return true if successful otherwise false
*/
bool read_record(char *fullpath, char *headers[], char **body, char **cfg);
+12 -9
View File
@@ -24,14 +24,18 @@
#include "common.h" #include "common.h"
#include "journal.h" #include "journal.h"
void print_usage(void) static void print_usage(void)
{ {
printf(" Usage\n"); printf("Usage:\n");
printf(" telem_journal [-Vi] [-r <record_id>] [-e <event_id>] [-c <classification>] [-b <boot_id>]\n\n");
printf("Where:\n");
printf(" -r, --record_id Print record with specific record_id\n"); printf(" -r, --record_id Print record with specific record_id\n");
printf(" -e, --event_id Print records with specific event_id\n"); printf(" -e, --event_id Print records with specific event_id\n");
printf(" -c, --classification Print records with specific classification\n"); printf(" -c, --classification Print records with specific classification\n");
printf(" -b, --boot_id Print records with specific boot_id\n"); printf(" -b, --boot_id Print records with specific boot_id\n");
printf(" -i, --include_record Include record content\n"); printf(" -i, --include_record Include record content if available.\n");
printf(" Content only available when telemetry is configured\n");
printf(" with \"record_retention_enabled=true\"\n");
printf(" -V, --verbose Verbose output\n"); printf(" -V, --verbose Verbose output\n");
printf(" -h, --help Display this help message\n"); printf(" -h, --help Display this help message\n");
} }
@@ -41,8 +45,8 @@ int main(int argc, char **argv)
int rc = EXIT_SUCCESS; int rc = EXIT_SUCCESS;
int count = 0; int count = 0;
int verbose_output = 0; bool verbose_output = false;
int record = 0; bool record = false;
char *boot_id = NULL; char *boot_id = NULL;
char *record_id = NULL; char *record_id = NULL;
char *event_id = NULL; char *event_id = NULL;
@@ -78,16 +82,15 @@ int main(int argc, char **argv)
boot_id = optarg; boot_id = optarg;
break; break;
case 'V': case 'V':
verbose_output = 1; verbose_output = true;
break; break;
case 'i': case 'i':
record = 1; record = true;
break; break;
case 'h': case 'h':
print_usage(); print_usage();
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
case '?': default:
/** default */
print_usage(); print_usage();
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
+43 -72
View File
@@ -58,9 +58,7 @@ static int serialize_journal_entry(struct JournalEntry *entry, char **buff)
if (asprintf(buff, "%s\036%lld\036%s\036%s\036%s", entry->record_id, (long long int)entry->timestamp, if (asprintf(buff, "%s\036%lld\036%s\036%s\036%s", entry->record_id, (long long int)entry->timestamp,
entry->classification, entry->event_id, entry->boot_id) < 0) { entry->classification, entry->event_id, entry->boot_id) < 0) {
#ifdef DEBUG telem_log(LOG_ERR, "Error: Unable to serialize data in buff\n");
fprintf(stderr, "Error: unable to serialize data in buff\n");
#endif
rc = -1; rc = -1;
} }
@@ -101,11 +99,14 @@ static int deserialize_journal_entry(char *line, struct JournalEntry **entry)
size_t offset = 0; size_t offset = 0;
struct JournalEntry *e = NULL; struct JournalEntry *e = NULL;
if (line == NULL) { /* Assume an error... */
*entry = NULL;
if (line == NULL || !strlen(line)) {
return -1; return -1;
} }
e = malloc(sizeof(struct JournalEntry)); e = calloc(1, sizeof(struct JournalEntry));
if (!e) { if (!e) {
return -1; return -1;
} }
@@ -140,10 +141,6 @@ static int deserialize_journal_entry(char *line, struct JournalEntry **entry)
e->boot_id = out; e->boot_id = out;
rc = 0; rc = 0;
break; break;
default:
assert(i < 0 && i > 4);
free(out);
rc = 1;
} }
} else { } else {
rc = -1; rc = -1;
@@ -204,9 +201,7 @@ static int save_entry(FILE *fptr, struct JournalEntry *entry)
} }
if ((rc = serialize_journal_entry(entry, &serialized_data)) == 0) { if ((rc = serialize_journal_entry(entry, &serialized_data)) == 0) {
#ifdef DEBUG telem_debug("DEBUG: Saving: %s\n", serialized_data);
printf("Saving: %s\n", serialized_data);
#endif
fprintf(fptr, "%s\n", serialized_data); fprintf(fptr, "%s\n", serialized_data);
fflush(fptr); fflush(fptr);
free(serialized_data); free(serialized_data);
@@ -229,9 +224,7 @@ static int read_boot_id(char buff[])
fs = fopen(BOOTID_FILE, "r"); fs = fopen(BOOTID_FILE, "r");
if (!fs) { if (!fs) {
#ifdef DEBUG telem_log(LOG_ERR, "Error: Unable to open %s for reading: %d\n", BOOTID_FILE, errno);
fprintf(stderr, "Unable to open %s for reading: %d\n", BOOTID_FILE, errno);
#endif
return rc; return rc;
} }
@@ -264,9 +257,7 @@ static int skip_n_lines(int n, FILE *fptr, int (*found_record)(char *))
struct JournalEntry *entry = NULL; struct JournalEntry *entry = NULL;
if (fptr == NULL) { if (fptr == NULL) {
#ifdef DEBUG telem_log(LOG_ERR, "fptr argument to skip_n_lines is invalid\n");
fprintf(stderr, "fptr argument to skip_n_lines is invalid\n");
#endif
// File descriptor in bad state // File descriptor in bad state
return EBADFD; return EBADFD;
} }
@@ -281,6 +272,8 @@ static int skip_n_lines(int n, FILE *fptr, int (*found_record)(char *))
break; break;
} }
if (found_record != NULL) { if (found_record != NULL) {
if (!strlen(line))
continue;
deserialize_journal_entry(line, &entry); deserialize_journal_entry(line, &entry);
if (entry) { if (entry) {
found_record(entry->record_id); found_record(entry->record_id);
@@ -327,9 +320,7 @@ static int copy_to_tmp(FILE *fptr, char *tmp_path)
if (fclose(fptr_tmp) != 0) { if (fclose(fptr_tmp) != 0) {
rc = errno; rc = errno;
#ifdef DEBUG telem_perror("Error");
perror("Error: ");
#endif
} }
free(line); free(line);
@@ -344,26 +335,26 @@ TelemJournal *open_journal(const char *journal_file)
struct TelemJournal *telem_journal; struct TelemJournal *telem_journal;
// Use default location if journal_file parameter is NULL // Use default location if journal_file parameter is NULL
fptr = (journal_file == NULL) ? fopen(JOURNAL_PATH, "a+") : if (journal_file == NULL) {
fopen(journal_file, "a+"); fptr = fopen(JOURNAL_PATH, "a+");
} else {
fptr = fopen(journal_file, "a+");
}
if (fptr == NULL) { if (fptr == NULL) {
#ifdef DEBUG telem_perror("Error while opening journal file");
perror("Error while opening journal file: ");
#endif
return NULL; return NULL;
} }
if (read_boot_id(boot_id) != 0) { if (read_boot_id(boot_id) != 0) {
#ifdef DEBUG telem_perror("Error while reading boot_id");
perror("Error while reading boot_id: "); fclose(fptr);
#endif
return NULL; return NULL;
} }
telem_journal = malloc(sizeof(struct TelemJournal)); telem_journal = malloc(sizeof(struct TelemJournal));
if (!telem_journal) { if (!telem_journal) {
fprintf(stderr, "Unable to allocate more memory\n"); telem_log(LOG_CRIT, "CRIT: Unable to allocate memory\n");
fclose(fptr);
return NULL; return NULL;
} }
@@ -377,9 +368,7 @@ TelemJournal *open_journal(const char *journal_file)
telem_journal->latest_record_id = NULL; telem_journal->latest_record_id = NULL;
telem_journal->prune_entry_callback = NULL; telem_journal->prune_entry_callback = NULL;
#ifdef DEBUG telem_debug("Records in db: %d\n", telem_journal->record_count);
printf("Records in db: %d\n", telem_journal->record_count);
#endif
return telem_journal; return telem_journal;
} }
@@ -431,7 +420,7 @@ static void print_record(char *record_id)
recordfp = fopen(filepath, "r"); recordfp = fopen(filepath, "r");
if (!recordfp) { if (!recordfp) {
telem_perror("Error when opening a record to print"); telem_log(LOG_INFO, "Could not open record %s: %s\n", record_id, strerror(errno));
return; return;
} }
@@ -474,11 +463,13 @@ int print_journal(TelemJournal *telem_journal, char *classification,
if (rc == -1) { if (rc == -1) {
return rc; return rc;
} else if (rc != 0) { } else if (rc != 0) {
fprintf(stderr, "An error occurred while advancing journal file: %s\n", strerror(rc)); telem_log(LOG_ERR, "An error occurred while advancing journal file: %s\n", strerror(rc));
} }
} }
while (getline(&line, &len, journal_fileptr) != -1) { while (getline(&line, &len, journal_fileptr) != -1) {
if (!strlen(line))
continue;
deserialize_journal_entry(line, &entry); deserialize_journal_entry(line, &entry);
if (entry) { if (entry) {
/* filter entry out if one is provided */ /* filter entry out if one is provided */
@@ -496,16 +487,16 @@ int print_journal(TelemJournal *telem_journal, char *classification,
// Check prefixes when classification ends in /*, otherwise use strcomp // Check prefixes when classification ends in /*, otherwise use strcomp
if (is_class_prefix(classification)) { if (is_class_prefix(classification)) {
if (strncmp(entry->classification, classification, strlen(classification) - 1) != 0) { if (strncmp(entry->classification, classification, strlen(classification) - 1) != 0) {
continue; goto skip_print;
} }
} else if (strcmp(entry->classification, classification) != 0) { } else if (strcmp(entry->classification, classification) != 0) {
continue; goto skip_print;
} }
} }
/* end filters section */ /* end filters section */
ts = *localtime(&entry->timestamp); ts = *localtime(&entry->timestamp);
if (strftime(str_time, sizeof(str_time), "%a %Y-%m-%d %H:%M:%S %Z", &ts) == 0) { if (strftime(str_time, sizeof(str_time), "%a %Y-%m-%d %H:%M:%S %Z", &ts) == 0) {
continue; goto skip_print;
} }
/* print record metadata */ /* print record metadata */
fprintf(stdout, "%-30s %s %s %s %s\n", entry->classification, str_time, entry->record_id, entry->event_id, entry->boot_id); fprintf(stdout, "%-30s %s %s %s %s\n", entry->classification, str_time, entry->record_id, entry->event_id, entry->boot_id);
@@ -514,9 +505,9 @@ int print_journal(TelemJournal *telem_journal, char *classification,
print_record(entry->record_id); print_record(entry->record_id);
} }
count++; count++;
}
skip_print: skip_print:
free_journal_entry(entry); free_journal_entry(entry);
}
} }
free(line); free(line);
fclose(journal_fileptr); fclose(journal_fileptr);
@@ -561,9 +552,7 @@ int new_journal_entry(TelemJournal *telem_journal, char *classification,
struct JournalEntry *entry = NULL; struct JournalEntry *entry = NULL;
if (telem_journal == NULL) { if (telem_journal == NULL) {
#ifdef DEBUG telem_log(LOG_ERR, "telem_journal was not initialized\n");
fprintf(stderr, "Error: telem_journal was not initialized\n");
#endif
return rc; return rc;
} }
@@ -577,7 +566,7 @@ int new_journal_entry(TelemJournal *telem_journal, char *classification,
entry = malloc(sizeof(struct JournalEntry)); entry = malloc(sizeof(struct JournalEntry));
if (!entry) { if (!entry) {
fprintf(stderr, "Error: unable to allocate more memory\n"); telem_log(LOG_CRIT, "CRIT: unable to allocate memory\n");
return rc; return rc;
} }
entry->classification = NULL; entry->classification = NULL;
@@ -586,16 +575,12 @@ int new_journal_entry(TelemJournal *telem_journal, char *classification,
entry->boot_id = NULL; entry->boot_id = NULL;
if (get_random_id(&record_id) != 0) { if (get_random_id(&record_id) != 0) {
#ifdef DEBUG telem_log(LOG_ERR, "Erorr: Unable to generate random id\n");
fprintf(stderr, "Error: unable to generate random id\n");
#endif
goto quit; goto quit;
} }
if (read_boot_id(boot_id) != 0) { if (read_boot_id(boot_id) != 0) {
#ifdef DEBUG telem_log(LOG_ERR, "Error: Unable to read boot_id\n");
fprintf(stderr, "Error: unable to read boot_id\n");
#endif
goto quit; goto quit;
} }
@@ -613,9 +598,7 @@ int new_journal_entry(TelemJournal *telem_journal, char *classification,
if ((rc = save_entry(telem_journal->fptr, entry)) == 0) { if ((rc = save_entry(telem_journal->fptr, entry)) == 0) {
telem_journal->record_count = telem_journal->record_count + 1; telem_journal->record_count = telem_journal->record_count + 1;
#ifdef DEBUG telem_debug("DEBUG: %d records in journal\n", telem_journal->record_count);
fprintf(stdout, "%d records in journal\n", telem_journal->record_count);
#endif
} }
free(telem_journal->latest_record_id); free(telem_journal->latest_record_id);
@@ -645,9 +628,7 @@ int prune_journal(struct TelemJournal *telem_journal, char *tmp_dir)
// jump to line# count // jump to line# count
if ((rc = skip_n_lines(count, telem_journal->fptr, telem_journal->prune_entry_callback)) != 0) { if ((rc = skip_n_lines(count, telem_journal->fptr, telem_journal->prune_entry_callback)) != 0) {
#ifdef DEBUG telem_log(LOG_ERR, "Error skipping %d journal lines\n", count);
fprintf(stderr, "Error: skipping %d journal lines\n", count);
#endif
// if rc == -1 (n > #lines in file, change to errno style) // if rc == -1 (n > #lines in file, change to errno style)
return (rc == -1) ? EADDRNOTAVAIL : rc; return (rc == -1) ? EADDRNOTAVAIL : rc;
} }
@@ -663,38 +644,28 @@ int prune_journal(struct TelemJournal *telem_journal, char *tmp_dir)
} }
// create new file with rest of file // create new file with rest of file
if ((rc = copy_to_tmp(telem_journal->fptr, tmp_file_path)) != 0) { if ((rc = copy_to_tmp(telem_journal->fptr, tmp_file_path)) != 0) {
#ifdef DEBUG telem_log(LOG_ERR, "Error copying partial journal to temp journal file\n");
fprintf(stderr, "Error: copying partial journal to temp journal file\n");
#endif
goto quit; goto quit;
} }
// close file handler // close file handler
if ((rc = fclose(telem_journal->fptr)) != 0) { if ((rc = fclose(telem_journal->fptr)) != 0) {
#ifdef DEBUG telem_log(LOG_ERR, "Error closing journal file handler\n");
fprintf(stderr, "Error: closing journal file handler\n");
#endif
goto quit; goto quit;
} }
// overwrite file // overwrite file
if ((rc = rename(tmp_file_path, telem_journal->journal_file)) != 0) { if ((rc = rename(tmp_file_path, telem_journal->journal_file)) != 0) {
#ifdef DEBUG telem_log(LOG_ERR, "Error while overwriting journal file\n");
fprintf(stderr, "Error: while overwriting journal file\n");
#endif
goto quit; goto quit;
} }
// reopen file handler // reopen file handler
telem_journal->fptr = fopen(telem_journal->journal_file, "a+"); telem_journal->fptr = fopen(telem_journal->journal_file, "a+");
if (!telem_journal->fptr) { if (!telem_journal->fptr) {
#ifdef DEBUG telem_log(LOG_ERR, "Error re-opening journal file\n");
fprintf(stderr, "Error: re-opening journal file\n");
#endif
return rc; return rc;
} }
// update record count // update record count
telem_journal->record_count = telem_journal->record_count - count; telem_journal->record_count = telem_journal->record_count - count;
#ifdef DEBUG telem_debug("DEBUG: record_count: %d\n", telem_journal->record_count);
fprintf(stdout, "record_count: %d\n", telem_journal->record_count);
#endif
} }
rc = 0; rc = 0;
+6
View File
@@ -5,5 +5,11 @@ bin_PROGRAMS += \
%D%/journal.c \ %D%/journal.c \
src/util.c \ src/util.c \
src/common.c src/common.c
%C%_telem_journal_CFLAGS = \
$(AM_CFLAGS)
if LOG_SYSTEMD
%C%_telem_journal_CFLAGS += $(SYSTEMD_JOURNAL_CFLAGS)
%C%_telem_journal_LDADD = $(SYSTEMD_JOURNAL_LIBS)
endif
# vim: filetype=automake tabstop=8 shiftwidth=8 noexpandtab # vim: filetype=automake tabstop=8 shiftwidth=8 noexpandtab
+77 -27
View File
@@ -1,46 +1,97 @@
bin_PROGRAMS = %D%/telemd bin_PROGRAMS = \
%D%/telemprobd \
%D%/telempostd \
%D%/telemctl
%C%_telemd_SOURCES = \ %C%_telemctl_SOURCES = \
%D%/main.c \ %D%/telemctl.c
%D%/telemdaemon.c \
%D%/telemdaemon.h \
%D%/spool.c \
%D%/spool.h \
%D%/journal/journal.c \
%D%/journal/journal.h \
%D%/retention.c \
%D%/retention.h
%C%_telemd_LDADD = $(CURL_LIBS) \ %C%_telemctl_CFLAGS = \
%D%/libtelem-shared.la
%C%_telemd_CFLAGS = \
$(AM_CFLAGS) $(AM_CFLAGS)
%C%_telemd_LDFLAGS = \ %C%_telemctl_LDFLAGS = \
$(AM_LDFLAGS) \
-pie
%C%_telemprobd_SOURCES = \
%D%/probe.c \
%D%/telemdaemon.c \
%D%/telemdaemon.h \
%D%/journal/journal.c \
%D%/journal/journal.h
%C%_telemprobd_LDADD = $(CURL_LIBS) \
%D%/libtelem-shared.la \
%D%/libtelemetry.la
%C%_telemprobd_CFLAGS = \
$(AM_CFLAGS)
%C%_telemprobd_LDFLAGS = \
$(AM_LDFLAGS) \ $(AM_LDFLAGS) \
-pie -pie
if HAVE_SYSTEMD_DAEMON if HAVE_SYSTEMD_DAEMON
%C%_telemd_CFLAGS += \ %C%_telemprobd_CFLAGS += \
$(SYSTEMD_DAEMON_CFLAGS) $(SYSTEMD_DAEMON_CFLAGS)
%C%_telemd_LDADD += \ %C%_telemprobd_LDADD += \
$(SYSTEMD_DAEMON_LIBS) $(SYSTEMD_DAEMON_LIBS)
endif endif
if LOG_SYSTEMD if LOG_SYSTEMD
if HAVE_SYSTEMD_JOURNAL if HAVE_SYSTEMD_JOURNAL
%C%_telemd_CFLAGS += \ %C%_telemprobd_CFLAGS += \
$(SYSTEMD_JOURNAL_CFLAGS) $(SYSTEMD_JOURNAL_CFLAGS)
%C%_telemd_LDADD += \ %C%_telemprobd_LDADD += \
$(SYSTEMD_JOURNAL_LIBS) $(SYSTEMD_JOURNAL_LIBS)
endif
endif
# Telemetry post daemon
%C%_telempostd_SOURCES = \
%D%/post.c \
%D%/telempostdaemon.c \
%D%/telempostdaemon.h \
%D%/journal/journal.c \
%D%/journal/journal.h \
%D%/spool.h \
%D%/spool.c \
%D%/retention.h \
%D%/retention.c \
%D%/iorecord.c \
%D%/iorecord.h
%C%_telempostd_LDADD = $(CURL_LIBS) \
%D%/libtelem-shared.la \
%D%/libtelemetry.la
%C%_telempostd_CFLAGS = \
$(AM_CFLAGS)
%C%_telempostd_LDFLAGS = \
$(AM_LDFLAGS) \
-pie
if HAVE_SYSTEMD_DAEMON
%C%_telempostd_CFLAGS += \
$(SYSTEMD_DAEMON_CFLAGS)
%C%_telempostd_LDADD += \
$(SYSTEMD_DAEMON_LIBS)
endif
if LOG_SYSTEMD
if HAVE_SYSTEMD_JOURNAL
%C%_telempostd_CFLAGS += \
$(SYSTEMD_JOURNAL_CFLAGS)
%C%_telempostd_LDADD += \
$(SYSTEMD_JOURNAL_LIBS)
endif endif
endif endif
# set library version info # set library version info
SHAREDLIB_CURRENT=4 SHAREDLIB_CURRENT=4
SHAREDLIB_REVISION=0 SHAREDLIB_REVISION=1
SHAREDLIB_AGE=1 SHAREDLIB_AGE=0
noinst_LTLIBRARIES = %D%/libtelem-shared.la noinst_LTLIBRARIES = %D%/libtelem-shared.la
@@ -50,7 +101,6 @@ noinst_LTLIBRARIES = %D%/libtelem-shared.la
%D%/configuration.c \ %D%/configuration.c \
%D%/nica/inifile.c \ %D%/nica/inifile.c \
%D%/nica/hashmap.c \ %D%/nica/hashmap.c \
%D%/nica/b64enc.c \
%D%/configuration.h \ %D%/configuration.h \
%D%/common.c \ %D%/common.c \
%D%/common.h %D%/common.h
+4 -4
View File
@@ -1,7 +1,7 @@
/* /*
* This program is part of the Clear Linux Project * This program is part of the Clear Linux Project
* *
* Copyright 2015 Intel Corporation * Copyright 2019 Intel Corporation
* *
* This program is free software; you can redistribute it and/or modify it under * This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as * the terms and conditions of the GNU Lesser General Public License, as
@@ -17,6 +17,7 @@
#pragma once #pragma once
#include <stdio.h> #include <stdio.h>
#include <errno.h>
#include "config.h" #include "config.h"
@@ -35,15 +36,14 @@
#include <systemd/sd-journal.h> #include <systemd/sd-journal.h>
#endif #endif
#else #else
#include <errno.h>
#include <string.h> #include <string.h>
#include <syslog.h> #include <syslog.h>
#endif #endif
#ifdef DEBUG #ifdef DEBUG
#define telem_debug(...) do { \ #define telem_debug(...) do { \
(telem_log(LOG_DEBUG, "%s():[%d]", __func__, __LINE__), \ telem_log(LOG_DEBUG, "%s():[%d] ", __func__, __LINE__); \
telem_log(LOG_DEBUG, __VA_ARGS__)); \ telem_log(LOG_DEBUG, __VA_ARGS__); \
} while (0); } while (0);
#else #else
#define telem_debug(...) do {} while (0); #define telem_debug(...) do {} while (0);
-154
View File
@@ -1,154 +0,0 @@
/*
* This file is part of libnica.
*
* Copyright © 2017 Intel Corporation
*
* libnica is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdint.h>
#include "b64enc.h"
#define B64_LINE_LEN 76
static int padding[] = {0, 2, 1, 0};
static char table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
/*
* base 64 encoding of 3 bytes to 4 printable characters
* (https://tools.ietf.org/html/rfc4648).
*
* i.e. (Reference: https://en.wikipedia.org/wiki/Base64)
*
* [ M ] [ a ] [ n ]
* bin 01001101 01100001 01101110
*
* b64 01001101 01100001 01101110 >> 18 & 0x3F -> 010011 -> ( 19 dec) T
* ------
*
* b64 01001101 01100001 01101110 >> 12 & 0x3F -> 010110 -> ( 22 dec) W
* -------
*
* b64 01001101 01100001 01101110 >> 6 & 0x3F -> 000101 -> ( 5 dec) F
* -------
*
* b64 01001101 01100001 01101110 >> 0 & 0x3F -> 101110 -> (117 dec) u
* ------
*
*/
static void b64_3b(char bin[3], char *out) {
uint32_t x = (((uint32_t) bin[0] << 16) & 0xFF0000) |
(((uint32_t) bin[1] << 8) & 0xFF00) |
(((uint32_t) bin[2]) & 0xFF);
out[3] = table[x & 0x3F];
out[2] = table[x >> 6 & 0x3F];
out[1] = table[x >> 12 & 0x3F];
out[0] = table[x >> 18 & 0x3F];
}
/*
* Provide padding to already initialized b64 output
*/
static void b64_padding(char *out, int pad_size) {
if (pad_size > 0) {
*out++ = '=';
}
if (pad_size > 1) {
*out++ = '=';
}
*out = '\0';
}
/*
* Encode file contents as b64 string
*/
int nc_b64enc_file(FILE *fh, char *buff, size_t buff_size) {
int ret_val = 1;
int out_count = 0;
int pad_size = 0;
char *buff_ptr = buff;
char bin[3] = {0, 0, 0};
size_t len = 0;
while ((len = fread(bin, 1, 3, fh)) > 0) {
b64_3b(bin, buff_ptr);
/*
Reset 2nd and 3rd bytes in case only one byte was read. If these
bytes are not clean b64 output will be corrupted with old bits.
*/
bin[1] = bin[2] = 0;
/*
Advance pointer to the next free position of the b64 encoded
buffer. This happens to be len + 1 (as longs as len >= 1 and len <= 3)
len = 1 byte -> b64 -> 2 bytes (or len + 1)
len = 2 bytes -> b64 -> 3 bytes (or len + 1)
len = 3 bytes -> b64 -> 4 bytes (or len + 1)
*/
buff_ptr += (len + 1);
/*
Line break every 76 characters
*/
out_count += (int) (len + 1);
if (out_count % B64_LINE_LEN == 0) {
*buff_ptr++ = '\n';
}
pad_size = padding[len];
/*
Check not to overflow buffer
buffer size <= b64 characters + padding length + null termination
*/
if (buff_size <= (size_t) (buff_ptr - buff) + (size_t) pad_size + 1) {
ret_val = 0;
goto end_b64_enc;
}
}
b64_padding(buff_ptr, pad_size);
end_b64_enc:
return ret_val;
}
int nc_b64enc_filename(const char *filename, char *buff, size_t buff_size) {
int ret = 0;
FILE *fh = NULL;
fh = fopen(filename, "rb");
if (fh == NULL) {
goto nc_b64_clean;
}
ret = nc_b64enc_file(fh, buff, buff_size);
nc_b64_clean:
if (fh) {
fclose(fh);
}
return ret;
}
/* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */
-42
View File
@@ -1,42 +0,0 @@
/*
* This file is part of libnica.
*
* Copyright © 2017 Intel Corporation
*
* libnica is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* This is a chained base64 encode implementation.
*/
#pragma once
#define _GNU_SOURCE
#include "macros.h"
/*
* Encodes contents of file handler in base64
*
* @param fh File handler to encode as base64
* @param buff Output buffer where the base64 output should be written
* @param buff_size Size of the output buffer
*
* @returns 1 in success and 0 in failure
*/
_nica_public_ int nc_b64enc_file(FILE *fh, char *buff, size_t buff_size);
/*
* Encodes contents of file (filename) in base64
*
* @param filename File to encode as base64
* @param buff Output buffer where the base64 output should be written
* @param buff_size Size of the output buffer
*
* @returns 1 in success and 0 in failure
*/
_nica_public_ int nc_b64enc_filename(const char *filename, char *buff, size_t buff_size);
+36 -24
View File
@@ -151,33 +151,38 @@ static char *string_strip(char *str, ssize_t len, ssize_t *out_len)
/* eat \s */ /* eat \s */
static char *string_unescape(char *str) static char *string_unescape(char *str)
{ {
char *c, *c1, *c2, *c3;; char *c, *c1, *c2, *c3;;
if (!str) if (!str) {
return NULL; return NULL;
}
c = calloc(strlen(str) + 1, 1); c = calloc(strlen(str) + 1, 1);
c1 = c; if (c == NULL) {
return NULL;
}
c2 = str; c1 = c;
while (c2 && *c2 != 0) {
c3 = c2 + 1;
if (*c2 == '\\') {
if (*c3 == 's') {
*c = ' ';
c++;
c2 += 2;
} else {
c2++;
}
} else {
*c = *c2;
c++;
c2++;
}
}
free(str); c2 = str;
while (c2 && *c2 != 0) {
c3 = c2 + 1;
if (*c2 == '\\') {
if (*c3 == 's') {
*c = ' ';
c++;
c2 += 2;
} else {
c2++;
}
} else {
*c = *c2;
c++;
c2++;
}
}
free(str);
return c1; return c1;
} }
@@ -300,7 +305,14 @@ int nc_ini_file_parse_full(const char *path, NcHashmap **out_map, int *error_lin
key = strdup(buf); key = strdup(buf);
key = string_chew_terminated(key); key = string_chew_terminated(key);
value = string_chew_terminated(value); value = string_chew_terminated(value);
value = string_unescape(value); if (value != NULL) {
value = string_unescape(value);
if (value == NULL) {
err_ret = NC_INI_ERROR_INTERNAL;
fprintf(stderr, "[inifile] Fatal! Out of memory\n");
goto fail;
}
}
if (streq(key, "")) { if (streq(key, "")) {
err_ret = NC_INI_ERROR_EMPTY_KEY; err_ret = NC_INI_ERROR_EMPTY_KEY;
+97
View File
@@ -0,0 +1,97 @@
/*
* This program is part of the Clear Linux Project
*
* Copyright 2018 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <unistd.h>
#include <stdbool.h>
#include <sys/stat.h>
#include "telemetry.h"
#include "log.h"
#include "spool.h"
#include "configuration.h"
#include "telempostdaemon.h"
/*
* Using a function pointer for unit testing to isolate the call to actual post function.
* The call to post the record to the server is stubbed out in the unit tests
* using pointer to a fake function.
*/
bool (*post_record_ptr)(char *[], char *, char *) = post_record_http;
void print_usage(char *prog)
{
printf("%s: Usage\n", prog);
printf(" -f, --config_file Configuration file. This overides the other parameters\n");
printf(" -h, --help Display this help message\n");
printf(" -V, --version Print the program version\n");
}
int main(int argc, char **argv)
{
int c;
int opt_index = 0;
TelemPostDaemon daemon;
struct option opts[] = {
{ "config_file", 1, NULL, 'f' },
{ "help", 0, NULL, 'h' },
{ "version", 0, NULL, 'V' },
{ NULL, 0, NULL, 0 }
};
while ((c = getopt_long(argc, argv, "f:hV", opts, &opt_index)) != -1) {
switch (c) {
case 'f':
if (tm_set_config_file(optarg) != 0) {
telem_log(LOG_ERR, "Configuration file"
" path not valid\n");
exit(EXIT_FAILURE);
}
break;
case 'V':
printf(PACKAGE_VERSION "\n");
exit(EXIT_SUCCESS);
case 'h':
print_usage(argv[0]);
exit(EXIT_SUCCESS);
case '?':
print_usage(argv[0]);
exit(EXIT_FAILURE);
}
}
initialize_post_daemon(&daemon);
daemon.current_spool_size = get_spool_dir_size();
/* When path activated this will process
* the activating message or previously
* spooled data */
staging_records_loop(&daemon);
/* This function is blocking, it will
* block until a signal is received */
run_daemon(&daemon);
close_daemon(&daemon);
return 0;
}
+15 -67
View File
@@ -31,6 +31,7 @@
#include <signal.h> #include <signal.h>
#include <malloc.h> #include <malloc.h>
#include "telemetry.h"
#include "config.h" #include "config.h"
#include "common.h" #include "common.h"
#ifdef HAVE_SYSTEMD_SD_DAEMON_H #ifdef HAVE_SYSTEMD_SD_DAEMON_H
@@ -49,15 +50,6 @@
#include "log.h" #include "log.h"
#include "telemdaemon.h" #include "telemdaemon.h"
#include "configuration.h" #include "configuration.h"
#include "retention.h"
#include "spool.h"
/*
* Using a function pointer for unit testing to isolate the call to actual post function.
* The call to post the record to the server is stubbed out in the unit tests
* using pointer to a fake function.
*/
bool (*post_record_ptr)(char *[], char *, bool) = post_record_http;
void print_usage(char *prog) void print_usage(char *prog)
{ {
@@ -77,9 +69,7 @@ int main(int argc, char **argv)
client *cl = NULL; client *cl = NULL;
client *current_client = NULL; client *current_client = NULL;
int c; int c;
char *config_file = NULL;
int opt_index = 0; int opt_index = 0;
nfds_t initial_nfds = 0;
sigset_t mask; sigset_t mask;
//bool interrupted = false; //bool interrupted = false;
@@ -96,18 +86,12 @@ int main(int argc, char **argv)
while ((c = getopt_long(argc, argv, "f:hV", opts, &opt_index)) != -1) { while ((c = getopt_long(argc, argv, "f:hV", opts, &opt_index)) != -1) {
switch (c) { switch (c) {
case 'f': case 'f':
config_file = optarg; if (tm_set_config_file(optarg) != 0) {
struct stat buf; telem_log(LOG_ERR, "Configuration file"
ret = stat(config_file, &buf);
/* check if the file exists and is a regular file */
if (ret == -1 || !S_ISREG(buf.st_mode)) {
telem_log(LOG_ERR, "Configuration file"
" path not valid\n"); " path not valid\n");
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
set_config_file(config_file);
break; break;
case 'h': case 'h':
print_usage(argv[0]); print_usage(argv[0]);
@@ -121,12 +105,7 @@ int main(int argc, char **argv)
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
} }
initialize_daemon(&daemon); initialize_probe_daemon(&daemon);
/* Register record retention delete action as a callback to prune entry */
if (daemon.record_journal) {
daemon.record_journal->prune_entry_callback = &delete_record_by_id;
}
sigemptyset(&mask); sigemptyset(&mask);
@@ -227,19 +206,9 @@ int main(int argc, char **argv)
telem_log(LOG_INFO, "Listening on socket...\n"); telem_log(LOG_INFO, "Listening on socket...\n");
/* Calculate the spool directory size */
if (is_spool_valid()) {
daemon.is_spool_valid = true;
daemon.current_spool_size = get_spool_dir_size();
}
int spool_process_time = spool_process_time_config();
spool_records_loop(&(daemon.current_spool_size));
time_t last_spool_run_time = time(NULL);
time_t last_daemon_start_time = time(NULL);
bool daemon_recycling_enabled = daemon_recycling_enabled_config(); bool daemon_recycling_enabled = daemon_recycling_enabled_config();
int spool_process_time = spool_process_time_config();
time_t last_record_received = time(NULL);
ret = update_machine_id(); ret = update_machine_id();
if (ret == -1) { if (ret == -1) {
@@ -251,18 +220,9 @@ int main(int argc, char **argv)
time_t last_refresh_time = time(NULL); time_t last_refresh_time = time(NULL);
/* Save initial count for non connection fds */
initial_nfds = daemon.nfds;
/* Loop to accept clients */ /* Loop to accept clients */
while (1) { while (1) {
malloc_trim(0); malloc_trim(0);
if (initial_nfds == daemon.nfds) {
ret = prune_journal(daemon.record_journal, JOURNAL_TMPDIR);
if (ret != 0) {
telem_log(LOG_WARNING, "Unable to prune journal\n");
}
}
ret = poll(daemon.pollfds, daemon.nfds, spool_process_time * 1000); ret = poll(daemon.pollfds, daemon.nfds, spool_process_time * 1000);
if (ret == -1) { if (ret == -1) {
telem_perror("Failed to poll daemon file descriptors"); telem_perror("Failed to poll daemon file descriptors");
@@ -283,8 +243,8 @@ int main(int argc, char **argv)
} }
if (fdsi.ssi_signo == SIGTERM || fdsi.ssi_signo == SIGINT) { if (fdsi.ssi_signo == SIGTERM || fdsi.ssi_signo == SIGINT) {
telem_log(LOG_INFO, "Received either a \ telem_log(LOG_INFO, "Received either a "
SIGINT/SIGTERM signal\n"); "SIGINT/SIGTERM signal\n");
goto clean_exit; goto clean_exit;
} }
@@ -292,12 +252,6 @@ int main(int argc, char **argv)
telem_log(LOG_INFO, "Received a SIGHUP signal\n"); telem_log(LOG_INFO, "Received a SIGHUP signal\n");
/* reload configuration file */ /* reload configuration file */
reload_config(); reload_config();
if (is_spool_valid()) {
daemon.is_spool_valid = true;
//calc_spool_dir_size();
daemon.current_spool_size = get_spool_dir_size();
}
} }
} }
@@ -349,25 +303,20 @@ int main(int argc, char **argv)
} }
assert(current_client); assert(current_client);
handle_client(&daemon, i, current_client); handle_client(&daemon, i, current_client);
last_record_received = time(NULL);
} }
} }
} else { } else {
time_t now = time(NULL); time_t now = time(NULL);
/* If spool is empty and time to recycle the daemon has elapsed*/ /* time to recycle the daemon has elapsed*/
if (daemon_recycling_enabled && (daemon.current_spool_size == 0) && if (daemon_recycling_enabled &&
difftime(now, last_daemon_start_time) >= TM_DAEMON_EXIT_TIME) { difftime(now, last_record_received) >= TM_DAEMON_EXIT_TIME) {
/* Exit */ /* Exit */
telem_log(LOG_INFO, "Daemon exiting for recycling\n"); telem_log(LOG_INFO, "Daemon exiting for recycling\n");
goto clean_exit; goto clean_exit;
} }
} }
time_t now = time(NULL); time_t now = time(NULL);
if (difftime(now, last_spool_run_time) >= spool_process_time) {
spool_records_loop(&(daemon.current_spool_size));
last_spool_run_time = time(NULL);
}
if (difftime(now, last_refresh_time) >= TM_REFRESH_RATE) { if (difftime(now, last_refresh_time) >= TM_REFRESH_RATE) {
int ret = update_machine_id(); int ret = update_machine_id();
if (ret == -1) { if (ret == -1) {
@@ -378,14 +327,13 @@ int main(int argc, char **argv)
} }
clean_exit: clean_exit:
close_journal(daemon.record_journal);
/* Free memory before exiting */ /* Free memory before exiting */
while ((cl = LIST_FIRST(&(daemon.client_head))) != NULL) { while ((cl = LIST_FIRST(&(daemon.client_head))) != NULL) {
remove_client(&(daemon.client_head), cl); remove_client(&(daemon.client_head), cl);
} }
free(daemon.pollfds); free(daemon.pollfds);
free(daemon.machine_id_override);
if (LIST_EMPTY(&(daemon.client_head))) { if (LIST_EMPTY(&(daemon.client_head))) {
telem_log(LOG_INFO, "Client list cleared\n"); telem_log(LOG_INFO, "Client list cleared\n");
} }
+50
View File
@@ -0,0 +1,50 @@
# Probes
The default probes provided along the telemetry client code are:
* crashprobe: This probe processes core dump files. It can be registered as
the kernel core file handler in /proc/sys/kernel/core_pattern.
* hprobe: a simple probe that sends a keep alive message. This probe can also
be useful for testing
* journalprobe: a probe that monitors the systemd journal for log messages
from failed services.
* klogscanner: a probe to collect 'oops messages' when the kernel detects a
problem. Also reports errors in the Boot Error Region Table if detected.
* pstoreprobe: probe to collect messages left on pstore filesystem.
* telem-record-gen: this is a "general-purpose probe" for sending custom
records on-the-fly. This tool can be used stand alone or as a part of a
script to implement a probe.
For example to generate an hprobe like message we can execute the following
command:
```
$ telem-record-gen --class org.example/hello/world --payload hello
```
for more options use the ```--help``` switch i.e.:
```
$ telem-record-gen --help
Usage:
telem-record-gen [OPTIONS] - create and send a custom telemetry record
Help Options:
-h, --help Show help options
Application Options:
-f, --config-file Path to configuration file (not implemented yet)
-V, --version Print the program version
-s, --severity Severity level (1-4) - (default 1)
-c, --class Classification level_1/level_2/level_3
-p, --payload Record body (max size = 8k)
-P, --payload-file File to read payload from
-R, --record-version Version number for format of payload (default 1)
-e, --event-id Event id to use in the record
```
-142
View File
@@ -1,142 +0,0 @@
/*
* This program is part of the Clear Linux Project
*
* Copyright 2018 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <getopt.h>
#include "common.h"
#include "telemetry.h"
#include "nica/b64enc.h"
#include "config.h"
static const char bert_record_file[] = "/sys/firmware/acpi/tables/data/BERT";
static const char telem_record_class[] = "org.clearlinux/bert/debug";
static uint32_t severity = 2;
static uint32_t payload_version = 1;
void print_usage(char *prog)
{
printf("%s: Usage\n", prog);
printf(" -f, --config_file Specify a configuration file other than default\n");
printf(" -h, --help Display this help message\n");
printf(" -V, --version Print the program version\n");
}
static int allocate_payload_buffer(char **payload)
{
int ret = 0;
*payload = (char *)malloc(MAX_PAYLOAD_SIZE);
if (*payload == NULL) {
goto out;
}
*payload = memset(*payload, 0, MAX_PAYLOAD_SIZE);
ret = 1;
out:
return ret;
}
int main(int argc, char **argv)
{
struct telem_ref *tm_handle = NULL;
char *classification = (char *)telem_record_class;
char *payload = NULL;
// Following vars are for arg parsing.
int c;
char *cfile = NULL;
int opt_index = 0;
int ret = 0;
struct option opts[] = {
{ "config_file", 1, NULL, 'f' },
{ "help", 0, NULL, 'h' },
{ "version", 0, NULL, 'V' },
{ NULL, 0, NULL, 0 }
};
while ((c = getopt_long(argc, argv, "f:hHV", opts, &opt_index)) != -1) {
switch (c) {
case 'f':
if (asprintf(&cfile, "%s", (char *)optarg) < 0) {
exit(EXIT_FAILURE);
}
struct stat buf;
ret = stat(cfile, &buf);
/* check if the file exists and is a regular file */
if (ret == -1 || !S_ISREG(buf.st_mode)) {
exit(EXIT_FAILURE);
}
tm_set_config_file(cfile);
break;
case 'h':
print_usage(argv[0]);
exit(EXIT_SUCCESS);
case 'V':
printf(PACKAGE_VERSION "\n");
exit(EXIT_SUCCESS);
case '?':
exit(EXIT_FAILURE);
}
}
if (!(ret = allocate_payload_buffer(&payload))) {
printf("Unable to allocate more memory.\n");
goto fail;
}
if (!(ret = nc_b64enc_filename(bert_record_file, payload, MAX_PAYLOAD_SIZE))) {
printf("Failed to read payload from: %s\n", bert_record_file);
goto fail;
}
if ((ret = tm_create_record(&tm_handle, severity, classification,
payload_version)) < 0) {
printf("Failed to create record: %s\n", strerror(-ret));
goto fail;
}
if ((ret = tm_set_payload(tm_handle, payload)) < 0) {
printf("Failed to set record payload: %s\n", strerror(-ret));
goto fail;
}
free(payload);
if ((ret = tm_send_record(tm_handle)) < 0) {
printf("Failed to send record to daemon: %s\n", strerror(-ret));
goto fail;
}
fail:
free(cfile);
tm_free_record(tm_handle);
tm_handle = NULL;
return ret;
}
/* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */
+30 -22
View File
@@ -41,6 +41,8 @@
#include "probe.h" #include "probe.h"
#include "telemetry.h" #include "telemetry.h"
#define FRAMES_MAX 64
static Dwfl *d_core = NULL; static Dwfl *d_core = NULL;
/* /*
@@ -69,7 +71,6 @@ static char error_class[30] = "org.clearlinux/crash/error";
static char unknown_class[30] = "org.clearlinux/crash/unknown"; static char unknown_class[30] = "org.clearlinux/crash/unknown";
static char temp_core[] = "/tmp/corefile-XXXXXX"; static char temp_core[] = "/tmp/corefile-XXXXXX";
static bool keep_core = false;
static const Dwfl_Callbacks cb = static const Dwfl_Callbacks cb =
{ {
@@ -249,7 +250,7 @@ static int frame_cb(Dwfl_Frame *frame, void *userdata)
" current frame: %s\n", " current frame: %s\n",
dwfl_errmsg(-1)); dwfl_errmsg(-1));
if (ret < 0) { if (ret < 0) {
return DWARF_CB_ABORT; errorstr = NULL;
} }
return DWARF_CB_ABORT; return DWARF_CB_ABORT;
} }
@@ -299,6 +300,12 @@ static int frame_cb(Dwfl_Frame *frame, void *userdata)
} }
} }
nc_string_append_printf(*bt, "\n"); nc_string_append_printf(*bt, "\n");
if (frame_counter >= FRAMES_MAX) {
errorstr = NULL;
return DWARF_CB_ABORT;
}
return DWARF_CB_OK; return DWARF_CB_OK;
} }
@@ -391,6 +398,12 @@ static int process_corefile(nc_string **backtrace)
*backtrace = nc_string_dup(""); *backtrace = nc_string_dup("");
if (dwfl_getthreads(d_core, thread_cb, backtrace) != DWARF_CB_OK) { if (dwfl_getthreads(d_core, thread_cb, backtrace) != DWARF_CB_OK) {
/* We aborted unwinding, due to too many frames.
* We don't consider this as an error.
*/
if (frame_counter >= FRAMES_MAX) {
return 0;
}
/* When errors occur during the unwinding, we reach this point. /* When errors occur during the unwinding, we reach this point.
* If an error string is set for the particular error, send an * If an error string is set for the particular error, send an
* "error" record to capture at least a partial backtrace if * "error" record to capture at least a partial backtrace if
@@ -463,7 +476,6 @@ static bool is_banned_path(char *fullpath)
return false; return false;
} }
static char *config_file = NULL;
static char *core_file = NULL; static char *core_file = NULL;
static char *proc_path = NULL; static char *proc_path = NULL;
static long int signal_num = -1; static long int signal_num = -1;
@@ -490,7 +502,7 @@ static void print_help(void)
printf(" -h, --help Show help options\n"); printf(" -h, --help Show help options\n");
printf("\n"); printf("\n");
printf("Application Options:\n"); printf("Application Options:\n");
printf(" -f, --config-file Path to configuration file (not implemented yet)\n"); printf(" -f, --config_file Specify a configuration file other than default\n");
printf(" -c, --core-file Path to core file to process\n"); printf(" -c, --core-file Path to core file to process\n");
printf(" -p, --process-name Name of process for crash report (required)\n"); printf(" -p, --process-name Name of process for crash report (required)\n");
printf(" -E, --process-path Absolute path of crashed process, with ! or / delimiters\n"); printf(" -E, --process-path Absolute path of crashed process, with ! or / delimiters\n");
@@ -532,7 +544,11 @@ int main(int argc, char **argv)
printf(PACKAGE_VERSION "\n"); printf(PACKAGE_VERSION "\n");
goto success; goto success;
case 'f': case 'f':
config_file = strdup(optarg); if (tm_set_config_file(optarg) != 0) {
telem_log(LOG_ERR, "Configuration file"
" path not valid\n");
exit(EXIT_FAILURE);
}
break; break;
case 'c': case 'c':
core_file = strdup(optarg); core_file = strdup(optarg);
@@ -606,8 +622,6 @@ int main(int argc, char **argv)
backtrace = nc_string_dup("Crash from Clear package build\n"); backtrace = nc_string_dup("Crash from Clear package build\n");
keep_core = true;
if (!send_data(&backtrace, unknown_severity, clr_build_class)) { if (!send_data(&backtrace, unknown_severity, clr_build_class)) {
goto fail; goto fail;
} }
@@ -619,8 +633,6 @@ int main(int argc, char **argv)
backtrace = nc_string_dup("Crash from third party\n"); backtrace = nc_string_dup("Crash from third party\n");
keep_core = true;
if (!send_data(&backtrace, unknown_severity, unknown_class)) { if (!send_data(&backtrace, unknown_severity, unknown_class)) {
goto fail; goto fail;
} }
@@ -641,16 +653,12 @@ int main(int argc, char **argv)
nc_string_append_printf(header, "Signal: %ld\n", signal_num); nc_string_append_printf(header, "Signal: %ld\n", signal_num);
} }
if (process_corefile(&backtrace) < 0) {
goto fail;
}
/* On Clear Linux OS, missing symbols may appear if automatic debuginfo /* On Clear Linux OS, missing symbols may appear if automatic debuginfo
* downloads are still in flight. So if any missing symbols appear on * downloads are still in flight. So if any missing symbols appear on
* the first run (indicated by the presence of "??? - ["), wait 10 * the first run (indicated by the presence of "??? - ["), wait 10
* seconds and try again. * seconds and try again. Also retry if errors occur in the first run.
*/ */
if (strstr(backtrace->str, "??? - [")) { if ((process_corefile(&backtrace) < 0) || (strstr(backtrace->str, "??? - ["))) {
sleep(10); sleep(10);
if (prepare_corefile(&e_core, core_fd) < 0) { if (prepare_corefile(&e_core, core_fd) < 0) {
@@ -662,6 +670,11 @@ int main(int argc, char **argv)
} }
} }
if (frame_counter >= FRAMES_MAX) {
telem_log(LOG_ERR, "Too many frames. Backtrace truncated.\n");
nc_string_append_printf(header, "Too many frames. Backtrace truncated.\n");
}
nc_string_prepend(backtrace, header->str); nc_string_prepend(backtrace, header->str);
if (!send_data(&backtrace, default_severity, clr_class)) { if (!send_data(&backtrace, default_severity, clr_class)) {
@@ -677,11 +690,6 @@ success:
ret = EXIT_SUCCESS; ret = EXIT_SUCCESS;
fail: fail:
// Do not remove the core file if any errors occur
if (ret == EXIT_FAILURE) {
keep_core = true;
}
free(core_file); free(core_file);
free(proc_name); free(proc_name);
free(proc_path); free(proc_path);
@@ -711,8 +719,8 @@ fail:
} }
// Remove the core file by default, except when the --core-file option // Remove the core file by default, except when the --core-file option
// is specified, or when keep_core is overridden to true. // is specified.
if (!core_file && !keep_core) { if (!core_file) {
unlink(temp_core); unlink(temp_core);
} }
+131 -33
View File
@@ -1,7 +1,7 @@
/* /*
* This program is part of the Clear Linux Project * This program is part of the Clear Linux Project
* *
* Copyright 2015 Intel Corporation * Copyright 2015-2019 Intel Corporation
* *
* This program is free software; you can redistribute it and/or modify it under * This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as * the terms and conditions of the GNU Lesser General Public License, as
@@ -20,63 +20,156 @@
#include <string.h> #include <string.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <getopt.h> #include <getopt.h>
#include <locale.h>
#include <sys/sysinfo.h>
#include <dirent.h>
#include "common.h"
#include "telemetry.h" #include "telemetry.h"
#include "config.h" #include "config.h"
#include "log.h"
void print_usage(char *prog) #define PAYLOAD_LOCALE 0x01
#define PAYLOAD_UPTIME 0x02
#define PAYLOAD_BUNDLES 0x04
static void print_usage(char *prog)
{ {
printf("%s: Usage\n", prog); printf("%s: Usage\n", prog);
printf(" -f, --config_file Configuration file. This overides the other parameters\n"); printf(" -f, --config_file Configuration file. This overides the other parameters\n");
printf(" -H, --heartbeat Create a \"heartbeat\" record instead\n"); printf(" -H, --heartbeat Create a \"heartbeat\" record instead\n");
printf(" -h, --help Display this help message\n"); printf(" -h, --help Display this help message\n");
printf(" -l, --locale Include locale in the record\n");
printf(" -u, --uptime Include uptime in the record\n");
printf(" -b, --bundles Include installed bundles in the record\n");
printf(" -V, --version Print the program version\n"); printf(" -V, --version Print the program version\n");
} }
static long get_uptime(void)
{
struct sysinfo s_info;
if (sysinfo(&s_info) == 0) {
return s_info.uptime;
}
return 0;
}
static int nodots(const struct dirent *dp)
{
return (dp->d_name[0] != '.');
}
static char *create_payload(unsigned options)
{
int n, buflen;
char *ppos, *payload;
payload = calloc(sizeof(char), MAX_PAYLOAD_LENGTH);
if (payload == NULL) {
return NULL;
}
ppos = payload;
buflen = MAX_PAYLOAD_LENGTH;
n = snprintf(ppos, (size_t)buflen, "hello\n");
buflen -= n, ppos += n;
if (options & PAYLOAD_LOCALE) {
n = snprintf(ppos, (size_t)buflen, "LC_ALL: %s\n", setlocale(LC_ALL, NULL));
buflen -= n, ppos += n;
}
if (options & PAYLOAD_UPTIME) {
n = snprintf(ppos, (size_t)buflen, "uptime: %ld\n", get_uptime());
buflen -= n, ppos += n;
}
if (options & PAYLOAD_BUNDLES) {
int num_bundles, i;
struct dirent **entries;
num_bundles = scandir("/usr/share/clear/bundles", &entries, nodots, alphasort);
if (num_bundles < 0) {
telem_perror("scandir failed");
free(payload);
return NULL;
}
n = snprintf(ppos, (size_t)buflen, "\nBundles (%d):\n", num_bundles);
buflen -= n, ppos += n;
for (i = 0; i < num_bundles; i++) {
n = snprintf(ppos, (size_t)buflen, "%s\n", entries[i]->d_name);
/* Test if truncated output */
if (n >= buflen) {
int lastix = MAX_PAYLOAD_LENGTH-1;
payload[lastix] = '\0';
payload[lastix-1] = '.';
payload[lastix-2] = '.';
payload[lastix-3] = '.';
payload[lastix-4] = '\n';
break;
}
buflen -= n, ppos += n;
}
for (i= 0; i < num_bundles; i++) {
free(entries[i]);
}
free(entries);
}
return payload;
}
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
uint32_t severity = 1; uint32_t severity = 1;
uint32_t payload_version = 1; uint32_t payload_version = 1;
char classification[30] = "org.clearlinux/hello/world"; char classification[30] = "org.clearlinux/hello/world";
struct telem_ref *tm_handle = NULL; struct telem_ref *tm_handle = NULL;
char *payload2; char *payload;
char *str; char *str;
int ret;
unsigned payload_options = 0;
// Following vars are for arg parsing. // Following vars are for arg parsing.
int c; int c;
char *cfile = NULL;
int opt_index = 0; int opt_index = 0;
int ret = 0;
struct option opts[] = { struct option opts[] = {
{ "config_file", 1, NULL, 'f' }, { "config_file", 1, NULL, 'f' },
{ "heartbeat", 0, NULL, 'H' }, { "heartbeat", 0, NULL, 'H' },
{ "help", 0, NULL, 'h' }, { "help", 0, NULL, 'h' },
{ "version", 0, NULL, 'V' }, { "version", 0, NULL, 'V' },
{ "locale", 0, NULL, 'l' },
{ "uptime", 0, NULL, 'u' },
{ "bundles", 0, NULL, 'b' },
{ NULL, 0, NULL, 0 } { NULL, 0, NULL, 0 }
}; };
while ((c = getopt_long(argc, argv, "f:hHV", opts, &opt_index)) != -1) { while ((c = getopt_long(argc, argv, "f:hHVlub", opts, &opt_index)) != -1) {
switch (c) { switch (c) {
case 'f': case 'f':
if (asprintf(&cfile, "%s", (char *)optarg) < 0) { if (tm_set_config_file(optarg) != 0) {
exit(EXIT_FAILURE); telem_log(LOG_ERR, "Configuration file"
" path not valid\n");
exit(EXIT_FAILURE);
} }
struct stat buf;
ret = stat(cfile, &buf);
/* check if the file exists and is a regular file */
if (ret == -1 || !S_ISREG(buf.st_mode)) {
exit(EXIT_FAILURE);
}
tm_set_config_file(cfile);
break; break;
case 'H': case 'H':
str = "org.clearlinux/heartbeat/ping"; str = "org.clearlinux/heartbeat/ping";
memcpy(classification, str, strlen(str)); memcpy(classification, str, strlen(str));
break; break;
case 'l':
payload_options |= PAYLOAD_LOCALE;
break;
case 'u':
payload_options |= PAYLOAD_UPTIME;
break;
case 'b':
payload_options |= PAYLOAD_BUNDLES;
break;
case 'h': case 'h':
print_usage(argv[0]); print_usage(argv[0]);
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
@@ -88,34 +181,39 @@ int main(int argc, char **argv)
} }
} }
if (asprintf(&payload2, "hello\n") < 0) { setlocale(LC_ALL, "");
payload = create_payload(payload_options);
if (payload == NULL) {
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
if ((ret = tm_create_record(&tm_handle, severity, classification, if ((ret = tm_create_record(&tm_handle, severity, classification,
payload_version)) < 0) { payload_version)) < 0) {
printf("Failed to create record: %s\n", strerror(-ret)); telem_log(LOG_ERR, "Failed to create record: %s\n",
ret = 1; strerror(-ret));
goto fail; ret = EXIT_FAILURE;
goto done;
} }
if ((ret = tm_set_payload(tm_handle, payload2)) < 0) { if ((ret = tm_set_payload(tm_handle, payload)) < 0) {
printf("Failed to set record payload: %s\n", strerror(-ret)); telem_log(LOG_ERR, "Failed to set record payload: %s\n",
ret = 1; strerror(-ret));
goto fail; ret = EXIT_FAILURE;
goto done;
} }
free(payload2); free(payload);
if ((ret = tm_send_record(tm_handle)) < 0) { if ((ret = tm_send_record(tm_handle)) < 0) {
printf("Failed to send record to daemon: %s\n", strerror(-ret)); telem_log(LOG_ERR, "Failed to send record to daemon: %s\n",
ret = 1; strerror(-ret));
goto fail; ret = EXIT_FAILURE;
goto done;
} else { } else {
printf("Successfully sent record to daemon.\n"); printf("Successfully sent record to daemon.\n");
ret = 0; ret = EXIT_SUCCESS;
} }
fail: done:
tm_free_record(tm_handle); tm_free_record(tm_handle);
tm_handle = NULL; tm_handle = NULL;
+23 -16
View File
@@ -265,7 +265,7 @@ static bool add_filters(sd_journal *journal)
return true; return true;
} }
static bool process_journal(void) static bool process_journal(bool process_existing)
{ {
int r; int r;
@@ -279,8 +279,14 @@ static bool process_journal(void)
return false; return false;
} }
if (!process_existing_entries(journal)) { if (process_existing) {
return false; if (!process_existing_entries(journal)) {
return false;
}
} else {
if ((sd_journal_seek_tail(journal) < 0) || (sd_journal_previous(journal) < 0)) {
return false;
}
} }
struct pollfd pfd; struct pollfd pfd;
@@ -312,12 +318,11 @@ static bool process_journal(void)
} }
} }
static char *config_file = NULL;
static const struct option prog_opts[] = { static const struct option prog_opts[] = {
{ "help", no_argument, 0, 'h' }, { "help", no_argument, 0, 'h' },
{ "config-file", required_argument, 0, 'f' }, { "config-file", required_argument, 0, 'f' },
{ "version", no_argument, 0, 'V' }, { "version", no_argument, 0, 'V' },
{ "tail", no_argument, 0, 't' },
{ 0, 0, 0, 0 } { 0, 0, 0, 0 }
}; };
@@ -330,22 +335,19 @@ static void print_help(void)
printf(" -h, --help Show help options\n"); printf(" -h, --help Show help options\n");
printf("\n"); printf("\n");
printf("Application Options:\n"); printf("Application Options:\n");
printf(" -f, --config-file Path to configuration file (not implemented yet)\n"); printf(" -f, --config_file Specify a configuration file other than default\n");
printf(" -t, --tail Don't process entries already in the journal\n");
printf(" -V, --version Print the program version\n"); printf(" -V, --version Print the program version\n");
printf("\n"); printf("\n");
} }
static void free_strings(void)
{
free(config_file);
}
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
int ret = EXIT_FAILURE; int ret = EXIT_FAILURE;
int opt; int opt;
bool process_existing = true;
while ((opt = getopt_long(argc, argv, "hf:V", prog_opts, NULL)) != -1) { while ((opt = getopt_long(argc, argv, "hf:Vt", prog_opts, NULL)) != -1) {
switch (opt) { switch (opt) {
case 'h': case 'h':
print_help(); print_help();
@@ -354,20 +356,25 @@ int main(int argc, char **argv)
printf(PACKAGE_VERSION "\n"); printf(PACKAGE_VERSION "\n");
goto success; goto success;
case 'f': case 'f':
config_file = strdup(optarg); if (tm_set_config_file(optarg) != 0) {
telem_log(LOG_ERR, "Configuration file"
" path not valid\n");
exit(EXIT_FAILURE);
}
break;
case 't':
process_existing = false;
break; break;
} }
} }
if (!process_journal()) { if (!process_journal(process_existing)) {
goto fail; goto fail;
} }
success: success:
ret = EXIT_SUCCESS; ret = EXIT_SUCCESS;
fail: fail:
free_strings();
if (journal) { if (journal) {
sd_journal_close(journal); sd_journal_close(journal);
} }
+49 -40
View File
@@ -1,9 +1,24 @@
/*
* This program is part of the Clear Linux Project
*
* Copyright © 2015-2019 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
#define _GNU_SOURCE #define _GNU_SOURCE
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <sys/klog.h> #include <sys/klog.h>
#include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <unistd.h> #include <unistd.h>
#include <malloc.h> #include <malloc.h>
@@ -22,54 +37,48 @@ int main(void)
int log_size = 0; int log_size = 0;
char *bufp = NULL; char *bufp = NULL;
size_t buflen = 0; size_t buflen = 0;
int bytes = 0;
oops_parser_init(write_oops_to_file); oops_parser_init(klog_process_oops_msgs);
// Allocate space to write the oops file to // Signal Handling to terminate the probe.
if (allocate_filespace() < 0) { if (signal (SIGINT, signal_handler_fail) == SIG_ERR) {
telem_log(LOG_ERR, "%s\n", strerror(errno));
return 1;
}
// Signal Handling to close and unlink empty files
if (signal (SIGINT, signal_handler) == SIG_ERR) {
telem_log(LOG_ERR, "Error handling interrupt signal\n"); telem_log(LOG_ERR, "Error handling interrupt signal\n");
} }
if (signal (SIGTERM, signal_handler) == SIG_ERR) { if (signal (SIGTERM, signal_handler_success) == SIG_ERR) {
telem_log(LOG_ERR, "Error handling terminating signal\n"); telem_log(LOG_ERR, "Error handling terminating signal\n");
} }
while (1) { // Gets the size of the kernel ring buffer
// Gets the size of the kernel ring buffer log_size = klogctl(SYSLOG_ACTION_SIZE_BUFFER, NULL, 0);
log_size = klogctl(SYSLOG_ACTION_SIZE_BUFFER, NULL, 0); if (log_size < 0) {
if (log_size < 0) { telem_perror("Cannot read size of kernel ring buffer");
telem_log(LOG_ERR, "Cannot read size of kernel ring buffer: %s\n", strerror(errno)); return 1;
return 1;
}
buflen = (size_t)log_size;
if (buflen > MAX_BUF) {
buflen = MAX_BUF;
}
// Gets the contents of the kernel ring buffer
bufp = (char *)calloc(buflen, sizeof(char));
malloc_trim(0);
bytes = klogctl(SYSLOG_ACTION_READ, bufp, (int)buflen);
if (bytes < 0) {
telem_log(LOG_ERR, "Cannot read contents of kernel ring buffer: %s\n", strerror(errno));
return 1;
}
// Splits the buffer into separate lines with /0 terminating
split_buf_by_line(bufp, (size_t)bytes);
free(bufp);
} }
buflen = (size_t)log_size;
if (buflen > MAX_BUF) {
buflen = MAX_BUF;
}
// Gets the contents of the kernel ring buffer
bufp = (char *)malloc(buflen);
while (1) {
int bytes_read;
malloc_trim(0);
memset(bufp, 0, buflen);
bytes_read = klogctl(SYSLOG_ACTION_READ, bufp, (int)buflen);
if (bytes_read < 0) {
telem_perror("Cannot read contents of kernel ring buffer");
return 1;
}
klog_process_buffer(bufp, (size_t)bytes_read);
}
// Not reached
free(bufp);
return 0; return 0;
} }
+98 -69
View File
@@ -1,7 +1,7 @@
/* /*
* This program is part of the Clear Linux Project * This program is part of the Clear Linux Project
* *
* Copyright 2015 Intel Corporation * Copyright © 2015-2019 Intel Corporation
* *
* This program is free software; you can redistribute it and/or modify it under * This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as * the terms and conditions of the GNU Lesser General Public License, as
@@ -15,32 +15,71 @@
*/ */
#define _GNU_SOURCE #define _GNU_SOURCE
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <sys/types.h>
#include <sys/klog.h> #include <sys/klog.h>
#include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <unistd.h> #include <unistd.h>
#include <sys/stat.h> #include <sys/stat.h>
#include "common.h"
#include "log.h" #include "log.h"
#include "oops_parser.h" #include "oops_parser.h"
#include "klog_scanner.h" #include "klog_scanner.h"
#include "telemetry.h"
#include "nica/nc-string.h"
#define MAX_OOPS_MSG_LENGTH 1024 static bool oops_processed = false;
#define FILE_PATH KERNELOOPSDIR "/kerneloopsXXXXXX"
static int fd; static uint32_t version = 1;
char filename[] = FILE_PATH;
int last_line_length; static bool send_data(char *backtrace, char *class, uint32_t severity)
{
struct telem_ref *handle = NULL;
int ret;
if ((ret = tm_create_record(&handle, severity, class, version)) < 0) {
telem_log(LOG_ERR, "Failed to create record: %s",
strerror(-ret));
return false;
}
/* Truncate payload if necessary, otherwise nothing will be sent */
if (strlen(backtrace) > MAX_PAYLOAD_LENGTH) {
backtrace[MAX_PAYLOAD_LENGTH-1] = 0;
}
if ((ret = tm_set_payload(handle, backtrace)) < 0) {
telem_log(LOG_ERR, "Failed to set payload: %s", strerror(-ret));
tm_free_record(handle);
return false;
}
if ((ret = tm_send_record(handle)) < 0) {
telem_log(LOG_ERR, "Failed to send record: %s", strerror(-ret));
tm_free_record(handle);
return false;
}
tm_free_record(handle);
return true;
}
int klog_process_buffer(char *bufp, int bytes)
{
// Splits the buffer into separate lines with /0 terminating
split_buf_by_line(bufp, (size_t)bytes);
return 0;
}
bool oops_written = false;
void split_buf_by_line(char *bufp, int bytes) void split_buf_by_line(char *bufp, int bytes)
{ {
char *start; char *start;
char *eol; char *eol;
size_t linelength = 0; size_t linelength = 0;
oops_processed = false;
while (bytes > 0) { while (bytes > 0) {
eol = memchr(bufp, '\n', (size_t)bytes); eol = memchr(bufp, '\n', (size_t)bytes);
@@ -57,87 +96,77 @@ void split_buf_by_line(char *bufp, int bytes)
if (bytes >= 0) { if (bytes >= 0) {
start[linelength] = '\0'; start[linelength] = '\0';
parse_single_line(start, linelength); parse_single_line(start, linelength);
if (oops_processed == true) {
telem_debug("oops_processed detected !\n");
break;
}
linelength = 0; linelength = 0;
} }
} }
} }
int allocate_filespace() void klog_process_oops_msgs(struct oops_log_msg *msg)
{ {
int allocate_disk = 0; size_t linelength, size;
strcpy(filename, FILE_PATH);
fd = mkstemp(filename);
if (fchmod(fd, 0644) == -1) {
telem_log(LOG_ERR, "Error while changing permissions for file %s: %s\n",
filename, strerror(errno));
}
if (fd == -1) {
telem_log(LOG_ERR, "fd error: %s\n", strerror(errno));
return -1;
}
// Allocates disk space to write kernel oops to
allocate_disk = fallocate(fd, 0, 0, MAX_OOPS_MSG_LENGTH);
if (allocate_disk != 0) {
telem_log(LOG_ERR, "Error allocating disk space: %s\n", strerror(errno));
return -1;
}
return 0;
}
void write_oops_to_file(struct oops_log_msg *msg)
{
ssize_t writer;
size_t linelength;
char *line; char *line;
char *contents = NULL;
nc_string *payload;
// pass 1: calculate buffer size
size = 0;
for (int i = 0; i < msg->length; i++) {
size += strlen(msg->lines[i]) + 1;
}
contents = malloc(size);
if (!contents) {
telem_log(LOG_ERR, "Call to malloc failed");
oops_processed = true;
return;
}
// pass 2: copy strings into the buffer
size_t done = 0;
char *bp = contents;
for (int i = 0; i < msg->length; i++) { for (int i = 0; i < msg->length; i++) {
//Add the newline character to the end of each line //Add the newline character to the end of each line
line = msg->lines[i]; line = msg->lines[i];
linelength = strlen(line); linelength = strlen(line);
line[linelength] = '\n'; // Copy the line (without the terminating NULL)
linelength++; memcpy(bp, line, linelength);
bp[linelength] = '\n';
done += linelength + 1;
bp = contents + done;
}
// Write each line of oops to file struct oops_log_msg oops_msg;
writer = write(fd, line, linelength); if (handle_entire_oops(contents, (long)size, &oops_msg)) {
if (writer == -1) { #ifdef DEBUG
telem_log(LOG_ERR, "Error writing buffer to file: %s\n", strerror(errno)); telem_debug("DEBUG: Raw oops message:\n");
exit(EXIT_FAILURE); for (int i = 0; i < oops_msg.length; i++) {
telem_log(LOG_DEBUG, "%s\n", oops_msg.lines[i]);
} }
#endif
payload = parse_payload(&oops_msg);
telem_debug("DEBUG: Payload Parsed :%s\n", payload->str);
oops_msg_cleanup(&oops_msg);
send_data(payload->str, (char *)oops_msg.pattern->classification, (uint32_t)oops_msg.pattern->severity);
nc_string_free(payload);
} else {
/* File does no contain an oops! */
telem_log(LOG_ERR, "Did not find an oops in the oops directory\n");
} }
telem_log(LOG_INFO, "Oops written to file\n"); free(contents);
oops_written = true; oops_processed = true;
close(fd);
// Allocate more space to prepare for another oops
if (allocate_filespace() < 0) {
telem_log(LOG_ERR, "%s\n", strerror(errno));
exit(EXIT_FAILURE);
}
} }
bool get_oops_written(void) void signal_handler_success(int signum)
{ {
return oops_written; exit(EXIT_SUCCESS);
} }
char *get_file_name(void) void signal_handler_fail(int signum)
{
return filename;
}
__attribute__((destructor))
void clean_up(void)
{
// Unlink empty file and close any open file
unlink(filename);
close(fd);
}
void signal_handler(int signum)
{ {
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
+17 -21
View File
@@ -1,7 +1,7 @@
/* /*
* This program is part of the Clear Linux Project * This program is part of the Clear Linux Project
* *
* Copyright 2015 Intel Corporation * Copyright © 2015-2019 Intel Corporation
* *
* This program is free software; you can redistribute it and/or modify it under * This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as * the terms and conditions of the GNU Lesser General Public License, as
@@ -17,45 +17,41 @@
#pragma once #pragma once
#include "oops_parser.h" #include "oops_parser.h"
/**
* Process the buffer and send it to the backend
*
* @param *bufp A pointer to a buffer containing the bytes read
* from the kernel ring buffer
* @param bytes Number of bytes read from ring buffer into bufp
*
* @return 0 on succes, -1 on failure
*
*/
int klog_process_buffer(char *bufp, int bytes);
/** /**
* Splits the buffer into individual lines * Splits the buffer into individual lines
* *
* @param *bufp A pointer to a buffer containing the bytes read * @param *bufp A pointer to a buffer containing the bytes read
* from the kernel ring buffer * from the kernel ring buffer
* @param bytes Bytes read from ring buffer into bufp * @param bytes Number of bytes read from ring buffer into bufp
* *
*/ */
void split_buf_by_line(char *bufp, int bytes); void split_buf_by_line(char *bufp, int bytes);
/** /**
* Allocates memory for oops message to write to file * Process the oops message and send it to the backend
*
* @return 0 on succes, -1 on failure
*/
int allocate_filespace(void);
/**
* Writes the oops message to tmp file
* *
* @param msg Struct that contains oops message lines and linecount * @param msg Struct that contains oops message lines and linecount
* *
*/ */
void write_oops_to_file(struct oops_log_msg *msg); void klog_process_oops_msgs(struct oops_log_msg *msg);
/** /**
* Signal handler for cleanup purposes * Signal handler for cleanup purposes
* *
* @param signum An integer for the signal type * @param signum An integer for the signal type
* *
*/ */
void signal_handler(int signum); void signal_handler_fail(int signum);
void signal_handler_success(int signum);
/**
* For Unit Tests Purposes
* Determines whether an oops has been written to a file
*
* @return true if oops is written, false if not
*/
bool get_oops_written(void);
/* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */ /* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */
+20 -35
View File
@@ -4,22 +4,21 @@ bin_PROGRAMS += \
%D%/telem-record-gen \ %D%/telem-record-gen \
%D%/klogscanner \ %D%/klogscanner \
%D%/pstoreprobe \ %D%/pstoreprobe \
%D%/oopsprobe \ %D%/pstoreclean
%D%/pstoreclean \
%D%/bertprobe
%C%_hprobe_SOURCES = %D%/hello.c %C%_hprobe_SOURCES = %D%/hello.c
%C%_hprobe_LDADD = $(top_builddir)/src/libtelemetry.la %C%_hprobe_LDADD = $(top_builddir)/src/libtelemetry.la
%C%_hprobe_CFLAGS = $(AM_CFLAGS)
%C%_hprobe_LDFLAGS = \ %C%_hprobe_LDFLAGS = \
$(AM_LDFLAGS) \ $(AM_LDFLAGS) \
-pie -pie
%C%_bertprobe_SOURCES = %D%/bert_probe.c \ if LOG_SYSTEMD
src/nica/b64enc.c if HAVE_SYSTEMD_JOURNAL
%C%_bertprobe_LDADD = $(top_builddir)/src/libtelemetry.la %C%_hprobe_CFLAGS += $(SYSTEMD_JOURNAL_CFLAGS)
%C%_bertprobe_LDFLAGS = \ %C%_hprobe_LDADD += $(SYSTEMD_JOURNAL_LIBS)
$(AM_LDFLAGS) \ endif
-pie endif
%C%_telem_record_gen_SOURCES = %D%/telem_record_gen.c %C%_telem_record_gen_SOURCES = %D%/telem_record_gen.c
%C%_telem_record_gen_CFLAGS = \ %C%_telem_record_gen_CFLAGS = \
@@ -29,6 +28,14 @@ bin_PROGRAMS += \
$(AM_LDFLAGS) \ $(AM_LDFLAGS) \
-pie -pie
if LOG_SYSTEMD
if HAVE_SYSTEMD_JOURNAL
%C%_telem_record_gen_CFLAGS += $(SYSTEMD_JOURNAL_CFLAGS)
%C%_telem_record_gen_LDADD += $(SYSTEMD_JOURNAL_LIBS)
endif
endif
%C%_pstoreclean_SOURCES = %D%/pstore_clean.c %C%_pstoreclean_SOURCES = %D%/pstore_clean.c
%C%_pstoreclean_CFLAGS = \ %C%_pstoreclean_CFLAGS = \
$(AM_CFLAGS) $(AM_CFLAGS)
@@ -107,13 +114,6 @@ endif
-pie -pie
if LOG_SYSTEMD if LOG_SYSTEMD
if HAVE_SYSTEMD_JOURNAL
%C%_klogscanner_CFLAGS += \
$(SYSTEMD_JOURNAL_CFLAGS)
%C%_klogscanner_LDADD += \
$(SYSTEMD_JOURNAL_LIBS)
endif
if HAVE_SYSTEMD_JOURNAL if HAVE_SYSTEMD_JOURNAL
%C%_klogscanner_CFLAGS += \ %C%_klogscanner_CFLAGS += \
$(SYSTEMD_JOURNAL_CFLAGS) $(SYSTEMD_JOURNAL_CFLAGS)
@@ -122,25 +122,6 @@ if HAVE_SYSTEMD_JOURNAL
endif endif
endif endif
%C%_oopsprobe_SOURCES = \
%D%/oops_probe.c \
%D%/oops_parser.c \
src/nica/nc-string.c \
%D%/probe.h
%C%_oopsprobe_CFLAGS = \
$(AM_CFLAGS)
%C%_oopsprobe_LDADD = \
$(top_builddir)/src/libtelemetry.la \
$(top_builddir)/src/libtelem-shared.la
if LOG_SYSTEMD
if HAVE_SYSTEMD_JOURNAL
%C%_oopsprobe_CFLAGS += \
$(SYSTEMD_JOURNAL_CFLAGS)
%C%_oopsprobe_LDADD += \
$(SYSTEMD_JOURNAL_LIBS)
endif
endif
if HAVE_SYSTEMD_JOURNAL if HAVE_SYSTEMD_JOURNAL
if HAVE_SYSTEMD_ID128 if HAVE_SYSTEMD_ID128
@@ -162,6 +143,10 @@ bin_PROGRAMS += \
%C%_journalprobe_LDFLAGS = \ %C%_journalprobe_LDFLAGS = \
$(AM_LDFLAGS) \ $(AM_LDFLAGS) \
-pie -pie
if LOG_SYSTEMD
%C%_journalprobe_CFLAGS += $(SYSTEMD_JOURNAL_CFLAGS)
%C%_journalprobe_LDADD += $(SYSTEMD_JOURNAL_LIBS)
endif
endif endif
endif endif
+81 -33
View File
@@ -1,7 +1,7 @@
/* /*
* This program is part of the Clear Linux Project * This program is part of the Clear Linux Project
* *
* Copyright 2015 Intel Corporation * Copyright 2015-2019 Intel Corporation
* *
* This program is free software; you can redistribute it and/or modify it under * This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as * the terms and conditions of the GNU Lesser General Public License, as
@@ -150,11 +150,29 @@ struct oops_pattern oops_patterns_arr[] = {
TM_MEDIUM, TM_MEDIUM,
false, false,
}, },
{
"ACPI Error:",
"org.clearlinux/kernel/warning",
TM_MEDIUM,
false,
},
{
"Kernel panic - not syncing:",
"org.clearlinux/kernel/panic",
TM_CRITICAL,
false,
},
{
"BERT: Error records from previous boot:",
"org.clearlinux/bert/debug",
TM_MEDIUM,
false,
},
}; };
int oops_patterns_cnt = sizeof(oops_patterns_arr) / sizeof(struct oops_pattern); static int oops_patterns_cnt = sizeof(oops_patterns_arr) / sizeof(struct oops_pattern);
char *skip_log_level(char *line) static char *skip_log_level(char *line)
{ {
char *start = line; char *start = line;
@@ -169,7 +187,7 @@ char *skip_log_level(char *line)
return start; return start;
} }
char *skip_timestamp(char *line) static char *skip_timestamp(char *line)
{ {
char *start = line; char *start = line;
@@ -184,7 +202,7 @@ char *skip_timestamp(char *line)
return start; return start;
} }
char *skip_space(char *line) static char *skip_space(char *line)
{ {
char *start = line; char *start = line;
@@ -194,7 +212,7 @@ char *skip_space(char *line)
return start; return start;
} }
char *skip_spaces(char *line) static char *skip_spaces(char *line)
{ {
char *start = line; char *start = line;
@@ -204,7 +222,7 @@ char *skip_spaces(char *line)
return start; return start;
} }
bool starts_with(const char *line, const char *line_end, const char *substr) static bool starts_with(const char *line, const char *line_end, const char *substr)
{ {
size_t substrlen = strlen(substr); size_t substrlen = strlen(substr);
@@ -214,7 +232,7 @@ bool starts_with(const char *line, const char *line_end, const char *substr)
return false; return false;
} }
bool str_starts_with_casei(const char *line, const char *substr) static bool str_starts_with_casei(const char *line, const char *substr)
{ {
size_t len = strlen(substr); size_t len = strlen(substr);
@@ -224,7 +242,7 @@ bool str_starts_with_casei(const char *line, const char *substr)
return false; return false;
} }
bool pattern_matches(char *line, char *line_end, struct oops_pattern *pattern) static bool pattern_matches(char *line, char *line_end, struct oops_pattern *pattern)
{ {
if (pattern->is_regex) { if (pattern->is_regex) {
return (regexec(&(pattern->regex), line, 0, NULL, 0) == 0); return (regexec(&(pattern->regex), line, 0, NULL, 0) == 0);
@@ -233,7 +251,7 @@ bool pattern_matches(char *line, char *line_end, struct oops_pattern *pattern)
} }
} }
void init_pattern_regex(void) static void init_pattern_regex(void)
{ {
for (int i = 0; i < oops_patterns_cnt; i++) { for (int i = 0; i < oops_patterns_cnt; i++) {
struct oops_pattern *pattern = &oops_patterns_arr[i]; struct oops_pattern *pattern = &oops_patterns_arr[i];
@@ -244,7 +262,7 @@ void init_pattern_regex(void)
} }
} }
void free_pattern_regex(void) static void free_pattern_regex(void)
{ {
for (int i = 0; i < oops_patterns_cnt; i++) { for (int i = 0; i < oops_patterns_cnt; i++) {
struct oops_pattern *pattern = &oops_patterns_arr[i]; struct oops_pattern *pattern = &oops_patterns_arr[i];
@@ -261,7 +279,6 @@ bool handle_entire_oops(char *buf, long size, struct oops_log_msg *msg)
int i; int i;
msg->length = 0; msg->length = 0;
init_pattern_regex();
line_end = memchr(buf, '\n', (size_t)size); line_end = memchr(buf, '\n', (size_t)size);
if (line_end == NULL) { if (line_end == NULL) {
@@ -318,12 +335,12 @@ void oops_msg_cleanup(struct oops_log_msg *msg)
free(msg->lines[i]); free(msg->lines[i]);
} }
msg->length = 0; msg->length = 0;
free_pattern_regex();
} }
static struct oops_log_msg oops_msg; static struct oops_log_msg oops_msg;
static bool in_stack_dump = false; static bool in_stack_dump = false;
static bool in_bert_dump = false;
static oops_handler_t oops_handler; static oops_handler_t oops_handler;
@@ -333,7 +350,7 @@ void oops_parser_init(oops_handler_t handler)
init_pattern_regex(); init_pattern_regex();
} }
void handle_msg_end(void) static void handle_msg_end(void)
{ {
for (int i = 0; i < oops_msg.length; i++) { for (int i = 0; i < oops_msg.length; i++) {
free(oops_msg.lines[i]); free(oops_msg.lines[i]);
@@ -347,6 +364,19 @@ void oops_parser_cleanup()
free_pattern_regex(); free_pattern_regex();
} }
/*
*
[ 1.609112] BERT: Error records from previous boot:
[ 1.609113] [Hardware Error]: event severity: fatal
[ 1.609115] [Hardware Error]: Error 0, type: fatal
[ 1.609116] [Hardware Error]: section type: unknown, 81212a96-09ed-4996-9471-8d729c8e69ed
[ 1.609117] [Hardware Error]: section length: 0xc10
[ 1.609119] [Hardware Error]: 00000000: 00000001 00000000 00000000 01001002 ................
[ 1.609120] [Hardware Error]: 00000010: 01001002 00000001 c71f0d2f 00000003 ......../.......
[ 1.609122] [Hardware Error]: 00000020: 00000001 0000004f 0c070048 800001ff ....O...H.......
[ 1.609123] [Hardware Error]: 00000030: 02002080 7e15fe03 00000001 00000000 . .....~......
...
*/
void parse_single_line(char *line, size_t size) void parse_single_line(char *line, size_t size)
{ {
char *start; char *start;
@@ -366,28 +396,30 @@ void parse_single_line(char *line, size_t size)
continue; continue;
} }
telem_log(LOG_DEBUG, "Oops start has been detected\n"); telem_log(LOG_DEBUG, "Oops start has been detected\n");
oops_msg.pattern = pattern; oops_msg.pattern = pattern;
oops_msg.lines[oops_msg.length] = strndup(start, (size_t)(line_end - start)); oops_msg.lines[oops_msg.length] = strndup(start, (size_t)(line_end - start));
if (oops_msg.lines[oops_msg.length] == NULL) { if (oops_msg.lines[oops_msg.length] == NULL) {
//telem_perror("Failed to copy string"); //telem_perror("Failed to copy string");
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
return; return;
} else {
oops_msg.length++;
} }
oops_msg.length++;
in_stack_dump = false; in_stack_dump = false;
break; in_bert_dump = false;
if (strstr(oops_msg.pattern->begin_line, "BERT:")) {
in_bert_dump = true;
}
return;
} }
} else { } else {
// If in the middle of oops // If in the middle of oops
if (oops_msg.length >= MAX_LINES) { if (oops_msg.length >= MAX_LINES) {
fprintf(stderr,"*** MAX_LINES!!\n");
end_found = true; end_found = true;
// } else if (oops_msg.end_line && strstr(start, oops_msg.end_line)) {
// end_found = false;
} else if (strstr(start, "[ end trace")) { } else if (strstr(start, "[ end trace")) {
end_found = true; end_found = true;
} else if (!in_stack_dump) { } else if (!in_stack_dump && !in_bert_dump) {
// This line indicates the beginning of a stack trace; // This line indicates the beginning of a stack trace;
// the next line is most likely the topmost frame. // the next line is most likely the topmost frame.
if (starts_with(start, line_end, "Call Trace:")) { if (starts_with(start, line_end, "Call Trace:")) {
@@ -404,6 +436,10 @@ void parse_single_line(char *line, size_t size)
in_stack_dump = false; in_stack_dump = false;
end_found = true; end_found = true;
} }
} else if (in_bert_dump) {
if (!strstr(start, "[Hardware Error]:")) {
end_found = true;
}
} }
/* if a new oops starts, this one has ended */ /* if a new oops starts, this one has ended */
@@ -426,7 +462,6 @@ void parse_single_line(char *line, size_t size)
} }
} }
} }
} }
struct stack_frame { struct stack_frame {
@@ -437,7 +472,7 @@ struct stack_frame {
struct stack_frame *next; struct stack_frame *next;
}; };
void stack_frame_append(struct stack_frame **head, struct stack_frame **tail, char *start) static void stack_frame_append(struct stack_frame **head, struct stack_frame **tail, char *start)
{ {
/* /*
* Format is: * Format is:
@@ -472,7 +507,7 @@ void stack_frame_append(struct stack_frame **head, struct stack_frame **tail, ch
while (*start && !isspace(*start)) { while (*start && !isspace(*start)) {
start++; start++;
} }
if (start && *start == '\0') { if (*start == '\0') {
return; return;
} }
@@ -507,7 +542,7 @@ void stack_frame_append(struct stack_frame **head, struct stack_frame **tail, ch
while (*start && !isspace(*start)) { while (*start && !isspace(*start)) {
start++; start++;
} }
if (start && *start == '\0') { if (*start == '\0') {
return; return;
} }
@@ -536,7 +571,7 @@ void stack_frame_append(struct stack_frame **head, struct stack_frame **tail, ch
frame->module = "kernel"; frame->module = "kernel";
} }
void stack_frame_free(struct stack_frame **head) static void stack_frame_free(struct stack_frame **head)
{ {
struct stack_frame *frame; struct stack_frame *frame;
@@ -553,7 +588,7 @@ void stack_frame_free(struct stack_frame **head)
* CPU: 2 PID: 0 Comm: swapper/2 Not tainted 3.10.4-100.fc18.x86_64 #1 * CPU: 2 PID: 0 Comm: swapper/2 Not tainted 3.10.4-100.fc18.x86_64 #1
* CPU: 3 PID: 0 Comm: swapper/3 Not tainted 4.0.5-300.fc22.x86_64 #1 * CPU: 3 PID: 0 Comm: swapper/3 Not tainted 4.0.5-300.fc22.x86_64 #1
*/ */
void parse_kernel_cpu_line(char *line, char **kernel_version, char **tainted) static void parse_kernel_cpu_line(char *line, char **kernel_version, char **tainted)
{ {
char *end = NULL; char *end = NULL;
@@ -626,7 +661,7 @@ static struct reg_s *reg_head = NULL;
* *
*/ */
void parse_registers(char *line) static void parse_registers(char *line)
{ {
uint64_t value; uint64_t value;
struct reg_s *reg_entry = NULL; struct reg_s *reg_entry = NULL;
@@ -739,7 +774,7 @@ void parse_registers(char *line)
} }
void append_registers_to_bt(nc_string **backtrace) static void append_registers_to_bt(nc_string **backtrace)
{ {
struct reg_s *reg_entry = reg_head; struct reg_s *reg_entry = reg_head;
@@ -762,7 +797,7 @@ void append_registers_to_bt(nc_string **backtrace)
} }
} }
nc_string *parse_backtrace(struct oops_log_msg *msg) static nc_string *parse_backtrace(struct oops_log_msg *msg)
{ {
struct stack_frame *head = NULL, *tail = NULL, *elem = NULL; struct stack_frame *head = NULL, *tail = NULL, *elem = NULL;
//int in_stack_dump = 0; //int in_stack_dump = 0;
@@ -838,15 +873,28 @@ nc_string *parse_backtrace(struct oops_log_msg *msg)
return backtrace; return backtrace;
} }
static void append_payload(nc_string *payload, struct oops_log_msg *msg)
{
for (int i = 1; i < msg->length; i++) {
nc_string_cat(payload,msg->lines[i]);
nc_string_cat(payload,"\n");
}
}
nc_string *parse_payload(struct oops_log_msg *msg) nc_string *parse_payload(struct oops_log_msg *msg)
{ {
nc_string *payload, *backtrace; nc_string *payload, *backtrace;
payload = nc_string_dup("Crash Report:\n"); payload = nc_string_dup("Crash Report:\n");
nc_string_append_printf(payload, "Reason: %s\n", msg->lines[0]); nc_string_append_printf(payload, "Reason: %s\n", msg->lines[0]);
backtrace = parse_backtrace(msg); if (strstr(msg->lines[0], "BERT:")) {
nc_string_cat(payload, backtrace->str); append_payload(payload, msg);
nc_string_free(backtrace); } else {
backtrace = parse_backtrace(msg);
nc_string_cat(payload, backtrace->str);
nc_string_free(backtrace);
}
return payload; return payload;
} }
-229
View File
@@ -1,229 +0,0 @@
/*
* This program is part of the Clear Linux Project
*
* Copyright 2015 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <sys/types.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <sys/inotify.h>
#include <poll.h>
#include "oops_parser.h"
#include "log.h"
#include "telemetry.h"
#include "nica/nc-string.h"
char *oops_dir_path = KERNELOOPSDIR;
static uint32_t version = 1;
static bool send_data(char *backtrace, char *class, uint32_t severity)
{
struct telem_ref *handle = NULL;
int ret;
if ((ret = tm_create_record(&handle, severity, class, version)) < 0) {
telem_log(LOG_ERR, "Failed to create record: %s",
strerror(-ret));
return false;
}
if ((ret = tm_set_payload(handle, backtrace)) < 0) {
telem_log(LOG_ERR, "Failed to set payload: %s", strerror(-ret));
tm_free_record(handle);
return false;
}
if ((ret = tm_send_record(handle)) < 0) {
telem_log(LOG_ERR, "Failed to send record: %s", strerror(-ret));
tm_free_record(handle);
return false;
}
tm_free_record(handle);
return true;
}
void handle_oops_file(const char *fname)
{
int ret;
FILE *fp = NULL;
char *filename = NULL, *contents = NULL;
long sz;
size_t size, bytes_read;
nc_string *payload;
ret = asprintf(&filename, "%s/%s", oops_dir_path, fname);
if (ret == -1) {
exit(EXIT_FAILURE);
}
#ifdef DEBUG
printf("File to be handled: %s\n", filename);
#endif
fp = fopen(filename, "r");
if (fp == NULL) {
telem_log(LOG_ERR, "Failed to open oops log file %s: %s", fname, strerror(errno));
goto file_end;
}
if (fseek(fp, 0, SEEK_END) == -1) {
telem_log(LOG_ERR, "Failed to seek file %s: %s\n", fname, strerror(errno));
goto file_end;
}
sz = ftell(fp);
if (sz == -1L) {
telem_perror("ftell failed");
goto file_end;
}
/* If file is empty */
if (sz == 0L) {
telem_perror("File is empty\n");
goto file_end;
}
if (fseek(fp, 0, SEEK_SET) < 0) {
telem_log(LOG_ERR, "Fseek failed for file %s:%s\n", fname, strerror(errno));
goto file_end;
}
size = (size_t)sz;
contents = malloc(size);
if (!contents) {
telem_log(LOG_ERR, "Call to malloc failed");
goto file_end;
}
memset(contents, 0, size);
bytes_read = fread(contents, sizeof(char), size, fp);
if (bytes_read < size) {
telem_log(LOG_ERR, "Error while reading file %s:%s\n", fname, strerror(errno));
goto file_end;
}
struct oops_log_msg oops_msg;
if (handle_entire_oops(contents, (long)size, &oops_msg)) {
#ifdef DEBUG
printf("Raw message:\n");
for (int i = 0; i < oops_msg.length; i++) {
printf("%s\n", oops_msg.lines[i]);
}
#endif
payload = parse_payload(&oops_msg);
#ifdef DEBUG
printf("Payload Parsed :%s\n", payload->str);
#endif
oops_msg_cleanup(&oops_msg);
send_data(payload->str, (char *)oops_msg.pattern->classification, (uint32_t)oops_msg.pattern->severity);
nc_string_free(payload);
} else {
/* File does no contain an oops! */
telem_log(LOG_ERR, "Did not find an oops in the oops directort\n");
}
file_end:
if (contents) {
free(contents);
}
if (fp) {
fclose(fp);
}
if (unlink(filename) == -1) {
telem_log(LOG_ERR, "Failed to unlink %s: %s\n", filename, strerror(errno));
}
free(filename);
}
void handle_inotify_event(const struct inotify_event *event)
{
if (!event) {
telem_perror("Null event received");
return;
}
if (event->len == 0) {
telem_perror("inotify event received with no file.");
return;
}
if (event->mask & IN_CLOSE_WRITE) {
if (event->mask & IN_ISDIR) {
return;
}
#ifdef DEBUG
telem_log(LOG_DEBUG, "New file written to the oops location: %s\n", event->name);
#endif
handle_oops_file(event->name);
}
}
int main(int argc, char **argv)
{
int inotify_fd;
char buf[4096];
char *ptr = NULL;
ssize_t len;
const struct inotify_event *event;
inotify_fd = inotify_init();
if (inotify_fd == -1) {
telem_log(LOG_ERR, "Failed to create inotify instance: %s\n", strerror(errno));
exit(EXIT_FAILURE);
}
if (inotify_add_watch(inotify_fd, oops_dir_path, IN_CLOSE_WRITE) == -1) {
telem_perror("Error adding watch to the inotify instance");
}
while (1) {
len = read(inotify_fd, buf, sizeof buf);
if (len <= 0) {
telem_perror("error reading event");
continue;
}
if (len < sizeof(struct inotify_event)) {
telem_perror("Incomplete event received");
continue;
}
telem_log(LOG_INFO, "Got inotify event/s\n");
/* Loop over all events in the buffer */
for (ptr = buf; ptr < buf + len;
ptr += sizeof(struct inotify_event) + event->len) {
event = (const struct inotify_event *)ptr;
/* handle the event */
handle_inotify_event(event);
}
}
return 0;
}
/* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */
+1 -1
View File
@@ -132,7 +132,7 @@ int main(int argc, char **argv)
if (mkdir(MOUNT, 0755) < 0) { if (mkdir(MOUNT, 0755) < 0) {
//If there is an error other than an existing directory //If there is an error other than an existing directory
if (errno != EEXIST) { if (errno != EEXIST) {
telem_log(LOG_ERR, "Error creating directory /dev/pstore : %s\n", strerror(errno)); telem_perror("Error creating directory /dev/pstore");
//bail out? //bail out?
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
+44 -10
View File
@@ -15,6 +15,7 @@
#define _GNU_SOURCE #define _GNU_SOURCE
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <getopt.h>
#include <dirent.h> #include <dirent.h>
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
@@ -65,14 +66,12 @@ void handle_complete_oops_message(struct oops_log_msg *msg)
#ifdef DEBUG #ifdef DEBUG
for (int i = 0; i < msg->length; i++) { for (int i = 0; i < msg->length; i++) {
printf("%s\n", msg->lines[i]); telem_debug("DEBUG: %s\n", msg->lines[i]);
} }
#endif #endif
payload = parse_payload(msg); payload = parse_payload(msg);
#ifdef DEBUG telem_debug("DEBUG: Payload Parsed :%s\n", payload->str);
printf("Payload Parsed :%s\n", payload->str);
#endif
send_data(payload->str, (char *)msg->pattern->classification, (uint32_t)msg->pattern->severity); send_data(payload->str, (char *)msg->pattern->classification, (uint32_t)msg->pattern->severity);
nc_string_free(payload); nc_string_free(payload);
} }
@@ -197,6 +196,13 @@ struct chunk_list {
struct chunk_list *next; struct chunk_list *next;
}; };
static void print_usage(char *prog)
{
printf("%s: Usage\n", prog);
printf(" -f, --config_file This overides the other parameters\n");
printf(" -h, --help Display this help message\n");
}
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
DIR *pstore_dir; DIR *pstore_dir;
@@ -207,6 +213,32 @@ int main(int argc, char **argv)
int max_part; int max_part;
size_t totalsize = 0; size_t totalsize = 0;
char *crash_dump = NULL; char *crash_dump = NULL;
int c;
int opt_index = 0;
struct option opts[] = {
{ "config_file", 1, NULL, 'f' },
{ "help", 0, NULL, 'h' },
{ NULL, 0, NULL, 0 }
};
while ((c = getopt_long(argc, argv, "f:h", opts, &opt_index)) != -1) {
switch (c) {
case 'f':
if (tm_set_config_file(optarg) != 0) {
telem_log(LOG_ERR, "Configuration file"
" path not valid\n");
exit(EXIT_FAILURE);
}
break;
case 'h':
print_usage(argv[0]);
exit(EXIT_SUCCESS);
case '?':
print_usage(argv[0]);
exit(EXIT_FAILURE);
}
}
/* /*
* Hash table used to store chunks belonging to a oops counter * Hash table used to store chunks belonging to a oops counter
@@ -232,9 +264,13 @@ int main(int argc, char **argv)
// Look for only dmesg logs. Ignore other types of pstore dumps for now. // Look for only dmesg logs. Ignore other types of pstore dumps for now.
if (sscanf(entry->d_name, "dmesg-efi-%" PRIu64, &id) == 1) { if (sscanf(entry->d_name, "dmesg-efi-%" PRIu64, &id) == 1) {
parse_id(id, &count, &part); parse_id(id, &count, &part);
#ifdef DEBUG telem_debug("dmesg-efi Extracted count :%d, part : %d\n",
printf("Extracted count :%d, part : %d\n", count, part); count, part);
#endif } else if (sscanf(entry->d_name, "dmesg-ramoops-%" PRIu64, &id) == 1) {
count = (int)(id + 1);
part = 1;
telem_debug("dmesg-ramoops Extracted count :%d, part : %d\n",
count, part);
} else { } else {
continue; continue;
} }
@@ -262,9 +298,7 @@ int main(int argc, char **argv)
nc_hashmap_iter_init(hash, &iter); nc_hashmap_iter_init(hash, &iter);
while (nc_hashmap_iter_next(&iter, (void **)&key, (void **)&value)) { while (nc_hashmap_iter_next(&iter, (void **)&key, (void **)&value)) {
#ifdef DEBUG telem_debug("DEBUG: Count in the hash: %d\n", NC_UNHASH_KEY(key));
printf("Count in the hash: %d\n", NC_UNHASH_KEY(key));
#endif
head = (struct chunk_list *)value; head = (struct chunk_list *)value;
elem = head; elem = head;
+139 -88
View File
@@ -1,7 +1,7 @@
/* /*
* This program is part of the Clear Linux Project * This program is part of the Clear Linux Project
* *
* Copyright 2015 Intel Corporation * Copyright 2019 Intel Corporation
* *
* This program is free software; you can redistribute it and/or modify it under * This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as * the terms and conditions of the GNU Lesser General Public License, as
@@ -32,17 +32,19 @@
#include "common.h" #include "common.h"
#include "telemetry.h" #include "telemetry.h"
static char *config_file = NULL;
static uint32_t severity = 1; static uint32_t severity = 1;
static char *opt_class = NULL; static char *opt_class = NULL;
static char *opt_payload = NULL; static char *opt_payload = NULL;
static uint32_t payload_version = 1; static uint32_t payload_version = 1;
static char *opt_payload_file = NULL; static char *opt_payload_file = NULL;
static char *opt_event_id = NULL; static char *opt_event_id = NULL;
static bool opt_echo = false;
static bool opt_nopost = false;
static const struct option prog_opts[] = { static const struct option prog_opts[] = {
{ "help", no_argument, 0, 'h' }, { "help", no_argument, 0, 'h' },
{ "config-file", required_argument, 0, 'f' }, { "echo", no_argument, 0, 'o' },
{ "no-post", no_argument, 0, 'n' },
{ "version", no_argument, 0, 'V' }, { "version", no_argument, 0, 'V' },
{ "severity", required_argument, 0, 's' }, { "severity", required_argument, 0, 's' },
{ "class", required_argument, 0, 'c' }, { "class", required_argument, 0, 'c' },
@@ -50,6 +52,7 @@ static const struct option prog_opts[] = {
{ "payload-file", required_argument, 0, 'P' }, { "payload-file", required_argument, 0, 'P' },
{ "record-version", required_argument, 0, 'R' }, { "record-version", required_argument, 0, 'R' },
{ "event-id", required_argument, 0, 'e' }, { "event-id", required_argument, 0, 'e' },
{ "config-file", required_argument, 0, 'f' },
{ 0, 0, 0, 0 } { 0, 0, 0, 0 }
}; };
@@ -62,39 +65,27 @@ static void print_help(void)
printf(" -h, --help Show help options\n"); printf(" -h, --help Show help options\n");
printf("\n"); printf("\n");
printf("Application Options:\n"); printf("Application Options:\n");
printf(" -f, --config-file Path to configuration file (not implemented yet)\n");
printf(" -V, --version Print the program version\n"); printf(" -V, --version Print the program version\n");
printf(" -s, --severity Severity level (1-4) - (default 1)\n"); printf(" -s, --severity Severity level (1-4) - (default 1)\n");
printf(" -c, --class Classification level_1/level_2/level_3\n"); printf(" -c, --class Classification level_1/level_2/level_3 (required)\n");
printf(" -p, --payload Record body (max size = 8k)\n"); printf(" -p, --payload Record body (max size = 8k) (required)\n");
printf(" -P, --payload-file File to read payload from\n"); printf(" -P, --payload-file File to read payload from\n");
printf(" -R, --record-version Version number for format of payload (default 1)\n"); printf(" -R, --record-version Version number for format of payload (default 1)\n");
printf(" -e, --event-id Event id to use in the record\n"); printf(" -e, --event-id Event id to use in the record\n");
printf(" -o, --echo Echo record to stdout\n");
printf(" -n, --no-post Do not post record just print\n");
printf(" -f, --config_file Specify a configuration file other than default\n");
printf("\n"); printf("\n");
} }
const unsigned int count_chars(const char *check, const char character) static bool parse_options(int argc, char **argv)
{ {
unsigned int count = 0U; bool ret = false;
if (check == NULL) {
return count;
}
for (; *check != '\0'; ++check) {
if (*check == character) {
++count;
}
}
return count;
}
int parse_options(int argc, char **argv)
{
int ret = 0;
char *endptr = NULL; char *endptr = NULL;
long unsigned int tmp = 0; long unsigned int tmp = 0;
int opt; int opt;
while ((opt = getopt_long(argc, argv, "hc:Vs:c:p:P:R:e:", prog_opts, NULL)) != -1) { while ((opt = getopt_long(argc, argv, "hc:Vs:c:p:P:R:e:onf:", prog_opts, NULL)) != -1) {
switch (opt) { switch (opt) {
case 'h': case 'h':
print_help(); print_help();
@@ -119,12 +110,21 @@ int parse_options(int argc, char **argv)
severity = (uint32_t)tmp; severity = (uint32_t)tmp;
break; break;
case 'c': case 'c':
if (opt_class != NULL) {
free(opt_class);
}
opt_class = strdup(optarg); opt_class = strdup(optarg);
break; break;
case 'p': case 'p':
if (opt_payload != NULL) {
free(opt_payload);
}
opt_payload = strdup(optarg); opt_payload = strdup(optarg);
break; break;
case 'P': case 'P':
if (opt_payload_file != NULL) {
free(opt_payload_file);
}
opt_payload_file = strdup(optarg); opt_payload_file = strdup(optarg);
break; break;
case 'R': case 'R':
@@ -144,36 +144,52 @@ int parse_options(int argc, char **argv)
payload_version = (uint32_t)tmp; payload_version = (uint32_t)tmp;
break; break;
case 'e': case 'e':
if (opt_event_id != NULL) {
free(opt_event_id);
}
opt_event_id = strdup(optarg); opt_event_id = strdup(optarg);
if (opt_event_id == NULL) { if (opt_event_id == NULL) {
goto fail; goto fail;
} }
break; break;
case 'o':
opt_echo = true;
break;
case 'n':
opt_nopost = true;
break;
case 'f':
if (tm_set_config_file(optarg) != 0) {
telem_log(LOG_ERR, "Configuration file path not valid\n");
exit(EXIT_FAILURE);
}
break;
} }
} }
ret = 1; ret = true;
fail: fail:
return ret; return ret;
} }
int validate_opts(void) static bool validate_opts(void)
{ {
size_t len; size_t i, len;
int ret = 0; int x, slashes = 0;
const char alphab[] = EVENT_ID_ALPHAB; const char alphab[] = EVENT_ID_ALPHAB;
bool ret = false;
/* classification */ /* classification */
if (opt_class == NULL) { if (opt_class == NULL) {
fprintf(stderr, "Error: Classification required. See --help.\n"); fprintf(stderr, "Error: Classification required. See --help.\n");
return ret; return ret;
} }
len = strlen(opt_class); len = strlen(opt_class);
if ((len == 0) || (len > 120)) { if ((len == 0) || (len > MAX_CLASS_LENGTH)) {
fprintf(stderr, "Error: Valid size for classification " fprintf(stderr, "Error: Valid size for classification "
"is 1-120 chars\n"); "is 1-%d chars\n", MAX_CLASS_LENGTH);
return ret; return ret;
} }
@@ -185,12 +201,27 @@ int validate_opts(void)
} }
} }
if (count_chars(opt_class, '/') != 2) { for (i = 0, x = 0; i <= (len - 1); i++, x++) {
if (opt_class[i] == '/') {
slashes++;
x = 0;
} else {
if (x > MAX_SUBCAT_LENGTH) {
fprintf(stderr, "Error: Classification strings"
" between slashes should have at most"
" %d chars\n", MAX_SUBCAT_LENGTH);
return ret;
}
}
}
if (slashes != 2) {
fprintf(stderr, "Error: Classification needs to be in " fprintf(stderr, "Error: Classification needs to be in "
"most/to/least specific format, 2 \'/\' required.\n"); "most/to/least specific format, 2 \'/\' required.\n");
return ret; return ret;
} }
/* Severity */ /* Severity */
if ((severity) < 1 || (severity > 4)) { if ((severity) < 1 || (severity > 4)) {
fprintf(stderr, "Error: Valid range for severity is 1-4\n"); fprintf(stderr, "Error: Valid range for severity is 1-4\n");
@@ -211,29 +242,12 @@ int validate_opts(void)
} }
} }
return 1; return true;
} }
int allocate_payload_buffer(char **payload) static bool get_payload_from_file(char **payload)
{ {
int ret = 0; bool ret = false;
*payload = (char *)malloc(MAX_PAYLOAD_SIZE);
if (*payload == NULL) {
goto out1;
}
*payload = memset(*payload, 0, MAX_PAYLOAD_SIZE);
ret = 1;
out1:
return ret;
}
int get_payload_from_file(char **payload)
{
int ret = 1;
FILE *fp = NULL; FILE *fp = NULL;
size_t bytes_in = 0; size_t bytes_in = 0;
@@ -246,14 +260,14 @@ int get_payload_from_file(char **payload)
} }
bytes_in = fread(*payload, 1, bytes_in = fread(*payload, 1,
MAX_PAYLOAD_SIZE - 1, fp); MAX_PAYLOAD_LENGTH - 1, fp);
/* if fread fails */ /* if fread fails */
if (bytes_in == 0 && ferror(fp) != 0) { if (bytes_in == 0 && ferror(fp) != 0) {
ret = 0;
goto out; goto out;
} }
ret = true;
out: out:
if (fp) { if (fp) {
fclose(fp); fclose(fp);
@@ -262,25 +276,27 @@ out:
} }
void get_payload_from_opt(char **payload) static void get_payload_from_opt(char **payload)
{ {
size_t len = 0; size_t len = 0;
len = strlen(opt_payload); len = strlen(opt_payload);
if (len >= MAX_PAYLOAD_SIZE) { if (len >= MAX_PAYLOAD_LENGTH) {
len = MAX_PAYLOAD_SIZE - 1; len = MAX_PAYLOAD_LENGTH - 1;
} }
strncpy(*payload, opt_payload, len);
/* "payload" is pre-allocated zeroed buffer of MAX_PAYLOAD_LENGTH */
memcpy(*payload, opt_payload, len);
} }
void get_payload_from_stdin(char **payload) static void get_payload_from_stdin(char **payload)
{ {
size_t bytes_in = 0; size_t bytes_in = 0;
int c; int c;
bytes_in = fread(*payload, 1, MAX_PAYLOAD_SIZE - 1, stdin); bytes_in = fread(*payload, 1, MAX_PAYLOAD_LENGTH - 1, stdin);
if (bytes_in == MAX_PAYLOAD_SIZE - 1) { if (bytes_in == MAX_PAYLOAD_LENGTH - 1) {
/* Throw away the rest of stdin */ /* Throw away the rest of stdin */
while (EOF != (c = fgetc(stdin))) { while (EOF != (c = fgetc(stdin))) {
continue; continue;
@@ -289,64 +305,95 @@ void get_payload_from_stdin(char **payload)
} }
int get_payload(char **payload) static bool get_payload(char **payload)
{ {
int ret = 0; bool ret = false;
if (!allocate_payload_buffer(payload)) { *payload = (char *)calloc(sizeof(char), MAX_PAYLOAD_LENGTH);
goto out1;
} if (*payload == NULL)
return false;
if (opt_payload_file) { if (opt_payload_file) {
if (get_payload_from_file(payload)) { if (get_payload_from_file(payload)) {
ret = 1; ret = true;
} }
} else if (opt_payload) { } else if (opt_payload) {
get_payload_from_opt(payload); get_payload_from_opt(payload);
ret = 1; ret = true;
} else { } else {
get_payload_from_stdin(payload); get_payload_from_stdin(payload);
ret = 1; ret = true;
} }
if (ret == 0) { if (ret == false) {
free(*payload); free(*payload);
*payload = NULL; *payload = NULL;
} }
return ret;
}
static int instanciate_record(struct telem_ref **t_ref, char *payload)
{
int ret = 0;
if ((ret = tm_create_record(t_ref, (uint32_t)severity,
opt_class, payload_version)) < 0) {
goto out1;
}
if (opt_event_id) {
if ((ret = tm_set_event_id(*t_ref, opt_event_id)) < 0) {
goto out1;
}
}
ret = tm_set_payload(*t_ref, payload);
out1: out1:
return ret; return ret;
} }
int send_record(char *payload) static int send_record(char *payload)
{ {
struct telem_ref *t_ref; struct telem_ref *t_ref = NULL;
int ret = 0; int ret = 0;
if (tm_create_record(&t_ref, (uint32_t)severity, if ((ret = instanciate_record(&t_ref, payload)) < 0) {
opt_class, payload_version) < 0) { goto out;
goto out1;
} }
if (opt_event_id && tm_set_event_id(t_ref, opt_event_id) < 0) { if ((ret = tm_send_record(t_ref)) < 0) {
goto out2; if (ret == -ECONNREFUSED) {
fprintf(stderr, "Unable to send record. Make sure to opt-in to telemetry first 'telemctl opt-in'\n");
}
goto out;
}
out:
tm_free_record(t_ref);
return ret;
}
static int print_record(char *payload)
{
struct telem_ref *t_ref = NULL;
int ret;
if ((ret = instanciate_record(&t_ref, payload)) == 0) {
int i;
for (i = 0; i < NUM_HEADERS; i++) {
fprintf(stdout, "%s", t_ref->record->headers[i]);
}
fprintf(stdout, "%s\n", t_ref->record->payload);
} }
if (tm_set_payload(t_ref, payload) < 0) {
goto out2;
}
if (tm_send_record(t_ref) >= 0) {
ret = 1;
}
out2:
tm_free_record(t_ref); tm_free_record(t_ref);
out1:
return ret; return ret;
} }
@@ -367,16 +414,20 @@ int main(int argc, char **argv)
goto fail; goto fail;
} }
if (!send_record(payload)) { if (opt_echo == true) {
print_record(payload);
}
if (opt_nopost == false && send_record(payload) != 0) {
goto fail; goto fail;
} }
ret = EXIT_SUCCESS; ret = EXIT_SUCCESS;
fail: fail:
free(config_file);
free(opt_class); free(opt_class);
free(opt_payload); free(opt_payload);
free(opt_event_id); free(opt_event_id);
free(payload);
return ret; return ret;
} }
+53 -13
View File
@@ -27,7 +27,7 @@
#include <errno.h> #include <errno.h>
#include "spool.h" #include "spool.h"
#include "telemdaemon.h" #include "telempostdaemon.h"
#include "log.h" #include "log.h"
#include "configuration.h" #include "configuration.h"
#include "util.h" #include "util.h"
@@ -202,9 +202,15 @@ void transmit_spooled_record(char *record_path, bool *post_succeeded, long size)
FILE *fp = NULL; FILE *fp = NULL;
char *headers[NUM_HEADERS]; char *headers[NUM_HEADERS];
char *payload = NULL; char *payload = NULL;
int i, k; int num_headers = 0, k;
char line[LINE_MAX] = { 0 }; #if (LINE_MAX > PATH_MAX)
char line[LINE_MAX+1] = { 0 };
#else
char line[PATH_MAX+1] = { 0 };
#endif
long offset; long offset;
char *cfg_file = NULL;
uint32_t cfg_prefix = 0;
fp = fopen(record_path, "r"); fp = fopen(record_path, "r");
if (fp == NULL) { if (fp == NULL) {
@@ -212,16 +218,47 @@ void transmit_spooled_record(char *record_path, bool *post_succeeded, long size)
return; return;
} }
for (i = 0; i < NUM_HEADERS; i++) { // First line optionally contains configuration file path
const char *header_name = get_header_name(i); if (fread(&cfg_prefix, CFG_PREFIX_LENGTH, 1, fp) != 1) {
if (!fgets(line, LINE_MAX, fp)) { telem_log(LOG_ERR, "Error while parsing spooled record configuration info.\n");
goto read_error;
}
if (cfg_prefix == CFG_PREFIX_32BIT) {
size_t pathlen;
char *nl;
if (!fgets(line, sizeof(line), fp)) {
telem_log(LOG_ERR, "Error while parsing record file\n"); telem_log(LOG_ERR, "Error while parsing record file\n");
fclose(fp); goto read_error;
return; }
if ((nl = strchr(line, '\n')) != NULL) {
*nl = '\0';
}
pathlen = strlen(line);
cfg_file = malloc(pathlen + 1);
if (cfg_file == NULL) {
telem_log(LOG_ERR, "Could not allocate memory for config file path\n");
goto read_error;
}
strcpy (cfg_file, line);
telem_debug("DEBUG: cfg_file: %s\n", cfg_file);
} else {
cfg_file = NULL;
rewind(fp);
}
for (num_headers = 0; num_headers < NUM_HEADERS; num_headers++) {
const char *header_name = get_header_name(num_headers);
if (!fgets(line, sizeof(line), fp)) {
telem_log(LOG_ERR, "Error while parsing record file\n");
goto read_error;
} }
//Get rid of trailing newline //Get rid of trailing newline
strtok(line, "\n"); strtok(line, "\n");
if (get_header(line, header_name, &headers[i], strlen(header_name))) { if (get_header(line, header_name, &headers[num_headers])) {
continue; continue;
} else { } else {
telem_log(LOG_ERR, "transmit_spooled_record: Incorrect" telem_log(LOG_ERR, "transmit_spooled_record: Incorrect"
@@ -242,8 +279,7 @@ void transmit_spooled_record(char *record_path, bool *post_succeeded, long size)
if (!payload) { if (!payload) {
telem_log(LOG_ERR, "Could not allocate memory for payload\n"); telem_log(LOG_ERR, "Could not allocate memory for payload\n");
fclose(fp); goto read_error;
return;
} }
memset(payload, 0, (size_t)size); memset(payload, 0, (size_t)size);
@@ -254,7 +290,7 @@ void transmit_spooled_record(char *record_path, bool *post_succeeded, long size)
goto read_error; goto read_error;
} }
*post_succeeded = post_record_http(headers, payload, false); *post_succeeded = post_record_http(headers, payload, cfg_file);
if (*post_succeeded) { if (*post_succeeded) {
unlink(record_path); unlink(record_path);
} }
@@ -267,9 +303,13 @@ read_error:
fclose(fp); fclose(fp);
} }
for (k = 0; k < i; k++) { for (k = 0; k < num_headers; k++) {
free(headers[k]); free(headers[k]);
} }
if (cfg_file) {
free(cfg_file);
}
} }
int spool_record_compare(const void *entrya, const void *entryb, void *path) int spool_record_compare(const void *entrya, const void *entryb, void *path)
+555
View File
@@ -0,0 +1,555 @@
/*
* This program is part of the Clear Linux Project
*
* Copyright 2019 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <limits.h>
#include <ftw.h>
#include <unistd.h>
#include <locale.h>
#include <pwd.h>
#include <grp.h>
#include <errno.h>
#define TELEM_DIR "/etc/telemetrics"
#define TM_OPT_IN TELEM_DIR"/opt-in"
#define TELEM_WRK_DIRS_CONF "/usr/lib/tmpfiles.d/telemetrics-dirs.conf"
#define cmd_create_tmp_files "systemd-tmpfiles --create " TELEM_WRK_DIRS_CONF
#define cmd_mk_telemdir "mkdir -p " TELEM_DIR
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
static char *SPECIAL_UNITS[] = {
"hprobe.timer",
"telemprobd.socket",
"telempostd.path",
"klogscanner.service",
"journal-probe-tail.service",
};
#define NUM_SPECIAL_UNITS ARRAY_SIZE(SPECIAL_UNITS)
static char *SERVICES[] = {
"hprobe.service",
"pstore-probe.service",
"telemprobd.service",
"telempostd.service",
"journal-probe.service",
};
#define NUM_SERVICES ARRAY_SIZE(SERVICES)
static int telemctl_start(void);
static int telemctl_stop(void);
static int telemctl_restart(void);
static int telemctl_is_active(void);
static int telemctl_opt_out(void);
static int telemctl_opt_in(void);
static int telemctl_journal(char *);
struct telemcmd {
bool root;
char *cmd;
union {
int (*f1)(void);
int (*f2)(char *);
} f;
char *doc;
};
static struct telemcmd commands[] = {
{true, "stop", {.f1=telemctl_stop}, "Stops all running telemetry services" },
{true, "start", {.f1=telemctl_start}, "Starts all telemetry services" },
{true, "restart", {.f1=telemctl_restart}, "Restarts all telemetry services" },
{false, "is-active", {.f1=telemctl_is_active},"Checks if telemprobd and telempostd are active" },
{true, "opt-in", {.f1=telemctl_opt_in}, "Opts in to telemetry, and starts telemetry services" },
{true, "opt-out", {.f1=telemctl_opt_out}, "Opts out of telemetry, and stops telemetry services" },
{true, "journal", {.f2=telemctl_journal}, "Prints telemetry journal contents. Use -h argument with\n command for more options"}
};
static int syscmd(char *cmd, char *buff, int bufflen)
{
int status;
#ifdef DEBUG
printf("[debug] [%s] %s\n", __func__, cmd);
#endif
FILE *fp = popen(cmd, "r");
if (fp == NULL) {
perror("popen");
return -1;
}
while (fgets(buff, bufflen, fp) != NULL) {
;
}
status = pclose(fp);
if (status == -1) {
perror("pclose");
}
return status;
}
/*
Script code:
for_each_service() {
local action=$1 && shift
local -a array=($*)
for service in "${array[@]}"; do
systemctl $action $service
[ $? -ne 0 ] && notice "Failed to $action ${service}. Continuing..."
done
}
*/
static int for_each_service(const char *command, char* services[], int numservices)
{
char buff[512];
char cmd[256];
int ret = 0, status;
for (int i = 0; i < numservices; i++) {
snprintf(cmd, sizeof(cmd), "systemctl %s %s", command, services[i]);
memset(buff, 0, sizeof(buff));
status = syscmd(cmd, buff, sizeof(buff));
if (status != 0 || buff[0] != 0) {
fprintf(stderr, "%s", buff);
fprintf(stderr, "Failed to %s %s. Continuing...", command, services[i]);
ret = 1;
}
}
return ret;
}
/*
Script code:
telem_start() {
[ -f $OPT_OUT_FILE ] && exit_err "Opt out is enabled. Cannot start services."
create_work_dirs
for_each_service "start" ${SPECIAL_UNITS[@]}
}
Modified to add explicit opt-in
*/
static int telemctl_start(void)
{
char buff[512];
int status, ret;
if (access(TM_OPT_IN, F_OK) != 0) {
fprintf(stderr, "Opt in to telemetry first.\n");
return 1;
}
/* Creates dirs if missing, adjust ownership if exists */
memset(buff, 0, sizeof(buff));
/* Execute "systemd-tmpfiles --create ${TELEM_WRK_DIRS_CONF}" */
status = syscmd(cmd_create_tmp_files, buff, sizeof(buff));
fprintf(stderr, "%s", buff);
if (status == -1) {
return 1;
}
ret = for_each_service("start", SPECIAL_UNITS, NUM_SPECIAL_UNITS);
return ret;
}
/*
Script code:
telem_stop() {
for_each_service "stop" ${SPECIAL_UNITS[@]}
for_each_service "stop" ${SERVICES[@]}
}
*/
static int telemctl_stop(void)
{
int ret;
/* the special units must be stopped first so that activation no longer happens */
ret = for_each_service("stop", SPECIAL_UNITS, NUM_SPECIAL_UNITS);
ret |= for_each_service("stop", SERVICES, NUM_SERVICES);
return ret;
}
/*
Script code:
*
telem_restart() {
telem_stop
telem_start
}
*/
static int telemctl_restart(void)
{
if (telemctl_stop() == 0) {
return telemctl_start();
}
return 1;
}
/*
Script code:
telem_is_active() {
echo "telemprobd :" $(systemctl is-active telemprobd.socket)
echo "telempostd :" $(systemctl is-active telempostd.path)
}
*/
static int telemctl_is_active(void)
{
char buff[256];
memset(buff, 0, sizeof(buff));
if (syscmd("systemctl is-active telemprobd.socket", buff, sizeof(buff)) != -1) {
printf("telemprobd : %s", buff);
memset(buff, 0, sizeof(buff));
if (syscmd("systemctl is-active telempostd.path",buff, sizeof(buff)) != -1) {
printf("telempostd : %s", buff);
return 0;
}
}
return 1;
}
static int unlink_cb(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf)
{
int rv = remove(fpath);
#ifdef DEBUG
fprintf(stderr, "[debug] [%s] remove fpath:%s rv:%d\n", __func__, fpath, rv);
#endif
return rv;
}
/* rm -rf path
*
* We run as root, so be extra careful when deleting folders.
* We only delete folders owned by telemetry:telemetry.
* As for the files, they can be owned by root.
*/
static int rm_rf(char *path)
{
struct stat info;
if (stat(path, &info) == 0) {
struct passwd *pw = getpwuid(info.st_uid);
if (pw == NULL) {
perror("getpwuid");
return -1;
}
if (strcmp(pw->pw_name, "telemetry") != 0) {
fprintf(stderr, "Not removing \"%s\": Incorrect folder owner \"%s\"\n",
path, pw->pw_name);
return -1;
}
struct group *gr = getgrgid(info.st_gid);
if (gr == NULL) {
perror("getgrgid");
return -1;
}
if (strcmp(gr->gr_name, "telemetry") != 0) {
fprintf(stderr, "Not removing \"%s\": Incorrect folder group \"%s\"\n",
path, gr->gr_name);
return -1;
}
return nftw(path, unlink_cb, 64, FTW_DEPTH | FTW_PHYS);
} else {
// Some folders are subfolders of folders already recursivley deleted.
// So they may not exist anymore.
if (errno != ENOENT) {
fprintf(stderr, "file: %s :", path);
perror("stat");
return -1;
}
return 0;
}
}
/*
Script code:
telem_remove_work_dirs() {
# Remove dirs
awk '/^d/{print $2}' ${TELEM_WRK_DIRS_CONF} | xargs rm -rf;
}
Notes:
Parse /usr/lib/tmpfiles.d/telemetrics-dirs.conf
This file was used to create the folders needed by telemetry.
Now we want to delete them. The file contents is as:
d /usr/local/var/lib/telemetry 0755 telemetry telemetry -
d /usr/local/var/spool/telemetry 0750 telemetry telemetry -
d /usr/local/var/log/telemetry 0750 telemetry telemetry -
d /usr/local/var/log/telemetry/records 0750 telemetry telemetry -
d /usr/local/var/cache/telemetry 0750 telemetry telemetry -
d /usr/local/var/cache/telemetry/pstore 0750 telemetry telemetry -
*/
static int telemctl_remove_work_dirs(void)
{
FILE *fp = fopen(TELEM_WRK_DIRS_CONF, "r");
if (fp == NULL){
fprintf(stderr, "Could not open file %s", TELEM_WRK_DIRS_CONF);
return 1;
}
while (true) {
char folder[PATH_MAX+1];
char line[PATH_MAX+30];
if (fgets(line, sizeof(line), fp) == NULL) {
if (ferror(fp)) {
fprintf(stderr, "Error reading file %s\n", TELEM_WRK_DIRS_CONF);
fclose(fp);
return 1;
}
// EOF
break;
}
int ret = sscanf(line, "d %s %*s telemetry telemetry - \n", folder);
if (ret == 1) {
/* Delete the folder. We may get an error trying to delete
* folders already deleted. We ignore them, so don't bother
* checking rmrtf return value */
rm_rf(folder);
}
}
fclose(fp);
return 0;
}
static int mk_telem_dir(void)
{
char buff[512];
int status;
struct stat sb;
if (stat(TELEM_DIR, &sb) == 0 && S_ISDIR(sb.st_mode)) {
#ifdef DEBUG
printf("[debug] [%s] Folder %s exists\n", __func__, TELEM_DIR);
#endif
return 0;
}
memset(buff, 0, sizeof(buff));
/* Execute "mkdir -p TM_DIR" */
status = syscmd(cmd_mk_telemdir, buff, sizeof(buff));
fprintf(stderr, "%s", buff);
if (status == -1 || buff[0] != 0) {
return 1;
}
return 0;
}
/*
Script code:
telem_opt_out() {
[ -f $OPT_OUT_FILE ] && exit_ok "Already opted out. Nothing to do."
mkdir -p $TELEM_DIR || exit_err "Failed to create ${TELEM_DIR}."
touch $OPT_OUT_FILE || exit_err "Failed to create ${OPT_OUT_FILE}."
telem_stop
telem_remove_work_dirs
}
*/
static int telemctl_opt_out(void)
{
int ret;
/* Remove TM_OPT_IN file */
if (unlink(TM_OPT_IN) != 0) {
if (errno == ENOENT) {
fprintf(stderr, "Already opted out. Nothing to do.\n");
return 0;
}
fprintf(stderr, "Failed to remove %s.\n", TM_OPT_IN);
return 1;
}
ret = telemctl_stop();
ret |= telemctl_remove_work_dirs();
return ret;
}
/*
Script code:
telem_opt_in() {
[ ! -f $OPT_OUT_FILE ] && exit_ok "Already opted in. Nothing to do."
rm -f $OPT_OUT_FILE || exit_err "Failed to remove ${OPT_OUT_FILE}."
telem_start
}
Modified to add explicit opt-in
*/
static int telemctl_opt_in(void)
{
/* Ensure TELEM_DIR exists */
if (mk_telem_dir() != 0) {
fprintf(stderr, "Failed to create %s\n", TELEM_DIR);
return 1;
}
/* Create a brand new file TM_OPT_IN, we may fail because the file exists already.
* In that case we are already opted in and we are done here. */
int fd = open(TM_OPT_IN, O_CREAT|O_EXCL|O_WRONLY, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
if (fd == -1) {
if (errno == EEXIST) {
fprintf(stderr, "Already opted in. Nothing to do.\n");
return 0;
} else {
fprintf(stderr, "Failed to create %s.\n", TM_OPT_IN);
return 1;
}
}
close(fd);
return 0;
}
static int journal_cmd(char *cmd)
{
int status;
char buff[256];
#ifdef DEBUG
printf("[debug] [%s] %s\n", __func__, cmd);
#endif
FILE *fp = popen(cmd, "r");
if (fp == NULL) {
perror("popen");
return -1;
}
while (fgets(buff, sizeof(buff), fp) != NULL) {
printf("%s", buff);
}
status = pclose(fp);
if (status == -1) {
perror("pclose");
}
return status;
}
static char* concatargs(int argc, char** argv)
{
size_t len = strlen("telem_journal") + 1;
for (int i = 2; i < argc; i++) {
len += strlen(argv[i]) + 1;
}
char *buff = malloc(len*sizeof(char));
if (buff != NULL) {
buff[0] = '\0';
strcat(buff,"telem_journal ");
for (int i = 2; i < argc; i++) {
strcat(buff, argv[i]);
strcat(buff, " ");
}
}
return buff;
}
static int telemctl_journal(char * x)
{
journal_cmd(x);
return 1;
}
static void print_usage(char *str)
{
printf("%s - Control actions for telemetry services\n\n", str);
for (int i = 0; i < sizeof(commands)/sizeof(commands[0]); i++) {
printf(" %-9s %s\n", commands[i].cmd, commands[i].doc);
}
}
int main(int argc, char **argv)
{
int i, ret = EXIT_SUCCESS;
bool is_root;
setlocale(LC_ALL, "");
if (argc == 1) {
print_usage(argv[0]);
exit(2);
}
is_root = getuid()?false:true;
for (i = 0; i < sizeof(commands)/sizeof(commands[0]); i++) {
if (strcmp(commands[i].cmd, argv[1]) == 0) {
if (commands[i].root == true && is_root == false) {
fprintf(stderr, "Must be root to run this command. Exiting...\n");
exit(1);
}
/* Special treatment for "journal", it can have cmd line arguments */
if (strcmp(argv[1],"journal") != 0) {
if (argc != 2) {
print_usage(argv[0]);
exit(2);
}
ret = commands[i].f.f1();
} else {
char *buff = concatargs(argc, argv);
if (buff != NULL) {
ret = commands[i].f.f2(buff);
free(buff);
}
}
break;
}
}
if (i == sizeof(commands)/sizeof(commands[0])) {
printf("Unknown command passed to %s\n\n", argv[0]);
print_usage(argv[0]);
exit(2);
}
exit(ret);
}
+154 -442
View File
@@ -29,46 +29,23 @@
#include <malloc.h> #include <malloc.h>
#include <sys/uio.h> #include <sys/uio.h>
#include "iorecord.h"
#include "telemdaemon.h" #include "telemdaemon.h"
#include "common.h" #include "common.h"
#include "util.h" #include "util.h"
#include "log.h" #include "log.h"
#include "configuration.h" #include "configuration.h"
#include "retention.h"
void initialize_daemon(TelemDaemon *daemon) static void process_record(TelemDaemon *daemon, client *cl);
void initialize_probe_daemon(TelemDaemon *daemon)
{ {
client_list_head head; client_list_head head;
LIST_INIT(&head); LIST_INIT(&head);
daemon->nfds = 0; daemon->nfds = 0;
daemon->pollfds = NULL; daemon->pollfds = NULL;
daemon->client_head = head; daemon->client_head = head;
daemon->bypass_http_post_ts = 0; daemon->machine_id_override = NULL;
daemon->is_spool_valid = false;
daemon->record_journal = open_journal(JOURNAL_PATH);
initialize_rate_limit(daemon);
initialize_record_delivery(daemon);
daemon->current_spool_size = 0;
}
void initialize_rate_limit(TelemDaemon *daemon)
{
for (int i = 0; i < TM_RATE_LIMIT_SLOTS; i++) {
daemon->record_burst_array[i] = 0;
daemon->byte_burst_array[i] = 0;
}
daemon->rate_limit_enabled = rate_limit_enabled_config();
daemon->record_burst_limit = record_burst_limit_config();
daemon->record_window_length = record_window_length_config();
daemon->byte_burst_limit = byte_burst_limit_config();
daemon->byte_window_length = byte_window_length_config();
daemon->rate_limit_strategy = rate_limit_strategy_config();
}
void initialize_record_delivery(TelemDaemon *daemon)
{
daemon->record_retention_enabled = record_retention_enabled_config();
daemon->record_server_delivery_enabled = record_server_delivery_enabled_config();
} }
client *add_client(client_list_head *client_head, int fd) client *add_client(client_list_head *client_head, int fd)
@@ -105,7 +82,8 @@ bool is_client_list_empty(client_list_head *client_head)
return (client_head->lh_first == NULL); return (client_head->lh_first == NULL);
} }
void terminate_client(TelemDaemon *daemon, client *cl, nfds_t index)
static void terminate_client(TelemDaemon *daemon, client *cl, nfds_t index)
{ {
/* Remove fd from the pollfds array */ /* Remove fd from the pollfds array */
del_pollfd(daemon, index); del_pollfd(daemon, index);
@@ -116,24 +94,40 @@ void terminate_client(TelemDaemon *daemon, client *cl, nfds_t index)
remove_client(&(daemon->client_head), cl); remove_client(&(daemon->client_head), cl);
} }
bool handle_client(TelemDaemon *daemon, nfds_t ind, client *cl) /*
See "tm_send_record" for record retails.
recv buffer layout:
* <uint32_t record_size> : so recv knows how much to read
* <custom cfg file field> : optional, variable size (string)
* <uint32_t header_size>
* <headers + Payload>
* <null-byte>
The routine handle_client only cares about "record_size".
However, we need to validate if the record_size is reasonable. We assume the
worst case scenario would be a record with max cfg file field. There is no
exact way to determine header_size, so we assume each line at most 80 chars.
*/
#define MAX_RECORD_SIZE (2*sizeof(uint32_t) + CFG_PREFIX_LENGTH + PATH_MAX + \
MAX_PAYLOAD_LENGTH + NUM_HEADERS*80)
bool handle_client(TelemDaemon *daemon, nfds_t index, client *cl)
{ {
/* For now read data from fd */ /* For now read data from fd */
ssize_t len; ssize_t len;
size_t record_size = 0; size_t buf_size;
bool processed = false; bool processed = false;
uint32_t record_size;
if (!cl->buf) { if (cl->buf != NULL) {
cl->buf = malloc(RECORD_SIZE_LEN); free(cl->buf);
cl->size = RECORD_SIZE_LEN; cl->buf = NULL;
}
if (!cl->buf) {
telem_log(LOG_ERR, "Unable to allocate memory, exiting\n");
exit(EXIT_FAILURE);
} }
malloc_trim(0); malloc_trim(0);
len = recv(cl->fd, cl->buf, RECORD_SIZE_LEN, MSG_PEEK | MSG_DONTWAIT); len = recv(cl->fd, &record_size, RECORD_SIZE_LEN, MSG_PEEK | MSG_DONTWAIT);
if (len < 0) { if (len < 0) {
telem_log(LOG_ERR, "Failed to talk to client %d: %s\n", cl->fd, telem_log(LOG_ERR, "Failed to talk to client %d: %s\n", cl->fd,
strerror(errno)); strerror(errno));
@@ -145,6 +139,39 @@ bool handle_client(TelemDaemon *daemon, nfds_t ind, client *cl)
goto end_client; goto end_client;
} }
/* Read the record size first */
len = recv(cl->fd, &record_size, RECORD_SIZE_LEN, 0);
if (len < 0) {
telem_log(LOG_ERR, "Failed to receive data from client"
" %d: %s\n", cl->fd, strerror(errno));
goto end_client;
} else if (len == 0) {
telem_log(LOG_DEBUG, "End of transmission for client"
" %d\n", cl->fd);
goto end_client;
}
/* Now that we know the record size, allocate a new buffer
* for the record body. We don't need to record size itself in the body.
*/
if (record_size <= RECORD_SIZE_LEN || record_size > MAX_RECORD_SIZE) {
telem_log(LOG_ERR, "Record size %u greater tham maximum allowed %lu."
"Recored ignored\n", record_size,
MAX_RECORD_SIZE);
goto end_client;
}
buf_size = record_size - RECORD_SIZE_LEN;
cl->buf = calloc(1, buf_size);
if (!cl->buf) {
telem_log(LOG_ERR, "Unable to allocate memory, exiting\n");
exit(EXIT_FAILURE);
}
cl->size = buf_size;
cl->offset = 0;
/* Read the actual record*/
do { do {
malloc_trim(0); malloc_trim(0);
len = recv(cl->fd, cl->buf + cl->offset, cl->size - cl->offset, 0); len = recv(cl->fd, cl->buf + cl->offset, cl->size - cl->offset, 0);
@@ -159,45 +186,20 @@ bool handle_client(TelemDaemon *daemon, nfds_t ind, client *cl)
} }
cl->offset += (size_t)len; cl->offset += (size_t)len;
if (cl->offset < RECORD_SIZE_LEN) {
continue; if (cl->offset == cl->size) {
}
if (cl->size == RECORD_SIZE_LEN) {
record_size = *(uint32_t *)(cl->buf);
telem_log(LOG_DEBUG, "Total size of record: %zu\n", record_size);
if (record_size == 0) { //record_size < RECORD_MIN_SIZE || record_size > RECORD_MAX_SIZE
goto end_client;
}
// We just processed the record size field, so the remaining format
// is (header size field + record body + terminating '\0' byte)
cl->size = sizeof(uint32_t) + record_size + 1;
cl->buf = realloc(cl->buf, cl->size);
memset(cl->buf, 0, cl->size);
cl->offset = 0;
if (!cl->buf) {
telem_log(LOG_ERR, "Unable to allocate memory, exiting\n");
exit(EXIT_FAILURE);
}
}
if (cl->offset != cl->size) {
/* full record not received yet */
continue;
}
if (cl->size != RECORD_SIZE_LEN) {
/* entire record has been received */
process_record(daemon, cl); process_record(daemon, cl);
/* TODO: cleanup or terminate? */ free(cl->buf);
cl->offset = 0; cl->buf = NULL;
cl->size = RECORD_SIZE_LEN;
processed = true; processed = true;
telem_log(LOG_DEBUG, "Record processed for client %d\n", cl->fd); telem_debug("DEBUG: Record processed for client %d\n", cl->fd);
break; break;
} }
} while (len > 0); } while (len > 0);
end_client: end_client:
telem_log(LOG_DEBUG, "Processed client %d: %s\n", cl->fd, processed ? "true" : "false"); telem_log(LOG_DEBUG, "Processed client %d: %s\n", cl->fd, processed ? "true" : "false");
terminate_client(daemon, cl, ind); terminate_client(daemon, cl, index);
return processed; return processed;
} }
@@ -247,14 +249,14 @@ char *read_machine_id_override()
return machine_override; return machine_override;
} }
void machine_id_replace(char **machine_header, char *machine_id_override) static void machine_id_replace(char **machine_header, char *machine_id_override)
{ {
char machine_id[33] = { 0 }; char machine_id[33] = { 0 };
char *old_header; char *old_header;
int ret; int ret;
if (machine_id_override) { if (machine_id_override) {
strcpy(machine_id, machine_id_override); strncpy(machine_id, machine_id_override, sizeof(machine_id)-1);
} else { } else {
if (!get_machine_id(machine_id)) { if (!get_machine_id(machine_id)) {
// TODO: decide if error handling is needed here // TODO: decide if error handling is needed here
@@ -272,47 +274,93 @@ void machine_id_replace(char **machine_header, char *machine_id_override)
free(old_header); free(old_header);
} }
void save_entry_to_journal(TelemDaemon *daemon, time_t t_stamp, char *headers[]) static void stage_record(char *filepath, char *headers[], char *body, char *cfg_file)
{ {
char *classification_value; int tmpfd;
char *event_id_value; FILE *tmpfile = NULL;
if (get_header_value(headers[TM_CLASSIFICATION], &classification_value) && telem_debug("DEBUG: filepath:%s\n", filepath);
get_header_value(headers[TM_EVENT_ID], &event_id_value)) { telem_debug("DEBUG: body:%s\n", body);
if (new_journal_entry(daemon->record_journal, classification_value, t_stamp, event_id_value) != 0) { telem_debug("DEBUG: cfg:%s\n", cfg_file);
telem_log(LOG_INFO, "new_journal_entry in process_record: failed saving record entry\n");
} if (filepath == NULL) {
} telem_log(LOG_ERR, "filepath value must be provided, aborting\n");
free(classification_value); exit(EXIT_FAILURE);
free(event_id_value); }
tmpfd = mkstemp(filepath);
if (tmpfd < 0) {
telem_perror("Error opening staging file");
goto clean_exit;
}
// access the opened file as a stream
tmpfile = fdopen(tmpfd, "a");
if (!tmpfile) {
telem_perror("Error opening temp stage file");
close(tmpfd);
if (unlink(filepath)) {
telem_perror("Error deleting temp stage file");
}
goto clean_exit;
}
// write cfg info if exists
if (cfg_file != NULL) {
fprintf(tmpfile, "%s%s\n", CFG_PREFIX, cfg_file);
}
// write headers
for (int i = 0; i < NUM_HEADERS; i++) {
fprintf(tmpfile, "%s\n", headers[i]);
}
// write body
fprintf(tmpfile, "%s\n", body);
fflush(tmpfile);
fclose(tmpfile);
clean_exit:
return;
} }
void process_record(TelemDaemon *daemon, client *cl) static void process_record(TelemDaemon *daemon, client *cl)
{ {
int i = 0; int i = 0;
int ret = 0;
char *headers[NUM_HEADERS]; char *headers[NUM_HEADERS];
bool do_spool = false;
bool record_sent = false;
char *tok = NULL; char *tok = NULL;
size_t header_size = 0; size_t header_size = 0;
size_t message_size = 0; size_t message_size = 0;
char *temp_headers = NULL; char *temp_headers = NULL;
char *msg; char *msg;
char *body; char *body;
int current_minute = 0; char *recordpath = NULL;
bool record_check_passed = true; char *cfg_file = NULL;;
bool byte_check_passed = true; size_t cfg_info_size = 0;
bool record_burst_enabled = true; uint8_t *buf;
bool byte_burst_enabled = true;
/* Gets the current minute of time */
time_t temp = time(NULL);
struct tm *tm_s = localtime(&temp);
current_minute = tm_s->tm_min;
header_size = *(uint32_t *)cl->buf; buf = cl->buf;
message_size = cl->size - header_size;
/* Check for an optional CFG_PREFIX in the first 32 bits */
if (*(uint32_t *)buf == CFG_PREFIX_32BIT) {
char *cfg = (char *)cl->buf;
cfg_file = cfg + CFG_PREFIX_LENGTH;
cfg_info_size = CFG_PREFIX_LENGTH + strlen(cfg_file) + 1;
telem_debug("DEBUG: cfg_file: %s\n", cfg_file);
}
buf += cfg_info_size;
header_size = *(uint32_t *)buf;
message_size = cl->size - (cfg_info_size + header_size);
telem_debug("DEBUG: cl->size: %zu\n", cl->size);
telem_debug("DEBUG: header_size: %zu\n", header_size);
telem_debug("DEBUG: message_size: %zu\n", message_size);
telem_debug("DEBUG: cfg_info_size: %zu\n", cfg_info_size);
assert(message_size > 0); //TODO:Check for min and max limits assert(message_size > 0); //TODO:Check for min and max limits
msg = (char *)cl->buf + sizeof(uint32_t); msg = (char *)buf + sizeof(uint32_t);
/* Copying the headers as strtok modifies the orginal buffer */ /* Copying the headers as strtok modifies the orginal buffer */
temp_headers = strndup(msg, header_size); temp_headers = strndup(msg, header_size);
@@ -321,7 +369,7 @@ void process_record(TelemDaemon *daemon, client *cl)
for (i = 0; i < NUM_HEADERS; i++) { for (i = 0; i < NUM_HEADERS; i++) {
const char *header_name = get_header_name(i); const char *header_name = get_header_name(i);
if (get_header(tok, header_name, &headers[i], strlen(header_name))) { if (get_header(tok, header_name, &headers[i])) {
if (strcmp(header_name, TM_MACHINE_ID_STR) == 0) { if (strcmp(header_name, TM_MACHINE_ID_STR) == 0) {
machine_id_replace(&headers[i], daemon->machine_id_override); machine_id_replace(&headers[i], daemon->machine_id_override);
} }
@@ -335,83 +383,15 @@ void process_record(TelemDaemon *daemon, client *cl)
/* TODO : check if the body is within the limits. */ /* TODO : check if the body is within the limits. */
body = msg + header_size; body = msg + header_size;
/* Save record in journal */ /* Save record to stage */
save_entry_to_journal(daemon, temp, headers); ret = asprintf(&recordpath, "%s/XXXXXX", spool_dir_config());
if (ret == -1) {
/* Save local copy */ telem_log(LOG_ERR, "Failed to allocate memory for record name in staging folder, aborting\n");
if (daemon->record_retention_enabled) {
save_local_copy(daemon, body);
}
/* Bail out if server delivery is not enabled */
if (!daemon->record_server_delivery_enabled) {
#ifdef DEBUG
fprintf(stdout, "process_record: record server delivery disabled\n");
#endif
goto end;
}
if (inside_direct_spool_window(daemon, time(NULL))) {
telem_log(LOG_INFO, "process_record: delivering directly to spool\n");
spool_record(daemon, headers, body);
goto end;
}
if (daemon->record_window_length == -1 ||
daemon->byte_window_length == -1) {
telem_log(LOG_ERR, "Invalid value for window length\n");
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
/* Checks if entirety of rate limiting is enabled */
if (daemon->rate_limit_enabled) {
/* Checks whether record and byte bursts are enabled individually */
record_burst_enabled = burst_limit_enabled(daemon->record_burst_limit);
byte_burst_enabled = burst_limit_enabled(daemon->byte_burst_limit);
if (record_burst_enabled) {
record_check_passed = rate_limit_check(current_minute,
daemon->record_burst_limit, daemon->record_window_length,
daemon->record_burst_array, TM_RECORD_COUNTER);
}
if (byte_burst_enabled) {
byte_check_passed = rate_limit_check(current_minute,
daemon->byte_burst_limit, daemon->byte_window_length,
daemon->byte_burst_array, cl->size);
}
/* If both record and byte burst disabled, rate limiting disabled */
if (!record_burst_enabled && !byte_burst_enabled) {
daemon->rate_limit_enabled = false;
}
}
/* Sends record if rate limiting is disabled, or all checks passed */
if (!daemon->rate_limit_enabled || (record_check_passed && byte_check_passed)) {
/* Send the record as https post */
record_sent = post_record_ptr(headers, body, true);
}
// Get rate-limit strategy
do_spool = spool_strategy_selected(daemon);
// Drop record
if (!record_sent && !do_spool) {
goto end;
}
// Spool Record
else if (!record_sent && do_spool) {
start_network_bypass(daemon);
telem_log(LOG_INFO, "process_record: initializing direct-spool window\n");
spool_record(daemon, headers, body);
} else {
/* Updates rate limiting arrays if record sent */
if (record_burst_enabled) {
rate_limit_update (current_minute, daemon->record_window_length,
daemon->record_burst_array, TM_RECORD_COUNTER);
}
if (byte_burst_enabled) {
rate_limit_update (current_minute, daemon->byte_window_length,
daemon->byte_burst_array, cl->size);
}
}
stage_record(recordpath, headers, body, cfg_file);
free(recordpath);
end: end:
free(temp_headers); free(temp_headers);
for (int k = 0; k < i; k++) for (int k = 0; k < i; k++)
@@ -419,274 +399,6 @@ end:
return; return;
} }
bool burst_limit_enabled(int64_t burst_limit)
{
return (burst_limit > -1) ? true : false;
}
bool rate_limit_check(int current_minute, int64_t burst_limit, int
window_length, size_t *array, size_t incValue)
{
size_t count = 0;
/* Variable to determine last minute allowed in burst window */
int window_start = (TM_RATE_LIMIT_SLOTS + (current_minute - window_length + 1))
% TM_RATE_LIMIT_SLOTS;
/* The modulo is not placed in the for loop inself, because if
* the current minute is less than the window start (from wrapping)
* the for loop will never be entered.
*/
/* Counts all elements within burst_window in array */
for (int i = window_start; i < (window_start + window_length); i++) {
count += array[i % TM_RATE_LIMIT_SLOTS];
if ((array[i % TM_RATE_LIMIT_SLOTS] + incValue) >= SIZE_MAX) {
/* Exceeds maximum size array can hold */
return false;
}
}
/* Include current record being processed to count */
count += incValue;
/* Determines whether the count has exceeded the limit or not */
return (count > burst_limit) ? false : true;
}
void rate_limit_update(int current_minute, int window_length, size_t *array,
size_t incValue)
{
/* Variable to determine the amount of zero'd out spots needed */
int blank_slots = (TM_RATE_LIMIT_SLOTS - window_length);
/* Update specified array depending on increment value */
array[current_minute] += incValue;
/* Zero out expired records for record array */
for (int i = current_minute + 1; i < (blank_slots + current_minute + 1); i++) {
array[i % TM_RATE_LIMIT_SLOTS] = 0;
}
}
bool spool_strategy_selected(TelemDaemon *daemon)
{
/* Performs action depending on strategy choosen */
return (strcmp(daemon->rate_limit_strategy, "spool") == 0) ? true : false;
}
bool inside_direct_spool_window(TelemDaemon *daemon, time_t current_time)
{
return (current_time < daemon->bypass_http_post_ts + 1800) ? true : false;
}
void start_network_bypass(TelemDaemon *daemon)
{
daemon->bypass_http_post_ts = time(NULL);
}
size_t write_callback(char *ptr, size_t size, size_t nmemb, void *userdata)
{
telem_log(LOG_DEBUG, "Received data:\n%s\n", ptr);
return size * nmemb;
}
bool post_record_http(char *headers[], char *body, bool spool)
{
CURL *curl;
int res = 0;
char *content = "Content-Type: application/text";
struct curl_slist *custom_headers = NULL;
char errorbuf[CURL_ERROR_SIZE];
long http_response = 0;
const char *cert_file = get_cainfo_config();
const char *tid_header = get_tidheader_config();
// Initialize the libcurl global environment once per POST. This lets us
// clean up the environment after each POST so that when the daemon is
// sitting idle, it will be consuming as little memory as possible.
curl_global_init(CURL_GLOBAL_ALL);
curl = curl_easy_init();
if (!curl) {
telem_log(LOG_ERR, "curl_easy_init(): Unable to start libcurl"
" easy session, exiting\n");
exit(EXIT_FAILURE);
/* TODO: check if memory needs to be released */
}
// Errors for any curl_easy_* functions will store nice error messages
// in errorbuf, so send log messages with errorbuf contents
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errorbuf);
curl_easy_setopt(curl, CURLOPT_URL, server_addr_config());
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 5L);
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 10L);
curl_easy_setopt(curl, CURLOPT_POST, 1);
#ifdef DEBUG
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
#endif
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback);
for (int i = 0; i < NUM_HEADERS; i++) {
custom_headers = curl_slist_append(custom_headers, headers[i]);
}
custom_headers = curl_slist_append(custom_headers, tid_header);
// This should be set by probes/libtelemetry in the future
custom_headers = curl_slist_append(custom_headers, content);
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, custom_headers);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, body);
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, strlen(body));
curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_TRY);
if (strlen(cert_file) > 0) {
if (access(cert_file, F_OK) != -1) {
curl_easy_setopt(curl, CURLOPT_CAINFO, cert_file);
telem_log(LOG_INFO, "cafile was set to %s\n", cert_file);
}
}
telem_log(LOG_DEBUG, "Executing curl operation...\n");
errorbuf[0] = 0;
res = curl_easy_perform(curl);
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_response);
if (res) {
size_t len = strlen(errorbuf);
if (len) {
telem_log(LOG_ERR, "Failed sending record: %s%s", errorbuf,
((errorbuf[len - 1] != '\n') ? "\n" : ""));
} else {
telem_log(LOG_ERR, "Failed sending record: %s\n",
curl_easy_strerror(res));
}
} else if (http_response != 201 && http_response != 200) {
/* 201 means the record was successfully created
* 200 is a generic "ok".
* TODO: Make list of white-listed response codes configurable?
*/
telem_log(LOG_ERR, "Encountered error %ld on the server\n",
http_response);
// We treat HTTP error codes the same as libcurl errors
res = 1;
} else {
telem_log(LOG_INFO, "Record sent successfully\n");
}
curl_slist_free_all(custom_headers);
curl_easy_cleanup(curl);
curl_global_cleanup();
return res ? false : true;
}
void save_local_copy(TelemDaemon *daemon, char *body)
{
int ret = 0;
char *tmpbuf = NULL;
FILE *tmpfile = NULL;
if (daemon == NULL || daemon->record_journal == NULL ||
daemon->record_journal->latest_record_id == NULL) {
return;
}
ret = asprintf(&tmpbuf, "%s/%s", RECORD_RETENTION_DIR,
daemon->record_journal->latest_record_id);
if (ret == -1) {
telem_log(LOG_ERR, "Failed to allocate memory for record full path, aborting\n");
return;
}
tmpfile = fopen(tmpbuf, "w");
if (!tmpfile) {
telem_perror("Error opening local record copy temp file");
goto save_err;
}
// Save body
fprintf(tmpfile, "%s\n", body);
fclose(tmpfile);
save_err:
free(tmpbuf);
return;
}
void spool_record(TelemDaemon *daemon, char *headers[], char *body)
{
int ret = 0;
struct stat stat_buf;
int64_t max_spool_size = 0;
char *tmpbuf = NULL;
FILE *tmpfile = NULL;
int tmpfd = 0;
if (!daemon->is_spool_valid) {
/* If spool is not valid, simply drop the record */
return;
}
//check if the size is greater than 1 MB/spool max size
max_spool_size = spool_max_size_config();
if (max_spool_size != -1) {
telem_log(LOG_DEBUG, "Total size of spool dir: %ld\n", daemon->current_spool_size);
if (daemon->current_spool_size < 0) {
telem_log(LOG_ERR, "Error getting spool directory size: %s\n",
strerror(-(int)(daemon->current_spool_size)));
return;
} else if (daemon->current_spool_size >= (max_spool_size * 1024)) {
telem_log(LOG_INFO, "Spool dir full, dropping record\n");
return;
}
}
// create file with record
ret = asprintf(&tmpbuf, "%s/XXXXXX", spool_dir_config());
if (ret == -1) {
telem_log(LOG_ERR, "Failed to allocate memory for record name, aborting\n");
exit(EXIT_FAILURE);
}
tmpfd = mkstemp(tmpbuf);
if (tmpfd == -1) {
telem_perror("Error while creating temp file");
goto spool_err;
}
tmpfile = fdopen(tmpfd, "a");
if (!tmpfile) {
telem_perror("Error opening temp file");
close(tmpfd);
if (unlink(tmpbuf)) {
telem_perror("Error deleting temp file");
}
goto spool_err;
}
// write headers
for (int i = 0; i < NUM_HEADERS; i++) {
fprintf(tmpfile, "%s\n", headers[i]);
}
//write body
fprintf(tmpfile, "%s\n", body);
fflush(tmpfile);
fclose(tmpfile);
/* The stat should not fail here unless it is ENOMEM */
if (stat(tmpbuf, &stat_buf) == 0) {
daemon->current_spool_size += (stat_buf.st_blocks * 512);
}
spool_err:
free(tmpbuf);
return;
}
void add_pollfd(TelemDaemon *daemon, int fd, short events) void add_pollfd(TelemDaemon *daemon, int fd, short events)
{ {
assert(daemon); assert(daemon);
@@ -741,7 +453,7 @@ bool get_machine_id(char *machine_id)
return false; return false;
} }
ret = fscanf(id_file, "%s", machine_id); ret = fscanf(id_file, "%32s", machine_id);
if (ret != 1) { if (ret != 1) {
telem_perror("Could not read machine id from file"); telem_perror("Could not read machine id from file");
fclose(id_file); fclose(id_file);
+2 -165
View File
@@ -22,7 +22,6 @@
#include <sys/queue.h> #include <sys/queue.h>
#include <stdbool.h> #include <stdbool.h>
#include <inttypes.h> #include <inttypes.h>
#include "journal/journal.h"
#define TM_MACHINE_ID_EXPIRY (3 /*d*/ * 24 /*h*/ * 60 /*m*/ * 60 /*s*/) #define TM_MACHINE_ID_EXPIRY (3 /*d*/ * 24 /*h*/ * 60 /*m*/ * 60 /*s*/)
@@ -55,26 +54,6 @@ typedef struct TelemDaemon {
size_t current_alloc; size_t current_alloc;
/* client list head */ /* client list head */
client_list_head client_head; client_list_head client_head;
/* Time of last failed post */
time_t bypass_http_post_ts;
/* Telemetry Journal*/
TelemJournal *record_journal;
/* Rate limit record and byte arrays */
size_t record_burst_array[TM_RATE_LIMIT_SLOTS];
size_t byte_burst_array[TM_RATE_LIMIT_SLOTS];
/* Rate Limit Configurations */
bool rate_limit_enabled;
int64_t record_burst_limit;
int record_window_length;
int64_t byte_burst_limit;
int byte_window_length;
const char *rate_limit_strategy;
/* Spool configuration */
bool is_spool_valid;
long current_spool_size;
/* Record local copy and delivery */
bool record_retention_enabled;
bool record_server_delivery_enabled;
char *machine_id_override; char *machine_id_override;
} TelemDaemon; } TelemDaemon;
@@ -83,22 +62,7 @@ typedef struct TelemDaemon {
* *
* @param daemon A pointer to the daemon structure. * @param daemon A pointer to the daemon structure.
*/ */
void initialize_daemon(TelemDaemon *daemon); void initialize_probe_daemon(TelemDaemon *daemon);
/**
* Initialize rate-limiting in the daemon
*
* @param daemon A pointer to the daemon structure
*/
void initialize_rate_limit(TelemDaemon *daemon);
/**
* Initialize record delivery to remote and locally
* in the daemon
*
* @param daemon A pointer to the daemon structure
*/
void initialize_record_delivery(TelemDaemon *daemon);
/** /**
* Add poll fd struct to the array of pollfds. * Add poll fd struct to the array of pollfds.
@@ -161,134 +125,6 @@ void remove_client(client_list_head *client_head, client *cl);
*/ */
bool is_client_list_empty(client_list_head *client_head); bool is_client_list_empty(client_list_head *client_head);
/**
* Terminate a client connection
*
* @param daemon Pointer to the daemon
* @param cl Pointer to the client in the client list
* @param index The index of the client file descriptor in the poll fd
* array
*
*/
void terminate_client(TelemDaemon *daemon, client *cl, nfds_t index);
/**
* Process record from a client
*
* @param daemon Pointer to the daemon
* @param cl Pointer to the client in the client list
*
* @return true on success, false on failure
*/
void process_record(TelemDaemon *daemon, client *cl);
/**
* Check if burst limiting is enabled
*
* @param burst_limit Burst limit amount. If negative rate limiting
* is disabled
*
* @return true if rate limiting for burst_limit variable is enabled
*/
bool burst_limit_enabled(int64_t burst_limit);
/**
* Checks whether record does not exceed the burst threshold
*
* @param current_minute The current minute of time the record processed
* @param burst_limit Amount of records that can be passed within a window
* @param window_length Window of time burst limit refers to
* @param array Pointer to array that stores record or byte count
* @param incValue Amount to increase array slot by
*
* @return true if record does not exceed threshold, and false otherwise
*/
bool rate_limit_check(int current_minute, int64_t burst_limit, int
window_length, size_t *array, size_t incValue);
/**
* Updates rate limit arrays with passing record information
*
* @param current_minute The current minute of time the record processed
* @param window_length Window of time burst limit refers to
* @param array Pointer to array that stores record or byte count
* @param incValue Amount to increase array slot by
*
*/
void rate_limit_update(int current_minute, int window_length,
size_t *array, size_t incValue);
/**
* Checks if the spool strategy is chosen for rate-limiting
*
* @param daemon Pointer to the daemon
*
* @return true if spool is choosen false if drop is choosen
*/
bool spool_strategy_selected(TelemDaemon *daemon);
/**
* Check if daemon should direct-spool after encountering network issues.
*
* @param daemon Pointer to the daemon
* @param time The time as time_t (usually from time())
*
* @return true if inside direct spool window, false otherwise.
*/
bool inside_direct_spool_window(TelemDaemon *daemon, time_t time);
/**
* Set the start time of the direct spool window. Will use the
* current time.
*
* @param daemon Pointer to the daemon
*
* @return no return value.
*/
void start_network_bypass(TelemDaemon *daemon);
/**
* Function pointer for posting the records to the server. Replaced by a
* mock function in the unit tests.
*
* @param header_values The header data read from the socket
* @param body The payload of the record read
* @param spool Indicate whether the record should be spooled if not
* successfully delivered
*
* @return true if the record was successfully posted
*/
extern bool (*post_record_ptr)(char *headers[], char *body, bool spool);
/**
* Post records on a http connection to server
*
* @param header_values The header data read from the socket
* @param body The payload of the record read
* @param spool Indicate whether the record should be spooled if not
* successfully delivered
*
* @return true if the record was successfully posted
*/
bool post_record_http(char *header_values[], char *body, bool spool);
/**
* Spool the record in case it cannot be delivered to the server
*
* @param headers The headers for the record
* @param body The payload of the record
*
*/
void spool_record(TelemDaemon * daemon, char *headers[], char *body);
/**
* Save a copy of the record payload locally
*
* @param body The payload of the record
*
*/
void save_local_copy(TelemDaemon *daemon, char *body);
/** /**
* Get random machine id stored in file * Get random machine id stored in file
* *
@@ -310,4 +146,5 @@ int update_machine_id(void);
* or if the file is empty * or if the file is empty
*/ */
char *read_machine_id_override(void); char *read_machine_id_override(void);
/* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */ /* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */
+109 -124
View File
@@ -35,6 +35,7 @@
#include "common.h" #include "common.h"
#include "configuration.h" #include "configuration.h"
#include "telemetry.h" #include "telemetry.h"
#include "log.h"
/** /**
* Return a file descriptor to either site's version file * Return a file descriptor to either site's version file
@@ -76,9 +77,7 @@ static int set_header(char **dest, const char *prefix, char *value, size_t *head
rc = asprintf(dest, "%s: %s\n", prefix, value); rc = asprintf(dest, "%s: %s\n", prefix, value);
if (rc < 0) { if (rc < 0) {
#ifdef DEBUG telem_log(LOG_CRIT, "CRIT: Out of memory\n");
fprintf(stderr, "CRIT: Out of memory\n");
#endif
return -ENOMEM; return -ENOMEM;
} else { } else {
*header_size += (size_t)rc; *header_size += (size_t)rc;
@@ -233,35 +232,49 @@ static int set_system_name_header(struct telem_ref *t_ref)
int fd; int fd;
char buf[SMALL_LINE_BUF] = { 0 }; char buf[SMALL_LINE_BUF] = { 0 };
char name[SMALL_LINE_BUF] = { 0 }; char name[SMALL_LINE_BUF] = { 0 };
char variant[SMALL_LINE_BUF] = { 0 };
fd = version_file(); fd = version_file();
if (fd == -1) { if (fd == -1) {
#ifdef DEBUG telem_log(LOG_WARNING, "WARNING: Cannot find os-release file\n");
fprintf(stderr, "WARNING: Cannot find os-release file\n");
#endif
sprintf(name, "unknown"); sprintf(name, "unknown");
} else { } else {
fs = fdopen(fd, "r"); fs = fdopen(fd, "r");
while (fgets(buf, SMALL_LINE_BUF, fs)) { while (fgets(buf, SMALL_LINE_BUF, fs)) {
if (sscanf(buf, "ID=%s", name) < 1) { if (sscanf(buf, "ID=%s", name) > 0) {
continue; break;
} else { }
}
rewind(fs);
while (fgets(buf, SMALL_LINE_BUF, fs)) {
if (sscanf(buf, "VARIANT_ID=%s", variant) > 0) {
break; break;
} }
} }
fclose(fs);
if (strlen(name) == 0) { if (strlen(name) == 0) {
#ifdef DEBUG telem_log(LOG_WARNING, "WARNING: Cannot find os-release field: ID\n");
fprintf(stderr, "WARNING: Cannot find os-release field: ID\n");
#endif
sprintf(name, "unknown"); sprintf(name, "unknown");
} }
fclose(fs); if (strlen(variant) == 0) {
snprintf(buf, sizeof(buf), "%s", name);
} else {
/* We do not want the header to be greater than 80 characters, allow truncation */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-truncation"
if (snprintf(buf, sizeof(buf), "%s_%s", name, variant) > sizeof(buf)) {
telem_log(LOG_WARNING, "WARNING: truncating system name header to 80 characters\n");
}
telem_debug("DEBUG: Found variant OS information: %s\n", variant);
#pragma GCC diagnostic pop
}
} }
return set_header(&(t_ref->record->headers[TM_SYSTEM_NAME]), return set_header(&(t_ref->record->headers[TM_SYSTEM_NAME]),
TM_SYSTEM_NAME_STR, name, TM_SYSTEM_NAME_STR, buf,
&(t_ref->record->header_size)); &(t_ref->record->header_size));
} }
@@ -285,9 +298,7 @@ static int set_system_build_header(struct telem_ref *t_ref)
fd = version_file(); fd = version_file();
if (fd == -1) { if (fd == -1) {
#ifdef DEBUG telem_log(LOG_WARNING, "WARNING: Cannot find build version file\n");
fprintf(stderr, "WARNING: Cannot find build version file\n");
#endif
sprintf(version, "0"); sprintf(version, "0");
} else { } else {
fs = fdopen(fd, "r"); fs = fdopen(fd, "r");
@@ -300,9 +311,7 @@ static int set_system_build_header(struct telem_ref *t_ref)
} }
if (strlen(version) == 0) { if (strlen(version) == 0) {
#ifdef DEBUG telem_log(LOG_WARNING, "WARNING: Cannot find build version number\n");
fprintf(stderr, "WARNING: Cannot find build version number\n");
#endif
sprintf(version, "0"); sprintf(version, "0");
} }
@@ -316,7 +325,7 @@ static int set_system_build_header(struct telem_ref *t_ref)
/** /**
* Sets the header reporting the machine_id. Note, the machine_id is really * Sets the header reporting the machine_id. Note, the machine_id is really
* managed by the telemetrics daemon (telemd), and populated by the daemon * managed by the telemetrics daemon (telemprobd), and populated by the daemon
* as it delivers the records. Consequently, the header is simply set to a * as it delivers the records. Consequently, the header is simply set to a
* dummy value of 0xFFFFFFF. * dummy value of 0xFFFFFFF.
* *
@@ -410,13 +419,13 @@ static int set_cpu_model_header(struct telem_ref *t_ref)
model_str_len = strlen(model_name); model_str_len = strlen(model_name);
if (model_str_len > 2) { if (model_str_len > 2) {
model_name = (char *)model_name + 2 * sizeof(char); model_name = (char *)model_name + 2 * sizeof(char);
model_name[model_str_len - 2] = '\0'; model_name[model_str_len - 3] = '\0';
} else { } else {
model_name = "blank"; model_name = "blank";
} }
} else { } else {
model_name = "blank"; model_name = "blank";
fprintf(stderr, "NOTICE: Unable to find attribute:%s\n", attr_name); telem_log(LOG_NOTICE, "NOTICE: Unable to find attribute:%s\n", attr_name);
} }
status = set_header( status = set_header(
@@ -425,9 +434,7 @@ static int set_cpu_model_header(struct telem_ref *t_ref)
&(t_ref->record->header_size)); &(t_ref->record->header_size));
} else { } else {
#ifdef DEBUG telem_log(LOG_NOTICE, "NOTICE: Unable to open /proc/cpuinfo\n");
fprintf(stderr, "NOTICE: Unable to open /proc/cpuinfo\n");
#endif
status = -1; status = -1;
} }
@@ -461,9 +468,7 @@ static int get_dmi_value(const char *source, const char *key, char **buf)
*buf = (char *)malloc(sizeof(char) * SMALL_LINE_BUF); *buf = (char *)malloc(sizeof(char) * SMALL_LINE_BUF);
if (*buf == NULL) { if (*buf == NULL) {
#ifdef DEBUG telem_log(LOG_CRIT, "CRIT: Out of memory\n");
fprintf(stderr, "CRIT: Out of memory\n");
#endif
return -ENOMEM; return -ENOMEM;
} }
@@ -486,9 +491,7 @@ static int get_dmi_value(const char *source, const char *key, char **buf)
if (new_size == 0) { if (new_size == 0) {
old_value = *buf; old_value = *buf;
if (asprintf(buf, "blank") < 0) { if (asprintf(buf, "blank") < 0) {
#ifdef DEBUG telem_log(LOG_CRIT, "CRIT: Out of memory\n");
fprintf(stderr, "CRIT: Out of memory\n");
#endif
ret = -ENOMEM; ret = -ENOMEM;
} }
free(old_value); free(old_value);
@@ -505,24 +508,18 @@ static int get_dmi_value(const char *source, const char *key, char **buf)
if (j == new_size) { if (j == new_size) {
old_value = *buf; old_value = *buf;
if (asprintf(buf, "blank") < 0) { if (asprintf(buf, "blank") < 0) {
#ifdef DEBUG telem_log(LOG_CRIT, "CRIT: Out of memory\n");
fprintf(stderr, "CRIT: Out of memory\n");
#endif
ret = -ENOMEM; ret = -ENOMEM;
} }
free(old_value); free(old_value);
} }
} }
} else { } else {
#ifdef DEBUG telem_debug("DEBUG: Dmi file %s does not exist\n", source);
fprintf(stderr, "NOTICE: Dmi file %s does not exist\n", source);
#endif
old_value = *buf; old_value = *buf;
if (asprintf(buf, "no_%s_file", key) < 0) { if (asprintf(buf, "no_%s_file", key) < 0) {
#ifdef DEBUG telem_log(LOG_CRIT, "CRIT: Out of memory\n");
fprintf(stderr, "CRIT: Out of memory\n");
#endif
ret = -ENOMEM; ret = -ENOMEM;
} }
free(old_value); free(old_value);
@@ -777,9 +774,9 @@ static int set_payload_format_header(struct telem_ref *t_ref, uint32_t payload_v
return status; return status;
} }
void tm_set_config_file(char *c_file) int tm_set_config_file(const char *c_file)
{ {
set_config_file(c_file); return set_config_file(c_file);
} }
/** /**
@@ -916,28 +913,16 @@ int tm_create_record(struct telem_ref **t_ref, uint32_t severity,
char *classification, uint32_t payload_version) char *classification, uint32_t payload_version)
{ {
int ret = 0; int ret = 0;
int k = 0;
struct stat unused;
k = stat(TM_OPT_OUT_FILE, &unused);
if (k == 0) {
// Bail early if opt-out is enabled
return -ECONNREFUSED;
}
*t_ref = (struct telem_ref *)malloc(sizeof(struct telem_ref)); *t_ref = (struct telem_ref *)malloc(sizeof(struct telem_ref));
if (*t_ref == NULL) { if (*t_ref == NULL) {
#ifdef DEBUG telem_log(LOG_CRIT, "CRIT: Out of memory\n");
fprintf(stderr, "CRIT: Out of memory\n");
#endif
return -ENOMEM; return -ENOMEM;
} }
(*t_ref)->record = (struct telem_record *)malloc(sizeof(struct telem_record)); (*t_ref)->record = (struct telem_record *)malloc(sizeof(struct telem_record));
if ((*t_ref)->record == NULL) { if ((*t_ref)->record == NULL) {
#ifdef DEBUG telem_log(LOG_CRIT, "CRIT: Out of memory\n");
fprintf(stderr, "CRIT: Out of memory\n");
#endif
free(*t_ref); free(*t_ref);
return -ENOMEM; return -ENOMEM;
} }
@@ -991,14 +976,6 @@ int tm_set_payload(struct telem_ref *t_ref, char *payload)
{ {
size_t payload_len; size_t payload_len;
int ret = 0; int ret = 0;
int k = 0;
struct stat unused;
k = stat(TM_OPT_OUT_FILE, &unused);
if (k == 0) {
// Bail early if opt-out is enabled
return -ECONNREFUSED;
}
payload_len = strlen((char *)payload); payload_len = strlen((char *)payload);
@@ -1010,19 +987,13 @@ int tm_set_payload(struct telem_ref *t_ref, char *payload)
return -EINVAL; return -EINVAL;
} }
t_ref->record->payload = (char *)malloc(sizeof(char) * payload_len + 1); t_ref->record->payload = strdup(payload);
if (!t_ref->record->payload) { if (!t_ref->record->payload) {
#ifdef DEBUG telem_log(LOG_CRIT, "CRIT: Out of memory\n");
fprintf(stderr, "CRIT: Out of memory\n");
#endif
return -ENOMEM; return -ENOMEM;
} }
memset(t_ref->record->payload, 0, sizeof(char) * payload_len + 1);
strncpy((char *)(t_ref->record->payload), (char *)payload, payload_len);
t_ref->record->payload_size = payload_len; t_ref->record->payload_size = payload_len;
return ret; return ret;
@@ -1066,7 +1037,7 @@ int tm_set_event_id(struct telem_ref *t_ref, char *event_id)
int rc = -1; int rc = -1;
if (!validate_event_id(event_id)) { if (!validate_event_id(event_id)) {
if (t_ref && t_ref->record && t_ref->record->headers) { if (t_ref && t_ref->record) {
// free default id before overriding // free default id before overriding
free(t_ref->record->headers[TM_EVENT_ID]); free(t_ref->record->headers[TM_EVENT_ID]);
// set new event_id // set new event_id
@@ -1081,7 +1052,7 @@ int tm_set_event_id(struct telem_ref *t_ref, char *event_id)
} }
/** /**
* Write nbytes from buf to fd. Used to send records to telemd. * Write nbytes from buf to fd. Used to send records to telemprobd.
* *
* @param fd Socket fd obtained from tm_get_socket. * @param fd Socket fd obtained from tm_get_socket.
* @param buf Data to be written to the socket. * @param buf Data to be written to the socket.
@@ -1102,10 +1073,7 @@ static int tm_write_socket(int fd, char *buf, size_t nbytes)
if (b == -1 && errno != EAGAIN) { if (b == -1 && errno != EAGAIN) {
ret = -errno; ret = -errno;
#ifdef DEBUG telem_perror("Error writing to daemon socket");
fprintf(stderr, "ERR: Write to daemon socket with"
" system error: %s\n", strerror(errno));
#endif
return ret; return ret;
} else if (b == -1 && } else if (b == -1 &&
(errno == EAGAIN || errno == EWOULDBLOCK)) { (errno == EAGAIN || errno == EWOULDBLOCK)) {
@@ -1145,10 +1113,7 @@ static int tm_get_socket(void)
if (sfd == -1) { if (sfd == -1) {
ret = -errno; ret = -errno;
#ifdef DEBUG telem_perror("Attempt to allocate socket fd failed");
fprintf(stderr, "ERR: Attempt to allocate socket fd failed:"
" %s\n", strerror(errno));
#endif
return ret; return ret;
} }
@@ -1159,10 +1124,7 @@ static int tm_get_socket(void)
if (setsockopt(sfd, SOL_SOCKET, SO_RCVTIMEO, &tv, if (setsockopt(sfd, SOL_SOCKET, SO_RCVTIMEO, &tv,
sizeof(tv)) < 0) { sizeof(tv)) < 0) {
ret = -errno; ret = -errno;
#ifdef DEBUG telem_perror("Failed to set socket timeout");
fprintf(stderr, "ERR: Failed to set socket timeout:"
" %s\n", strerror(errno));
#endif
goto out1; goto out1;
} }
@@ -1218,9 +1180,7 @@ static int tm_get_socket(void)
// Set non-blocking after the connect() succeeded // Set non-blocking after the connect() succeeded
if ((sflags = fcntl(sfd, F_GETFL, NULL)) < 0) { if ((sflags = fcntl(sfd, F_GETFL, NULL)) < 0) {
ret = -errno; ret = -errno;
#ifdef DEBUG telem_log(LOG_ERR, "Failed to get socket flags\n");
fprintf(stderr, "ERR: Failed to get socket flags\n");
#endif
goto out1; goto out1;
} }
@@ -1228,9 +1188,7 @@ static int tm_get_socket(void)
if (fcntl(sfd, F_SETFL, sflags) < 0) { if (fcntl(sfd, F_SETFL, sflags) < 0) {
ret = -errno; ret = -errno;
#ifdef DEBUG telem_log(LOG_ERR, "Failed to set socket flags\n");
fprintf(stderr, "ERR: Failed to set socket flags\n");
#endif
goto out1; goto out1;
} }
@@ -1241,6 +1199,17 @@ out1:
return ret; return ret;
} }
int tm_is_opted_in(void)
{
struct stat unused;
if (stat(TM_OPT_IN_FILE, &unused) == -1) {
return 0;
}
return 1;
}
int tm_send_record(struct telem_ref *t_ref) int tm_send_record(struct telem_ref *t_ref)
{ {
int i; int i;
@@ -1250,55 +1219,77 @@ int tm_send_record(struct telem_ref *t_ref)
char *data = NULL; char *data = NULL;
size_t offset = 0; size_t offset = 0;
int ret = 0; int ret = 0;
int k = 0; size_t cfg_file_name_size = 0;
struct stat unused; const char *cfg_file_name = NULL;
k = stat(TM_OPT_OUT_FILE, &unused); if (tm_is_opted_in() == 0) {
if (k == 0) { // Bail early if opt-in is not existent
// Bail early if opt-out is enabled
return -ECONNREFUSED; return -ECONNREFUSED;
} }
sfd = tm_get_socket(); sfd = tm_get_socket();
if (sfd < 0) { if (sfd < 0) {
#ifdef DEBUG telem_log(LOG_ERR, "Failed to get socket fd: %s\n",
fprintf(stderr, "ERR: Failed to get socket fd: %s\n", strerror(-sfd));
strerror(-sfd));
#endif
return sfd; return sfd;
} }
total_size = t_ref->record->header_size + t_ref->record->payload_size; total_size = t_ref->record->header_size + t_ref->record->payload_size;
#ifdef DEBUG
fprintf(stderr, "DEBUG: Header size : %zu\n", t_ref->record->header_size);
fprintf(stderr, "DEBUG: Payload size : %zu\n", t_ref->record->payload_size);
fprintf(stderr, "DEBUG: Total size : %zu\n", total_size); /*
#endif * The user may want to use a custom (cmd line specified) config file.
* If that is the case, we need to include the absolute path in the data packet.
* We optionally add the string CFG:<absolute path> as the first string
* in the data. If the receiving end sees this in the data, it should
* use the config file specified to override any default telemetrics.conf
* files.
*/
cfg_file_name = get_cmd_line_config_file();
if (cfg_file_name != NULL) {
cfg_file_name_size = strlen(cfg_file_name) + 1;
total_size += (cfg_file_name_size + CFG_PREFIX_LENGTH);
}
if (cfg_file_name != NULL) {
telem_debug("DEBUG: CFG field size : %zu\n", cfg_file_name_size + CFG_PREFIX_LENGTH);
telem_debug("DEBUG: CFG file name : %s\n", cfg_file_name);
}
telem_debug("DEBUG: Header size : %zu\n", t_ref->record->header_size);
telem_debug("DEBUG: Payload size : %zu\n", t_ref->record->payload_size);
telem_debug("DEBUG: Total size : %zu\n", total_size);
/* /*
* Allocating buffer for what we intend to send. Buffer layout is: * Allocating buffer for what we intend to send. Buffer layout is:
* <uint32_t total_size><uint32_t header_size><headers + Payload> * <uint32_t record_size> : so recv knows how much to read
* <custom cfg file field> : optional
* <uint32_t header_size>
* <headers + Payload>
* <null-byte> * <null-byte>
* The additional char at the end ensures null termination * The additional char at the end ensures null termination
*/ */
record_size = (2 * sizeof(uint32_t)) + total_size + 1; record_size = (2 * sizeof(uint32_t)) + total_size + 1;
data = malloc(record_size); data = calloc(sizeof(char), record_size);
if (!data) { if (!data) {
#ifdef DEBUG telem_log(LOG_CRIT, "CRIT: Out of memory\n");
fprintf(stderr, "CRIT: Out of memory\n");
#endif
close(sfd); close(sfd);
return -ENOMEM; return -ENOMEM;
} }
memset(data, 0, record_size); memcpy(data, &record_size, sizeof(uint32_t));
memcpy(data, &total_size, sizeof(uint32_t));
offset += sizeof(uint32_t); offset += sizeof(uint32_t);
if (cfg_file_name != NULL) {
memcpy(data + offset, CFG_PREFIX, CFG_PREFIX_LENGTH);
offset += CFG_PREFIX_LENGTH;
memcpy(data + offset, cfg_file_name, cfg_file_name_size);
offset += cfg_file_name_size;
}
memcpy(data + offset, &t_ref->record->header_size, sizeof(uint32_t)); memcpy(data + offset, &t_ref->record->header_size, sizeof(uint32_t));
offset += sizeof(uint32_t); offset += sizeof(uint32_t);
@@ -1311,17 +1302,11 @@ int tm_send_record(struct telem_ref *t_ref)
memcpy(data + offset, t_ref->record->payload, t_ref->record->payload_size); memcpy(data + offset, t_ref->record->payload, t_ref->record->payload_size);
#ifdef DEBUG telem_debug("DEBUG: Data to be sent :\n\n%s\n", data + 2 * sizeof(uint32_t));
fprintf(stderr, "DEBUG: Data to be sent :\n\n%s\n", data + 2 * sizeof(uint32_t));
#endif
if ((ret = tm_write_socket(sfd, data, record_size)) == 0) { if ((ret = tm_write_socket(sfd, data, record_size)) == 0) {
#ifdef DEBUG telem_log(LOG_INFO, "INFO: Successfully sent record over the socket\n");
fprintf(stderr, "INFO: Successfully sent record over the socket\n");
#endif
} else { } else {
#ifdef DEBUG telem_log(LOG_ERR, "Error while writing data to socket\n");
fprintf(stderr, "ERR: Error while writing data to socket\n");
#endif
} }
close(sfd); close(sfd);
+15 -5
View File
@@ -31,7 +31,10 @@
* - a library, libtelemetry, that telemetrics probes use to create telemetrics * - a library, libtelemetry, that telemetrics probes use to create telemetrics
* records and send them to the daemon for further processing. * records and send them to the daemon for further processing.
* *
* - a daemon, telemd, that prepares the records to send to a telemetrics server * - telemprobd, a daemon that handles communication with probes and forwards
* records to a second daemon.
*
* - telempostd, this daemon sends telemetry records to a telemetrics server
* (not included in this source tree), or spools the records on disk in case * (not included in this source tree), or spools the records on disk in case
* it's unable to successfully deliver them. * it's unable to successfully deliver them.
* *
@@ -55,11 +58,11 @@ struct telem_ref {
/** /**
* Set the configuration file name to use * Set the configuration file name to use
* *
* @param c_file Absolute file name of the configuration file. If the path name * @param c_file Absolute file name of the configuration file.
* provided is not an absolute path, or the path given cannot be successfuly * @return 0 on success, or a negative errno-style value on error. In case of
* stat'd, then the effective configuration file is left unchanged. * an error return the effective configuration file is left unchanged.
*/ */
void tm_set_config_file(char *c_file); int tm_set_config_file(const char *c_file);
/** /**
* Create a new telemetrics record * Create a new telemetrics record
@@ -117,6 +120,13 @@ int tm_set_payload(struct telem_ref *t_ref, char *payload);
*/ */
int tm_send_record(struct telem_ref *t_ref); int tm_send_record(struct telem_ref *t_ref);
/**
* Checks if telemetry was opted in
*
* @return 1 when opt-in, or 0 when opt-out
*/
int tm_is_opted_in(void);
/** /**
* Release the memory allocated to a telemetrics record. * Release the memory allocated to a telemetrics record.
* *
+5
View File
@@ -21,3 +21,8 @@ TM_4_0_0 {
global: global:
tm_set_event_id; tm_set_event_id;
} TM_3_0_0; } TM_3_0_0;
TM_4_1_0 {
global:
tm_is_opted_in;
} TM_4_0_0;
+789
View File
@@ -0,0 +1,789 @@
/*
* This program is part of the Clear Linux Project
*
* Copyright 2018 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <assert.h>
#include <signal.h>
#include <dirent.h>
#include <malloc.h>
#include <stdbool.h>
#include <sys/stat.h>
#include <curl/curl.h>
#include <sys/signalfd.h>
#include "log.h"
#include "util.h"
#include "spool.h"
#include "iorecord.h"
#include "retention.h"
#include "telempostdaemon.h"
/* spool window check */
static bool inside_direct_spool_window(TelemPostDaemon *daemon, time_t current_time)
{
return (current_time < daemon->bypass_http_post_ts + NETWORK_BYPASS_DURATION) ? true : false;
}
/* set http bypass */
static void start_network_bypass(TelemPostDaemon *daemon)
{
daemon->bypass_http_post_ts = time(NULL);
}
/* burst limit check */
bool burst_limit_enabled(int64_t burst_limit)
{
return (burst_limit > -1) ? true : false;
}
/* rate limit check */
bool rate_limit_check(int current_minute, int64_t burst_limit, int
window_length, size_t *array, size_t incValue)
{
size_t count = 0;
/* Variable to determine last minute allowed in burst window */
int window_start = (TM_RATE_LIMIT_SLOTS + (current_minute - window_length + 1))
% TM_RATE_LIMIT_SLOTS;
/* The modulo is not placed in the for loop itself, because if
* the current minute is less than the window start (from wrapping)
* the for loop will never be entered.
*/
/* Counts all elements within burst_window in array */
for (int i = window_start; i < (window_start + window_length); i++) {
count += array[i % TM_RATE_LIMIT_SLOTS];
if ((array[i % TM_RATE_LIMIT_SLOTS] + incValue) >= SIZE_MAX) {
/* Exceeds maximum size array can hold */
return false;
}
}
/* Include current record being processed to count */
count += incValue;
/* Determines whether the count has exceeded the limit or not */
return (count > burst_limit) ? false : true;
}
/* spool strategy check */
bool spool_strategy_selected(TelemPostDaemon *daemon)
{
/* Performs action depending on strategy choosen */
return (strcmp(daemon->rate_limit_strategy, "spool") == 0) ? true : false;
}
/* rate limit check */
void rate_limit_update(int current_minute, int window_length, size_t *array,
size_t incValue)
{
/* Variable to determine the amount of zero'd out spots needed */
int blank_slots = (TM_RATE_LIMIT_SLOTS - window_length);
/* Update specified array depending on increment value */
array[current_minute] += incValue;
/* Zero out expired records for record array */
for (int i = current_minute + 1; i < (blank_slots + current_minute + 1); i++) {
array[i % TM_RATE_LIMIT_SLOTS] = 0;
}
}
static void set_pollfd(TelemPostDaemon *daemon, int fd, enum fdindex i, short events)
{
assert(daemon);
assert(fd);
daemon->pollfds[i].fd = fd;
daemon->pollfds[i].events = events;
daemon->pollfds[i].revents = 0;
}
static void initialize_signals(TelemPostDaemon *daemon)
{
int sigfd;
sigset_t mask;
sigemptyset(&mask);
if (sigaddset(&mask, SIGHUP) != 0) {
telem_perror("Error adding signal SIGHUP to mask");
exit(EXIT_FAILURE);
}
if (sigaddset(&mask, SIGINT) != 0) {
telem_perror("Error adding signal SIGINT to mask");
exit(EXIT_FAILURE);
}
if (sigaddset(&mask, SIGTERM) != 0) {
telem_perror("Error adding signal SIGTERM to mask");
exit(EXIT_FAILURE);
}
if (sigaddset(&mask, SIGPIPE) != 0) {
telem_perror("Error adding signal SIGPIPE to mask");
exit(EXIT_FAILURE);
}
if (sigprocmask(SIG_BLOCK, &mask, NULL) == -1) {
telem_perror("Error changing signal mask with SIG_BLOCK");
exit(EXIT_FAILURE);
}
sigfd = signalfd(-1, &mask, 0);
if (sigfd == -1) {
telem_perror("Error creating the signalfd");
exit(EXIT_FAILURE);
}
daemon->sfd = sigfd;
set_pollfd(daemon, sigfd, signlfd, POLLIN);
}
static void initialize_rate_limit(TelemPostDaemon *daemon)
{
for (int i = 0; i < TM_RATE_LIMIT_SLOTS; i++) {
daemon->record_burst_array[i] = 0;
daemon->byte_burst_array[i] = 0;
}
daemon->rate_limit_enabled = rate_limit_enabled_config();
daemon->record_burst_limit = record_burst_limit_config();
daemon->record_window_length = record_window_length_config();
daemon->byte_burst_limit = byte_burst_limit_config();
daemon->byte_window_length = byte_window_length_config();
daemon->rate_limit_strategy = rate_limit_strategy_config();
}
static void initialize_record_delivery(TelemPostDaemon *daemon)
{
daemon->record_retention_enabled = record_retention_enabled_config();
daemon->record_server_delivery_enabled = record_server_delivery_enabled_config();
}
void initialize_post_daemon(TelemPostDaemon *daemon)
{
assert(daemon);
daemon->bypass_http_post_ts = 0;
daemon->is_spool_valid = is_spool_valid();
daemon->record_journal = open_journal(JOURNAL_PATH);
daemon->fd = inotify_init();
if (daemon->fd < 0) {
telem_perror("Error initializing inotify");
exit(EXIT_FAILURE);
}
daemon->wd = inotify_add_watch(daemon->fd, spool_dir_config(), IN_CLOSE_WRITE);
initialize_signals(daemon);
set_pollfd(daemon, daemon->fd, watchfd, POLLIN);
initialize_rate_limit(daemon);
initialize_record_delivery(daemon);
/* Register record retention delete action as a callback to prune entry */
if (daemon->record_journal != NULL && daemon->record_retention_enabled) {
daemon->record_journal->prune_entry_callback = &delete_record_by_id;
}
daemon->current_spool_size = 0;
}
size_t write_callback(char *ptr, size_t size, size_t nmemb, void *userdata)
{
telem_log(LOG_DEBUG, "Received data:\n%s\n", ptr);
return size * nmemb;
}
bool post_record_http(char *headers[], char *body, char *cfg)
{
CURL *curl;
int res = 0;
char *content = "Content-Type: application/text";
struct curl_slist *custom_headers = NULL;
char errorbuf[CURL_ERROR_SIZE];
long http_response = 0;
const char *cert_file = get_cainfo_config();
const char *tid_header = get_tidheader_config();
const char *saved_config_file = NULL;
if (cfg != NULL) {
saved_config_file = get_config_file();
if (set_config_file(cfg) != 0) {
telem_log(LOG_ERR, "set-config_file(): Failed to set %s\n", cfg);
// If we fail to load the specified config file, do not send the
// record out. We don't want to send the record out with different
// settings than explicitly requested.
// However, report success so the record gets deleted.
res = 0;
goto Done;
}
reload_config();
telem_debug("DEBUG: override server_addr:%s\n", server_addr_config());
}
// Initialize the libcurl global environment once per POST. This lets us
// clean up the environment after each POST so that when the daemon is
// sitting idle, it will be consuming as little memory as possible.
curl_global_init(CURL_GLOBAL_ALL);
curl = curl_easy_init();
if (!curl) {
telem_log(LOG_ERR, "curl_easy_init(): Unable to start libcurl"
" easy session, exiting\n");
exit(EXIT_FAILURE);
/* TODO: check if memory needs to be released */
}
// Errors for any curl_easy_* functions will store nice error messages
// in errorbuf, so send log messages with errorbuf contents
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errorbuf);
curl_easy_setopt(curl, CURLOPT_URL, server_addr_config());
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 5L);
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 10L);
curl_easy_setopt(curl, CURLOPT_POST, 1);
#ifdef DEBUG
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
#endif
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback);
for (int i = 0; i < NUM_HEADERS; i++) {
custom_headers = curl_slist_append(custom_headers, headers[i]);
}
custom_headers = curl_slist_append(custom_headers, tid_header);
// This should be set by probes/libtelemetry in the future
custom_headers = curl_slist_append(custom_headers, content);
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, custom_headers);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, body);
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, strlen(body));
curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_TRY);
if (strlen(cert_file) > 0) {
if (access(cert_file, F_OK) != -1) {
curl_easy_setopt(curl, CURLOPT_CAINFO, cert_file);
telem_log(LOG_INFO, "cafile was set to %s\n", cert_file);
}
}
telem_log(LOG_DEBUG, "Executing curl operation...\n");
errorbuf[0] = 0;
res = curl_easy_perform(curl);
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_response);
if (res) {
size_t len = strlen(errorbuf);
if (len) {
telem_log(LOG_DEBUG, "Failed sending record: %s%s", errorbuf,
((errorbuf[len - 1] != '\n') ? "\n" : ""));
} else {
telem_log(LOG_DEBUG, "Failed sending record: %s\n",
curl_easy_strerror(res));
}
} else if (http_response != 201 && http_response != 200) {
/* 201 means the record was successfully created
* 200 is a generic "ok".
*/
telem_log(LOG_ERR, "Encountered error %ld on the server\n",
http_response);
// We treat HTTP error codes the same as libcurl errors
res = 1;
} else {
telem_log(LOG_INFO, "Record sent successfully\n");
}
curl_slist_free_all(custom_headers);
curl_easy_cleanup(curl);
curl_global_cleanup();
Done:
if (saved_config_file != NULL) {
if (set_config_file(saved_config_file) != 0) {
telem_log(LOG_ERR, "set-config_file(): Failed to set %s",
saved_config_file);
res = 1;
}
reload_config();
telem_debug("DEBUG: restored server_addr:%s\n", server_addr_config());
}
return res ? false : true;
}
static void save_local_copy(TelemPostDaemon *daemon, char *body)
{
int ret = 0;
char *tmpbuf = NULL;
FILE *tmpfile = NULL;
if (daemon == NULL || daemon->record_journal == NULL ||
daemon->record_journal->latest_record_id == NULL) {
return;
}
ret = asprintf(&tmpbuf, "%s/%s", RECORD_RETENTION_DIR,
daemon->record_journal->latest_record_id);
if (ret == -1) {
telem_log(LOG_ERR, "Failed to allocate memory for record full path, aborting\n");
return;
}
tmpfile = fopen(tmpbuf, "w");
if (!tmpfile) {
telem_perror("Error opening local record copy temp file");
goto save_err;
}
// Save body
fprintf(tmpfile, "%s\n", body);
fclose(tmpfile);
save_err:
free(tmpbuf);
return;
}
static void save_entry_to_journal(TelemPostDaemon *daemon, time_t t_stamp, char *headers[])
{
char *classification_value = NULL;
char *event_id_value = NULL;
if (get_header_value(headers[TM_CLASSIFICATION], &classification_value) &&
get_header_value(headers[TM_EVENT_ID], &event_id_value)) {
if (new_journal_entry(daemon->record_journal, classification_value, t_stamp, event_id_value) != 0) {
telem_log(LOG_INFO, "new_journal_entry in process_record: failed saving record entry\n");
}
}
free(classification_value);
free(event_id_value);
}
/* Check window length conf values */
static bool windows_length_value_check(TelemPostDaemon *daemon)
{
if (daemon->record_window_length == -1 ||
daemon->byte_window_length == -1) {
telem_log(LOG_ERR, "Invalid value for window length\n");
return false;
}
return true;
}
/* Rate limiting checks */
static void rate_limit_checks(TelemPostDaemon *daemon, bool *record_check_passed, bool *byte_check_passed)
{
time_t temp = time(NULL);
struct tm *tm_s = localtime(&temp);
int current_minute;
current_minute = tm_s->tm_min;
bool record_burst_enabled = burst_limit_enabled(daemon->record_burst_limit);
bool byte_burst_enabled = burst_limit_enabled(daemon->byte_burst_limit);
/* Checks if entirety of rate limiting is enabled */
if (daemon->rate_limit_enabled) {
/* Checks whether record and byte bursts are enabled individually */
record_burst_enabled = burst_limit_enabled(daemon->record_burst_limit);
byte_burst_enabled = burst_limit_enabled(daemon->byte_burst_limit);
if (record_burst_enabled) {
*record_check_passed = rate_limit_check(current_minute,
daemon->record_burst_limit, daemon->record_window_length,
daemon->record_burst_array, TM_RECORD_COUNTER);
}
if (byte_burst_enabled) {
*byte_check_passed = rate_limit_check(current_minute,
daemon->byte_burst_limit, daemon->byte_window_length,
daemon->byte_burst_array, RECORD_SIZE_LEN);
}
/* If both record and byte burst disabled, rate limiting disabled */
if (!record_burst_enabled && !byte_burst_enabled) {
daemon->rate_limit_enabled = false;
}
}
}
/* Wrapper for save local copy */
static void apply_retention_policies(TelemPostDaemon *daemon, char *body)
{
if (daemon->record_retention_enabled) {
save_local_copy(daemon, body);
}
}
/* Deliver record to backend if rate limiting policies are met otherwise
* spool record for future delivery */
static bool deliver_record(TelemPostDaemon *daemon, char *headers[], char *body, char* cfg_file)
{
bool ret = false;
int current_minute;
bool do_spool = false;
bool record_sent = false;
time_t temp = time(NULL);
struct tm *tm_s = localtime(&temp);
current_minute = tm_s->tm_min;
/* Checks flags */
bool record_check_passed = true;
bool byte_check_passed = true;
bool record_burst_enabled = burst_limit_enabled(daemon->record_burst_limit);
bool byte_burst_enabled = burst_limit_enabled(daemon->byte_burst_limit);
/* Perform record and byte rate limiting checks */
rate_limit_checks(daemon, &record_check_passed, &byte_check_passed);
/* Sends record if rate limiting is disabled, or all checks passed */
if (!daemon->rate_limit_enabled || (record_check_passed && byte_check_passed)) {
/* Send the record as https post */
record_sent = post_record_ptr(headers, body, cfg_file);
/**
* This is the only point where an error condition could be returned
* if the record was not sent
* */
ret = record_sent;
}
// Get rate-limit strategy
do_spool = spool_strategy_selected(daemon);
// Drop record
if (!record_sent && !do_spool) {
// Not an error condition
ret = true;
}
// Spool Record
else if (!record_sent && do_spool) {
start_network_bypass(daemon);
telem_log(LOG_INFO, "process_record: initializing direct-spool window\n");
// False will keep record around
ret = false;
} else {
/* Updates rate limiting arrays if record sent */
if (record_burst_enabled) {
rate_limit_update(current_minute, daemon->record_window_length,
daemon->record_burst_array, TM_RECORD_COUNTER);
}
if (byte_burst_enabled) {
rate_limit_update(current_minute, daemon->byte_window_length,
daemon->byte_burst_array, RECORD_SIZE_LEN);
}
}
return ret;
}
bool process_staged_record(char *filename, bool is_retry, TelemPostDaemon *daemon)
{
int k;
bool ret = false;
char *headers[NUM_HEADERS];
char *body = NULL;
struct stat buf = { 0 };
time_t current_time = time(NULL);
int64_t max_spool_size = 0;
char *cfg_file = NULL;
for (k = 0; k < NUM_HEADERS; k++) {
headers[k] = NULL;
}
/** Load record **/
if ((ret = read_record(filename, headers, &body, &cfg_file)) == false) {
telem_log(LOG_WARNING, "unable to read record\n");
ret = true; // Record corrupted? true will remove record
goto end_processing_file;
}
/** Get file information **/
if (stat(filename, &buf) == -1) {
telem_perror("Processing staged file unable to stat record in spool");
ret = true; // true to remove it
goto end_processing_file;
}
/** Update spool directory size **/
daemon->current_spool_size += (buf.st_blocks * 512);
/** Check that record is not expired **/
if (!S_ISREG(buf.st_mode) ||
(current_time - buf.st_mtime > (record_expiry_config() * 60)) ||
(buf.st_uid != getuid())) {
ret = true; // Expired, true to remove it
goto end_processing_file;
}
/* Retries should not be recorded */
if (is_retry == false) {
/** Journal entry **/
save_entry_to_journal(daemon, current_time, headers);
/** Record retention **/
apply_retention_policies(daemon, body);
}
/** Record delivery **/
if (!daemon->record_server_delivery_enabled) {
telem_log(LOG_INFO, "record server delivery disabled\n");
// Not an error condition
ret = true;
goto end_processing_file;
}
/** Spool policies **/
if (inside_direct_spool_window(daemon, time(NULL))) {
telem_log(LOG_INFO, "process_record: delivering directly to spool\n");
/* Check spool max size conf */
max_spool_size = spool_max_size_config();
if (max_spool_size != -1 &&
daemon->current_spool_size >= (max_spool_size * 1024)) {
// Drop record
telem_log(LOG_INFO, "Spool dir full, dropping record\n");
ret = true;
} else {
// Keep record, non error condition
ret = false;
}
goto end_processing_file;
}
/** Check window_length **/
if (windows_length_value_check(daemon) == false) {
exit(EXIT_FAILURE);
}
/** Deliver or spool **/
ret = deliver_record(daemon, headers, body, cfg_file);
end_processing_file:
/** Update spool size if record will be removed **/
if (ret) {
daemon->current_spool_size -= (buf.st_blocks * 512);
}
telem_log(LOG_DEBUG, "spool_size: %ld\n", daemon->current_spool_size);
free(body);
for (k = 0; k < NUM_HEADERS; k++) {
free(headers[k]);
}
if (cfg_file != NULL) {
free(cfg_file);
}
return ret;
}
static int directory_dot_filter(const struct dirent *entry)
{
if ((strcmp(entry->d_name, ".") == 0) || (strcmp(entry->d_name, "..") == 0)) {
return 0;
} else {
return 1;
}
}
int staging_records_loop(TelemPostDaemon *daemon)
{
int ret;
int processed;
int numentries;
struct dirent **namelist;
numentries = scandir(spool_dir_config(), &namelist, directory_dot_filter, NULL);
processed = 0;
if (numentries == 0) {
telem_log(LOG_DEBUG, "No entries in staging\n");
return numentries;
} else if (numentries < 0) {
telem_perror("Error while scanning staging");
return numentries;
}
for (int i = 0; i < numentries; i++) {
char *record_path;
telem_log(LOG_DEBUG, "Processing staged record: %s\n",
namelist[i]->d_name);
ret = asprintf(&record_path, "%s/%s", spool_dir_config(), namelist[i]->d_name);
if (ret == -1) {
telem_log(LOG_ERR, "Failed to allocate memory for staging record full path\n");
exit(EXIT_FAILURE);
}
if (process_staged_record(record_path, true, daemon)) {
unlink(record_path);
processed++;
}
free(record_path);
}
for (int i = 0; i < numentries; i++) {
free(namelist[i]);
}
free(namelist);
return numentries - processed;
}
void run_daemon(TelemPostDaemon *daemon)
{
int ret;
/* retry_attempt of zero indicates we don't need to retry */
int retry_attempt = 0;
int spool_process_time = spool_process_time_config();
bool daemon_recycling_enabled = daemon_recycling_enabled_config();
time_t last_spool_run_time = time(NULL);
time_t last_record_received = time(NULL);
assert(daemon);
assert(daemon->pollfds);
assert(daemon->pollfds[signlfd].fd);
assert(daemon->pollfds[watchfd].fd);
/* If we failed to send spooled records, indicate we need to retry */
if (daemon->bypass_http_post_ts != 0) {
retry_attempt = 1;
}
while (1) {
int retry_delay = spool_process_time;
malloc_trim(0);
/* check if we need to retry sending spooled records */
if (retry_attempt > 0) {
retry_delay = retry_attempt * retry_attempt;
daemon->bypass_http_post_ts = 0;
telem_log(LOG_INFO, "Record delivery failed will retry in %d seconds",
retry_delay);
}
ret = poll(daemon->pollfds, NFDS, retry_delay * 1000);
if (ret == -1) {
telem_perror("Failed to poll daemon file descriptors");
break;
} else if (ret != 0) {
if (daemon->pollfds[signlfd].revents != 0) {
struct signalfd_siginfo fdsi;
ssize_t s;
s = read(daemon->sfd, &fdsi, sizeof(struct signalfd_siginfo));
if (s != sizeof(struct signalfd_siginfo)) {
telem_perror("Error while reading from the signal"
"file descriptor");
exit(EXIT_FAILURE);
}
if (fdsi.ssi_signo == SIGTERM || fdsi.ssi_signo == SIGINT) {
telem_log(LOG_INFO, "Received either a \
SIGINT/SIGTERM signal\n");
break;
}
} else if (daemon->pollfds[watchfd].revents != 0) {
int ret = 0;
ssize_t i = 0;
ssize_t length = 0;
char buffer[BUFFER_LEN];
length = read(daemon->fd, buffer, BUFFER_LEN);
if (length < 0) {
telem_perror("Error while reading from inotify"
"watcher");
exit(EXIT_FAILURE);
}
while (i < length) {
struct inotify_event *event = (struct inotify_event *)&buffer[i];
if (event->len) {
if (event->mask & IN_CLOSE_WRITE && !(event->mask & IN_ISDIR)) {
char *record_name = NULL;
/* Retrieve foldername from watch id? */
ret = asprintf(&record_name, "%s/%s", spool_dir_config(), event->name);
if (ret == -1) {
telem_log(LOG_ERR, "Failed to allocate memory for record full path, aborting\n");
exit(EXIT_FAILURE);
}
/* Process inotify event */
if (process_staged_record(record_name, false, daemon)) {
unlink(record_name);
}
free(record_name);
last_record_received = time(NULL);
}
}
i += (ssize_t)EVENT_SIZE + event->len;
}
}
} else {
time_t now = time(NULL);
/* time to recycle the daemon has elapsed*/
if (daemon_recycling_enabled &&
difftime(now, last_record_received) >= TM_DAEMON_EXIT_TIME) {
/* Exit */
telem_log(LOG_INFO, "Telemetry post daemon exiting for recycling\n");
break;
}
/* Check if this was a retry attempt */
if (retry_attempt > 0) {
/* Stop attempting retries if successful, increment counter if not */
if (staging_records_loop(daemon) == 0) {
retry_attempt = 0;
} else {
retry_attempt++;
}
/* Give up if counter reaches MAX_RETRY_ATTEMPTS */
if (retry_attempt == MAX_RETRY_ATTEMPTS) {
telem_log(LOG_ERR, "Record deliver failed after %d attempts",
MAX_RETRY_ATTEMPTS);
retry_attempt = 0;
}
}
/* Check spool */
if (difftime(now, last_spool_run_time) >= spool_process_time) {
spool_records_loop(&(daemon->current_spool_size));
last_spool_run_time = time(NULL);
}
}
/* Check journal records and prune if needed */
ret = prune_journal(daemon->record_journal, JOURNAL_TMPDIR);
if (ret != 0) {
telem_log(LOG_WARNING, "Unable to prune journal\n");
}
}
}
void close_daemon(TelemPostDaemon *daemon)
{
if (daemon->fd) {
if (daemon->wd) {
inotify_rm_watch(daemon->fd, daemon->wd);
}
close(daemon->fd);
}
close_journal(daemon->record_journal);
}
/* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */
+137
View File
@@ -0,0 +1,137 @@
/*
* This program is part of the Clear Linux Project
*
* Copyright 2018 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
#define EVENT_SIZE sizeof(struct inotify_event)
#define BUFFER_LEN 1024 * (EVENT_SIZE + 16)
#define NFDS 2
#define TM_RATE_LIMIT_SLOTS (1 /*h*/ * 60 /*m*/)
#define TM_RECORD_COUNTER (1)
#define MAX_RETRY_ATTEMPTS 8
#define NETWORK_BYPASS_DURATION TM_DAEMON_EXIT_TIME
#include <poll.h>
#include <stdbool.h>
#include <sys/inotify.h>
#include "common.h"
#include "journal/journal.h"
#include "configuration.h"
enum fdindex {signlfd, watchfd};
typedef struct TelemPostDaemon {
int fd;
int wd;
int sfd;
char event_buffer[BUFFER_LEN];
struct pollfd pollfds[NFDS];
/* Telemetry Journal*/
TelemJournal *record_journal;
/* Time of last failed post */
time_t bypass_http_post_ts;
/* Rate limit record and byte arrays */
size_t record_burst_array[TM_RATE_LIMIT_SLOTS];
size_t byte_burst_array[TM_RATE_LIMIT_SLOTS];
/* Rate Limit Configurations */
bool rate_limit_enabled;
int64_t record_burst_limit;
int record_window_length;
int64_t byte_burst_limit;
int byte_window_length;
const char *rate_limit_strategy;
/* Spool configuration */
bool is_spool_valid;
long current_spool_size;
/* Record local copy and delivery */
bool record_retention_enabled;
bool record_server_delivery_enabled;
} TelemPostDaemon;
/**
* Initializes daemon
*
* @param daemon a pointer to telemetry post daemon
*/
void initialize_post_daemon(TelemPostDaemon *daemon);
/**
* Starts daemon
*
* @param daemon a pointer to telemetry post daemon
*/
void run_daemon(TelemPostDaemon *daemon);
/**
* Cleans up inotify descriptors
*
* @param daemon a pointer to telemetry post daemon
*/
void close_daemon(TelemPostDaemon *daemon);
/**
* Processed record written on disk
*
* @param filename a pointor to record on disk
* @param is_retry a boolean value that indicates if
* the record has been previously processed.
* @param daemon post to telemetry post daemon
*/
bool process_staged_record(char *filename, bool is_retry, TelemPostDaemon *daemon);
/**
* Scans staging directory to process files that were
* missed by file watcher
*
* @param daemon a pointer to telemetry post daemon
* @return the number of records that were removed from spool
*/
int staging_records_loop(TelemPostDaemon *daemon);
/**
* Posts a record to backend
*
* @param headers a pointer to an array with keys and values
* @param body a pointer to the payload
* @param cfg_file a pointer to a non-default configuration
* file to be used.
*/
bool post_record_http(char *headers[], char *body, char *cfg_file);
/**
* Pointer to function to isolate backend call during
* unit testing.
*
* @param headers pointer to array of keys
* @param body a pinter to payload
* */
extern bool (*post_record_ptr)(char *headers[], char *body, char *cfg_file);
/** Helper functions **/
/* rate limit check */
bool rate_limit_check(int current_minute, int64_t burst_limit,
int window_length, size_t *array, size_t incValue);
/* burst limit check */
bool burst_limit_enabled(int64_t burst_limit);
/* rate limit check */
void rate_limit_update(int current_minute, int window_length, size_t *array,
size_t incValue);
/* spool strategy check */
bool spool_strategy_selected(TelemPostDaemon *daemon);
/* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */
+9 -15
View File
@@ -33,9 +33,12 @@
#include "common.h" #include "common.h"
#include "util.h" #include "util.h"
#include "log.h"
bool get_header(const char *haystack, const char *needle, char **line, size_t len) bool get_header(const char *haystack, const char *needle, char **line)
{ {
size_t len = strlen(needle);
if (haystack && !strncmp(haystack, needle, len)) { if (haystack && !strncmp(haystack, needle, len)) {
*line = strdup(haystack); *line = strdup(haystack);
return true; return true;
@@ -62,7 +65,7 @@ bool get_header_value(const char *header, char **value)
*value = strdup(sep); *value = strdup(sep);
} }
return (bool)(value != NULL); return (bool)(*value != NULL);
} }
void *reallocate(void **addr, size_t *allocated, size_t requested) void *reallocate(void **addr, size_t *allocated, size_t requested)
@@ -98,10 +101,7 @@ long get_directory_size(const char *dir_path)
dir = opendir(dir_path); dir = opendir(dir_path);
if (!dir) { if (!dir) {
ret = -errno; ret = -errno;
#ifdef DEBUG telem_perror("Error opening spool dir");
fprintf(stderr, "ERR: Error opening spool dir: %s\n",
strerror(errno));
#endif
return ret; return ret;
} }
@@ -111,19 +111,15 @@ long get_directory_size(const char *dir_path)
} }
ret = asprintf(&file_path, "%s/%s", dir_path, de->d_name); ret = asprintf(&file_path, "%s/%s", dir_path, de->d_name);
if (ret < 0) { if (ret < 0) {
#ifdef DEBUG telem_log(LOG_CRIT, "CRIT: Cannot allocate memory\n");
fprintf(stderr, "CRIT: Cannot allocate memory\n");
#endif
closedir(dir); closedir(dir);
return -ENOMEM; return -ENOMEM;
} }
ret = lstat(file_path, &buf); ret = lstat(file_path, &buf);
if (ret < 0) { if (ret < 0) {
#ifdef DEBUG telem_log(LOG_ERR, "Could not stat file %s: %s\n",
fprintf(stderr, "ERR: Could not stat file %s: %s\n",
file_path, strerror(errno)); file_path, strerror(errno));
#endif
} else { } else {
total_size += (buf.st_blocks * 512); total_size += (buf.st_blocks * 512);
} }
@@ -202,9 +198,7 @@ int validate_classification(char *classification)
} }
if (slashes != 2) { if (slashes != 2) {
#ifdef DEBUG telem_log(LOG_ERR, "Classification string should have two /s.\n");
fprintf(stderr, "ERR: Classification string should have two /s.\n");
#endif
return 1; return 1;
} }
+1 -1
View File
@@ -22,7 +22,7 @@
void *reallocate(void **addr, size_t *allocated, size_t requested); void *reallocate(void **addr, size_t *allocated, size_t requested);
/* Check if haystacks begins with needle and return a copy of haystack */ /* Check if haystacks begins with needle and return a copy of haystack */
bool get_header(const char *haystack, const char *needle, char **line, size_t len); bool get_header(const char *haystack, const char *needle, char **line);
/* Get the value of a header */ /* Get the value of a header */
bool get_header_value(const char *header, char **value); bool get_header_value(const char *header, char **value);
+53 -9
View File
@@ -40,7 +40,7 @@ START_TEST(check_read_valid_config)
ck_assert_str_eq(config.strValues[CONF_SPOOL_DIR], "/tmp/spool"); ck_assert_str_eq(config.strValues[CONF_SPOOL_DIR], "/tmp/spool");
ck_assert_int_eq(config.intValues[CONF_RECORD_EXPIRY], 1200); ck_assert_int_eq(config.intValues[CONF_RECORD_EXPIRY], 1200);
ck_assert_int_eq(config.intValues[CONF_SPOOL_MAX_SIZE], 1024); ck_assert_int_eq(config.intValues[CONF_SPOOL_MAX_SIZE], 1024);
ck_assert_int_eq(config.intValues[CONF_SPOOL_PROCESS_TIME], 900); ck_assert_int_eq(config.intValues[CONF_SPOOL_PROCESS_TIME], 180);
ck_assert_int_eq(config.intValues[CONF_RECORD_BURST_LIMIT], 100); ck_assert_int_eq(config.intValues[CONF_RECORD_BURST_LIMIT], 100);
ck_assert_int_eq(config.intValues[CONF_RECORD_WINDOW_LENGTH], 15); ck_assert_int_eq(config.intValues[CONF_RECORD_WINDOW_LENGTH], 15);
ck_assert_int_eq(config.intValues[CONF_BYTE_BURST_LIMIT], 1000); ck_assert_int_eq(config.intValues[CONF_BYTE_BURST_LIMIT], 1000);
@@ -55,18 +55,61 @@ START_TEST(check_read_valid_config)
} }
END_TEST END_TEST
START_TEST(check_read_valid_config_defaults) START_TEST(check_default_config)
{ {
char *config_file = TOPSRCDIR "/src/data/example.conf"; configuration config = { { 0 }, { 0 }, { 0 }, false, NULL };
int ret = set_default_config_values(&config);
ck_assert(ret == true);
ck_assert_str_eq(config.strValues[CONF_SERVER_ADDR], DEFAULT_SERVER_ADDR);
ck_assert_str_eq(config.strValues[CONF_SOCKET_PATH], DEFAULT_SOCKET_PATH);
ck_assert_str_eq(config.strValues[CONF_SPOOL_DIR], DEFAULT_SPOOL_DIR);
ck_assert_str_eq(config.strValues[CONF_RATE_LIMIT_STRATEGY], DEFAULT_RATE_LIMIT_STRATEGY);
ck_assert_str_eq(config.strValues[CONF_CAINFO], DEFAULT_CAINFO);
ck_assert_str_eq(config.strValues[CONF_TIDHEADER], DEFAULT_TIDHEADER);
ck_assert_int_eq(config.intValues[CONF_RECORD_EXPIRY], DEFAULT_RECORD_EXPIRY);
ck_assert_int_eq(config.intValues[CONF_SPOOL_MAX_SIZE], DEFAULT_SPOOL_MAX_SIZE);
ck_assert_int_eq(config.intValues[CONF_SPOOL_PROCESS_TIME], DEFAULT_SPOOL_PROCESS_TIME);
ck_assert_int_eq(config.intValues[CONF_RECORD_WINDOW_LENGTH], DEFAULT_RECORD_WINDOW_LENGTH);
ck_assert_int_eq(config.intValues[CONF_BYTE_WINDOW_LENGTH], DEFAULT_BYTE_WINDOW_LENGTH);
ck_assert_int_eq(config.intValues[CONF_RECORD_BURST_LIMIT], DEFAULT_RECORD_BURST_LIMIT);
ck_assert_int_eq(config.intValues[CONF_BYTE_BURST_LIMIT], DEFAULT_BYTE_BURST_LIMIT);
ck_assert(config.boolValues[CONF_RATE_LIMIT_ENABLED] == DEFAULT_RATE_LIMIT_ENABLED);
ck_assert(config.boolValues[CONF_DAEMON_RECYCLING_ENABLED] == DEFAULT_DAEMON_RECYCLING_ENABLED);
ck_assert(config.boolValues[CONF_RECORD_RETENTION_ENABLED] == DEFAULT_RECORD_RETENTION_ENABLED);
ck_assert(config.boolValues[CONF_RECORD_SERVER_DELIVERY_ENABLED] == DEFAULT_RECORD_SERVER_DELIVERY_ENABLED);
}
END_TEST
START_TEST(check_layered_config)
{
char *config_file = TOPSRCDIR "/src/data/example.2.conf";
configuration config = { { 0 }, { 0 }, { 0 }, false, NULL }; configuration config = { { 0 }, { 0 }, { 0 }, false, NULL };
int ret = read_config_from_file(config_file, &config); int ret = read_config_from_file(config_file, &config);
ck_assert(ret == true); ck_assert(ret == true);
// RECORD_RETENTION_ENABLED_DEFAULT = false ck_assert_str_eq(config.strValues[CONF_SERVER_ADDR], "http://127.0.0.1");
ck_assert(config.boolValues[CONF_RECORD_RETENTION_ENABLED] == RECORD_RETENTION_ENABLED_DEFAULT); ck_assert_str_eq(config.strValues[CONF_SOCKET_PATH], DEFAULT_SOCKET_PATH);
// RECORD_SERVER_DELIVERY_ENABLED_DEFAULT = true ck_assert_str_eq(config.strValues[CONF_SPOOL_DIR], DEFAULT_SPOOL_DIR);
ck_assert(config.boolValues[CONF_RECORD_SERVER_DELIVERY_ENABLED] == RECORD_SERVER_DELIVERY_ENABLED_DEFAULT); ck_assert_str_eq(config.strValues[CONF_RATE_LIMIT_STRATEGY], DEFAULT_RATE_LIMIT_STRATEGY);
ck_assert_str_eq(config.strValues[CONF_CAINFO], "/tmp/cacert.crt");
ck_assert_str_eq(config.strValues[CONF_TIDHEADER], DEFAULT_TIDHEADER);
ck_assert_int_eq(config.intValues[CONF_RECORD_EXPIRY], DEFAULT_RECORD_EXPIRY);
ck_assert_int_eq(config.intValues[CONF_SPOOL_MAX_SIZE], DEFAULT_SPOOL_MAX_SIZE);
ck_assert_int_eq(config.intValues[CONF_SPOOL_PROCESS_TIME], DEFAULT_SPOOL_PROCESS_TIME);
ck_assert_int_eq(config.intValues[CONF_RECORD_WINDOW_LENGTH], DEFAULT_RECORD_WINDOW_LENGTH);
ck_assert_int_eq(config.intValues[CONF_BYTE_WINDOW_LENGTH], DEFAULT_BYTE_WINDOW_LENGTH);
ck_assert_int_eq(config.intValues[CONF_RECORD_BURST_LIMIT], DEFAULT_RECORD_BURST_LIMIT);
ck_assert_int_eq(config.intValues[CONF_BYTE_BURST_LIMIT], DEFAULT_BYTE_BURST_LIMIT);
ck_assert(config.boolValues[CONF_RATE_LIMIT_ENABLED] == DEFAULT_RATE_LIMIT_ENABLED);
ck_assert(config.boolValues[CONF_DAEMON_RECYCLING_ENABLED] == DEFAULT_DAEMON_RECYCLING_ENABLED);
ck_assert(config.boolValues[CONF_RECORD_RETENTION_ENABLED] == DEFAULT_RECORD_RETENTION_ENABLED);
ck_assert(config.boolValues[CONF_RECORD_SERVER_DELIVERY_ENABLED] == DEFAULT_RECORD_SERVER_DELIVERY_ENABLED);
} }
END_TEST END_TEST
@@ -94,7 +137,7 @@ START_TEST(check_config_initialised)
ck_assert_str_eq(spool_dir_config(), "/tmp/spool"); ck_assert_str_eq(spool_dir_config(), "/tmp/spool");
ck_assert_int_eq(record_expiry_config(), 1200); ck_assert_int_eq(record_expiry_config(), 1200);
ck_assert_int_eq(spool_max_size_config(), 1024); ck_assert_int_eq(spool_max_size_config(), 1024);
ck_assert_int_eq(spool_process_time_config(), 900); ck_assert_int_eq(spool_process_time_config(), 180);
ck_assert_int_eq(record_burst_limit_config(), 100); ck_assert_int_eq(record_burst_limit_config(), 100);
ck_assert_int_eq(record_window_length_config(), 15); ck_assert_int_eq(record_window_length_config(), 15);
ck_assert_int_eq(byte_burst_limit_config(), 1000); ck_assert_int_eq(byte_burst_limit_config(), 1000);
@@ -117,7 +160,8 @@ Suite *config_suite(void)
TCase *t = tcase_create("config"); TCase *t = tcase_create("config");
tcase_add_test(t, check_read_config_for_invalid_file); tcase_add_test(t, check_read_config_for_invalid_file);
tcase_add_test(t, check_read_valid_config); tcase_add_test(t, check_read_valid_config);
tcase_add_test(t, check_read_valid_config_defaults); tcase_add_test(t, check_default_config);
tcase_add_test(t, check_layered_config);
tcase_add_test(t, check_read_valid_config_record_retention_delivery); tcase_add_test(t, check_read_valid_config_record_retention_delivery);
tcase_add_test(t, check_config_initialised); tcase_add_test(t, check_config_initialised);
+13 -4
View File
@@ -20,11 +20,17 @@
#include "common.h" #include "common.h"
#include "journal/journal.h" #include "journal/journal.h"
static char *journal_file = "journal.txt";
static char *journal_print_file = "journal.print.txt";
static struct TelemJournal *journal = NULL; static struct TelemJournal *journal = NULL;
static char *journal_file = TESTOOPSDIR "/journal.txt";
static char *eid = "00007766547776eb7fc478eb0eb43e43"; static char *eid = "00007766547776eb7fc478eb0eb43e43";
static int K = 20; static int K = 20;
void teardown(void)
{
remove(journal_file);
}
START_TEST(check_open_journal) START_TEST(check_open_journal)
{ {
struct TelemJournal *j = open_journal(journal_file); struct TelemJournal *j = open_journal(journal_file);
@@ -108,6 +114,7 @@ void new_entry_teardown(void)
close_journal(journal); close_journal(journal);
journal = NULL; journal = NULL;
} }
remove(journal_file);
} }
void insert_n_records(int n, struct TelemJournal *j) void insert_n_records(int n, struct TelemJournal *j)
@@ -128,7 +135,7 @@ START_TEST(check_journal_file_prune)
insert_n_records(j->record_count_limit * 2, j); insert_n_records(j->record_count_limit * 2, j);
ck_assert_int_gt(j->record_count, j->record_count_limit); ck_assert_int_gt(j->record_count, j->record_count_limit);
rc = prune_journal(j, TESTOOPSDIR); rc = prune_journal(j, "./");
ck_assert(rc == 0); ck_assert(rc == 0);
// Record count should always be below the limit + hysteresis // Record count should always be below the limit + hysteresis
ck_assert_int_lt(j->record_count, j->record_count_limit + DEVIATION); ck_assert_int_lt(j->record_count, j->record_count_limit + DEVIATION);
@@ -139,13 +146,12 @@ END_TEST
void journal_entry_setup(void) void journal_entry_setup(void)
{ {
int result = 0; int result = 0;
const char *journal_print = TESTOOPSDIR "/journal.print.txt";
if (journal) { if (journal) {
close_journal(journal); close_journal(journal);
} }
journal = open_journal(journal_print); journal = open_journal(journal_print_file);
insert_n_records(K, journal); insert_n_records(K, journal);
/* Insert recors with specific values */ /* Insert recors with specific values */
@@ -188,6 +194,7 @@ END_TEST
void journal_entry_teardown(void) void journal_entry_teardown(void)
{ {
close_journal(journal); close_journal(journal);
remove(journal_print_file);
} }
Suite *config_suite(void) Suite *config_suite(void)
@@ -197,6 +204,7 @@ Suite *config_suite(void)
// Individual unit tests are added to "test cases" // Individual unit tests are added to "test cases"
TCase *t = tcase_create("journal"); TCase *t = tcase_create("journal");
tcase_add_unchecked_fixture(t, NULL, teardown);
tcase_add_test(t, check_open_journal); tcase_add_test(t, check_open_journal);
tcase_add_test(t, check_unsuccessful_open_journal); tcase_add_test(t, check_unsuccessful_open_journal);
suite_add_tcase(s, t); suite_add_tcase(s, t);
@@ -211,6 +219,7 @@ Suite *config_suite(void)
suite_add_tcase(s, t); suite_add_tcase(s, t);
t = tcase_create("prunning journal"); t = tcase_create("prunning journal");
tcase_add_unchecked_fixture(t, NULL, teardown);
tcase_add_test(t, check_journal_file_prune); tcase_add_test(t, check_journal_file_prune);
suite_add_tcase(s, t); suite_add_tcase(s, t);
+20 -6
View File
@@ -41,7 +41,7 @@ void create_setup(void)
* with the libcheck API... * with the libcheck API...
*/ */
ck_assert_msg(ret != -ECONNREFUSED, ck_assert_msg(ret != -ECONNREFUSED,
"Opt-out enabled. Opt in to run these tests"); "First time opt-in required to run test");
} }
START_TEST(record_create_non_null) START_TEST(record_create_non_null)
@@ -98,12 +98,22 @@ void create_teardown(void)
} }
} }
START_TEST(is_opt_in)
{
int ret;
ret = tm_is_opted_in();
/* Smoke testing function */
ck_assert_msg(ret == 0 || ret == 1,
"Something wrong with opt-in check");
}
END_TEST
START_TEST(record_create_invalid_class1) START_TEST(record_create_invalid_class1)
{ {
int ret; int ret;
ret = tm_create_record(&ref, 1, "t/t", 2000); ret = tm_create_record(&ref, 1, "t/t", 2000);
ck_assert_msg(ret != -ECONNREFUSED, ck_assert_msg(ret != -ECONNREFUSED,
"Opt-out enabled. Opt in to run this test"); "First time opt-in required to run test");
ck_assert(ret == -EINVAL); ck_assert(ret == -EINVAL);
} }
END_TEST END_TEST
@@ -113,7 +123,7 @@ START_TEST(record_create_invalid_class2)
int ret; int ret;
ret = tm_create_record(&ref, 1, "t/t/t/t", 2000); ret = tm_create_record(&ref, 1, "t/t/t/t", 2000);
ck_assert_msg(ret != -ECONNREFUSED, ck_assert_msg(ret != -ECONNREFUSED,
"Opt-out enabled. Opt in to run this test"); "First time opt-in required to run test");
ck_assert(ret == -EINVAL); ck_assert(ret == -EINVAL);
} }
END_TEST END_TEST
@@ -126,7 +136,7 @@ START_TEST(record_create_severity_underflow)
// Severity of 0 is too low; raise it to 1, the minimum // Severity of 0 is too low; raise it to 1, the minimum
ret = tm_create_record(&ref, 0, "a/a/a", 2000); ret = tm_create_record(&ref, 0, "a/a/a", 2000);
ck_assert_msg(ret != -ECONNREFUSED, ck_assert_msg(ret != -ECONNREFUSED,
"Opt-out enabled. Opt in to run this test"); "First time opt-in required to run test");
if (asprintf(&result, "%s: %u\n", TM_SEVERITY_STR, 1) < 0) { if (asprintf(&result, "%s: %u\n", TM_SEVERITY_STR, 1) < 0) {
return; return;
@@ -146,7 +156,7 @@ START_TEST(record_create_severity_overflow)
// Severity of 5 is too high; lower it to 4, the maximum // Severity of 5 is too high; lower it to 4, the maximum
ret = tm_create_record(&ref, 5, "b/b/b", 2000); ret = tm_create_record(&ref, 5, "b/b/b", 2000);
ck_assert_msg(ret != -ECONNREFUSED, ck_assert_msg(ret != -ECONNREFUSED,
"Opt-out enabled. Opt in to run this test"); "First time opt-in required to run test");
if (asprintf(&result, "%s: %u\n", TM_SEVERITY_STR, 4) < 0) { if (asprintf(&result, "%s: %u\n", TM_SEVERITY_STR, 4) < 0) {
return; return;
@@ -172,7 +182,7 @@ void event_id_setup(void)
return; return;
} }
ck_assert_msg(ret != -ECONNREFUSED, ck_assert_msg(ret != -ECONNREFUSED,
"Opt-out enabled. Opt in to run this test"); "First time opt-in required to run test");
} }
START_TEST(record_set_event_id) START_TEST(record_set_event_id)
@@ -252,6 +262,10 @@ Suite *lib_suite(void)
tcase_add_test(t, record_create_version); tcase_add_test(t, record_create_version);
suite_add_tcase(s, t); suite_add_tcase(s, t);
t = tcase_create("Opt-in");
tcase_add_test(t, is_opt_in);
suite_add_tcase(s, t);
t = tcase_create("invalid classification"); t = tcase_create("invalid classification");
tcase_add_test(t, record_create_invalid_class1); tcase_add_test(t, record_create_invalid_class1);
tcase_add_test(t, record_create_invalid_class2); tcase_add_test(t, record_create_invalid_class2);
-193
View File
@@ -1,193 +0,0 @@
/*
* This program is part of the Clear Linux Project
*
* Copyright 2017 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
#define OUT_MAX_LEN 100
#include <stdio.h>
#include <check.h>
#include "nica/b64enc.h"
START_TEST(check_nc_b64_no_overflow)
{
size_t n = 2;
char out[OUT_MAX_LEN];
const char *filename = TOPSRCDIR "/tests/nc_b64enc_test_files/foobar";
ck_assert_msg(!nc_b64enc_filename(filename, &out[0], n), "Should quit since buffer smaller than content");
}
END_TEST
START_TEST(check_nc_b64_enc_n_file_empty)
{
size_t n = OUT_MAX_LEN;
char out[OUT_MAX_LEN];
char *result = "\0";
const char *filename = TOPSRCDIR "/tests/nc_b64enc_test_files/empty";
ck_assert_msg(nc_b64enc_filename(filename, &out[0], n), "Error opening file");
ck_assert_str_eq(out, result);
}
END_TEST
START_TEST(check_nc_b64_enc_n_file_fo)
{
size_t n = OUT_MAX_LEN;
char out[OUT_MAX_LEN];
char *result = "Zm8=";
const char *filename = TOPSRCDIR "/tests/nc_b64enc_test_files/fo";
ck_assert_msg(nc_b64enc_filename(filename, &out[0], n), "Error opening file");
ck_assert_str_eq(out, result);
}
END_TEST
START_TEST(check_nc_b64_enc_n_file_foob)
{
size_t n = OUT_MAX_LEN;
char out[OUT_MAX_LEN];
char *result = "Zm9vYg==";
const char *filename = TOPSRCDIR "/tests/nc_b64enc_test_files/foob";
ck_assert_msg(nc_b64enc_filename(filename, &out[0], n), "Error opening file");
ck_assert_str_eq(out, result);
}
END_TEST
START_TEST(check_nc_b64_enc_n_file_foobar)
{
size_t n = OUT_MAX_LEN;
char out[OUT_MAX_LEN];
char *result = "Zm9vYmFyZm9vYmFy";
const char *filename = TOPSRCDIR "/tests/nc_b64enc_test_files/foobar";
ck_assert_msg(nc_b64enc_filename(filename, &out[0], n), "Error opening file");
ck_assert_str_eq(out, result);
}
END_TEST
START_TEST(check_nc_b64_enc_n_file_long_text)
{
size_t out_len = 8000;
char out[out_len];
const char *expected_out = \
"TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQsIG5vbnVtbXkgdml0YWUsIGluIHZpdmFtdXMgc3Vz\n"
"cGVuZGlzc2UgYWMuIFNlbXBlciBzZWQgcGhhcmV0cmEgc2NlbGVyaXNxdWUuIEVnZXQgZWxlaWZl\n"
"bmQgYW1ldCB2ZWwgbnVuYyB2b2x1dHBhdCBjdXJzdXMsIGF1Y3RvciBwbGF0ZWEgcHJldGl1bSwg\n"
"bWF0dGlzIHJpc3VzIGZhY2lsaXNpcyBmYXVjaWJ1cywgc3VzcGVuZGlzc2UgZGlhbSwgbGVjdHVz\n"
"IG1ldHVzIG51bGxhLiBOdW5jIGp1c3RvIGZhY2lsaXNpIG5hbSBmZWxpcyB2ZWwgbGFvcmVldCwg\n"
"bmliaCBsZW8gbWFzc2Egc3VzcGVuZGlzc2UgYWNjdW1zYW4gY29udmFsbGlzLCBzZWQgcXVpcyBw\n"
"ZWxsZW50ZXNxdWUgZWdlc3RhcywgbG9yZW0gYW50ZSBtb3JiaSBtYXR0aXMgdml0YWUuIFByYWVz\n"
"ZW50IGluIHJ1dHJ1bSBlZ2V0IGFjLCB2aXZhbXVzIHBlZGUgc3VzcGVuZGlzc2UgbGVjdHVzIG51\n"
"bGxhbSwgZXQgcGVkZSBldSBvZGlvIHBlZGUsIGV0aWFtIGxlbyBlZ2VzdGFzIGluLCBub251bW15\n"
"IHNlbXBlci4gQSBhY2N1bXNhbiBkdWksIHZlc3RpYnVsdW0gcmlkaWN1bHVzIGV0IGluLCBqdXN0\n"
"byBldCBwbGFjZXJhdCBkdWlzIHV0IHZpdmFtdXMgbGliZXJvLiBWZXN0aWJ1bHVtIGVnZXQgdXQg\n"
"bW9sbGlzLCBudW5jIGEgc29sbGljaXR1ZGluLCBmcmluZ2lsbGEgZXJvcyBwb3N1ZXJlIG1vbGxp\n"
"cyBhYyBuYXRvcXVlIHBlZGUsIHJpc3VzIG51bGxhIHJ1dHJ1bSB0dXJwaXMgYSB2aXRhZSBpZC4g\n"
"SW5jZXB0b3MgdGluY2lkdW50IHF1aWRlbSBhcmN1IHR1cnBpcyBudW5jIHNvbGxpY2l0dWRpbi4g\n"
"UGhhc2VsbHVzIG1ldHVzIGVyYXQgcGxhY2VyYXQsIGluIGVyYXQgbG9yZW0gbWF1cmlzIG51bGxh\n"
"LCBhdCBsaWJlcm8gZXJhdCBzdXNwZW5kaXNzZSBzYXBpZW4gbW9udGVzIHJob25jdXMsIG1hZ25h\n"
"IHF1YW0uIEp1c3RvIHByYWVzZW50IGxhY3VzIG1hc3NhLCByZXByZWhlbmRlcml0IG51bmMsIHJp\n"
"c3VzIGRpZ25pc3NpbSBmZWxpcyBub24sIGRpZ25pc3NpbSBvZGlvIHRlbGx1cyBhbGlxdWFtLCBl\n"
"bmltIHNvZGFsZXMgdGVtcG9yIHF1aXNxdWUgc29kYWxlcyBtYWduaXMgcG9ydHRpdG9yLiBMaWd1\n"
"bGEgc2VkIHJpc3VzLCBldSBlc3QgcXVpc3F1ZSwgY2xhc3Mgbm9uIGF1dGUgZXUsIHBsYXRlYSBz\n"
"Y2VsZXJpc3F1ZSBpZCBpbnRlZ2VyIGRpZ25pc3NpbW9zIGludGVnZXIgc3VzY2lwaXQuClZlaGlj\n"
"dWxhIGVpdXMgbmVjLCBjb252YWxsaXMgbWFlY2VuYXMgbGVjdHVzIHB1cnVzIHF1aXNxdWUgYWxp\n"
"cXVhbSwgZXQgZXQsIGxhY2luaWEgZGlzIGRpZ25pc3NpbSBsb3JlbS4gVm9sdXB0YXRlbSB1dCwg\n"
"dml2ZXJyYSBhZW5lYW4gcGhhc2VsbHVzIGZlbGlzLCBmZXJtZW50dW0gbGlndWxhIGVnZXQgdWxs\n"
"YW1jb3JwZXIgYW1ldCwgbWF1cmlzIGxlbyBsdWN0dXMuIEV0IGV0aWFtIHNlbXBlciBwaGFyZXRy\n"
"YSBuaWJoIG1pIG1hdXJpcy4gSGVuZHJlcml0IHNlZCBhbGlxdWFtLCBlZ2V0IGlkIHRlbGx1cyBt\n"
"YWduYSwgc2VkIGxhb3JlZXQgdWx0cmljZXMgZW5pbSwgbW9sbGlzIHN1c3BlbmRpc3NlIGluLiBF\n"
"dSBudWxsYW0gbG9yZW0gc2l0IGV0aWFtLCBvcmNpIGluIGxpYmVyby4gTnVuYyBpcHN1bSBtYXVy\n"
"aXMgZXQgc2VtIGhhYy4gRGljdHVtIGZhdWNpYnVzIGRpcyB2aXRhZSBpbiB2b2x1dHBhdCBtb3Ji\n"
"aSwgYSBkaWN0dW0sIHF1aXNxdWUgbWF1cmlzLCBhdWN0b3IgbmVjIHZlbCBwZWxsZW50ZXNxdWUg\n"
"dWxsYW1jb3JwZXIgZXRpYW0uIEN1bSBsaWJlcm8gd2lzaSBhY2N1bXNhbiBhbGlxdWFtIGNvbnNl\n"
"Y3RldHVlciB0ZWxsdXMsIHBoYXNlbGx1cyBjdXJhZSwgYXQgaWxsdW0gYW50ZSBwcmV0aXVtIG5p\n"
"YmggbW9yYmkuIFNlZCBibGFuZGl0IHB1bHZpbmFyIHB1bHZpbmFyLiBEaWN0dW0gZXN0IG51bmMg\n"
"ZWxlaWZlbmQsIHZlbGl0IHZlbGl0IHRlbXBvciBhY2N1bXNhbiBsb2JvcnRpcyBsYW9yZWV0IGNv\n"
"bmd1ZS4gU2l0IGFtZXQsIHNlZCBuaWJoIHBvcnJvIG5lcXVlIGF1Y3RvciBoeW1lbmFlb3MgcG9z\n"
"dWVyZSwgb2RpbyBudWxsYSBibGFuZGl0IGNvbmd1ZSBlbGl0LiBJZCBmYXVjaWJ1cyBldCB0ZW1w\n"
"dXMgbWFsZXN1YWRhIHBsYXRlYS4=";
const char *filename = TOPSRCDIR "/tests/nc_b64enc_test_files/long_text";
ck_assert_msg(nc_b64enc_filename(filename, &out[0], out_len), "Error opening file");
ck_assert_str_eq(out, expected_out);
}
END_TEST
START_TEST(check_nc_b64_enc_n_filehandler_foobar)
{
size_t n = OUT_MAX_LEN;
char out[OUT_MAX_LEN];
char *result = "Zm9vYmFyZm9vYmFy";
const char *filename = TOPSRCDIR "/tests/nc_b64enc_test_files/foobar";
FILE *fh = NULL;
fh = fopen(filename, "rb");
if (fh == NULL) {
ck_abort_msg("Unable to open foobar file");
}
ck_assert_msg(nc_b64enc_file(fh, &out[0], n), "Result does not match");
ck_assert_str_eq(out, result);
}
END_TEST
Suite *config_suite(void)
{
// A suite is comprised of test cases, defined below
Suite *s = suite_create("nc_b64enc");
// Individual unit tests are added to "test cases"
TCase *t = tcase_create("nc_b64enc");
tcase_add_test(t, check_nc_b64_no_overflow);
tcase_add_test(t, check_nc_b64_enc_n_file_empty);
tcase_add_test(t, check_nc_b64_enc_n_file_fo);
tcase_add_test(t, check_nc_b64_enc_n_file_foob);
tcase_add_test(t, check_nc_b64_enc_n_file_foobar);
tcase_add_test(t, check_nc_b64_enc_n_file_long_text);
tcase_add_test(t, check_nc_b64_enc_n_filehandler_foobar);
suite_add_tcase(s, t);
return s;
}
int main(void)
{
Suite *s;
SRunner *sr;
s = config_suite();
sr = srunner_create(s);
// Use the TAP driver for now, so that each
// unit test will PASS/FAIL in the log output.
srunner_set_log(sr, NULL);
srunner_set_tap(sr, "-");
srunner_run_all(sr, CK_SILENT);
// failed = srunner_ntests_failed(sr);
srunner_free(sr);
// if you want the TAP driver to report a hard error based
// on certain conditions (e.g. number of failed tests, etc.),
// return non-zero here instead.
return 0;
}
/* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */
+443
View File
@@ -0,0 +1,443 @@
/*
* This program is part of the Clear Linux Project
*
* Copyright 2018 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify it under
* the terms and conditions of the GNU Lesser General Public License, as
* published by the Free Software Foundation; either version 2.1 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
#include <check.h>
#include <sys/socket.h>
#include <sys/fcntl.h>
#include <stdlib.h>
#include <sys/queue.h>
#include <unistd.h>
#include "configuration.h"
#include "telempostdaemon.h"
#include "common.h"
TelemPostDaemon tdaemon;
bool dummy_post(char *headers[], char *body, char *cfg_file)
{
return true;
}
bool (*post_record_ptr)(char *headers[], char *body, char *cfg_file) = dummy_post;
void setup(void)
{
char *config_file = ABSTOPSRCDIR "/src/data/example.conf";
set_config_file(config_file);
initialize_post_daemon(&tdaemon);
}
START_TEST(check_daemon_is_initialized)
{
setup();
ck_assert(tdaemon.rate_limit_enabled == true);
ck_assert(tdaemon.record_burst_limit == 100);
ck_assert(tdaemon.record_window_length == 15);
ck_assert(tdaemon.byte_burst_limit == 1000);
ck_assert(tdaemon.byte_window_length == 20);
ck_assert_str_eq(tdaemon.rate_limit_strategy, "spool");
}
END_TEST
START_TEST(check_handle_client_with_no_data)
{
setup();
bool success;
char *filename = ABSTOPSRCDIR "/tests/telempostd/empty_message";
success = process_staged_record(filename, false, &tdaemon);
// Return true to remove corrupted record
ck_assert(success == true);
}
END_TEST
START_TEST(check_handle_client_with_incorrect_data)
{
setup();
bool success;
char *filename = ABSTOPSRCDIR "/tests/telempostd/incorrect_message";
success = process_staged_record(filename, false, &tdaemon);
// Return true to remove corrupted record
ck_assert(success == true);
}
END_TEST
START_TEST(check_process_record_with_correct_size_and_data)
{
setup();
bool success;
char *filename = ABSTOPSRCDIR "/tests/telempostd/correct_message";
success = process_staged_record(filename, false, &tdaemon);
ck_assert(success == true);
}
END_TEST
START_TEST(check_process_record_with_incorrect_headers)
{
setup();
bool success;
char *filename = ABSTOPSRCDIR "/tests/telempostd/incorrect_headers";
success = process_staged_record(filename, false, &tdaemon);
// Return true to remove corrupted record
ck_assert(success == true);
}
END_TEST
START_TEST(check_rate_limit_enabled_functions)
{
setup();
bool record_check_passed = true;
bool byte_check_passed = true;
bool record_burst_enabled = true;
bool byte_burst_enabled = true;
tdaemon.record_burst_limit = 4;
tdaemon.byte_burst_limit = 2999;
tdaemon.rate_limit_enabled = true;
bool burst_limit_enabled(int64_t burst_limit)
{
return (burst_limit > -1) ? true : false;
}
/* Checks whether record burst rate limiting is enabled */
if (burst_limit_enabled(tdaemon.record_burst_limit)) {
record_check_passed = false;
} else {
/* If not enabled, does not need to be checked */
record_burst_enabled = false;
}
/* Checks whether byte burst rate limiting is enabled */
if (burst_limit_enabled(tdaemon.byte_burst_limit)) {
byte_check_passed = false;
} else {
/* If not enabled, does not need to be checked */
byte_burst_enabled = false;
}
if (!record_burst_enabled && !byte_burst_enabled) {
tdaemon.rate_limit_enabled = false;
}
ck_assert(record_check_passed == false);
ck_assert(byte_check_passed == false);
ck_assert(tdaemon.rate_limit_enabled == true);
}
END_TEST
START_TEST(check_rate_limit_records_that_pass)
{
setup();
int current_minute = 3;
tdaemon.record_burst_array[1] = 10;
tdaemon.record_burst_array[7] = 10;
tdaemon.record_burst_array[10] = 20;
tdaemon.record_burst_array[55] = 10;
tdaemon.record_burst_limit = 30;
tdaemon.record_window_length = 15;
bool checker;
checker = rate_limit_check(current_minute, tdaemon.record_burst_limit,
tdaemon.record_window_length, tdaemon.record_burst_array, 1);
ck_assert(checker == true);
}
END_TEST
START_TEST(check_rate_limit_records_that_do_not_pass)
{
setup();
int current_minute = 24;
tdaemon.record_burst_array[3] = 10;
tdaemon.record_burst_array[4] = 10;
tdaemon.record_burst_array[6] = 10;
tdaemon.record_burst_array[27] = 10;
tdaemon.record_burst_limit = 30;
tdaemon.record_window_length = 30;
bool checker;
checker = rate_limit_check(current_minute, tdaemon.record_burst_limit,
tdaemon.record_window_length, tdaemon.record_burst_array, 1);
ck_assert(checker == false);
}
END_TEST
START_TEST(check_rate_limit_bytes_that_pass)
{
setup();
size_t incValue = 20000;
int current_minute = 3;
tdaemon.byte_burst_array[1] = 32000;
tdaemon.byte_burst_array[7] = 10000;
tdaemon.byte_burst_array[10] = 45000;
tdaemon.byte_burst_array[55] = 11000;
tdaemon.byte_burst_limit = 64000;
tdaemon.byte_window_length = 15;
bool checker;
checker = rate_limit_check(current_minute, tdaemon.byte_burst_limit,
tdaemon.byte_window_length, tdaemon.byte_burst_array, incValue);
ck_assert(checker == true);
}
END_TEST
START_TEST(check_rate_limit_bytes_that_do_not_pass)
{
setup();
size_t incValue = 80000;
int current_minute = 15;
tdaemon.byte_burst_array[1] = 32000;
tdaemon.byte_burst_array[7] = 10000;
tdaemon.byte_burst_array[10] = 32300;
tdaemon.byte_burst_array[55] = 31000;
tdaemon.byte_burst_limit = 100000;
tdaemon.byte_window_length = 15;
bool checker;
checker = rate_limit_check(current_minute, tdaemon.byte_burst_limit,
tdaemon.byte_window_length, tdaemon.byte_burst_array, incValue);
ck_assert(checker == false);
}
END_TEST
START_TEST(check_update_record_array)
{
setup();
int current_minute = 7;
tdaemon.record_window_length = 15;
rate_limit_update(current_minute, tdaemon.record_window_length,
tdaemon.record_burst_array, TM_RECORD_COUNTER);
rate_limit_update(current_minute, tdaemon.record_window_length,
tdaemon.record_burst_array, TM_RECORD_COUNTER);
current_minute = 45;
rate_limit_update(current_minute, tdaemon.record_window_length,
tdaemon.record_burst_array, TM_RECORD_COUNTER);
current_minute = 47;
rate_limit_update(current_minute, tdaemon.record_window_length,
tdaemon.record_burst_array, TM_RECORD_COUNTER);
rate_limit_update(current_minute, tdaemon.record_window_length,
tdaemon.record_burst_array, TM_RECORD_COUNTER);
for (int i = 0; i < 60; i++) {
if (i != 45 && i != 47) {
ck_assert_msg(tdaemon.record_burst_array[i] == 0, "array at %d is %d\n",
i, tdaemon.record_burst_array[i]);
} else {
ck_assert_msg(tdaemon.record_burst_array[45] == 1, "array: %d is %d\n",
i, tdaemon.record_burst_array[i]);
ck_assert_msg(tdaemon.record_burst_array[47] == 2, "array: %d is %d\n",
i, tdaemon.record_burst_array[i]);
}
}
}
END_TEST
START_TEST(check_update_byte_array)
{
setup();
int current_minute = 7;
tdaemon.byte_window_length = 15;
size_t record_size = 32000;
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
current_minute = 45;
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
current_minute = 47;
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
for (int i = 0; i < 60; i++) {
if (i != 45 && i != 47) {
ck_assert_msg(tdaemon.byte_burst_array[i] == 0, "array at %d is %d\n",
i, tdaemon.record_burst_array[i]);
} else {
ck_assert_msg(tdaemon.byte_burst_array[45] == 32000, "bytearray: %d is %d\n",
i, tdaemon.record_burst_array[i]);
ck_assert_msg(tdaemon.byte_burst_array[47] == 96000, "bytearray: %d is %d\n",
i, tdaemon.record_burst_array[i]);
}
}
}
END_TEST
START_TEST(check_strategy_spool_option)
{
setup();
tdaemon.rate_limit_strategy = "spool";
bool do_spool = true;
char *ret = NULL;
bool record_sent = false;
// Get rate-limit strategy
do_spool = spool_strategy_selected(&tdaemon);
// Drop record
if (!record_sent && !do_spool) {
ret = "dropped";
}
// Spool Record
else if (!record_sent && do_spool) {
ret = "spooled";
} else {
ret = "sent";
}
ck_assert_str_eq(ret, "spooled");
}
END_TEST
START_TEST(check_strategy_drop_option)
{
setup();
tdaemon.rate_limit_strategy = "drop";
bool do_spool = true;
char *ret = NULL;
bool record_sent = false;
// Get rate-limit strategy
do_spool = spool_strategy_selected(&tdaemon);
// Drop record
if (!record_sent && !do_spool) {
ret = "dropped";
}
// Spool Record
else if (!record_sent && do_spool) {
ret = "spooled";
} else {
ret = "sent";
}
ck_assert_str_eq(ret, "dropped");
}
END_TEST
START_TEST(check_strategy_if_record_sent)
{
setup();
tdaemon.rate_limit_strategy = "drop";
bool do_spool = true;
char *ret = NULL;
bool record_sent = true;
// Get rate-limit strategy
do_spool = spool_strategy_selected(&tdaemon);
// Drop record
if (!record_sent && !do_spool) {
ret = "dropped";
}
// Spool Record
else if (!record_sent && do_spool) {
ret = "spooled";
} else {
ret = "sent";
}
ck_assert_str_eq(ret, "sent");
}
END_TEST
Suite *config_suite(void)
{
// A suite is comprised of test cases, defined below
Suite *s = suite_create("postd");
// Individual unit tests are added to "test cases"
TCase *t = tcase_create("postd");
tcase_add_test(t, check_daemon_is_initialized);
tcase_add_test(t, check_handle_client_with_no_data);
tcase_add_test(t, check_handle_client_with_incorrect_data);
tcase_add_test(t, check_process_record_with_correct_size_and_data);
tcase_add_test(t, check_process_record_with_incorrect_headers);
tcase_add_test(t, check_rate_limit_enabled_functions);
tcase_add_test(t, check_rate_limit_records_that_pass);
tcase_add_test(t, check_rate_limit_records_that_do_not_pass);
tcase_add_test(t, check_rate_limit_bytes_that_pass);
tcase_add_test(t, check_rate_limit_bytes_that_do_not_pass);
tcase_add_test(t, check_update_record_array);
tcase_add_test(t, check_update_byte_array);
tcase_add_test(t, check_strategy_spool_option);
tcase_add_test(t, check_strategy_drop_option);
tcase_add_test(t, check_strategy_if_record_sent);
suite_add_tcase(s, t);
return s;
}
int main(void)
{
Suite *s;
SRunner *sr;
s = config_suite();
sr = srunner_create(s);
// Use the TAP driver for now, so that each
// unit test will PASS/FAIL in the log output.
srunner_set_log(sr, NULL);
srunner_set_tap(sr, "-");
srunner_run_all(sr, CK_SILENT);
// failed = srunner_ntests_failed(sr);
srunner_free(sr);
// if you want the TAP driver to report a hard error based
// on certain conditions (e.g. number of failed tests, etc.),
// return non-zero here instead.
return 0;
}
/* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */
+3 -317
View File
@@ -26,7 +26,6 @@
#include "common.h" #include "common.h"
TelemDaemon tdaemon; TelemDaemon tdaemon;
static bool post_was_called = false;
char *get_serialized_record(char *headers, char *post_body, size_t *record_size) char *get_serialized_record(char *headers, char *post_body, size_t *record_size)
{ {
@@ -54,20 +53,12 @@ char *get_serialized_record(char *headers, char *post_body, size_t *record_size)
return data; return data;
} }
bool dummy_post(char *headers[], char *body, bool spool)
{
post_was_called = true;
return post_was_called;
}
bool (*post_record_ptr)(char *[], char *, bool) = dummy_post;
void setup(void) void setup(void)
{ {
char *config_file = ABSTOPSRCDIR "/src/data/example.conf"; char *config_file = ABSTOPSRCDIR "/src/data/example.conf";
set_config_file(config_file); set_config_file(config_file);
initialize_daemon(&tdaemon); initialize_probe_daemon(&tdaemon);
} }
START_TEST(check_daemon_is_initialized) START_TEST(check_daemon_is_initialized)
@@ -76,12 +67,6 @@ START_TEST(check_daemon_is_initialized)
ck_assert(tdaemon.nfds == 0); ck_assert(tdaemon.nfds == 0);
ck_assert(tdaemon.pollfds == NULL); ck_assert(tdaemon.pollfds == NULL);
ck_assert(tdaemon.rate_limit_enabled == true);
ck_assert(tdaemon.record_burst_limit == 100);
ck_assert(tdaemon.record_window_length == 15);
ck_assert(tdaemon.byte_burst_limit == 1000);
ck_assert(tdaemon.byte_window_length == 20);
ck_assert_str_eq(tdaemon.rate_limit_strategy, "spool");
} }
END_TEST END_TEST
@@ -269,12 +254,10 @@ START_TEST(check_handle_client_with_correct_size)
memcpy(buf + 2 * sizeof(uint32_t), data, strlen(data) + 1); memcpy(buf + 2 * sizeof(uint32_t), data, strlen(data) + 1);
ck_assert(strcmp(data, buf + 2 * sizeof(int32_t)) == 0); ck_assert(strcmp(data, buf + 2 * sizeof(int32_t)) == 0);
post_was_called = false;
ssize_t ret = write(server_fd, buf, 2 * sizeof(uint32_t) + size + 1); ssize_t ret = write(server_fd, buf, 2 * sizeof(uint32_t) + size + 1);
ck_assert(ret != -1); ck_assert(ret != -1);
processed = handle_client(&tdaemon, 0, cl); processed = handle_client(&tdaemon, 0, cl);
ck_assert(processed == true); ck_assert(processed == true);
ck_assert(post_was_called == false);
ck_assert_msg(is_client_list_empty(&(tdaemon.client_head)), "Failed to remove client with no data\n"); ck_assert_msg(is_client_list_empty(&(tdaemon.client_head)), "Failed to remove client with no data\n");
ck_assert_msg(tdaemon.nfds == 0, "Failed to remove poll fd for client with n data\n"); ck_assert_msg(tdaemon.nfds == 0, "Failed to remove poll fd for client with n data\n");
@@ -307,14 +290,12 @@ START_TEST(check_process_record_with_correct_size_and_data)
ck_assert_msg(cl != NULL, "failed to malloc client"); ck_assert_msg(cl != NULL, "failed to malloc client");
add_pollfd(&tdaemon, client_fd, POLLIN | POLLPRI); add_pollfd(&tdaemon, client_fd, POLLIN | POLLPRI);
post_was_called = false;
record = get_serialized_record(headers, post_body, &record_size); record = get_serialized_record(headers, post_body, &record_size);
ssize_t ret = write(server_fd, record, record_size); ssize_t ret = write(server_fd, record, record_size);
ck_assert(ret == record_size); ck_assert(ret == record_size);
processed = handle_client(&tdaemon, 0, cl); processed = handle_client(&tdaemon, 0, cl);
ck_assert(processed == true); ck_assert(processed == true);
ck_assert(post_was_called == true);
ck_assert_msg(is_client_list_empty(&(tdaemon.client_head)), "Failed to remove client with correct data\n"); ck_assert_msg(is_client_list_empty(&(tdaemon.client_head)), "Failed to remove client with correct data\n");
ck_assert_msg(tdaemon.nfds == 0, "Failed to remove poll fd for client with correct data\n"); ck_assert_msg(tdaemon.nfds == 0, "Failed to remove poll fd for client with correct data\n");
close(server_fd); close(server_fd);
@@ -341,14 +322,12 @@ START_TEST(check_process_record_with_incorrect_headers)
ck_assert_msg(cl != NULL, "failed to malloc client"); ck_assert_msg(cl != NULL, "failed to malloc client");
add_pollfd(&tdaemon, client_fd, POLLIN | POLLPRI); add_pollfd(&tdaemon, client_fd, POLLIN | POLLPRI);
post_was_called = false;
record = get_serialized_record(headers, post_body, &record_size); record = get_serialized_record(headers, post_body, &record_size);
ssize_t ret = write(server_fd, record, record_size); ssize_t ret = write(server_fd, record, record_size);
ck_assert(ret == record_size); ck_assert(ret == record_size);
processed = handle_client(&tdaemon, 0, cl); processed = handle_client(&tdaemon, 0, cl);
ck_assert(processed == true); ck_assert(processed == true);
ck_assert(post_was_called == false);
ck_assert_msg(is_client_list_empty(&(tdaemon.client_head)), "Failed to remove client with incorrect headers\n"); ck_assert_msg(is_client_list_empty(&(tdaemon.client_head)), "Failed to remove client with incorrect headers\n");
ck_assert_msg(tdaemon.nfds == 0, "Failed to remove poll fd for client with incorrect headers\n"); ck_assert_msg(tdaemon.nfds == 0, "Failed to remove poll fd for client with incorrect headers\n");
close(server_fd); close(server_fd);
@@ -356,296 +335,13 @@ START_TEST(check_process_record_with_incorrect_headers)
} }
END_TEST END_TEST
START_TEST(check_rate_limit_enabled_functions)
{
setup();
bool record_check_passed = true;
bool byte_check_passed = true;
bool record_burst_enabled = true;
bool byte_burst_enabled = true;
tdaemon.record_burst_limit = 4;
tdaemon.byte_burst_limit = 2999;
tdaemon.rate_limit_enabled = true;
bool burst_limit_enabled(int64_t burst_limit)
{
return (burst_limit > -1) ? true : false;
}
/* Checks whether record burst rate limiting is enabled */
if (burst_limit_enabled(tdaemon.record_burst_limit)) {
record_check_passed = false;
} else {
/* If not enabled, does not need to be checked */
record_burst_enabled = false;
}
/* Checks whether byte burst rate limiting is enabled */
if (burst_limit_enabled(tdaemon.byte_burst_limit)) {
byte_check_passed = false;
} else {
/* If not enabled, does not need to be checked */
byte_burst_enabled = false;
}
if (!record_burst_enabled && !byte_burst_enabled) {
tdaemon.rate_limit_enabled = false;
}
ck_assert(record_check_passed == false);
ck_assert(byte_check_passed == false);
ck_assert(tdaemon.rate_limit_enabled == true);
}
END_TEST
START_TEST(check_rate_limit_records_that_pass)
{
setup();
int current_minute = 3;
tdaemon.record_burst_array[1] = 10;
tdaemon.record_burst_array[7] = 10;
tdaemon.record_burst_array[10] = 20;
tdaemon.record_burst_array[55] = 10;
tdaemon.record_burst_limit = 30;
tdaemon.record_window_length = 15;
bool checker;
checker = rate_limit_check(current_minute, tdaemon.record_burst_limit,
tdaemon.record_window_length, tdaemon.record_burst_array, 1);
ck_assert(checker == true);
}
END_TEST
START_TEST(check_rate_limit_records_that_do_not_pass)
{
setup();
int current_minute = 24;
tdaemon.record_burst_array[3] = 10;
tdaemon.record_burst_array[4] = 10;
tdaemon.record_burst_array[6] = 10;
tdaemon.record_burst_array[27] = 10;
tdaemon.record_burst_limit = 30;
tdaemon.record_window_length = 30;
bool checker;
checker = rate_limit_check(current_minute, tdaemon.record_burst_limit,
tdaemon.record_window_length, tdaemon.record_burst_array, 1);
ck_assert(checker == false);
}
END_TEST
START_TEST(check_rate_limit_bytes_that_pass)
{
setup();
size_t incValue = 20000;
int current_minute = 3;
tdaemon.byte_burst_array[1] = 32000;
tdaemon.byte_burst_array[7] = 10000;
tdaemon.byte_burst_array[10] = 45000;
tdaemon.byte_burst_array[55] = 11000;
tdaemon.byte_burst_limit = 64000;
tdaemon.byte_window_length = 15;
bool checker;
checker = rate_limit_check(current_minute, tdaemon.byte_burst_limit,
tdaemon.byte_window_length, tdaemon.byte_burst_array, incValue);
ck_assert(checker == true);
}
END_TEST
START_TEST(check_rate_limit_bytes_that_do_not_pass)
{
setup();
size_t incValue = 80000;
int current_minute = 15;
tdaemon.byte_burst_array[1] = 32000;
tdaemon.byte_burst_array[7] = 10000;
tdaemon.byte_burst_array[10] = 32300;
tdaemon.byte_burst_array[55] = 31000;
tdaemon.byte_burst_limit = 100000;
tdaemon.byte_window_length = 15;
bool checker;
checker = rate_limit_check(current_minute, tdaemon.byte_burst_limit,
tdaemon.byte_window_length, tdaemon.byte_burst_array, incValue);
ck_assert(checker == false);
}
END_TEST
START_TEST(check_update_record_array)
{
setup();
int current_minute = 7;
tdaemon.record_window_length = 15;
rate_limit_update(current_minute, tdaemon.record_window_length,
tdaemon.record_burst_array, TM_RECORD_COUNTER);
rate_limit_update(current_minute, tdaemon.record_window_length,
tdaemon.record_burst_array, TM_RECORD_COUNTER);
current_minute = 45;
rate_limit_update(current_minute, tdaemon.record_window_length,
tdaemon.record_burst_array, TM_RECORD_COUNTER);
current_minute = 47;
rate_limit_update(current_minute, tdaemon.record_window_length,
tdaemon.record_burst_array, TM_RECORD_COUNTER);
rate_limit_update(current_minute, tdaemon.record_window_length,
tdaemon.record_burst_array, TM_RECORD_COUNTER);
for (int i = 0; i < 60; i++) {
if (i != 45 && i != 47) {
ck_assert_msg(tdaemon.record_burst_array[i] == 0, "array at %d is %d\n",
i, tdaemon.record_burst_array[i]);
} else {
ck_assert_msg(tdaemon.record_burst_array[45] == 1, "array: %d is %d\n",
i, tdaemon.record_burst_array[i]);
ck_assert_msg(tdaemon.record_burst_array[47] == 2, "array: %d is %d\n",
i, tdaemon.record_burst_array[i]);
}
}
}
END_TEST
START_TEST(check_update_byte_array)
{
setup();
int current_minute = 7;
tdaemon.byte_window_length = 15;
size_t record_size = 32000;
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
current_minute = 45;
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
current_minute = 47;
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
rate_limit_update(current_minute, tdaemon.byte_window_length,
tdaemon.byte_burst_array, record_size);
for (int i = 0; i < 60; i++) {
if (i != 45 && i != 47) {
ck_assert_msg(tdaemon.byte_burst_array[i] == 0, "array at %d is %d\n",
i, tdaemon.record_burst_array[i]);
} else {
ck_assert_msg(tdaemon.byte_burst_array[45] == 32000, "bytearray: %d is %d\n",
i, tdaemon.record_burst_array[i]);
ck_assert_msg(tdaemon.byte_burst_array[47] == 96000, "bytearray: %d is %d\n",
i, tdaemon.record_burst_array[i]);
}
}
}
END_TEST
START_TEST(check_strategy_spool_option)
{
setup();
tdaemon.rate_limit_strategy = "spool";
bool do_spool = true;
char *ret = NULL;
bool record_sent = false;
// Get rate-limit strategy
do_spool = spool_strategy_selected(&tdaemon);
// Drop record
if (!record_sent && !do_spool) {
ret = "dropped";
}
// Spool Record
else if (!record_sent && do_spool) {
ret = "spooled";
} else {
ret = "sent";
}
ck_assert_str_eq(ret, "spooled");
}
END_TEST
START_TEST(check_strategy_drop_option)
{
setup();
tdaemon.rate_limit_strategy = "drop";
bool do_spool = true;
char *ret = NULL;
bool record_sent = false;
// Get rate-limit strategy
do_spool = spool_strategy_selected(&tdaemon);
// Drop record
if (!record_sent && !do_spool) {
ret = "dropped";
}
// Spool Record
else if (!record_sent && do_spool) {
ret = "spooled";
} else {
ret = "sent";
}
ck_assert_str_eq(ret, "dropped");
}
END_TEST
START_TEST(check_strategy_if_record_sent)
{
setup();
tdaemon.rate_limit_strategy = "drop";
bool do_spool = true;
char *ret = NULL;
bool record_sent = true;
// Get rate-limit strategy
do_spool = spool_strategy_selected(&tdaemon);
// Drop record
if (!record_sent && !do_spool) {
ret = "dropped";
}
// Spool Record
else if (!record_sent && do_spool) {
ret = "spooled";
} else {
ret = "sent";
}
ck_assert_str_eq(ret, "sent");
}
END_TEST
Suite *config_suite(void) Suite *config_suite(void)
{ {
// A suite is comprised of test cases, defined below // A suite is comprised of test cases, defined below
Suite *s = suite_create("daemon"); Suite *s = suite_create("probd");
// Individual unit tests are added to "test cases" // Individual unit tests are added to "test cases"
TCase *t = tcase_create("daemon"); TCase *t = tcase_create("probd");
tcase_add_test(t, check_add_del_poll_fd); tcase_add_test(t, check_add_del_poll_fd);
tcase_add_test(t, check_daemon_is_initialized); tcase_add_test(t, check_daemon_is_initialized);
tcase_add_test(t, check_add_remove_client); tcase_add_test(t, check_add_remove_client);
@@ -655,16 +351,6 @@ Suite *config_suite(void)
tcase_add_test(t, check_handle_client_with_correct_size); tcase_add_test(t, check_handle_client_with_correct_size);
tcase_add_test(t, check_process_record_with_correct_size_and_data); tcase_add_test(t, check_process_record_with_correct_size_and_data);
tcase_add_test(t, check_process_record_with_incorrect_headers); tcase_add_test(t, check_process_record_with_incorrect_headers);
tcase_add_test(t, check_rate_limit_enabled_functions);
tcase_add_test(t, check_rate_limit_records_that_pass);
tcase_add_test(t, check_rate_limit_records_that_do_not_pass);
tcase_add_test(t, check_rate_limit_bytes_that_pass);
tcase_add_test(t, check_rate_limit_bytes_that_do_not_pass);
tcase_add_test(t, check_update_record_array);
tcase_add_test(t, check_update_byte_array);
tcase_add_test(t, check_strategy_spool_option);
tcase_add_test(t, check_strategy_drop_option);
tcase_add_test(t, check_strategy_if_record_sent);
suite_add_tcase(s, t); suite_add_tcase(s, t);
+8 -26
View File
@@ -29,36 +29,18 @@
#include "src/probes/klog_scanner.h" #include "src/probes/klog_scanner.h"
#include "src/probes/oops_parser.h" #include "src/probes/oops_parser.h"
char reason[1024]; static char reason[1024];
nc_string *bt; static nc_string *pl;
nc_string *pl;
void callback_func(struct oops_log_msg *msg) void callback_func(struct oops_log_msg *msg)
{ {
strncpy(reason, msg->lines[0], strlen(msg->lines[0]) + 1); size_t len = strlen(msg->lines[0]) + 1;
if (len > sizeof(reason)) {
pl = parse_payload(msg); len = sizeof(reason);
}
void setup(char *oopsfile)
{
char *buf = NULL;
int buflen = 0;
oops_parser_cleanup();
buf = readfile(oopsfile);
buflen = (int)getbuflen();
oops_parser_init(write_oops_to_file);
// Allocate space to write the oops file to
if (allocate_filespace() < 0) {
telem_log(LOG_ERR, "%s\n", strerror(errno));
exit(EXIT_FAILURE);
} }
memcpy(reason, msg->lines[0], len);
split_buf_by_line(buf, buflen); reason[sizeof(reason) - 1] = 0;
pl = parse_payload(msg);
} }
void setup_payload(char *oopsfile) void setup_payload(char *oopsfile)
+70 -29
View File
@@ -12,9 +12,9 @@ TESTS = $(check_PROGRAMS) $(dist_check_SCRIPTS)
check_PROGRAMS = \ check_PROGRAMS = \
%D%/check_config \ %D%/check_config \
%D%/check_daemon \ %D%/check_probd \
%D%/check_postd \
%D%/check_probes \ %D%/check_probes \
%D%/check_ncb64 \
%D%/check_journal \ %D%/check_journal \
%D%/check_libtelemetry %D%/check_libtelemetry
@@ -32,27 +32,70 @@ dist_check_SCRIPTS = \
@CHECK_LIBS@ \ @CHECK_LIBS@ \
$(top_builddir)/src/libtelem-shared.la $(top_builddir)/src/libtelem-shared.la
%C%_check_daemon_SOURCES = \ if HAVE_SYSTEMD_JOURNAL
%D%/check_daemon.c \ if LOG_SYSTEMD
%C%_check_config_CFLAGS += $(SYSTEMD_JOURNAL_CFLAGS)
%C%_check_config_LDADD += $(SYSTEMD_JOURNAL_LIBS)
endif
endif
%C%_check_probd_SOURCES = \
%D%/check_probd.c \
src/telemdaemon.c \ src/telemdaemon.c \
src/telemdaemon.h \ src/telemdaemon.h \
src/iorecord.h \
src/iorecord.c \
src/journal/journal.c \ src/journal/journal.c \
src/journal/journal.h src/journal/journal.h
%C%_check_daemon_CFLAGS = \ %C%_check_probd_CFLAGS = \
$(AM_CFLAGS) \ $(AM_CFLAGS) \
@CHECK_CFLAGS@ \ @CHECK_CFLAGS@ \
@CURL_CFLAGS@ @CURL_CFLAGS@
%C%_check_daemon_LDADD = \ %C%_check_probd_LDADD = \
@CHECK_LIBS@ \ @CHECK_LIBS@ \
@CURL_LIBS@ \ @CURL_LIBS@ \
$(top_builddir)/src/libtelem-shared.la $(top_builddir)/src/libtelem-shared.la
if LOG_SYSTEMD if LOG_SYSTEMD
if HAVE_SYSTEMD_JOURNAL if HAVE_SYSTEMD_JOURNAL
%C%_check_daemon_CFLAGS += \ %C%_check_probd_CFLAGS += \
$(SYSTEMD_JOURNAL_CFLAGS) $(SYSTEMD_JOURNAL_CFLAGS)
%C%_check_daemon_LDADD += \ %C%_check_probd_LDADD += \
$(SYSTEMD_JOURNAL_LIBS)
endif
endif
%C%_check_postd_SOURCES = \
%D%/check_postd.c \
src/spool.c \
src/iorecord.c \
src/retention.c \
src/telempostdaemon.c \
src/telempostdaemon.h \
src/journal/journal.c \
src/journal/journal.h
EXTRA_DIST += \
%D%/telempostd/correct_message \
%D%/telempostd/incorrect_headers \
%D%/telempostd/empty_message \
%D%/telempostd/incorrect_message
%C%_check_postd_CFLAGS = \
$(AM_CFLAGS) \
@CHECK_CFLAGS@ \
@CURL_CFLAGS@
%C%_check_postd_LDADD = \
@CHECK_LIBS@ \
@CURL_LIBS@ \
$(top_builddir)/src/libtelem-shared.la
if LOG_SYSTEMD
if HAVE_SYSTEMD_JOURNAL
%C%_check_postd_CFLAGS += \
$(SYSTEMD_JOURNAL_CFLAGS)
%C%_check_postd_LDADD += \
$(SYSTEMD_JOURNAL_LIBS) $(SYSTEMD_JOURNAL_LIBS)
endif endif
endif endif
@@ -99,6 +142,7 @@ EXTRA_DIST += \
@CHECK_CFLAGS@ @CHECK_CFLAGS@
%C%_check_probes_LDADD = \ %C%_check_probes_LDADD = \
@CHECK_LIBS@ \ @CHECK_LIBS@ \
$(top_builddir)/src/libtelemetry.la \
$(top_builddir)/src/libtelem-shared.la $(top_builddir)/src/libtelem-shared.la
if LOG_SYSTEMD if LOG_SYSTEMD
@@ -110,28 +154,8 @@ if HAVE_SYSTEMD_JOURNAL
endif endif
endif endif
%C%_check_ncb64_SOURCES = \
%D%/check_ncb64.c \
src/nica/b64enc.h \
src/nica/b64enc.c
%C%_check_ncb64_CFLAGS = \
$(AM_CFLAGS) \
@CHECK_CFLAGS@
%C%_check_ncb64_LDADD = \
@CHECK_LIBS@
EXTRA_DIST += \
%D%/nc_b64enc_test_files/empty \
%D%/nc_b64enc_test_files/fo \
%D%/nc_b64enc_test_files/foob \
%D%/nc_b64enc_test_files/foobar \
%D%/nc_b64enc_test_files/long_text
%C%_check_journal_SOURCES = \ %C%_check_journal_SOURCES = \
%D%/check_journal.c \ %D%/check_journal.c \
src/journal/journal.h \
src/journal/journal.c \ src/journal/journal.c \
src/util.h \ src/util.h \
src/util.c src/util.c
@@ -143,9 +167,19 @@ EXTRA_DIST += \
%C%_check_journal_LDADD = \ %C%_check_journal_LDADD = \
@CHECK_LIBS@ @CHECK_LIBS@
if HAVE_SYSTEMD_JOURNAL
if LOG_SYSTEMD
%C%_check_journal_CFLAGS += $(SYSTEMD_JOURNAL_CFLAGS)
%C%_check_journal_LDADD += $(SYSTEMD_JOURNAL_LIBS)
endif
endif
%C%_check_libtelemetry_SOURCES = \ %C%_check_libtelemetry_SOURCES = \
%D%/check_libtelemetry.c \ %D%/check_libtelemetry.c \
src/telemetry.c src/configuration.h \
src/util.h \
src/nica/hashmap.h \
src/nica/inifile.h
%C%_check_libtelemetry_CFLAGS = \ %C%_check_libtelemetry_CFLAGS = \
$(AM_CFLAGS) \ $(AM_CFLAGS) \
@@ -155,4 +189,11 @@ EXTRA_DIST += \
$(top_builddir)/src/libtelemetry.la \ $(top_builddir)/src/libtelemetry.la \
$(top_builddir)/src/libtelem-shared.la $(top_builddir)/src/libtelem-shared.la
if HAVE_SYSTEMD_JOURNAL
if LOG_SYSTEMD
%C%_check_libtelemetry_CFLAGS += $(SYSTEMD_JOURNAL_CFLAGS)
%C%_check_libtelemetry_LDADD += $(SYSTEMD_JOURNAL_LIBS)
endif
endif
# vim: filetype=automake tabstop=8 shiftwidth=8 noexpandtab # vim: filetype=automake tabstop=8 shiftwidth=8 noexpandtab
+16
View File
@@ -0,0 +1,16 @@
record_format_version: 1
classification: crash/kernel/bug
severity: 0
machine_id: 1234
creation_timestamp: 1418672344
arch: x86_64
host_type: macbookpro
build: 200
kernel_version: 3.15
payload_format_version: 1
system_name: clear-linux-os
board_name: Qemu|Intel
cpu_model: Intel(R) Core(TM) i7-5650U CPU @ 2.20GHz
bios_version: Qemu
event_id: 3a2d799826edc6266d72824d2aac6763
test message
View File
+10
View File
@@ -0,0 +1,10 @@
record_format_version: 1
nclassificatioooon: crash/kernel/bug
severity: 0
machine_id: 1234
creation_timestamp: 1531420323
arch: x86_64
host_type: macbookpro
build: 23550
kernel_version: 4.17.4-589.native
test message
+1
View File
@@ -0,0 +1 @@
test