forked from Cacti/spine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql.c
380 lines (329 loc) · 11.1 KB
/
sql.c
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/*
ex: set tabstop=4 shiftwidth=4 autoindent:
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2018 The Cacti Group |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU Lesser General Public |
| License as published by the Free Software Foundation; either |
| version 2.1 of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU Lesser General Public License for more details. |
| |
| You should have received a copy of the GNU Lesser General Public |
| License along with this library; if not, write to the Free Software |
| Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 02110-1301, USA |
| |
+-------------------------------------------------------------------------+
| spine: a backend data gatherer for cacti |
+-------------------------------------------------------------------------+
| This poller would not have been possible without: |
| - Larry Adams (current development and enhancements) |
| - Rivo Nurges (rrd support, mysql poller cache, misc functions) |
| - RTG (core poller code, pthreads, snmp, autoconf examples) |
| - Brady Alleman/Doug Warner (threading ideas, implimentation details) |
+-------------------------------------------------------------------------+
| - Cacti - http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
#include "common.h"
#include "spine.h"
/*! \fn int db_insert(MYSQL *mysql, const char *query)
* \brief inserts a row or rows in a database table.
* \param mysql the database connection object
* \param query the database query to execute
*
* Unless the SQL_readonly boolean is set to TRUE, the function will execute
* the SQL statement specified in the query variable.
*
* \return TRUE if successful, or FALSE if not.
*
*/
int db_insert(MYSQL *mysql, const char *query) {
int error;
int error_count = 0;
char query_frag[BUFSIZE];
/* save a fragment just in case */
snprintf(query_frag, BUFSIZE, "%s", query);
/* show the sql query */
SPINE_LOG_DEVDBG(("DEVDBG: SQL:'%s'", query_frag));
while(1) {
if (set.SQL_readonly == FALSE) {
if (mysql_query(mysql, query)) {
error = mysql_errno(mysql);
if (error == 2013 && errno == EINTR) {
usleep(50000);
continue;
}
if ((error == 1213) || (error == 1205)) {
usleep(50000);
error_count++;
if (error_count > 30) {
SPINE_LOG(("ERROR: Too many Lock/Deadlock errors occurred!, SQL Fragment:'%s'", query_frag));
return FALSE;
}
continue;
}else if (error == 2006 && errno == EINTR) {
db_disconnect(mysql);
usleep(50000);
db_connect(set.dbdb, mysql);
error_count++;
if (error_count > 30) {
die("FATAL: Too many Reconnect Attempts!\n");
}
continue;
}else{
SPINE_LOG(("ERROR: SQL Failed! Error:'%i', Message:'%s', SQL Fragment:'%s'", error, mysql_error(mysql), query_frag));
return FALSE;
}
}else{
return TRUE;
}
}else{
return TRUE;
}
}
}
/*! \fn MYSQL_RES *db_query(MYSQL *mysql, const char *query)
* \brief executes a query and returns a pointer to the result set.
* \param mysql the database connection object
* \param query the database query to execute
*
* This function will execute the SQL statement specified in the query variable.
*
* \return MYSQL_RES a MySQL result structure
*
*/
MYSQL_RES *db_query(MYSQL *mysql, const char *query) {
MYSQL_RES *mysql_res = 0;
int error = 0;
int error_count = 0;
char query_frag[BUFSIZE];
/* save a fragment just in case */
snprintf(query_frag, BUFSIZE, "%s", query);
/* show the sql query */
SPINE_LOG_DEVDBG(("DEVDBG: SQL:'%s'", query_frag));
while (1) {
if (mysql_query(mysql, query)) {
error = mysql_errno(mysql);
if (error == 2013 && errno == EINTR) {
usleep(50000);
continue;
}
if ((error == 1213) || (error == 1205)) {
#ifndef SOLAR_THREAD
usleep(50000);
#endif
error_count++;
if (error_count > 30) {
die("FATAL: Too many Lock/Deadlock errors occurred!, SQL Fragment:'%s'\n", query_frag);
}
continue;
}else if (error == 2006 && errno == EINTR) {
db_disconnect(mysql);
usleep(50000);
db_connect(set.dbdb, mysql);
error_count++;
if (error_count > 30) {
die("FATAL: Too many Reconnect Attempts!\n");
}
continue;
}else{
die("FATAL: MySQL Error:'%i', Message:'%s'", error, mysql_error(mysql));
}
}else{
mysql_res = mysql_store_result(mysql);
break;
}
}
return mysql_res;
}
/*! \fn void db_connect(char *database, MYSQL *mysql)
* \brief opens a connection to a MySQL databse.
* \param database a string pointer to the database name
* \param mysql a pointer to a mysql database connection object
*
* This function will attempt to open a connection to a MySQL database and then
* return the connection object to the calling function. If the database connection
* fails more than 20 times, the function will fail and Spine will terminate.
*
*/
void db_connect(const char *database, MYSQL *mysql) {
int tries;
int timeout;
int rtimeout;
int wtimeout;
int options_error;
int success;
int error;
MYSQL *connect_error;
char *hostname;
char *socket = NULL;
struct stat socket_stat;
/* see if the hostname variable is a file reference. If so,
* and if it is a socket file, setup mysql to use it.
*/
if (set.poller_id > 1) {
if (set.mode == REMOTE_OFFLINE || set.mode == REMOTE_RECOVERY) {
if ((hostname = strdup(set.dbhost)) == NULL) {
die("FATAL: malloc(): strdup() failed");
}
if (stat(hostname, &socket_stat) == 0) {
if (socket_stat.st_mode & S_IFSOCK) {
socket = strdup (set.dbhost);
hostname = NULL;
}
}else if ((socket = strstr(hostname,":"))) {
*socket++ = 0x0;
}
}else{
if ((hostname = strdup(set.rdbhost)) == NULL) {
die("FATAL: malloc(): strdup() failed");
}
}
}else{
if ((hostname = strdup(set.dbhost)) == NULL) {
die("FATAL: malloc(): strdup() failed");
}
if (stat(hostname, &socket_stat) == 0) {
if (socket_stat.st_mode & S_IFSOCK) {
socket = strdup (set.dbhost);
hostname = NULL;
}
}else if ((socket = strstr(hostname,":"))) {
*socket++ = 0x0;
}
}
/* initialalize variables */
tries = 10;
success = FALSE;
timeout = 5;
rtimeout = 10;
wtimeout = 20;
mysql_init(mysql);
if (mysql == NULL) {
die("FATAL: MySQL unable to allocate memory and therefore can not connect");
}
options_error = mysql_options(mysql, MYSQL_OPT_READ_TIMEOUT, (char *)&rtimeout);
if (options_error < 0) {
die("FATAL: MySQL options unable to set read timeout value");
}
options_error = mysql_options(mysql, MYSQL_OPT_WRITE_TIMEOUT, (char *)&wtimeout);
if (options_error < 0) {
die("FATAL: MySQL options unable to set read timeout value");
}
options_error = mysql_options(mysql, MYSQL_OPT_CONNECT_TIMEOUT, (char *)&timeout);
if (options_error < 0) {
die("FATAL: MySQL options unable to set timeout value");
}
#ifdef MYSQL_OPT_RECONNECT
my_bool reconnect = 1;
options_error = mysql_options(mysql, MYSQL_OPT_RECONNECT, &reconnect);
if (options_error < 0) {
die("FATAL: MySQL options unable to set reconnect option\n");
}
#endif
#ifdef MYSQL_OPT_RETRY_COUNT
options_error = mysql_options(mysql, MYSQL_OPT_RETRY_COUNT, &tries);
if (options_error < 0) {
die("FATAL: MySQL options unable to set retry count option\n");
}
#endif
while (tries > 0) {
tries--;
if (set.poller_id > 1) {
if (set.mode == REMOTE_OFFLINE || set.mode == REMOTE_RECOVERY) {
connect_error = mysql_real_connect(mysql, hostname, set.dbuser, set.dbpass, database, set.dbport, socket, 0);
}else{
connect_error = mysql_real_connect(mysql, hostname, set.rdbuser, set.rdbpass, set.rdbdb, set.rdbport, socket, 0);
}
}else{
connect_error = mysql_real_connect(mysql, hostname, set.dbuser, set.dbpass, database, set.dbport, socket, 0);
}
if (!connect_error) {
error = mysql_errno(mysql);
db_disconnect(mysql);
if (error == 2013 && errno == EINTR) {
usleep(50000);
tries++;
success = FALSE;
continue;
}
if (error != 1049 && error != 2005 && error != 1045) {
printf("MYSQL: Connection Failed: Error:'%u', Message:'%s'\n", mysql_errno(mysql), mysql_error(mysql));
success = FALSE;
#ifndef SOLAR_THREAD
usleep(2000);
#endif
}else{
tries = 0;
success = FALSE;
}
}else{
tries = 0;
success = TRUE;
}
}
free(hostname);
if (!success){
die("FATAL: Connection Failed, Error:'%i', Message:'%s'", mysql_errno(mysql), mysql_error(mysql));
}
}
/*! \fn void db_disconnect(MYSQL *mysql)
* \brief closes connection to MySQL database
* \param mysql the database connection object
*
*/
void db_disconnect(MYSQL *mysql) {
mysql_close(mysql);
}
/*! \fn int append_hostrange(char *obuf, const char *colname, const config_t *set)
* \brief appends a host range to a sql select statement
* \param obuf the sql select statment to have the host range appended
* \param colname the sql column name that will have the host range checked
* \param set global runtime settings
*
* Several places in the code need to limit the range of hosts to
* those with a certain ID range, but only if those range values
* are actually nonzero.
*
* This appends the SQL clause if necessary, returning the # of
* characters added to the buffer. Else return 0.
*
* \return the number of characters added to the end of the character buffer
*
*/
int append_hostrange(char *obuf, const char *colname) {
if (HOSTID_DEFINED(set.start_host_id) && HOSTID_DEFINED(set.end_host_id)) {
return sprintf(obuf, " AND %s BETWEEN %d AND %d",
colname,
set.start_host_id,
set.end_host_id);
}else{
return 0;
}
}
/*! \fn void db_escape(MYSQL *mysql, char *output, const char *input)
* \brief Escapse a text string to make it safe for mysql insert/updates
* \param mysql the connection object
* \param output a pointer to the output string
* \param a pointer to the input string
*
* A simple implementation of the mysql_real_escape_string that one
* day should be portable.
*
* \return void
*
*/
void db_escape(MYSQL *mysql, char *output, const char *input) {
if (input == NULL) return;
output[0] = '\0';
mysql_real_escape_string(mysql, output, input, strlen(input));
}
void db_free_result(MYSQL_RES *result) {
mysql_free_result(result);
}