summaryrefslogtreecommitdiffstats
path: root/src/libdect.c
blob: a3c006eb950cc9a6fd0e1c6af229cb0085b4cf53 (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
/*
 * libdect public API functions
 *
 * Copyright (c) 2009 Patrick McHardy <kaber@trash.net>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <unistd.h>

#include <libdect.h>
#include <netlink.h>
#include <utils.h>
#include <lce.h>

static void __fmtstring(1, 0) (*debug_hook)(const char *fmt, va_list ap);

void dect_set_debug_hook(void (*fn)(const char *fmt, va_list ap))
{
	debug_hook = fn;
}

void __fmtstring(1, 2) dect_debug(const char *fmt, ...)
{
	va_list ap;

	va_start(ap, fmt);
	if (debug_hook != NULL)
		debug_hook(fmt, ap);
	else
		vprintf(fmt, ap);
	va_end(ap);
}

struct dect_handle *dect_alloc_handle(struct dect_ops *ops)
{
	struct dect_handle *dh;

	if (ops->malloc == NULL)
		ops->malloc = malloc;
	if (ops->free == NULL)
		ops->free = free;

	dh = ops->malloc(sizeof(*dh));
	if (dh == NULL)
		return NULL;
	dh->ops = ops;
	init_list_head(&dh->links);
	return dh;
}

int dect_init(struct dect_handle *dh)
{
	int err;

	err = dect_netlink_init(dh);
	if (err < 0)
		goto err1;

	err = dect_lce_init(dh);
	if (err < 0)
		goto err2;
	return 0;

err2:
	dect_netlink_exit(dh);
err1:
	return err;
}

void dect_close_handle(struct dect_handle *dh)
{
	dect_lce_exit(dh);
	dect_netlink_exit(dh);
	dect_free(dh, dh);
}