summaryrefslogtreecommitdiffstats
path: root/common/elapi/elapi_sink.c
blob: 0e2712f0900bdd15ff871ab0155dab4f00aba1fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
/*
    ELAPI

    Module that contains functions that manipulate ELAPI sinks.

    Copyright (C) Dmitri Pal <dpal@redhat.com> 2009

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#define _GNU_SOURCE
#include <sys/types.h>  /* for stat() */
#include <errno.h>      /* for errors */
#include <string.h>     /* for memset() and other */
#include <stdlib.h>     /* for free() */
#include <stdarg.h>     /* for va_arg */
#include <dlfcn.h>      /* for dlopen() */

#include "elapi_priv.h"
#include "ini_config.h"
#include "file_provider.h"
#include "trace.h"
#include "config.h"

/* NOTE: Add new provider here */
struct elapi_prvdr_lookup providers[] =
    {{ ELAPI_EMB_PRVDR_FILE, file_ability },
/*   { ELAPI_EMB_PRVDR_SYSLOG, syslog_ability } */
     { NULL, NULL }};


/* This is a traverse callback for sink list */
int elapi_sink_cb(const char *sink,
                  int sink_len,
                  int type,
                  void *data,
                  int length,
                  void *passed_data,
                  int *stop)
{
    TRACE_FLOW_STRING("elapi_sink_cb", "Entry.");

    /* FIXME THIS IS A PLACEHOLDER FUNCTION FOR NOW */

    /* Skip header */
    if (type == COL_TYPE_COLLECTION) {
        TRACE_FLOW_STRING("elapi_sink_cb - skip header", "Exit.");
        return EOK;
    }

    printf("Sink: %s\n", sink);

    TRACE_FLOW_STRING("elapi_sink_cb", "Exit.");
    return EOK;
}

/* Destroy sink */
void elapi_sink_destroy(struct elapi_sink_ctx *context)
{
    TRACE_FLOW_STRING("elapi_sink_destroy", "Entry.");

#ifdef ELAPI_VERBOSE
    /* FIXME: Can be removeed when the interface is stable */
    /* For testing purposes print the context we are trying to free */
    elapi_print_sink_ctx(context);
#endif

    if (context) {
        TRACE_INFO_STRING("Context is not null.", "Destroying sink.");
        /* FIXME: Do something about pending data if any */
        /* Assume for now that we do not care about pending data */

        /* If the private data has been allocated and close callback is there
         * call a callback to clean the data and free it.
         */
        if (context->sink_cfg.priv_ctx) {
            TRACE_INFO_STRING("Calling provider's close function.", "");
            /* Call close function of the provider */
            context->sink_cfg.cpb_cb.close_cb(&(context->sink_cfg.priv_ctx));
        }

        /* Now if the handle of the provider is set, offload the library instance */
        if (context->sink_cfg.libhandle) {
            TRACE_INFO_STRING("Offloading shared library.", "");
            dlclose(context->sink_cfg.libhandle);
            context->sink_cfg.libhandle = NULL;
        }

        if (context->sink_cfg.provider) {
            TRACE_INFO_STRING("Cleaning provider.", "");
            free(context->sink_cfg.provider);
            context->sink_cfg.provider = NULL;
        }

        TRACE_INFO_STRING("Freeing context", "");
        free(context);
    }

    TRACE_FLOW_STRING("elapi_sink_destroy", "Exit.");
}

/* Internal sink cleanup function */
int elapi_sink_free_cb(const char *sink,
                       int sink_len,
                       int type,
                       void *data,
                       int length,
                       void *passed_data,
                       int *stop)
{
    TRACE_FLOW_STRING("elapi_sink_free_cb", "Entry.");

    /* Skip header */
    if (type == COL_TYPE_COLLECTION) {
        TRACE_FLOW_STRING("elapi_sink_free_cb - skip header", "Exit.");
        return EOK;
    }

    TRACE_INFO_STRING("Cleaning Sink:", sink);

    elapi_sink_destroy(*((struct elapi_sink_ctx **)(data)));

    TRACE_FLOW_STRING("elapi_sink_free_cb", "Exit.");
    return EOK;
}

/* Function to read sink common configuration */
static int elapi_read_sink_cfg(struct elapi_sink_cfg *sink_cfg,
                               const char *name,
                               struct collection_item *ini_config)
{
    int error = EOK;
    struct collection_item *cfg_item = NULL;
    const char *provider;

    TRACE_FLOW_STRING("elapi_read_sink_cfg", "Entry point");

    /*********** Provider *************/

    /* First check if this sink is properly configured and get its provider */
    error = get_config_item(name,
                            ELAPI_SINK_PROVIDER,
                            ini_config,
                            &cfg_item);
    if (error) {
        TRACE_ERROR_NUMBER("Attempt to read \"provider\" attribute returned error", error);
        return error;
    }

    /* Do we have provider? */
    if (cfg_item == NULL) {
        /* There is no provider - return error */
        TRACE_ERROR_STRING("Required key is missing in the configuration.", "Fatal Error!");
        return ENOENT;
    }

    /* Get provider value */
    provider = get_const_string_config_value(cfg_item, &error);
    if ((error) || (!provider) || (*provider == '\0')) {
        TRACE_ERROR_STRING("Invalid \"provider\" value", "Fatal Error!");
        return EINVAL;
    }

    /* Save provider inside configuration data */
    sink_cfg->provider = strdup(provider);
    if (sink_cfg->provider == NULL) {
        /* Failed to save the provider value */
        TRACE_ERROR_STRING("Failed to save \"provider\" value.", "Fatal Error!");
        return ENOMEM;
    }

    /*********** Required *************/
    /* Next is "required" field */
    cfg_item = NULL;
    error = get_config_item(name,
                            ELAPI_SINK_REQUIRED,
                            ini_config,
                            &cfg_item);
    if (error) {
        TRACE_ERROR_NUMBER("Attempt to read \"required\" attribute returned error", error);
        return error;
    }

    /* Do we have "required"? */
    if (cfg_item == NULL) {
        /* There is no attribute - assume default */
        TRACE_INFO_STRING("No \"required\" attribute.", "Assume optional");
        sink_cfg->required = 0;
    }
    else {
        sink_cfg->required = (uint32_t) get_bool_config_value(cfg_item, '\0', &error);
        if (error) {
            TRACE_ERROR_STRING("Invalid \"required\" value", "Fatal Error!");
            return EINVAL;
        }
    }

    /*********** Onerror *************/
    /* Next is "onerror" field */
    cfg_item = NULL;
    error = get_config_item(name,
                            ELAPI_SINK_ONERROR,
                            ini_config,
                            &cfg_item);
    if (error) {
        TRACE_ERROR_NUMBER("Attempt to read \"onerror\" attribute returned error", error);
        return error;
    }

    /* Do we have "required"? */
    if (cfg_item == NULL) {
        /* There is no attribute - assume default */
        TRACE_INFO_STRING("No \"onerror\" attribute.", "Assume retry (0)");
        sink_cfg->onerror = 0;
    }
    else {
        sink_cfg->onerror = (uint32_t) get_unsigned_config_value(cfg_item, 1, 0, &error);
        if (error) {
            TRACE_ERROR_STRING("Invalid \"onerror\" value", "Fatal Error!");
            return EINVAL;
        }
    }

    /*********** Timeout *************/
    /* Next is "timeout" field */
    cfg_item = NULL;
    error = get_config_item(name,
                            ELAPI_SINK_TIMEOUT,
                            ini_config,
                            &cfg_item);
    if (error) {
        TRACE_ERROR_NUMBER("Attempt to read \"timeout\" attribute returned error", error);
        return error;
    }

    /* Do we have "required"? */
    if (cfg_item == NULL) {
        /* There is no attribute - assume default */
        TRACE_INFO_STRING("No \"timeout\" attribute.", "Assume default timeout");
        sink_cfg->timeout = ELAPI_SINK_DEFAULT_TIMEOUT;
    }
    else {
        sink_cfg->timeout = (uint32_t) get_unsigned_config_value(cfg_item,
                                                                 1,
                                                                 ELAPI_SINK_DEFAULT_TIMEOUT,
                                                                 &error);
        if (error) {
            TRACE_ERROR_STRING("Invalid \"timeout\" value", "Fatal Error!");
            return EINVAL;
        }
    }

    /*********** Synch *************/
    /* Next is "synch" field */
    cfg_item = NULL;
    error = get_config_item(name,
                            ELAPI_SINK_SYNCH,
                            ini_config,
                            &cfg_item);
    if (error) {
        TRACE_ERROR_NUMBER("Attempt to read \"synch\" attribute returned error", error);
        return error;
    }

    /* Do we have "required"? */
    if (cfg_item == NULL) {
        /* There is no attribute - assume default */
        TRACE_INFO_STRING("No \"synch\" attribute.", "Assume retry (0)");
        sink_cfg->synch = 0;
    }
    else {
        sink_cfg->synch = (uint32_t) get_bool_config_value(cfg_item, '\0', &error);
        if (error) {
            TRACE_ERROR_STRING("Invalid \"synch\" value", "Fatal Error!");
            return EINVAL;
        }
    }

    TRACE_FLOW_STRING("elapi_read_sink_cfg", "Exit");
    return error;
}

/* Function to load external sink library */
static int elapi_load_lib(void **libhandle, sink_cpb_fn *sink_fn, const char *name)
{
    char sink_lib_name[SINK_LIB_NAME_SIZE];
    sink_cpb_fn sink_symbol = NULL;
    void *handle = NULL;
    char *lib_error = NULL;

    TRACE_FLOW_STRING("elapi_load_lib", "Entry point");

    if ((strlen(name) + sizeof(SINK_NAME_TEMPLATE)) >= SINK_LIB_NAME_SIZE) {
        TRACE_ERROR_STRING("Provider string is too long:", name);
        return EINVAL;
    }

    /* I considered using snprintf here but prefer this way.
     * Main reason is that snprintf will truncate
     * the string and I would have to determine that after
     * while in this implementation the copying
     * would never even start if the buffer is not
     * big enough.
     */
    sprintf(sink_lib_name, SINK_NAME_TEMPLATE, name);
    TRACE_INFO_STRING("Name of the library to try to load:", sink_lib_name);

    /* Load library */
    handle = dlopen(sink_lib_name, RTLD_LAZY);
    if (!handle) {
        TRACE_ERROR_STRING("Dlopen returned error", dlerror());
        return ELIBACC;
    }

    /* Clear any existing error */
    dlerror();
    /* Get addres to the main entry point */
    sink_symbol = (sink_cpb_fn)(dlsym(handle, SINK_ENTRY_POINT));
    if ((lib_error = dlerror()) != NULL)  {
        TRACE_ERROR_STRING("Dlsym returned error", lib_error);
        dlclose(handle);
        return ELIBACC;
    }

    *libhandle = handle;
    *sink_fn = sink_symbol;

    TRACE_FLOW_STRING("elapi_load_lib", "Exit");
    return EOK;
}

/* Function to load sink provider */
int elapi_sink_loader(struct elapi_sink_cfg *sink_cfg)
{
    int error = EOK;
    int num = 0;

    TRACE_FLOW_STRING("elapi_sink_loader", "Entry point");

    while (providers[num].name) {
        TRACE_INFO_STRING("Checking provider:", providers[num].name);
        if (strcasecmp(providers[num].name, sink_cfg->provider) == 0) {
            TRACE_INFO_STRING("Using provider:", providers[num].name);
            sink_cfg->ability = providers[num].ability;
            TRACE_FLOW_STRING("elapi_sink_loader", "Exit");
            return EOK;
        }
        num++;
    }

    TRACE_INFO_NUMBER("Provider not found.", "Assume external.");

    /* It is an external provider */
    error = elapi_load_lib(&(sink_cfg->libhandle), &(sink_cfg->ability), sink_cfg->provider);
    if (error) {
        TRACE_ERROR_NUMBER("Failed to load library", error);
        return error;
    }

    TRACE_FLOW_STRING("elapi_sink_loader", "Exit");
    return error;
}


/* Function to load sink provider */
int elapi_load_sink(struct elapi_sink_cfg *sink_cfg,
                    const char *name,
                    struct collection_item *ini_config,
                    const char *appname)
{
    int error = EOK;
    TRACE_FLOW_STRING("elapi_load_sink", "Entry point");

    /* Use sink loading wrapper */
    error = elapi_sink_loader(sink_cfg);
    if (error) {
        TRACE_ERROR_NUMBER("Failed to load sink", error);
        return error;
    }

    /* Call ability function to fill in the pointers */
    sink_cfg->ability(&(sink_cfg->cpb_cb));

    /* Make sure the callbacks are initialized */
    if ((sink_cfg->cpb_cb.init_cb == NULL) ||
        (sink_cfg->cpb_cb.submit_cb == NULL) ||
        (sink_cfg->cpb_cb.close_cb == NULL)) {
        TRACE_ERROR_NUMBER("One of the callbacks is missing",
                           "Bad provider!");
        return EINVAL;
    }


    /* Call init entry point */
    /* NOTE: it is the responsibility of the provider
     * to enforce singleton in case provider can't
     * be loaded more than once like syslog for example.
     */
    error = sink_cfg->cpb_cb.init_cb(&(sink_cfg->priv_ctx),
                                       name,
                                       ini_config,
                                       appname);
    if (error) {
        TRACE_ERROR_NUMBER("Failed to initalize sink", error);
        return error;
    }

    TRACE_FLOW_STRING("elapi_load_sink", "Exit");
    return error;

}

/* Function to create a sink */
int elapi_sink_create(struct elapi_sink_ctx **sink_ctx,
                      const char *name,
                      struct collection_item *ini_config,
                      const char *appname)
{
    int error = EOK;
    uint32_t required;
    struct elapi_sink_ctx *sink_context = NULL;

    TRACE_FLOW_STRING("elapi_sink_create", "Entry point");

    /* Allocate context */
    sink_context = (struct elapi_sink_ctx *)calloc(1, sizeof(struct elapi_sink_ctx));
    if (sink_context == NULL) {
        TRACE_ERROR_NUMBER("Memory allocation failed. Error", ENOMEM);
        return ENOMEM;
    }

    /* Read common fields */
    error = elapi_read_sink_cfg(&(sink_context->sink_cfg),
                                name, ini_config);
    if (error) {
        TRACE_ERROR_NUMBER("Failed to read sink configuration", error);
        elapi_sink_destroy(sink_context);
        return error;
    }

    TRACE_INFO_NUMBER("Address of init function",
                      sink_context->sink_cfg.cpb_cb.init_cb);
    TRACE_INFO_NUMBER("Address of submit function",
                      sink_context->sink_cfg.cpb_cb.submit_cb);
    TRACE_INFO_NUMBER("Address of close function",
                      sink_context->sink_cfg.cpb_cb.close_cb);

    /* Load sink */
    error = elapi_load_sink(&(sink_context->sink_cfg),
                            name,
                            ini_config,
                            appname);
    if (error) {
        TRACE_ERROR_NUMBER("Failed to load sink", error);
        required = sink_context->sink_cfg.required;
        elapi_sink_destroy(sink_context);
        if (required) {
            TRACE_ERROR_NUMBER("Sink is required so returning error", error);
            return error;
        }
        else {
            *sink_ctx = NULL;
            TRACE_FLOW_STRING("Sink is not required so OK", "Exit");
            return EOK;
        }
    }

    /* We are done so return the context to the caller */
    *sink_ctx = sink_context;

    TRACE_FLOW_STRING("elapi_sink_create", "Exit");
    return error;
}

/* Send event into the sink */
int elapi_sink_submit(struct elapi_sink_ctx *sink_ctx,
                      struct collection_item *event)
{
    int error = EOK;

    TRACE_FLOW_STRING("elapi_sink_submit", "Entry");

    /* FIXME: Manage the queue of the requests here.
     * For now just call provider's submit function.
     */
    error = sink_ctx->sink_cfg.cpb_cb.submit_cb(sink_ctx->sink_cfg.priv_ctx,
                                                event);

    TRACE_FLOW_STRING("elapi_sink_submit", "Exit");
    return error;
}