LCOV - code coverage report
Current view: top level - fuzz - fuzz-journald.c (source / functions) Hit Total Coverage
Test: systemd_full.info Lines: 0 18 0.0 %
Date: 2019-08-23 13:36:53 Functions: 0 2 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 8 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: LGPL-2.1+ */
       2                 :            : 
       3                 :            : #include "alloc-util.h"
       4                 :            : #include "fuzz-journald.h"
       5                 :            : #include "journald-server.h"
       6                 :            : #include "sd-event.h"
       7                 :            : 
       8                 :          0 : void dummy_server_init(Server *s, const uint8_t *buffer, size_t size) {
       9                 :          0 :         *s = (Server) {
      10                 :            :                 .syslog_fd = -1,
      11                 :            :                 .native_fd = -1,
      12                 :            :                 .stdout_fd = -1,
      13                 :            :                 .dev_kmsg_fd = -1,
      14                 :            :                 .audit_fd = -1,
      15                 :            :                 .hostname_fd = -1,
      16                 :            :                 .notify_fd = -1,
      17                 :            :                 .storage = STORAGE_NONE,
      18                 :            :                 .line_max = 64,
      19                 :            :         };
      20         [ #  # ]:          0 :         assert_se(sd_event_default(&s->event) >= 0);
      21                 :            : 
      22         [ #  # ]:          0 :         if (buffer) {
      23                 :          0 :                 s->buffer = memdup_suffix0(buffer, size);
      24         [ #  # ]:          0 :                 assert_se(s->buffer);
      25                 :          0 :                 s->buffer_size = size + 1;
      26                 :            :         }
      27                 :          0 : }
      28                 :            : 
      29                 :          0 : void fuzz_journald_processing_function(
      30                 :            :                 const uint8_t *data,
      31                 :            :                 size_t size,
      32                 :            :                 void (*f)(Server *s, const char *buf, size_t raw_len, const struct ucred *ucred, const struct timeval *tv, const char *label, size_t label_len)
      33                 :            :         ) {
      34                 :            :         Server s;
      35                 :          0 :         char *label = NULL;
      36                 :          0 :         size_t label_len = 0;
      37                 :          0 :         struct ucred *ucred = NULL;
      38                 :          0 :         struct timeval *tv = NULL;
      39                 :            : 
      40         [ #  # ]:          0 :         if (size == 0)
      41                 :          0 :                 return;
      42                 :            : 
      43                 :          0 :         dummy_server_init(&s, data, size);
      44                 :          0 :         (*f)(&s, s.buffer, size, ucred, tv, label, label_len);
      45                 :          0 :         server_done(&s);
      46                 :            : }

Generated by: LCOV version 1.14