Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 1 | #include <stdio.h> |
| 2 | |
| 3 | #include <common/cfgparse.h> |
| 4 | #include <common/chunk.h> |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 5 | #include <common/buffer.h> |
Willy Tarreau | 9f3f254 | 2016-12-21 20:30:05 +0100 | [diff] [blame] | 6 | #include <common/errors.h> |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 7 | #include <proto/arg.h> |
| 8 | #include <proto/log.h> |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 9 | #include <proto/proto_http.h> |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 10 | #include <proto/sample.h> |
| 11 | #include <import/xxhash.h> |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 12 | #include <import/lru.h> |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 13 | #include <51Degrees.h> |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 14 | |
| 15 | struct _51d_property_names { |
| 16 | struct list list; |
| 17 | char *name; |
| 18 | }; |
| 19 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 20 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 21 | static struct lru64_head *_51d_lru_tree = NULL; |
| 22 | static unsigned long long _51d_lru_seed; |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 23 | #endif |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 24 | |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 25 | static struct { |
| 26 | char property_separator; /* the separator to use in the response for the values. this is taken from 51degrees-property-separator from config. */ |
| 27 | struct list property_names; /* list of properties to load into the data set. this is taken from 51degrees-property-name-list from config. */ |
| 28 | char *data_file_path; |
| 29 | int header_count; /* number of HTTP headers related to device detection. */ |
| 30 | struct chunk *header_names; /* array of HTTP header names. */ |
| 31 | fiftyoneDegreesDataSet data_set; /* data set used with the pattern and trie detection methods. */ |
| 32 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
| 33 | fiftyoneDegreesWorksetPool *pool; /* pool of worksets to avoid creating a new one for each request. */ |
| 34 | #endif |
| 35 | #ifdef FIFTYONEDEGREES_H_TRIE_INCLUDED |
| 36 | int32_t *header_offsets; /* offsets to the HTTP header name string. */ |
| 37 | fiftyoneDegreesDeviceOffsets device_offsets; /* Memory used for device offsets. */ |
| 38 | #endif |
| 39 | int cache_size; |
| 40 | } global_51degrees = { |
| 41 | .property_separator = ',', |
| 42 | .property_names = LIST_HEAD_INIT(global_51degrees.property_names), |
| 43 | .data_file_path = NULL, |
| 44 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
| 45 | .data_set = { }, |
| 46 | #endif |
| 47 | .cache_size = 0, |
| 48 | }; |
| 49 | |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 50 | static int _51d_data_file(char **args, int section_type, struct proxy *curpx, |
| 51 | struct proxy *defpx, const char *file, int line, |
| 52 | char **err) |
| 53 | { |
| 54 | if (*(args[1]) == 0) { |
| 55 | memprintf(err, |
| 56 | "'%s' expects a filepath to a 51Degrees trie or pattern data file.", |
| 57 | args[0]); |
| 58 | return -1; |
| 59 | } |
| 60 | |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 61 | if (global_51degrees.data_file_path) |
| 62 | free(global_51degrees.data_file_path); |
| 63 | global_51degrees.data_file_path = strdup(args[1]); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 64 | |
| 65 | return 0; |
| 66 | } |
| 67 | |
| 68 | static int _51d_property_name_list(char **args, int section_type, struct proxy *curpx, |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 69 | struct proxy *defpx, const char *file, int line, |
| 70 | char **err) |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 71 | { |
| 72 | int cur_arg = 1; |
| 73 | struct _51d_property_names *name; |
| 74 | |
| 75 | if (*(args[cur_arg]) == 0) { |
| 76 | memprintf(err, |
| 77 | "'%s' expects at least one 51Degrees property name.", |
| 78 | args[0]); |
| 79 | return -1; |
| 80 | } |
| 81 | |
| 82 | while (*(args[cur_arg])) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 83 | name = calloc(1, sizeof(*name)); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 84 | name->name = strdup(args[cur_arg]); |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 85 | LIST_ADDQ(&global_51degrees.property_names, &name->list); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 86 | ++cur_arg; |
| 87 | } |
| 88 | |
| 89 | return 0; |
| 90 | } |
| 91 | |
| 92 | static int _51d_property_separator(char **args, int section_type, struct proxy *curpx, |
| 93 | struct proxy *defpx, const char *file, int line, |
| 94 | char **err) |
| 95 | { |
| 96 | if (*(args[1]) == 0) { |
| 97 | memprintf(err, |
| 98 | "'%s' expects a single character.", |
| 99 | args[0]); |
| 100 | return -1; |
| 101 | } |
| 102 | if (strlen(args[1]) > 1) { |
| 103 | memprintf(err, |
| 104 | "'%s' expects a single character, got '%s'.", |
| 105 | args[0], args[1]); |
| 106 | return -1; |
| 107 | } |
| 108 | |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 109 | global_51degrees.property_separator = *args[1]; |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 114 | static int _51d_cache_size(char **args, int section_type, struct proxy *curpx, |
| 115 | struct proxy *defpx, const char *file, int line, |
| 116 | char **err) |
| 117 | { |
| 118 | if (*(args[1]) == 0) { |
| 119 | memprintf(err, |
| 120 | "'%s' expects a positive numeric value.", |
| 121 | args[0]); |
| 122 | return -1; |
| 123 | } |
| 124 | |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 125 | global_51degrees.cache_size = atoi(args[1]); |
| 126 | if (global_51degrees.cache_size < 0) { |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 127 | memprintf(err, |
| 128 | "'%s' expects a positive numeric value, got '%s'.", |
| 129 | args[0], args[1]); |
| 130 | return -1; |
| 131 | } |
| 132 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 133 | return 0; |
| 134 | } |
| 135 | |
| 136 | static int _51d_fetch_check(struct arg *arg, char **err_msg) |
| 137 | { |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 138 | if (global_51degrees.data_file_path) |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 139 | return 1; |
| 140 | |
| 141 | memprintf(err_msg, "51Degrees data file is not specified (parameter '51degrees-data-file')"); |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 142 | return 0; |
| 143 | } |
| 144 | |
Dragan Dosen | 9373fc5 | 2015-08-07 16:41:23 +0200 | [diff] [blame] | 145 | static int _51d_conv_check(struct arg *arg, struct sample_conv *conv, |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 146 | const char *file, int line, char **err_msg) |
Dragan Dosen | 9373fc5 | 2015-08-07 16:41:23 +0200 | [diff] [blame] | 147 | { |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 148 | if (global_51degrees.data_file_path) |
Dragan Dosen | 9373fc5 | 2015-08-07 16:41:23 +0200 | [diff] [blame] | 149 | return 1; |
| 150 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 151 | memprintf(err_msg, "51Degrees data file is not specified (parameter '51degrees-data-file')"); |
Dragan Dosen | 9373fc5 | 2015-08-07 16:41:23 +0200 | [diff] [blame] | 152 | return 0; |
| 153 | } |
| 154 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 155 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
ben@51degrees.com | c9dfa24 | 2016-01-08 13:47:46 +0000 | [diff] [blame] | 156 | static void _51d_lru_free(void *cache_entry) |
| 157 | { |
| 158 | struct chunk *ptr = cache_entry; |
| 159 | |
| 160 | if (!ptr) |
| 161 | return; |
| 162 | |
| 163 | free(ptr->str); |
| 164 | free(ptr); |
| 165 | } |
| 166 | |
| 167 | /* Allocates memory freeing space in the cache if necessary. |
| 168 | */ |
| 169 | static void *_51d_malloc(int size) |
| 170 | { |
| 171 | void *ptr = malloc(size); |
| 172 | |
| 173 | if (!ptr) { |
| 174 | /* free the oldest 10 entries from lru to free up some memory |
| 175 | * then try allocating memory again */ |
| 176 | lru64_kill_oldest(_51d_lru_tree, 10); |
| 177 | ptr = malloc(size); |
| 178 | } |
| 179 | |
| 180 | return ptr; |
| 181 | } |
| 182 | |
James Rosewell | 63426cb | 2015-09-18 19:53:05 +0100 | [diff] [blame] | 183 | /* Insert the data associated with the sample into the cache as a fresh item. |
| 184 | */ |
ben@51degrees.com | 82a9d76 | 2016-01-08 13:42:41 +0000 | [diff] [blame] | 185 | static void _51d_insert_cache_entry(struct sample *smp, struct lru64 *lru, void* domain) |
James Rosewell | 63426cb | 2015-09-18 19:53:05 +0100 | [diff] [blame] | 186 | { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 187 | struct chunk *cache_entry = _51d_malloc(sizeof(*cache_entry)); |
James Rosewell | 63426cb | 2015-09-18 19:53:05 +0100 | [diff] [blame] | 188 | |
| 189 | if (!cache_entry) |
| 190 | return; |
| 191 | |
ben@51degrees.com | c9dfa24 | 2016-01-08 13:47:46 +0000 | [diff] [blame] | 192 | cache_entry->str = _51d_malloc(smp->data.u.str.len + 1); |
| 193 | if (!cache_entry->str) { |
| 194 | free(cache_entry); |
James Rosewell | 63426cb | 2015-09-18 19:53:05 +0100 | [diff] [blame] | 195 | return; |
ben@51degrees.com | c9dfa24 | 2016-01-08 13:47:46 +0000 | [diff] [blame] | 196 | } |
James Rosewell | 63426cb | 2015-09-18 19:53:05 +0100 | [diff] [blame] | 197 | |
| 198 | memcpy(cache_entry->str, smp->data.u.str.str, smp->data.u.str.len); |
| 199 | cache_entry->str[smp->data.u.str.len] = 0; |
| 200 | cache_entry->len = smp->data.u.str.len; |
ben@51degrees.com | c9dfa24 | 2016-01-08 13:47:46 +0000 | [diff] [blame] | 201 | lru64_commit(lru, cache_entry, domain, 0, _51d_lru_free); |
James Rosewell | 63426cb | 2015-09-18 19:53:05 +0100 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | /* Retrieves the data from the cache and sets the sample data to this string. |
| 205 | */ |
| 206 | static void _51d_retrieve_cache_entry(struct sample *smp, struct lru64 *lru) |
| 207 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 208 | struct chunk *cache_entry = lru->data; |
James Rosewell | 63426cb | 2015-09-18 19:53:05 +0100 | [diff] [blame] | 209 | smp->data.u.str.str = cache_entry->str; |
| 210 | smp->data.u.str.len = cache_entry->len; |
| 211 | } |
| 212 | #endif |
| 213 | |
| 214 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 215 | /* Sets the important HTTP headers ahead of the detection |
| 216 | */ |
| 217 | static void _51d_set_headers(struct sample *smp, fiftyoneDegreesWorkset *ws) |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 218 | { |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 219 | struct hdr_idx *idx; |
| 220 | struct hdr_ctx ctx; |
| 221 | const struct http_msg *msg; |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 222 | int i; |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 223 | |
| 224 | idx = &smp->strm->txn->hdr_idx; |
| 225 | msg = &smp->strm->txn->req; |
| 226 | |
| 227 | ws->importantHeadersCount = 0; |
| 228 | |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 229 | for (i = 0; i < global_51degrees.header_count; i++) { |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 230 | ctx.idx = 0; |
| 231 | if (http_find_full_header2( |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 232 | (global_51degrees.header_names + i)->str, |
| 233 | (global_51degrees.header_names + i)->len, |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 234 | msg->chn->buf->p, idx, &ctx) == 1) { |
| 235 | ws->importantHeaders[ws->importantHeadersCount].header = ws->dataSet->httpHeaders + i; |
| 236 | ws->importantHeaders[ws->importantHeadersCount].headerValue = ctx.line + ctx.val; |
| 237 | ws->importantHeaders[ws->importantHeadersCount].headerValueLength = ctx.vlen; |
| 238 | ws->importantHeadersCount++; |
| 239 | } |
| 240 | } |
| 241 | } |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 242 | #endif |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 243 | |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 244 | #ifdef FIFTYONEDEGREES_H_TRIE_INCLUDED |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 245 | static void _51d_set_device_offsets(struct sample *smp) |
| 246 | { |
| 247 | struct hdr_idx *idx; |
| 248 | struct hdr_ctx ctx; |
| 249 | const struct http_msg *msg; |
| 250 | int index; |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 251 | fiftyoneDegreesDeviceOffsets *offsets = &global_51degrees.device_offsets; |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 252 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 253 | idx = &smp->strm->txn->hdr_idx; |
| 254 | msg = &smp->strm->txn->req; |
| 255 | offsets->size = 0; |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 256 | |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 257 | for (index = 0; index < global_51degrees.header_count; index++) { |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 258 | ctx.idx = 0; |
| 259 | if (http_find_full_header2( |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 260 | (global_51degrees.header_names + index)->str, |
| 261 | (global_51degrees.header_names + index)->len, |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 262 | msg->chn->buf->p, idx, &ctx) == 1) { |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 263 | (offsets->firstOffset + offsets->size)->httpHeaderOffset = *(global_51degrees.header_offsets + index); |
| 264 | (offsets->firstOffset + offsets->size)->deviceOffset = fiftyoneDegreesGetDeviceOffset(&global_51degrees.data_set, ctx.line + ctx.val); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 265 | offsets->size++; |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 266 | } |
| 267 | } |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 268 | } |
| 269 | #endif |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 270 | |
| 271 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 272 | /* Provides a hash code for the important HTTP headers. |
| 273 | */ |
| 274 | unsigned long long _51d_req_hash(const struct arg *args, fiftyoneDegreesWorkset* ws) |
| 275 | { |
| 276 | unsigned long long seed = _51d_lru_seed ^ (long)args; |
| 277 | unsigned long long hash = 0; |
| 278 | int i; |
| 279 | for(i = 0; i < ws->importantHeadersCount; i++) { |
| 280 | hash ^= ws->importantHeaders[i].header->headerNameOffset; |
| 281 | hash ^= XXH64(ws->importantHeaders[i].headerValue, |
| 282 | ws->importantHeaders[i].headerValueLength, |
| 283 | seed); |
| 284 | } |
| 285 | return hash; |
| 286 | } |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 287 | #endif |
| 288 | |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 289 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 290 | static void _51d_process_match(const struct arg *args, struct sample *smp, fiftyoneDegreesWorkset* ws) |
| 291 | { |
| 292 | char *methodName; |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 293 | #endif |
| 294 | #ifdef FIFTYONEDEGREES_H_TRIE_INCLUDED |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 295 | static void _51d_process_match(const struct arg *args, struct sample *smp) |
| 296 | { |
| 297 | char valuesBuffer[1024]; |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 298 | const char **requiredProperties = fiftyoneDegreesGetRequiredPropertiesNames(&global_51degrees.data_set); |
| 299 | int requiredPropertiesCount = fiftyoneDegreesGetRequiredPropertiesCount(&global_51degrees.data_set); |
| 300 | fiftyoneDegreesDeviceOffsets *deviceOffsets = &global_51degrees.device_offsets; |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 301 | |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 302 | #endif |
| 303 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 304 | char no_data[] = "NoData"; /* response when no data could be found */ |
| 305 | struct chunk *temp = get_trash_chunk(); |
| 306 | int j, i = 0, found; |
| 307 | const char* property_name; |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 308 | |
| 309 | /* Loop through property names passed to the filter and fetch them from the dataset. */ |
| 310 | while (args[i].data.str.str) { |
| 311 | /* Try to find request property in dataset. */ |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 312 | found = 0; |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 313 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
| 314 | if (strcmp("Method", args[i].data.str.str) == 0) { |
| 315 | switch(ws->method) { |
| 316 | case EXACT: methodName = "Exact"; break; |
| 317 | case NUMERIC: methodName = "Numeric"; break; |
| 318 | case NEAREST: methodName = "Nearest"; break; |
| 319 | case CLOSEST: methodName = "Closest"; break; |
| 320 | default: |
| 321 | case NONE: methodName = "None"; break; |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 322 | } |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 323 | chunk_appendf(temp, "%s", methodName); |
| 324 | found = 1; |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 325 | } |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 326 | else if (strcmp("Difference", args[i].data.str.str) == 0) { |
| 327 | chunk_appendf(temp, "%d", ws->difference); |
| 328 | found = 1; |
| 329 | } |
| 330 | else if (strcmp("Rank", args[i].data.str.str) == 0) { |
| 331 | chunk_appendf(temp, "%d", fiftyoneDegreesGetSignatureRank(ws)); |
| 332 | found = 1; |
| 333 | } |
| 334 | else { |
| 335 | for (j = 0; j < ws->dataSet->requiredPropertyCount; j++) { |
| 336 | property_name = fiftyoneDegreesGetPropertyName(ws->dataSet, ws->dataSet->requiredProperties[j]); |
| 337 | if (strcmp(property_name, args[i].data.str.str) == 0) { |
| 338 | found = 1; |
| 339 | fiftyoneDegreesSetValues(ws, j); |
| 340 | chunk_appendf(temp, "%s", fiftyoneDegreesGetValueName(ws->dataSet, *ws->values)); |
| 341 | break; |
| 342 | } |
| 343 | } |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 344 | } |
| 345 | #endif |
| 346 | #ifdef FIFTYONEDEGREES_H_TRIE_INCLUDED |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 347 | found = 0; |
| 348 | for (j = 0; j < requiredPropertiesCount; j++) { |
| 349 | property_name = requiredProperties[j]; |
| 350 | if (strcmp(property_name, args[i].data.str.str) == 0 && |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 351 | fiftyoneDegreesGetValueFromOffsets(&global_51degrees.data_set, deviceOffsets, j, valuesBuffer, 1024) > 0) { |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 352 | found = 1; |
| 353 | chunk_appendf(temp, "%s", valuesBuffer); |
| 354 | break; |
| 355 | } |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 356 | } |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 357 | #endif |
ben@51degrees.com | d384252 | 2016-01-08 13:52:32 +0000 | [diff] [blame] | 358 | if (!found) |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 359 | chunk_appendf(temp, "%s", no_data); |
ben@51degrees.com | d384252 | 2016-01-08 13:52:32 +0000 | [diff] [blame] | 360 | |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 361 | /* Add separator. */ |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 362 | chunk_appendf(temp, "%c", global_51degrees.property_separator); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 363 | ++i; |
| 364 | } |
| 365 | |
| 366 | if (temp->len) { |
| 367 | --temp->len; |
| 368 | temp->str[temp->len] = '\0'; |
| 369 | } |
| 370 | |
Thierry FOURNIER | 2046c46 | 2015-08-20 13:42:12 +0200 | [diff] [blame] | 371 | smp->data.u.str.str = temp->str; |
James Rosewell | 63426cb | 2015-09-18 19:53:05 +0100 | [diff] [blame] | 372 | smp->data.u.str.len = temp->len; |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | static int _51d_fetch(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 376 | { |
| 377 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
| 378 | fiftyoneDegreesWorkset* ws; /* workset for detection */ |
| 379 | struct lru64 *lru = NULL; |
| 380 | #endif |
| 381 | |
| 382 | /* Needed to ensure that the HTTP message has been fully recieved when |
| 383 | * used with TCP operation. Not required for HTTP operation. |
| 384 | * Data type has to be reset to ensure the string output is processed |
| 385 | * correctly. |
| 386 | */ |
| 387 | CHECK_HTTP_MESSAGE_FIRST(); |
| 388 | smp->data.type = SMP_T_STR; |
| 389 | |
ben@51degrees.com | 82a9d76 | 2016-01-08 13:42:41 +0000 | [diff] [blame] | 390 | /* Flags the sample to show it uses constant memory*/ |
| 391 | smp->flags |= SMP_F_CONST; |
| 392 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 393 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
| 394 | |
| 395 | /* Get only the headers needed for device detection so they can be used |
| 396 | * with the cache to return previous results. Pattern is slower than |
| 397 | * Trie so caching will help improve performance. |
| 398 | */ |
| 399 | |
| 400 | /* Get a workset from the pool which will later contain detection results. */ |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 401 | ws = fiftyoneDegreesWorksetPoolGet(global_51degrees.pool); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 402 | if (!ws) |
| 403 | return 0; |
| 404 | |
| 405 | /* Set the important HTTP headers for this request in the workset. */ |
| 406 | _51d_set_headers(smp, ws); |
| 407 | |
| 408 | /* Check the cache to see if there's results for these headers already. */ |
| 409 | if (_51d_lru_tree) { |
| 410 | lru = lru64_get(_51d_req_hash(args, ws), |
ben@51degrees.com | 82a9d76 | 2016-01-08 13:42:41 +0000 | [diff] [blame] | 411 | _51d_lru_tree, (void*)args, 0); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 412 | if (lru && lru->domain) { |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 413 | fiftyoneDegreesWorksetPoolRelease(global_51degrees.pool, ws); |
James Rosewell | 63426cb | 2015-09-18 19:53:05 +0100 | [diff] [blame] | 414 | _51d_retrieve_cache_entry(smp, lru); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 415 | return 1; |
| 416 | } |
| 417 | } |
| 418 | |
| 419 | fiftyoneDegreesMatchForHttpHeaders(ws); |
| 420 | |
| 421 | _51d_process_match(args, smp, ws); |
| 422 | |
| 423 | #endif |
| 424 | |
| 425 | #ifdef FIFTYONEDEGREES_H_TRIE_INCLUDED |
| 426 | |
| 427 | /* Trie is very fast so all the headers can be passed in and the result |
| 428 | * returned faster than the hashing algorithm process. |
| 429 | */ |
| 430 | _51d_set_device_offsets(smp); |
| 431 | _51d_process_match(args, smp); |
| 432 | |
| 433 | #endif |
| 434 | |
| 435 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 436 | fiftyoneDegreesWorksetPoolRelease(global_51degrees.pool, ws); |
ben@51degrees.com | d384252 | 2016-01-08 13:52:32 +0000 | [diff] [blame] | 437 | if (lru) |
ben@51degrees.com | 82a9d76 | 2016-01-08 13:42:41 +0000 | [diff] [blame] | 438 | _51d_insert_cache_entry(smp, lru, (void*)args); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 439 | #endif |
| 440 | |
| 441 | return 1; |
| 442 | } |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 443 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 444 | static int _51d_conv(const struct arg *args, struct sample *smp, void *private) |
| 445 | { |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 446 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 447 | fiftyoneDegreesWorkset* ws; /* workset for detection */ |
| 448 | struct lru64 *lru = NULL; |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 449 | #endif |
| 450 | |
ben@51degrees.com | 82a9d76 | 2016-01-08 13:42:41 +0000 | [diff] [blame] | 451 | /* Flags the sample to show it uses constant memory*/ |
| 452 | smp->flags |= SMP_F_CONST; |
| 453 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 454 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
| 455 | |
| 456 | /* Look in the list. */ |
| 457 | if (_51d_lru_tree) { |
| 458 | unsigned long long seed = _51d_lru_seed ^ (long)args; |
| 459 | |
| 460 | lru = lru64_get(XXH64(smp->data.u.str.str, smp->data.u.str.len, seed), |
ben@51degrees.com | 82a9d76 | 2016-01-08 13:42:41 +0000 | [diff] [blame] | 461 | _51d_lru_tree, (void*)args, 0); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 462 | if (lru && lru->domain) { |
James Rosewell | 63426cb | 2015-09-18 19:53:05 +0100 | [diff] [blame] | 463 | _51d_retrieve_cache_entry(smp, lru); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 464 | return 1; |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | /* Create workset. This will later contain detection results. */ |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 469 | ws = fiftyoneDegreesWorksetPoolGet(global_51degrees.pool); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 470 | if (!ws) |
| 471 | return 0; |
| 472 | #endif |
| 473 | |
| 474 | /* Duplicate the data and remove the "const" flag before device detection. */ |
| 475 | if (!smp_dup(smp)) |
| 476 | return 0; |
| 477 | |
| 478 | smp->data.u.str.str[smp->data.u.str.len] = '\0'; |
| 479 | |
| 480 | /* Perform detection. */ |
| 481 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
| 482 | fiftyoneDegreesMatch(ws, smp->data.u.str.str); |
| 483 | _51d_process_match(args, smp, ws); |
| 484 | #endif |
| 485 | #ifdef FIFTYONEDEGREES_H_TRIE_INCLUDED |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 486 | global_51degrees.device_offsets.firstOffset->deviceOffset = fiftyoneDegreesGetDeviceOffset(&global_51degrees.data_set, smp->data.u.str.str); |
| 487 | global_51degrees.device_offsets.size = 1; |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 488 | _51d_process_match(args, smp); |
| 489 | #endif |
| 490 | |
| 491 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 492 | fiftyoneDegreesWorksetPoolRelease(global_51degrees.pool, ws); |
ben@51degrees.com | d384252 | 2016-01-08 13:52:32 +0000 | [diff] [blame] | 493 | if (lru) |
ben@51degrees.com | 82a9d76 | 2016-01-08 13:42:41 +0000 | [diff] [blame] | 494 | _51d_insert_cache_entry(smp, lru, (void*)args); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 495 | #endif |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 496 | |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 497 | return 1; |
| 498 | } |
| 499 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 500 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
| 501 | void _51d_init_http_headers() |
| 502 | { |
| 503 | int index = 0; |
| 504 | const fiftyoneDegreesAsciiString *headerName; |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 505 | fiftyoneDegreesDataSet *ds = &global_51degrees.data_set; |
| 506 | global_51degrees.header_count = ds->httpHeadersCount; |
| 507 | global_51degrees.header_names = malloc(global_51degrees.header_count * sizeof(struct chunk)); |
| 508 | for (index = 0; index < global_51degrees.header_count; index++) { |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 509 | headerName = fiftyoneDegreesGetString(ds, ds->httpHeaders[index].headerNameOffset); |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 510 | (global_51degrees.header_names + index)->str = (char*)&headerName->firstByte; |
| 511 | (global_51degrees.header_names + index)->len = headerName->length - 1; |
| 512 | (global_51degrees.header_names + index)->size = (global_51degrees.header_names + index)->len; |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 513 | } |
| 514 | } |
| 515 | #endif |
| 516 | |
| 517 | #ifdef FIFTYONEDEGREES_H_TRIE_INCLUDED |
| 518 | void _51d_init_http_headers() |
| 519 | { |
| 520 | int index = 0; |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 521 | fiftyoneDegreesDataSet *ds = &global_51degrees.data_set; |
| 522 | global_51degrees.header_count = fiftyoneDegreesGetHttpHeaderCount(ds); |
| 523 | global_51degrees.device_offsets.firstOffset = malloc( |
| 524 | global_51degrees.header_count * sizeof(fiftyoneDegreesDeviceOffset)); |
| 525 | global_51degrees.header_names = malloc(global_51degrees.header_count * sizeof(struct chunk)); |
| 526 | global_51degrees.header_offsets = malloc(global_51degrees.header_count * sizeof(int32_t)); |
| 527 | for (index = 0; index < global_51degrees.header_count; index++) { |
| 528 | global_51degrees.header_offsets[index] = fiftyoneDegreesGetHttpHeaderNameOffset(ds, index); |
| 529 | global_51degrees.header_names[index].str = (char*)fiftyoneDegreesGetHttpHeaderNamePointer(ds, index); |
| 530 | global_51degrees.header_names[index].len = strlen(global_51degrees.header_names[index].str); |
| 531 | global_51degrees.header_names[index].size = global_51degrees.header_names[index].len; |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 532 | } |
| 533 | } |
| 534 | #endif |
| 535 | |
Willy Tarreau | 9f3f254 | 2016-12-21 20:30:05 +0100 | [diff] [blame] | 536 | /* |
| 537 | * module init / deinit functions. Returns 0 if OK, or a combination of ERR_*. |
| 538 | */ |
| 539 | static int init_51degrees(void) |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 540 | { |
| 541 | int i = 0; |
| 542 | struct chunk *temp; |
| 543 | struct _51d_property_names *name; |
| 544 | char **_51d_property_list = NULL; |
| 545 | fiftyoneDegreesDataSetInitStatus _51d_dataset_status = DATA_SET_INIT_STATUS_NOT_SET; |
| 546 | |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 547 | if (!global_51degrees.data_file_path) |
Willy Tarreau | 9f3f254 | 2016-12-21 20:30:05 +0100 | [diff] [blame] | 548 | return 0; |
Dragan Dosen | 9373fc5 | 2015-08-07 16:41:23 +0200 | [diff] [blame] | 549 | |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 550 | if (!LIST_ISEMPTY(&global_51degrees.property_names)) { |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 551 | i = 0; |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 552 | list_for_each_entry(name, &global_51degrees.property_names, list) |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 553 | ++i; |
| 554 | _51d_property_list = calloc(i, sizeof(char *)); |
| 555 | |
| 556 | i = 0; |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 557 | list_for_each_entry(name, &global_51degrees.property_names, list) |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 558 | _51d_property_list[i++] = name->name; |
| 559 | } |
| 560 | |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 561 | _51d_dataset_status = fiftyoneDegreesInitWithPropertyArray(global_51degrees.data_file_path, &global_51degrees.data_set, (const char**)_51d_property_list, i); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 562 | |
| 563 | temp = get_trash_chunk(); |
| 564 | chunk_reset(temp); |
| 565 | |
| 566 | switch (_51d_dataset_status) { |
| 567 | case DATA_SET_INIT_STATUS_SUCCESS: |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 568 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
| 569 | /* only 1 workset in the pool because HAProxy is currently single threaded |
| 570 | * this value should be set to the number of threads in future versions. |
| 571 | */ |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 572 | global_51degrees.pool = fiftyoneDegreesWorksetPoolCreate(&global_51degrees.data_set, NULL, 1); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 573 | #endif |
| 574 | _51d_init_http_headers(); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 575 | break; |
| 576 | case DATA_SET_INIT_STATUS_INSUFFICIENT_MEMORY: |
| 577 | chunk_printf(temp, "Insufficient memory."); |
| 578 | break; |
| 579 | case DATA_SET_INIT_STATUS_CORRUPT_DATA: |
| 580 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
| 581 | chunk_printf(temp, "Corrupt data file. Check that the data file provided is uncompressed and Pattern data format."); |
| 582 | #endif |
| 583 | #ifdef FIFTYONEDEGREES_H_TRIE_INCLUDED |
| 584 | chunk_printf(temp, "Corrupt data file. Check that the data file provided is uncompressed and Trie data format."); |
| 585 | #endif |
| 586 | break; |
| 587 | case DATA_SET_INIT_STATUS_INCORRECT_VERSION: |
| 588 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
| 589 | chunk_printf(temp, "Incorrect version. Check that the data file provided is uncompressed and Pattern data format."); |
| 590 | #endif |
| 591 | #ifdef FIFTYONEDEGREES_H_TRIE_INCLUDED |
| 592 | chunk_printf(temp, "Incorrect version. Check that the data file provided is uncompressed and Trie data format."); |
| 593 | #endif |
| 594 | break; |
| 595 | case DATA_SET_INIT_STATUS_FILE_NOT_FOUND: |
| 596 | chunk_printf(temp, "File not found."); |
| 597 | break; |
ben51degrees | 1f077eb | 2016-07-06 12:07:21 +0100 | [diff] [blame] | 598 | case DATA_SET_INIT_STATUS_NULL_POINTER: |
| 599 | chunk_printf(temp, "Null pointer to the existing dataset or memory location."); |
| 600 | break; |
| 601 | case DATA_SET_INIT_STATUS_POINTER_OUT_OF_BOUNDS: |
| 602 | chunk_printf(temp, "Allocated continuous memory containing 51Degrees data file appears to be smaller than expected. Most likely" |
| 603 | " because the data file was not fully loaded into the allocated memory."); |
| 604 | break; |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 605 | case DATA_SET_INIT_STATUS_NOT_SET: |
| 606 | chunk_printf(temp, "Data set not initialised."); |
| 607 | break; |
Dragan Dosen | 483b93c | 2017-09-27 12:46:44 +0200 | [diff] [blame] | 608 | default: |
| 609 | chunk_printf(temp, "Other error."); |
| 610 | break; |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 611 | } |
| 612 | if (_51d_dataset_status != DATA_SET_INIT_STATUS_SUCCESS) { |
| 613 | if (temp->len) |
| 614 | Alert("51Degrees Setup - Error reading 51Degrees data file. %s\n", temp->str); |
| 615 | else |
| 616 | Alert("51Degrees Setup - Error reading 51Degrees data file.\n"); |
Willy Tarreau | 9f3f254 | 2016-12-21 20:30:05 +0100 | [diff] [blame] | 617 | return ERR_ALERT | ERR_FATAL; |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 618 | } |
| 619 | free(_51d_property_list); |
| 620 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 621 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 622 | _51d_lru_seed = random(); |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 623 | if (global_51degrees.cache_size) { |
| 624 | _51d_lru_tree = lru64_new(global_51degrees.cache_size); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 625 | } |
| 626 | #endif |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 627 | |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 628 | return 0; |
| 629 | } |
| 630 | |
Willy Tarreau | 7ac4c20 | 2016-12-21 20:59:01 +0100 | [diff] [blame] | 631 | static void deinit_51degrees(void) |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 632 | { |
| 633 | struct _51d_property_names *_51d_prop_name, *_51d_prop_nameb; |
| 634 | |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 635 | free(global_51degrees.header_names); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 636 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 637 | fiftyoneDegreesWorksetPoolFree(global_51degrees.pool); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 638 | #endif |
| 639 | #ifdef FIFTYONEDEGREES_H_TRIE_INCLUDED |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 640 | free(global_51degrees.device_offsets.firstOffset); |
| 641 | free(global_51degrees.header_offsets); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 642 | #endif |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 643 | fiftyoneDegreesDataSetFree(&global_51degrees.data_set); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 644 | |
Willy Tarreau | b7a6714 | 2016-12-21 21:18:44 +0100 | [diff] [blame] | 645 | free(global_51degrees.data_file_path); global_51degrees.data_file_path = NULL; |
| 646 | list_for_each_entry_safe(_51d_prop_name, _51d_prop_nameb, &global_51degrees.property_names, list) { |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 647 | LIST_DEL(&_51d_prop_name->list); |
| 648 | free(_51d_prop_name); |
| 649 | } |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 650 | |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 651 | #ifdef FIFTYONEDEGREES_H_PATTERN_INCLUDED |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 652 | while (lru64_destroy(_51d_lru_tree)); |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 653 | #endif |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 654 | } |
| 655 | |
| 656 | static struct cfg_kw_list _51dcfg_kws = {{ }, { |
| 657 | { CFG_GLOBAL, "51degrees-data-file", _51d_data_file }, |
| 658 | { CFG_GLOBAL, "51degrees-property-name-list", _51d_property_name_list }, |
| 659 | { CFG_GLOBAL, "51degrees-property-separator", _51d_property_separator }, |
Dragan Dosen | 105c8e6 | 2015-06-29 16:43:26 +0200 | [diff] [blame] | 660 | { CFG_GLOBAL, "51degrees-cache-size", _51d_cache_size }, |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 661 | { 0, NULL, NULL }, |
| 662 | }}; |
| 663 | |
| 664 | /* Note: must not be declared <const> as its list will be overwritten */ |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 665 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
| 666 | { "51d.all", _51d_fetch, ARG5(1,STR,STR,STR,STR,STR), _51d_fetch_check, SMP_T_STR, SMP_USE_HRQHV }, |
| 667 | { NULL, NULL, 0, 0, 0 }, |
| 668 | }}; |
| 669 | |
| 670 | /* Note: must not be declared <const> as its list will be overwritten */ |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 671 | static struct sample_conv_kw_list conv_kws = {ILH, { |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 672 | { "51d.single", _51d_conv, ARG5(1,STR,STR,STR,STR,STR), _51d_conv_check, SMP_T_STR, SMP_T_STR }, |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 673 | { NULL, NULL, 0, 0, 0 }, |
| 674 | }}; |
| 675 | |
| 676 | __attribute__((constructor)) |
| 677 | static void __51d_init(void) |
| 678 | { |
James Rosewell | a28bbd5 | 2015-09-18 18:28:52 +0100 | [diff] [blame] | 679 | /* register sample fetch and conversion keywords */ |
| 680 | sample_register_fetches(&sample_fetch_keywords); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 681 | sample_register_convs(&conv_kws); |
| 682 | cfg_register_keywords(&_51dcfg_kws); |
Willy Tarreau | b5e58d6 | 2016-12-21 18:49:29 +0100 | [diff] [blame] | 683 | hap_register_build_opts("Built with 51Degrees support.", 0); |
Willy Tarreau | 9f3f254 | 2016-12-21 20:30:05 +0100 | [diff] [blame] | 684 | hap_register_post_check(init_51degrees); |
Willy Tarreau | 7ac4c20 | 2016-12-21 20:59:01 +0100 | [diff] [blame] | 685 | hap_register_post_deinit(deinit_51degrees); |
Dragan Dosen | 93b38d9 | 2015-06-29 16:43:25 +0200 | [diff] [blame] | 686 | } |