Matus Fabian | b4515b4 | 2018-11-19 04:25:32 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /** |
| 16 | * @file RFC5424 syslog protocol declarations |
| 17 | */ |
| 18 | #ifndef __included_syslog_h__ |
| 19 | #define __included_syslog_h__ |
| 20 | |
| 21 | #include <vlib/vlib.h> |
| 22 | #include <vnet/vnet.h> |
| 23 | #include <vnet/ip/ip4_packet.h> |
| 24 | |
| 25 | /* syslog message facilities */ |
| 26 | #define foreach_syslog_facility \ |
| 27 | _(0, KERNEL, "kernel") \ |
| 28 | _(1, USER_LEVEL, "user-level") \ |
| 29 | _(2, MAIL_SYSTEM, "mail-system") \ |
| 30 | _(3, SYSTEM_DAEMONS, "system-daemons") \ |
| 31 | _(4, SEC_AUTH, "security-authorization") \ |
| 32 | _(5, SYSLOGD, "syslogd") \ |
| 33 | _(6, LINE_PRINTER, "line-printer") \ |
| 34 | _(7, NETWORK_NEWS, "network-news") \ |
| 35 | _(8, UUCP, "uucp") \ |
| 36 | _(9, CLOCK, "clock-daemon") \ |
| 37 | _(11, FTP, "ftp-daemon") \ |
| 38 | _(12, NTP, "ntp-subsystem") \ |
| 39 | _(13, LOG_AUDIT, "log-audit") \ |
| 40 | _(14, LOG_ALERT, "log-alert") \ |
| 41 | _(16, LOCAL0, "local0") \ |
| 42 | _(17, LOCAL1, "local1") \ |
| 43 | _(18, LOCAL2, "local2") \ |
| 44 | _(19, LOCAL3, "local3") \ |
| 45 | _(20, LOCAL4, "local4") \ |
| 46 | _(21, LOCAL5, "local5") \ |
| 47 | _(22, LOCAL6, "local6") \ |
| 48 | _(23, LOCAL7, "local7") |
| 49 | |
| 50 | typedef enum |
| 51 | { |
| 52 | #define _(v, N, s) SYSLOG_FACILITY_##N = v, |
| 53 | foreach_syslog_facility |
| 54 | #undef _ |
| 55 | } syslog_facility_t; |
| 56 | |
| 57 | /* syslog message severities */ |
| 58 | #define foreach_syslog_severity \ |
| 59 | _(0, EMERGENCY, "emergency") \ |
| 60 | _(1, ALERT, "alert") \ |
| 61 | _(2, CRITICAL, "critical") \ |
| 62 | _(3, ERROR, "error") \ |
| 63 | _(4, WARNING, "warning") \ |
| 64 | _(5, NOTICE, "notice") \ |
| 65 | _(6, INFORMATIONAL, "informational") \ |
| 66 | _(7, DEBUG, "debug") |
| 67 | |
| 68 | typedef enum |
| 69 | { |
| 70 | #define _(v, N, s) SYSLOG_SEVERITY_##N = v, |
| 71 | foreach_syslog_severity |
| 72 | #undef _ |
| 73 | } syslog_severity_t; |
| 74 | |
| 75 | /** syslog header */ |
| 76 | typedef struct |
| 77 | { |
| 78 | /** facility value, part of priority */ |
| 79 | syslog_facility_t facility; |
| 80 | |
| 81 | /** severity value, part of priority */ |
| 82 | syslog_severity_t severity; |
| 83 | |
| 84 | /** message timestamp */ |
| 85 | f64 timestamp; |
| 86 | |
| 87 | /** application that originated the message RFC5424 6.2.5. */ |
| 88 | char *app_name; |
| 89 | |
| 90 | /** identify the type of message RFC5424 6.2.7. */ |
| 91 | char *msgid; |
| 92 | } syslog_header_t; |
| 93 | |
| 94 | /** syslog message */ |
| 95 | typedef struct |
| 96 | { |
| 97 | /** header */ |
| 98 | syslog_header_t header; |
| 99 | |
| 100 | /** structured data RFC5424 6.3. */ |
| 101 | u8 **structured_data; |
| 102 | u32 curr_sd_index; |
| 103 | |
| 104 | /** free-form message RFC5424 6.4. */ |
| 105 | u8 *msg; |
| 106 | } syslog_msg_t; |
| 107 | |
| 108 | typedef struct |
| 109 | { |
| 110 | /** process ID RFC5424 6.2.6. */ |
| 111 | u32 procid; |
| 112 | |
| 113 | /** time offset */ |
| 114 | f64 time_offset; |
| 115 | |
| 116 | /** IPv4 address of remote host (destination) */ |
| 117 | ip4_address_t collector; |
| 118 | |
| 119 | /** UDP port number of remote host (destination) */ |
| 120 | u16 collector_port; |
| 121 | |
| 122 | /** IPv4 address of sender (source) */ |
| 123 | ip4_address_t src_address; |
| 124 | |
| 125 | /** FIB table index */ |
| 126 | u32 fib_index; |
| 127 | |
| 128 | /** message size limit */ |
| 129 | u32 max_msg_size; |
| 130 | |
| 131 | /** severity filter (specified severity and greater match) */ |
| 132 | syslog_severity_t severity_filter; |
| 133 | |
| 134 | /** ip4-lookup node index */ |
| 135 | u32 ip4_lookup_node_index; |
| 136 | |
| 137 | /** convenience variables */ |
| 138 | vlib_main_t *vlib_main; |
| 139 | vnet_main_t *vnet_main; |
| 140 | } syslog_main_t; |
| 141 | |
| 142 | extern syslog_main_t syslog_main; |
| 143 | |
| 144 | /** |
| 145 | * @brief Initialize syslog message header |
| 146 | * |
| 147 | * @param facility facility value |
| 148 | * @param severity severity level |
| 149 | * @param app_name application that originated message RFC424 6.2.5. (optional) |
| 150 | * @param msgid identify the type of message RFC5424 6.2.7. (optional) |
| 151 | */ |
| 152 | void syslog_msg_init (syslog_msg_t * syslog_msg, syslog_facility_t facility, |
| 153 | syslog_severity_t severity, char *app_name, |
| 154 | char *msgid); |
| 155 | /** |
| 156 | * @brief Initialize structured data element |
| 157 | * |
| 158 | * @param sd_id structured data element name RFC5424 6.3.2. |
| 159 | */ |
| 160 | void syslog_msg_sd_init (syslog_msg_t * syslog_msg, char *sd_id); |
| 161 | |
| 162 | /** |
| 163 | * @brief Add structured data elemnt parameter name-value pair RFC5424 6.3.3. |
| 164 | */ |
| 165 | void syslog_msg_add_sd_param (syslog_msg_t * syslog_msg, char *name, |
| 166 | char *fmt, ...); |
| 167 | |
| 168 | /** |
| 169 | * @brief Add free-form message RFC5424 6.4. |
| 170 | */ |
| 171 | void syslog_msg_add_msg (syslog_msg_t * syslog_msg, char *fmt, ...); |
| 172 | |
| 173 | /** |
| 174 | * @brief Send syslog message |
| 175 | */ |
| 176 | int syslog_msg_send (syslog_msg_t * syslog_msg); |
| 177 | |
| 178 | /** |
| 179 | * @brief Set syslog sender configuration |
| 180 | * |
| 181 | * @param collector IPv4 address of syslog collector (destination) |
| 182 | * @param collector_port UDP port of syslog colector (destination) |
| 183 | * @param src IPv4 address of syslog sender (source) |
| 184 | * @param vrf_id VRF/FIB table ID |
| 185 | * @param max_msg_size maximum message length |
| 186 | */ |
| 187 | vnet_api_error_t set_syslog_sender (ip4_address_t * collector, |
| 188 | u16 collector_port, ip4_address_t * src, |
| 189 | u32 vrf_id, u32 max_msg_size); |
| 190 | |
| 191 | /** |
| 192 | * @brief Check if syslog logging is enabled |
| 193 | * |
| 194 | * @return 1 if syslog logging is enabled, 0 otherwise |
| 195 | */ |
| 196 | always_inline int |
| 197 | syslog_is_enabled (void) |
| 198 | { |
| 199 | syslog_main_t *sm = &syslog_main; |
| 200 | |
| 201 | return sm->collector.as_u32 ? 1 : 0; |
| 202 | } |
| 203 | |
| 204 | /** |
| 205 | * @brief Severity filter test |
| 206 | * |
| 207 | * @return 1 if message with specified severity is not selected to be logged |
| 208 | */ |
| 209 | always_inline int |
| 210 | syslog_severity_filter_block (syslog_severity_t s) |
| 211 | { |
| 212 | syslog_main_t *sm = &syslog_main; |
| 213 | |
| 214 | return (sm->severity_filter < s); |
| 215 | } |
| 216 | |
| 217 | #endif /* __included_syslog_h__ */ |
| 218 | |
| 219 | /* |
| 220 | * fd.io coding-style-patch-verification: ON |
| 221 | * |
| 222 | * Local Variables: |
| 223 | * eval: (c-set-style "gnu") |
| 224 | * End: |
| 225 | */ |