forked from allinurl/goaccess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.h
205 lines (178 loc) · 5.57 KB
/
parser.h
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
/**
* ______ ___
* / ____/___ / | _____________ __________
* / / __/ __ \/ /| |/ ___/ ___/ _ \/ ___/ ___/
* / /_/ / /_/ / ___ / /__/ /__/ __(__ |__ )
* \____/\____/_/ |_\___/\___/\___/____/____/
*
* The MIT License (MIT)
* Copyright (c) 2009-2023 Gerardo Orellana <hello @ goaccess.io>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef PARSER_H_INCLUDED
#define PARSER_H_INCLUDED
#define KEY_FOUND 1
#define KEY_NOT_FOUND -1
#define LINE_BUFFER 4096 /* read at most this num of chars */
#define NUM_TESTS 20 /* test this many lines from the log */
#define MAX_LOG_ERRORS 20
#define READ_BYTES 4096u
#define MAX_BATCH_LINES 8192u /* max number of lines to read per batch before a reflow */
#define LINE_LEN 23
#define ERROR_LEN 255
#define REF_SITE_LEN 511 /* maximum length of a referring site */
#define CACHE_STATUS_LEN 7
#define HASH_HEX 64
#define ERR_SPEC_TOKN_NUL 0x1
#define ERR_SPEC_TOKN_INV 0x2
#define ERR_SPEC_SFMT_MIS 0x3
#define ERR_SPEC_LINE_INV 0x4
#define ERR_LOG_NOT_FOUND 0x5
#define ERR_LOG_REALLOC_FAILURE 0x6
#include "commons.h"
#include "gslist.h"
typedef struct GLogProp_ {
char *filename; /* filename including path */
char *fname; /* basename(filename) */
uint64_t inode; /* inode of the log */
uint64_t size; /* original size of log */
} GLogProp;
/* Log properties. Note: This is per line parsed */
typedef struct GLogItem_ {
char *agent;
char *browser;
char *browser_type;
char *continent;
char *country;
char *asn;
char *date;
char *host;
char *keyphrase;
char *method;
char *os;
char *os_type;
char *protocol;
char *qstr;
char *ref;
char *req;
char *req_key;
char *status;
char *time;
char *uniq_key;
char *vhost;
char *userid;
char *cache_status;
char site[REF_SITE_LEN + 1];
char agent_hex[HASH_HEX];
uint64_t resp_size;
uint64_t serve_time;
uint32_t numdate;
uint32_t agent_hash;
int ignorelevel;
int type_ip;
int is_404;
int is_static;
int uniq_nkey;
int agent_nkey;
/* UMS */
char *mime_type;
char *tls_type;
char *tls_cypher;
char *tls_type_cypher;
char *errstr;
struct tm dt;
} GLogItem;
typedef struct GLastParse_ {
uint32_t line;
int64_t ts;
uint64_t size;
uint16_t snippetlen;
char snippet[READ_BYTES + 1];
} GLastParse;
/* Overall parsed log properties */
typedef struct GLog_ {
uint8_t piping:1;
uint8_t log_erridx;
uint32_t read; /* lines read/parsed */
uint64_t bytes; /* bytes read on each iteration */
uint64_t length; /* length read from the log so far */
uint64_t invalid; /* invalid lines for this log */
uint64_t processed; /* lines proceeded for this log */
/* file test for persisted/restored data */
uint16_t snippetlen;
char snippet[READ_BYTES + 1];
GLogItem *items;
GLastParse lp;
GLogProp props;
char *fname_as_vhost;
char **errors;
FILE *pipe;
} GLog;
/* Container for all logs */
typedef struct Logs_ {
uint8_t restored:1;
uint8_t load_from_disk_only:1;
uint64_t *processed;
uint64_t offset;
int size; /* num items */
int idx;
char *filename;
GLog *glog;
} Logs;
/* Raw data field type */
typedef enum {
U32,
STR
} datatype;
/* Raw Data extracted from table stores */
typedef struct GRawDataItem_ {
uint32_t nkey;
union {
const char *data;
uint32_t hits;
};
} GRawDataItem;
/* Raw Data per module */
typedef struct GRawData_ {
GRawDataItem *items; /* data */
GModule module; /* current module */
datatype type;
int idx; /* first level index */
int size; /* total num of items on ht */
} GRawData;
char *extract_by_delim (char **str, const char *end);
char *fgetline (FILE * fp);
char **test_format (Logs * logs, int *len);
int parse_log (Logs * logs, int dry_run);
int pre_process_log (GLog * glog, char *line, int dry_run);
int set_glog (Logs * logs, const char *filename);
int set_initial_persisted_data (GLog * glog, FILE * fp, const char *fn);
int set_log (Logs * logs, const char *value);
void free_logerrors (GLog * glog);
void free_logs (Logs * logs);
void free_raw_data (GRawData * raw_data);
void output_logerrors (void);
void reset_struct (Logs * logs);
GLogItem *init_log_item (GLog * glog);
GRawDataItem *new_grawdata_item (unsigned int size);
GRawData *new_grawdata (void);
Logs *init_logs (int size);
Logs *new_logs (int size);
#endif