46ea867d43600f299ee77c5623aa4f439165bd82
[debian/uanytun.git] / src / log.h
1 /*
2  *  uAnytun
3  *
4  *  uAnytun is a tiny implementation of SATP. Unlike Anytun which is a full
5  *  featured implementation uAnytun has no support for multiple connections
6  *  or synchronisation. It is a small single threaded implementation intended
7  *  to act as a client on small platforms.
8  *  The secure anycast tunneling protocol (satp) defines a protocol used
9  *  for communication between any combination of unicast and anycast
10  *  tunnel endpoints.  It has less protocol overhead than IPSec in Tunnel
11  *  mode and allows tunneling of every ETHER TYPE protocol (e.g.
12  *  ethernet, ip, arp ...). satp directly includes cryptography and
13  *  message authentication based on the methodes used by SRTP.  It is
14  *  intended to deliver a generic, scaleable and secure solution for
15  *  tunneling and relaying of packets of any protocol.
16  *  
17  *
18  *  Copyright (C) 2007-2008 Christian Pointner <equinox@anytun.org>
19  *
20  *  This file is part of uAnytun.
21  *
22  *  uAnytun is free software: you can redistribute it and/or modify
23  *  it under the terms of the GNU General Public License version 3 as
24  *  published by the Free Software Foundation.
25  *
26  *  uAnytun is distributed in the hope that it will be useful,
27  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
28  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29  *  GNU General Public License for more details.
30  *
31  *  You should have received a copy of the GNU General Public License
32  *  along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
33  */
34
35 #ifndef _LOG_H_
36 #define _LOG_H_
37
38 #define MSG_LENGTH_MAX 150
39
40 enum log_prio_enum { ERROR = 1, WARNING = 2, NOTICE = 3,
41                      INFO = 4, DEBUG = 5 };
42 typedef enum log_prio_enum log_prio_t;
43
44 const char* log_prio_to_string(log_prio_t prio);
45
46 enum log_target_type_enum { TARGET_SYSLOG , TARGET_STDOUT, TARGET_STDERR, TARGET_FILE , TARGET_UNKNOWN };
47 typedef enum log_target_type_enum log_target_type_t;
48
49 struct log_target_struct {
50   log_target_type_t type_;
51   int (*init)(struct log_target_struct* self, const char* conf);
52   void (*open)(struct log_target_struct* self);
53   void (*log)(struct log_target_struct* self, log_prio_t prio, const char* msg);
54   void (*close)(struct log_target_struct* self);
55   void (*clear)(struct log_target_struct* self);
56   int opened_;
57   int enabled_;
58   log_prio_t max_prio_;
59   void* param_;
60   struct log_target_struct* next_;
61 };
62 typedef struct log_target_struct log_target_t;
63
64
65 struct log_targets_struct {
66   log_target_t* first_;
67 };
68 typedef struct log_targets_struct log_targets_t;
69
70 int log_targets_target_exists(log_targets_t* targets, log_target_type_t type);
71 int log_targets_add(log_targets_t* targets, const char* conf);
72 void log_targets_log(log_targets_t* targets, log_prio_t prio, const char* msg);
73 void log_targets_clear(log_targets_t* targets);
74
75
76 struct log_struct {
77   log_prio_t max_prio_;
78   log_targets_t targets_;
79 };
80 typedef struct log_struct log_t;
81
82 void log_init();
83 void log_close();
84 void update_max_prio();
85 int log_add_target(const char* conf);
86 void log_printf(log_prio_t prio, const char* fmt, ...);
87 void log_print_hex_dump(log_prio_t prio, const u_int8_t* buf, u_int32_t len);
88
89 #endif