Commit | Line | Data |
---|---|---|
6f33021d | 1 | /* |
5039dede | 2 | ** nxdbmgr - NetXMS database manager |
805171de | 3 | ** Copyright (C) 2004-2015 Victor Kirhenshtein |
5039dede AK |
4 | ** |
5 | ** This program is free software; you can redistribute it and/or modify | |
6 | ** it under the terms of the GNU General Public License as published by | |
7 | ** the Free Software Foundation; either version 2 of the License, or | |
8 | ** (at your option) any later version. | |
9 | ** | |
10 | ** This program is distributed in the hope that it will be useful, | |
11 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | ** GNU General Public License for more details. | |
14 | ** | |
15 | ** You should have received a copy of the GNU General Public License | |
16 | ** along with this program; if not, write to the Free Software | |
17 | ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
18 | ** | |
19 | ** File: upgrade.cpp | |
20 | ** | |
21 | **/ | |
22 | ||
23 | #include "nxdbmgr.h" | |
bf6fb6c3 | 24 | #include <nxevent.h> |
5039dede | 25 | |
4f50e45c VK |
26 | /** |
27 | * Externals | |
28 | */ | |
7a41a06e VK |
29 | BOOL MigrateMaps(); |
30 | ||
271e3971 VK |
31 | /** |
32 | * Generate GUIDs | |
33 | */ | |
34 | static bool GenerateGUID(const TCHAR *table, const TCHAR *idColumn, const TCHAR *guidColumn) | |
35 | { | |
36 | TCHAR query[256]; | |
37 | _sntprintf(query, 256, _T("SELECT %s FROM %s"), idColumn, table); | |
38 | DB_RESULT hResult = SQLSelect(query); | |
39 | if (hResult == NULL) | |
40 | return false; | |
41 | ||
42 | int count = DBGetNumRows(hResult); | |
43 | for(int i = 0; i < count; i++) | |
44 | { | |
45 | uuid_t guid; | |
46 | TCHAR buffer[64]; | |
47 | ||
999945fa | 48 | _uuid_generate(guid); |
271e3971 | 49 | _sntprintf(query, 256, _T("UPDATE %s SET %s='%s' WHERE %s=%d"), |
999945fa | 50 | table, guidColumn, _uuid_to_string(guid, buffer), idColumn, DBGetFieldULong(hResult, i, 0)); |
271e3971 VK |
51 | if (!SQLQuery(query)) |
52 | { | |
53 | DBFreeResult(hResult); | |
54 | return false; | |
55 | } | |
56 | } | |
57 | DBFreeResult(hResult); | |
58 | return true; | |
59 | } | |
60 | ||
4f50e45c VK |
61 | /** |
62 | * Create table | |
63 | */ | |
c85c8ef2 | 64 | static bool CreateTable(const TCHAR *pszQuery) |
5039dede | 65 | { |
7618e362 | 66 | String query(pszQuery); |
5039dede | 67 | |
2a964810 VK |
68 | query.replace(_T("$SQL:TEXT"), g_pszSqlType[g_dbSyntax][SQL_TYPE_TEXT]); |
69 | query.replace(_T("$SQL:TXT4K"), g_pszSqlType[g_dbSyntax][SQL_TYPE_TEXT4K]); | |
70 | query.replace(_T("$SQL:INT64"), g_pszSqlType[g_dbSyntax][SQL_TYPE_INT64]); | |
71 | if (g_dbSyntax == DB_SYNTAX_MYSQL) | |
7618e362 | 72 | query += g_pszTableSuffix; |
c85c8ef2 | 73 | return SQLQuery(query); |
5039dede AK |
74 | } |
75 | ||
4f50e45c | 76 | /** |
c85c8ef2 | 77 | * Check if cnfiguration variable exist |
4f50e45c | 78 | */ |
c85c8ef2 | 79 | static bool IsConfigurationVariableExist(const TCHAR *name) |
5039dede | 80 | { |
c85c8ef2 VK |
81 | bool found = false; |
82 | TCHAR query[256]; | |
83 | _sntprintf(query, 256, _T("SELECT var_value FROM config WHERE var_name='%s'"), name); | |
84 | DB_RESULT hResult = DBSelect(g_hCoreDB, query); | |
5039dede AK |
85 | if (hResult != 0) |
86 | { | |
c85c8ef2 | 87 | found = (DBGetNumRows(hResult) > 0); |
5039dede AK |
88 | DBFreeResult(hResult); |
89 | } | |
c85c8ef2 VK |
90 | return found; |
91 | } | |
5039dede | 92 | |
c85c8ef2 VK |
93 | /** |
94 | * Create configuration parameter if it doesn't exist (unless bForceUpdate set to true) | |
95 | */ | |
96 | bool CreateConfigParam(const TCHAR *name, const TCHAR *value, const TCHAR *description, char dataType, bool isVisible, bool needRestart, bool isPublic, bool forceUpdate) | |
97 | { | |
98 | bool success = true; | |
2589cc10 | 99 | TCHAR szQuery[3024]; |
c85c8ef2 | 100 | if (!IsConfigurationVariableExist(name)) |
5039dede | 101 | { |
2589cc10 | 102 | _sntprintf(szQuery, 3024, _T("INSERT INTO config (var_name,var_value,is_visible,need_server_restart,is_public,data_type,description) VALUES (%s,%s,%d,%d,'%c','%c',%s)"), |
c85c8ef2 | 103 | (const TCHAR *)DBPrepareString(g_hCoreDB, name, 63), |
2589cc10 | 104 | (const TCHAR *)DBPrepareString(g_hCoreDB, value, 2000), isVisible ? 1 : 0, needRestart ? 1 : 0, |
c85c8ef2 VK |
105 | isPublic ? _T('Y') : _T('N'), dataType, (const TCHAR *)DBPrepareString(g_hCoreDB, description, 255)); |
106 | success = SQLQuery(szQuery); | |
5039dede | 107 | } |
c85c8ef2 | 108 | else if (forceUpdate) |
5039dede | 109 | { |
2589cc10 | 110 | _sntprintf(szQuery, 3024, _T("UPDATE config SET var_value=%s WHERE var_name=%s"), |
111 | (const TCHAR *)DBPrepareString(g_hCoreDB, value, 2000), (const TCHAR *)DBPrepareString(g_hCoreDB, name, 63)); | |
c85c8ef2 | 112 | success = SQLQuery(szQuery); |
5039dede | 113 | } |
c85c8ef2 VK |
114 | return success; |
115 | } | |
116 | ||
117 | /** | |
118 | * Create configuration parameter if it doesn't exist (unless bForceUpdate set to true) | |
119 | */ | |
120 | bool CreateConfigParam(const TCHAR *name, const TCHAR *value, bool isVisible, bool needRestart, bool forceUpdate) | |
121 | { | |
122 | bool success = true; | |
2589cc10 | 123 | TCHAR szQuery[3024]; |
c85c8ef2 VK |
124 | if (!IsConfigurationVariableExist(name)) |
125 | { | |
2589cc10 | 126 | _sntprintf(szQuery, 3024, _T("INSERT INTO config (var_name,var_value,is_visible,need_server_restart) VALUES (%s,%s,%d,%d)"), |
c85c8ef2 | 127 | (const TCHAR *)DBPrepareString(g_hCoreDB, name, 63), |
2589cc10 | 128 | (const TCHAR *)DBPrepareString(g_hCoreDB, value, 2000), isVisible ? 1 : 0, needRestart ? 1 : 0); |
c85c8ef2 VK |
129 | success = SQLQuery(szQuery); |
130 | } | |
131 | else if (forceUpdate) | |
132 | { | |
2589cc10 | 133 | _sntprintf(szQuery, 3024, _T("UPDATE config SET var_value=%s WHERE var_name=%s"), |
134 | (const TCHAR *)DBPrepareString(g_hCoreDB, value, 2000), (const TCHAR *)DBPrepareString(g_hCoreDB, name, 63)); | |
c85c8ef2 VK |
135 | success = SQLQuery(szQuery); |
136 | } | |
137 | return success; | |
5039dede AK |
138 | } |
139 | ||
4f50e45c VK |
140 | /** |
141 | * Set primary key constraint | |
142 | */ | |
5039dede AK |
143 | static BOOL SetPrimaryKey(const TCHAR *table, const TCHAR *key) |
144 | { | |
145 | TCHAR query[4096]; | |
146 | ||
2a964810 | 147 | if (g_dbSyntax == DB_SYNTAX_SQLITE) |
5039dede | 148 | return TRUE; // SQLite does not support adding constraints |
6f33021d | 149 | |
5039dede AK |
150 | _sntprintf(query, 4096, _T("ALTER TABLE %s ADD PRIMARY KEY (%s)"), table, key); |
151 | return SQLQuery(query); | |
152 | } | |
153 | ||
4f50e45c VK |
154 | /** |
155 | * Drop primary key from table | |
156 | */ | |
9bfc9a6b VK |
157 | static BOOL DropPrimaryKey(const TCHAR *table) |
158 | { | |
159 | TCHAR query[1024]; | |
160 | DB_RESULT hResult; | |
161 | BOOL success; | |
162 | ||
2a964810 | 163 | switch(g_dbSyntax) |
9bfc9a6b VK |
164 | { |
165 | case DB_SYNTAX_ORACLE: | |
166 | case DB_SYNTAX_MYSQL: | |
167 | _sntprintf(query, 1024, _T("ALTER TABLE %s DROP PRIMARY KEY"), table); | |
168 | success = SQLQuery(query); | |
169 | break; | |
170 | case DB_SYNTAX_PGSQL: | |
171 | _sntprintf(query, 1024, _T("ALTER TABLE %s DROP CONSTRAINT %s_pkey"), table, table); | |
172 | success = SQLQuery(query); | |
173 | break; | |
174 | case DB_SYNTAX_MSSQL: | |
175 | success = FALSE; | |
176 | _sntprintf(query, 1024, _T("SELECT name FROM sysobjects WHERE xtype='PK' AND parent_obj=OBJECT_ID('%s')"), table); | |
177 | hResult = SQLSelect(query); | |
178 | if (hResult != NULL) | |
179 | { | |
180 | if (DBGetNumRows(hResult) > 0) | |
181 | { | |
182 | TCHAR objName[512]; | |
183 | ||
184 | DBGetField(hResult, 0, 0, objName, 512); | |
185 | _sntprintf(query, 1024, _T("ALTER TABLE %s DROP CONSTRAINT %s"), table, objName); | |
186 | success = SQLQuery(query); | |
187 | } | |
188 | DBFreeResult(hResult); | |
189 | } | |
190 | break; | |
191 | default: // Unsupported DB engine | |
192 | success = FALSE; | |
193 | break; | |
194 | } | |
195 | return success; | |
196 | } | |
197 | ||
4f50e45c VK |
198 | /** |
199 | * Convert strings from # encoded form to normal form | |
200 | */ | |
d6bf58f9 | 201 | static BOOL ConvertStrings(const TCHAR *table, const TCHAR *idColumn, const TCHAR *idColumn2, const TCHAR *column, bool isStringId) |
643c9dcb VK |
202 | { |
203 | DB_RESULT hResult; | |
204 | TCHAR *query; | |
4e0e77e6 | 205 | size_t queryLen = 512; |
643c9dcb VK |
206 | BOOL success = FALSE; |
207 | ||
c29fb885 | 208 | query = (TCHAR *)malloc(queryLen * sizeof(TCHAR)); |
fe12a1ea | 209 | |
2a964810 | 210 | switch(g_dbSyntax) |
a4743a0f VK |
211 | { |
212 | case DB_SYNTAX_MSSQL: | |
9f6712bc | 213 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s='' WHERE CAST(%s AS nvarchar(4000))=N'#00'"), table, column, column); |
a4743a0f VK |
214 | break; |
215 | case DB_SYNTAX_ORACLE: | |
216 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s='' WHERE to_char(%s)='#00'"), table, column, column); | |
217 | break; | |
218 | default: | |
219 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s='' WHERE %s='#00'"), table, column, column); | |
220 | break; | |
221 | } | |
fe12a1ea VK |
222 | if (!SQLQuery(query)) |
223 | { | |
224 | free(query); | |
225 | return FALSE; | |
226 | } | |
227 | ||
6f33021d | 228 | _sntprintf(query, queryLen, _T("SELECT %s,%s%s%s FROM %s WHERE %s LIKE '%%#%%'"), |
98cd01bb | 229 | idColumn, column, (idColumn2 != NULL) ? _T(",") : _T(""), (idColumn2 != NULL) ? idColumn2 : _T(""), table, column); |
643c9dcb VK |
230 | hResult = SQLSelect(query); |
231 | if (hResult == NULL) | |
232 | { | |
233 | free(query); | |
234 | return FALSE; | |
235 | } | |
236 | ||
237 | int count = DBGetNumRows(hResult); | |
238 | for(int i = 0; i < count; i++) | |
239 | { | |
643c9dcb | 240 | TCHAR *value = DBGetField(hResult, i, 1, NULL, 0); |
035a4d73 | 241 | if (_tcschr(value, _T('#')) != NULL) |
643c9dcb | 242 | { |
035a4d73 VK |
243 | DecodeSQLString(value); |
244 | String newValue = DBPrepareString(g_hCoreDB, value); | |
4e0e77e6 | 245 | if (newValue.length() + 256 > queryLen) |
035a4d73 | 246 | { |
4e0e77e6 | 247 | queryLen = newValue.length() + 256; |
c29fb885 | 248 | query = (TCHAR *)realloc(query, queryLen * sizeof(TCHAR)); |
035a4d73 | 249 | } |
d6bf58f9 | 250 | if (isStringId) |
98cd01bb | 251 | { |
d6bf58f9 VK |
252 | TCHAR *id = DBGetField(hResult, i, 0, NULL, 0); |
253 | if (idColumn2 != NULL) | |
254 | { | |
255 | TCHAR *id2 = DBGetField(hResult, i, 2, NULL, 0); | |
256 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s=%s WHERE %s=%s AND %s=%s"), | |
257 | table, column, (const TCHAR *)newValue, | |
6f33021d | 258 | idColumn, (const TCHAR *)DBPrepareString(g_hCoreDB, id), |
d6bf58f9 VK |
259 | idColumn2, (const TCHAR *)DBPrepareString(g_hCoreDB, id2)); |
260 | } | |
261 | else | |
262 | { | |
263 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s=%s WHERE %s=%s"), table, column, | |
264 | (const TCHAR *)newValue, idColumn, (const TCHAR *)DBPrepareString(g_hCoreDB, id)); | |
265 | } | |
266 | free(id); | |
98cd01bb VK |
267 | } |
268 | else | |
269 | { | |
d6bf58f9 VK |
270 | INT64 id = DBGetFieldInt64(hResult, i, 0); |
271 | if (idColumn2 != NULL) | |
272 | { | |
273 | INT64 id2 = DBGetFieldInt64(hResult, i, 2); | |
6f33021d | 274 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s=%s WHERE %s=") INT64_FMT _T(" AND %s=") INT64_FMT, |
d6bf58f9 VK |
275 | table, column, (const TCHAR *)newValue, idColumn, id, idColumn2, id2); |
276 | } | |
277 | else | |
278 | { | |
279 | _sntprintf(query, queryLen, _T("UPDATE %s SET %s=%s WHERE %s=") INT64_FMT, table, column, | |
280 | (const TCHAR *)newValue, idColumn, id); | |
281 | } | |
98cd01bb | 282 | } |
035a4d73 VK |
283 | if (!SQLQuery(query)) |
284 | goto cleanup; | |
643c9dcb | 285 | } |
643c9dcb VK |
286 | } |
287 | success = TRUE; | |
288 | ||
289 | cleanup: | |
290 | DBFreeResult(hResult); | |
a4743a0f | 291 | free(query); |
643c9dcb VK |
292 | return success; |
293 | } | |
294 | ||
98cd01bb VK |
295 | static BOOL ConvertStrings(const TCHAR *table, const TCHAR *idColumn, const TCHAR *column) |
296 | { | |
d6bf58f9 | 297 | return ConvertStrings(table, idColumn, NULL, column, false); |
98cd01bb VK |
298 | } |
299 | ||
4f50e45c | 300 | /** |
70ffb771 | 301 | * Set column nullable (currently only Oracle and PostgreSQL) |
4f50e45c | 302 | */ |
480e036b | 303 | static BOOL SetColumnNullable(const TCHAR *table, const TCHAR *column) |
1024e962 VK |
304 | { |
305 | TCHAR query[1024] = _T(""); | |
306 | ||
2a964810 | 307 | switch(g_dbSyntax) |
1024e962 VK |
308 | { |
309 | case DB_SYNTAX_ORACLE: | |
310 | _sntprintf(query, 1024, _T("DECLARE already_null EXCEPTION; ") | |
311 | _T("PRAGMA EXCEPTION_INIT(already_null, -1451); ") | |
f57209fd VK |
312 | _T("BEGIN EXECUTE IMMEDIATE 'ALTER TABLE %s MODIFY %s null'; ") |
313 | _T("EXCEPTION WHEN already_null THEN null; END;"), table, column); | |
1024e962 | 314 | break; |
480e036b VK |
315 | case DB_SYNTAX_PGSQL: |
316 | _sntprintf(query, 1024, _T("ALTER TABLE %s ALTER COLUMN %s DROP NOT NULL"), table, column); | |
317 | break; | |
1024e962 VK |
318 | default: |
319 | break; | |
320 | } | |
321 | ||
322 | return (query[0] != 0) ? SQLQuery(query) : TRUE; | |
323 | } | |
324 | ||
480e036b VK |
325 | /** |
326 | * Resize varchar column | |
327 | */ | |
b69710b9 | 328 | static BOOL ResizeColumn(const TCHAR *table, const TCHAR *column, int newSize, bool nullable) |
480e036b VK |
329 | { |
330 | TCHAR query[1024]; | |
331 | ||
2a964810 | 332 | switch(g_dbSyntax) |
480e036b VK |
333 | { |
334 | case DB_SYNTAX_DB2: | |
335 | _sntprintf(query, 1024, _T("ALTER TABLE %s ALTER COLUMN %s SET DATA TYPE varchar(%d)"), table, column, newSize); | |
336 | break; | |
337 | case DB_SYNTAX_MSSQL: | |
b69710b9 | 338 | _sntprintf(query, 1024, _T("ALTER TABLE %s ALTER COLUMN %s varchar(%d) %s NULL"), table, column, newSize, nullable ? _T("") : _T("NOT")); |
480e036b VK |
339 | break; |
340 | case DB_SYNTAX_PGSQL: | |
341 | _sntprintf(query, 1024, _T("ALTER TABLE %s ALTER COLUMN %s TYPE varchar(%d)"), table, column, newSize); | |
342 | break; | |
343 | case DB_SYNTAX_SQLITE: | |
344 | /* TODO: add SQLite support */ | |
345 | query[0] = 0; | |
346 | break; | |
347 | default: | |
348 | _sntprintf(query, 1024, _T("ALTER TABLE %s MODIFY %s varchar(%d)"), table, column, newSize); | |
349 | break; | |
350 | } | |
351 | ||
352 | return (query[0] != 0) ? SQLQuery(query) : TRUE; | |
353 | } | |
354 | ||
4f50e45c VK |
355 | /** |
356 | * Create new event template | |
357 | */ | |
aa16f82b VK |
358 | static BOOL CreateEventTemplate(int code, const TCHAR *name, int severity, int flags, const TCHAR *message, const TCHAR *description) |
359 | { | |
480e036b | 360 | TCHAR query[4096]; |
aa16f82b | 361 | |
480e036b VK |
362 | _sntprintf(query, 4096, _T("INSERT INTO event_cfg (event_code,event_name,severity,flags,message,description) VALUES (%d,'%s',%d,%d,%s,%s)"), |
363 | code, name, severity, flags, (const TCHAR *)DBPrepareString(g_hCoreDB, message), | |
364 | (const TCHAR *)DBPrepareString(g_hCoreDB, description)); | |
aa16f82b VK |
365 | return SQLQuery(query); |
366 | } | |
367 | ||
22aaa779 VK |
368 | /** |
369 | * Re-create TDATA tables | |
370 | */ | |
2f1bc68b | 371 | static BOOL RecreateTData(const TCHAR *className, bool multipleTables, bool indexFix) |
22aaa779 | 372 | { |
1d4f7890 | 373 | TCHAR query[1024]; |
22aaa779 VK |
374 | _sntprintf(query, 256, _T("SELECT id FROM %s"), className); |
375 | DB_RESULT hResult = SQLSelect(query); | |
376 | if (hResult != NULL) | |
377 | { | |
378 | int count = DBGetNumRows(hResult); | |
379 | for(int i = 0; i < count; i++) | |
380 | { | |
2f1bc68b | 381 | bool recreateTables = true; |
22aaa779 VK |
382 | DWORD id = DBGetFieldULong(hResult, i, 0); |
383 | ||
2f1bc68b | 384 | if (indexFix) |
1d4f7890 | 385 | { |
2f1bc68b VK |
386 | _sntprintf(query, 256, _T("SELECT count(*) FROM dc_tables WHERE node_id=%d"), id); |
387 | DB_RESULT hResultCount = SQLSelect(query); | |
388 | if (hResultCount != NULL) | |
22aaa779 | 389 | { |
7d4f8ace | 390 | recreateTables = (DBGetFieldLong(hResultCount, 0, 0) == 0); |
2f1bc68b VK |
391 | DBFreeResult(hResultCount); |
392 | } | |
393 | ||
394 | if (!recreateTables) | |
395 | { | |
a9f5aa55 | 396 | _sntprintf(query, 256, _T("CREATE INDEX idx_tdata_rec_%d_id ON tdata_records_%d(record_id)"), id, id); |
2f1bc68b VK |
397 | if (!SQLQuery(query)) |
398 | { | |
399 | if (!g_bIgnoreErrors) | |
400 | { | |
401 | DBFreeResult(hResult); | |
402 | return FALSE; | |
403 | } | |
404 | } | |
22aaa779 VK |
405 | } |
406 | } | |
407 | ||
2f1bc68b | 408 | if (recreateTables) |
22aaa779 | 409 | { |
2f1bc68b | 410 | if (multipleTables) |
22aaa779 | 411 | { |
2f1bc68b VK |
412 | _sntprintf(query, 1024, _T("DROP TABLE tdata_rows_%d\nDROP TABLE tdata_records_%d\nDROP TABLE tdata_%d\n<END>"), id, id, id); |
413 | } | |
414 | else | |
415 | { | |
416 | _sntprintf(query, 256, _T("DROP TABLE tdata_%d\n<END>"), id); | |
417 | } | |
418 | if (!SQLBatch(query)) | |
419 | { | |
420 | if (!g_bIgnoreErrors) | |
421 | { | |
422 | DBFreeResult(hResult); | |
423 | return FALSE; | |
424 | } | |
425 | } | |
426 | ||
427 | if (!CreateTDataTables(id)) | |
428 | { | |
429 | if (!g_bIgnoreErrors) | |
430 | { | |
431 | DBFreeResult(hResult); | |
432 | return FALSE; | |
433 | } | |
22aaa779 VK |
434 | } |
435 | } | |
436 | } | |
437 | DBFreeResult(hResult); | |
438 | } | |
439 | else | |
440 | { | |
441 | if (!g_bIgnoreErrors) | |
442 | return FALSE; | |
443 | } | |
385b1f20 | 444 | return TRUE; |
445 | } | |
446 | ||
c75e9ee4 VK |
447 | /** |
448 | * Convert network masks from dotted decimal format to number of bits | |
449 | */ | |
450 | static BOOL ConvertNetMasks(const TCHAR *table, const TCHAR *column, const TCHAR *idColumn, const TCHAR *idColumn2 = NULL, const TCHAR *condition = NULL) | |
451 | { | |
452 | TCHAR query[256]; | |
fcf91b2e | 453 | |
c75e9ee4 VK |
454 | if (idColumn2 != NULL) |
455 | _sntprintf(query, 256, _T("SELECT %s,%s,%s FROM %s"), idColumn, column, idColumn2, table); | |
456 | else | |
457 | _sntprintf(query, 256, _T("SELECT %s,%s FROM %s"), idColumn, column, table); | |
458 | DB_RESULT hResult = SQLSelect(query); | |
459 | if (hResult == NULL) | |
460 | return FALSE; | |
461 | ||
a19fa589 | 462 | BOOL success = SQLDropColumn(table, column); |
fcf91b2e | 463 | |
c75e9ee4 VK |
464 | if (success) |
465 | { | |
466 | _sntprintf(query, 256, _T("ALTER TABLE %s ADD %s integer"), table, column); | |
467 | success = SQLQuery(query); | |
468 | } | |
469 | ||
470 | if (success) | |
471 | { | |
472 | int count = DBGetNumRows(hResult); | |
473 | for(int i = 0; (i < count) && success; i++) | |
474 | { | |
475 | if (idColumn2 != NULL) | |
476 | { | |
477 | TCHAR id2[256]; | |
fcf91b2e | 478 | _sntprintf(query, 256, _T("UPDATE %s SET %s=%d WHERE %s=%d AND %s='%s'"), |
c75e9ee4 VK |
479 | table, column, BitsInMask(DBGetFieldIPAddr(hResult, i, 1)), idColumn, DBGetFieldLong(hResult, i, 0), |
480 | idColumn2, DBGetField(hResult, i, 2, id2, 256)); | |
481 | } | |
482 | else | |
483 | { | |
fcf91b2e | 484 | _sntprintf(query, 256, _T("UPDATE %s SET %s=%d WHERE %s=%d"), |
c75e9ee4 VK |
485 | table, column, BitsInMask(DBGetFieldIPAddr(hResult, i, 1)), idColumn, DBGetFieldLong(hResult, i, 0)); |
486 | } | |
487 | success = SQLQuery(query); | |
488 | } | |
489 | } | |
490 | ||
491 | DBFreeResult(hResult); | |
492 | return success; | |
493 | } | |
494 | ||
b2a15edc VK |
495 | /** |
496 | * Convert object tool macros to new format | |
497 | */ | |
498 | static bool ConvertObjectToolMacros(UINT32 id, const TCHAR *text, const TCHAR *column) | |
499 | { | |
500 | if (_tcschr(text, _T('%')) == NULL) | |
501 | return true; // nothing to convert | |
502 | ||
503 | String s; | |
504 | for(const TCHAR *p = text; *p != 0; p++) | |
505 | { | |
506 | if (*p == _T('%')) | |
507 | { | |
508 | TCHAR name[256]; | |
509 | int i = 0; | |
510 | for(p++; (*p != _T('%')) && (*p != 0); p++) | |
511 | { | |
512 | if (i < 255) | |
513 | name[i++] = *p; | |
514 | } | |
515 | if (*p == 0) | |
516 | break; // malformed string | |
517 | name[i] = 0; | |
518 | if (!_tcscmp(name, _T("ALARM_ID"))) | |
519 | { | |
520 | s.append(_T("%Y")); | |
521 | } | |
522 | else if (!_tcscmp(name, _T("ALARM_MESSAGE"))) | |
523 | { | |
524 | s.append(_T("%A")); | |
525 | } | |
526 | else if (!_tcscmp(name, _T("ALARM_SEVERITY"))) | |
527 | { | |
528 | s.append(_T("%s")); | |
529 | } | |
530 | else if (!_tcscmp(name, _T("ALARM_SEVERITY_TEXT"))) | |
531 | { | |
532 | s.append(_T("%S")); | |
533 | } | |
534 | else if (!_tcscmp(name, _T("ALARM_STATE"))) | |
535 | { | |
536 | s.append(_T("%y")); | |
537 | } | |
538 | else if (!_tcscmp(name, _T("OBJECT_ID"))) | |
539 | { | |
540 | s.append(_T("%I")); | |
541 | } | |
542 | else if (!_tcscmp(name, _T("OBJECT_IP_ADDR"))) | |
543 | { | |
544 | s.append(_T("%a")); | |
545 | } | |
546 | else if (!_tcscmp(name, _T("OBJECT_NAME"))) | |
547 | { | |
548 | s.append(_T("%n")); | |
549 | } | |
550 | else if (!_tcscmp(name, _T("USERNAME"))) | |
551 | { | |
552 | s.append(_T("%U")); | |
553 | } | |
554 | else | |
555 | { | |
556 | s.append(_T("%{")); | |
557 | s.append(name); | |
558 | s.append(_T('}')); | |
559 | } | |
560 | } | |
561 | else | |
562 | { | |
563 | s.append(*p); | |
564 | } | |
565 | } | |
566 | ||
567 | String query = _T("UPDATE object_tools SET "); | |
568 | query.append(column); | |
569 | query.append(_T('=')); | |
570 | query.append(DBPrepareString(g_hCoreDB, s)); | |
571 | query.append(_T(" WHERE tool_id=")); | |
572 | query.append(id); | |
573 | return SQLQuery(query); | |
574 | } | |
8a1519ce | 575 | |
83aa5ebd VK |
576 | /** |
577 | * Create library script | |
578 | */ | |
579 | static bool CreateLibraryScript(UINT32 id, const TCHAR *name, const TCHAR *code) | |
580 | { | |
581 | // Check if script exists | |
582 | TCHAR query[256]; | |
583 | _sntprintf(query, 256, _T("SELECT script_id FROM script_library WHERE script_id=%d OR script_name=%s"), | |
584 | id, (const TCHAR *)DBPrepareString(g_hCoreDB, name)); | |
585 | DB_RESULT hResult = SQLSelect(query); | |
586 | if (hResult == NULL) | |
587 | return false; | |
588 | bool exist = (DBGetNumRows(hResult) > 0); | |
589 | DBFreeResult(hResult); | |
590 | if (exist) | |
591 | return true; | |
592 | ||
593 | DB_STATEMENT hStmt = DBPrepare(g_hCoreDB, _T("INSERT INTO script_library (script_id,script_name,script_code) VALUES (?,?,?)")); | |
594 | if (hStmt == NULL) | |
595 | return false; | |
596 | ||
597 | DBBind(hStmt, 1, DB_SQLTYPE_INTEGER, id); | |
598 | DBBind(hStmt, 2, DB_SQLTYPE_VARCHAR, name, DB_BIND_STATIC); | |
599 | DBBind(hStmt, 3, DB_SQLTYPE_TEXT, code, DB_BIND_STATIC); | |
600 | ||
601 | bool success = SQLExecute(hStmt); | |
602 | DBFreeStatement(hStmt); | |
603 | return success; | |
604 | } | |
605 | ||
4e7ebbb4 VK |
606 | /** |
607 | * Upgrade from V384 to V385 | |
608 | */ | |
609 | static BOOL H_UpgradeFromV384(int currVersion, int newVersion) | |
610 | { | |
611 | CHK_EXEC(SQLQuery(_T("UPDATE config SET is_visible=1,need_server_restart=0 WHERE var_name='SNMPPorts'"))); | |
612 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='385' WHERE var_name='SchemaVersion'"))); | |
613 | return TRUE; | |
614 | } | |
615 | ||
aed41472 | 616 | /** |
617 | * Upgrade from V373 to V374 | |
618 | */ | |
619 | static BOOL H_UpgradeFromV383(int currVersion, int newVersion) | |
620 | { | |
621 | CHK_EXEC(ConvertStrings(_T("graphs"), _T("graph_id"), _T("config"))); | |
622 | static TCHAR batch[] = | |
623 | _T("ALTER TABLE graphs ADD flags integer\n") | |
624 | _T("ALTER TABLE graphs ADD filters $SQL:TEXT\n") | |
625 | _T("<END>"); | |
626 | CHK_EXEC(SQLBatch(batch)); | |
627 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='384' WHERE var_name='SchemaVersion'"))); | |
628 | return TRUE; | |
629 | } | |
630 | ||
55f6cb79 VK |
631 | /** |
632 | * Upgrade from V382 to V383 | |
633 | */ | |
634 | static BOOL H_UpgradeFromV382(int currVersion, int newVersion) | |
635 | { | |
636 | CHK_EXEC(ResizeColumn(_T("nodes"), _T("primary_ip"), 48, false)); | |
637 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='383' WHERE var_name='SchemaVersion'"))); | |
638 | return TRUE; | |
639 | } | |
640 | ||
83aa5ebd VK |
641 | /** |
642 | * Upgrade from V381 to V382 | |
643 | */ | |
644 | static BOOL H_UpgradeFromV381(int currVersion, int newVersion) | |
645 | { | |
646 | CHK_EXEC(CreateLibraryScript(11, _T("Hook::StatusPoll"), _T(""))); | |
647 | CHK_EXEC(CreateLibraryScript(12, _T("Hook::ConfigurationPoll"), _T(""))); | |
648 | CHK_EXEC(CreateLibraryScript(13, _T("Hook::InstancePoll"), _T(""))); | |
649 | CHK_EXEC(CreateLibraryScript(14, _T("Hook::TopologyPoll"), _T(""))); | |
650 | CHK_EXEC(CreateLibraryScript(15, _T("Hook::CreateInterface"), _T("return true;\r\n"))); | |
651 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='382' WHERE var_name='SchemaVersion'"))); | |
652 | return TRUE; | |
653 | } | |
654 | ||
98ef8e4a VK |
655 | /** |
656 | * Upgrade from V380 to V381 | |
657 | */ | |
658 | static BOOL H_UpgradeFromV380(int currVersion, int newVersion) | |
659 | { | |
660 | static TCHAR batch[] = | |
661 | _T("ALTER TABLE items ADD guid varchar(36)\n") | |
662 | _T("ALTER TABLE dc_tables ADD guid varchar(36)\n") | |
663 | _T("<END>"); | |
664 | CHK_EXEC(SQLBatch(batch)); | |
665 | CHK_EXEC(GenerateGUID(_T("items"), _T("item_id"), _T("guid"))); | |
666 | CHK_EXEC(GenerateGUID(_T("dc_tables"), _T("item_id"), _T("guid"))); | |
667 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='381' WHERE var_name='SchemaVersion'"))); | |
668 | return TRUE; | |
669 | } | |
670 | ||
9b4a2a0e VK |
671 | /** |
672 | * Upgrade from V379 to V380 | |
673 | */ | |
674 | static BOOL H_UpgradeFromV379(int currVersion, int newVersion) | |
675 | { | |
676 | static TCHAR batch[] = | |
677 | _T("UPDATE object_properties SET maint_event_id=0 WHERE maint_event_id IS NULL\n") | |
678 | _T("UPDATE nodes SET last_agent_comm_time=0 WHERE last_agent_comm_time IS NULL\n") | |
679 | _T("<END>"); | |
680 | CHK_EXEC(SQLBatch(batch)); | |
681 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='380' WHERE var_name='SchemaVersion'"))); | |
682 | return TRUE; | |
683 | } | |
684 | ||
ec5829b2 VK |
685 | /** |
686 | * Upgrade from V378 to V379 | |
687 | */ | |
688 | static BOOL H_UpgradeFromV378(int currVersion, int newVersion) | |
689 | { | |
690 | CHK_EXEC(SQLQuery(_T("DELETE FROM config WHERE var_name='NumberOfDatabaseWriters'"))); | |
691 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='379' WHERE var_name='SchemaVersion'"))); | |
692 | return TRUE; | |
693 | } | |
694 | ||
9bd1bace VK |
695 | /** |
696 | * Upgrade from V377 to V378 | |
697 | */ | |
698 | static BOOL H_UpgradeFromV377(int currVersion, int newVersion) | |
699 | { | |
700 | static TCHAR batch[] = | |
701 | _T("DELETE FROM config WHERE var_name='EnableMultipleDBConnections'\n") | |
702 | _T("UPDATE config SET var_name='DBConnectionPoolBaseSize' WHERE var_name='ConnectionPoolBaseSize'\n") | |
703 | _T("UPDATE config SET var_name='DBConnectionPoolMaxSize' WHERE var_name='ConnectionPoolMaxSize'\n") | |
704 | _T("UPDATE config SET var_name='DBConnectionPoolCooldownTime' WHERE var_name='ConnectionPoolCooldownTime'\n") | |
705 | _T("UPDATE config SET var_name='DBConnectionPoolMaxLifetime' WHERE var_name='ConnectionPoolMaxLifetime'\n") | |
706 | _T("<END>"); | |
707 | CHK_EXEC(SQLBatch(batch)); | |
708 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='378' WHERE var_name='SchemaVersion'"))); | |
709 | return TRUE; | |
710 | } | |
711 | ||
9d7771b8 VK |
712 | /** |
713 | * Upgrade from V376 to V377 | |
714 | */ | |
715 | static BOOL H_UpgradeFromV376(int currVersion, int newVersion) | |
716 | { | |
717 | CHK_EXEC(CreateConfigParam(_T("DefaultSubnetMaskIPv4"), _T("24"), _T("Default mask for synthetic IPv4 subnets"), 'I', true, false, false, false)); | |
718 | CHK_EXEC(CreateConfigParam(_T("DefaultSubnetMaskIPv6"), _T("64"), _T("Default mask for synthetic IPv6 subnets"), 'I', true, false, false, false)); | |
719 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='377' WHERE var_name='SchemaVersion'"))); | |
720 | return TRUE; | |
721 | } | |
722 | ||
4e3133ee | 723 | /** |
724 | * Upgrade from V375 to V376 | |
725 | */ | |
726 | static BOOL H_UpgradeFromV375(int currVersion, int newVersion) | |
727 | { | |
728 | static TCHAR batch[] = | |
729 | _T("ALTER TABLE nodes ADD last_agent_comm_time integer\n") | |
9b4a2a0e | 730 | _T("UPDATE nodes SET last_agent_comm_time=0\n") |
4e3133ee | 731 | _T("<END>"); |
732 | CHK_EXEC(SQLBatch(batch)); | |
733 | ||
734 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='376' WHERE var_name='SchemaVersion'"))); | |
735 | return TRUE; | |
736 | } | |
737 | ||
203cb23c VK |
738 | /** |
739 | * Upgrade from V374 to V375 | |
740 | */ | |
741 | static BOOL H_UpgradeFromV374(int currVersion, int newVersion) | |
742 | { | |
743 | static TCHAR batch[] = | |
744 | _T("ALTER TABLE object_tools_input_fields ADD sequence_num integer\n") | |
745 | _T("UPDATE object_tools_input_fields SET sequence_num=-1\n") | |
746 | _T("<END>"); | |
747 | CHK_EXEC(SQLBatch(batch)); | |
748 | ||
749 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='375' WHERE var_name='SchemaVersion'"))); | |
750 | return TRUE; | |
751 | } | |
752 | ||
97afcb6e VK |
753 | /** |
754 | * Upgrade from V373 to V374 | |
755 | */ | |
756 | static BOOL H_UpgradeFromV373(int currVersion, int newVersion) | |
757 | { | |
758 | static TCHAR batch[] = | |
759 | _T("ALTER TABLE object_properties ADD maint_event_id $SQL:INT64\n") | |
9b4a2a0e | 760 | _T("UPDATE object_properties SET maint_mode='0',maint_event_id=0\n") |
97afcb6e VK |
761 | _T("<END>"); |
762 | CHK_EXEC(SQLBatch(batch)); | |
763 | ||
764 | CHK_EXEC(CreateEventTemplate(EVENT_MAINTENANCE_MODE_ENTERED, _T("SYS_MAINTENANCE_MODE_ENTERED"), SEVERITY_NORMAL, EF_LOG, | |
765 | _T("Entered maintenance mode"), | |
766 | _T("Generated when node, cluster, or mobile device enters maintenance mode."))); | |
767 | ||
768 | CHK_EXEC(CreateEventTemplate(EVENT_MAINTENANCE_MODE_LEFT, _T("SYS_MAINTENANCE_MODE_LEFT"), SEVERITY_NORMAL, EF_LOG, | |
769 | _T("Left maintenance mode"), | |
770 | _T("Generated when node, cluster, or mobile device leaves maintenance mode."))); | |
771 | ||
772 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='374' WHERE var_name='SchemaVersion'"))); | |
773 | return TRUE; | |
774 | } | |
775 | ||
b3beb7f4 | 776 | /** |
777 | * Upgrade from V372 to V373 | |
778 | */ | |
779 | static BOOL H_UpgradeFromV372(int currVersion, int newVersion) | |
780 | { | |
781 | CHK_EXEC(SQLQuery(_T("ALTER TABLE scheduled_tasks ADD object_id integer"))); | |
782 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='373' WHERE var_name='SchemaVersion'"))); | |
783 | return TRUE; | |
784 | } | |
785 | ||
89fd6fa4 VK |
786 | /** |
787 | * Upgrade from V371 to V372 | |
788 | */ | |
789 | static BOOL H_UpgradeFromV371(int currVersion, int newVersion) | |
790 | { | |
791 | static TCHAR batch[] = | |
792 | _T("ALTER TABLE object_properties ADD maint_mode char(1)\n") | |
793 | _T("UPDATE object_properties SET maint_mode='0'\n") | |
794 | _T("<END>"); | |
795 | CHK_EXEC(SQLBatch(batch)); | |
796 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='372' WHERE var_name='SchemaVersion'"))); | |
797 | return TRUE; | |
798 | } | |
799 | ||
90e3031f VK |
800 | /** |
801 | * Upgrade from V370 to V371 | |
802 | */ | |
803 | static BOOL H_UpgradeFromV370(int currVersion, int newVersion) | |
804 | { | |
805 | int defaultPollingInterval = ConfigReadInt(_T("DefaultDCIPollingInterval"), 60); | |
806 | int defaultRetentionTime = ConfigReadInt(_T("DefaultDCIRetentionTime"), 30); | |
807 | ||
808 | TCHAR query[256]; | |
809 | _sntprintf(query, 256, _T("UPDATE items SET polling_interval=0 WHERE polling_interval=%d"), defaultPollingInterval); | |
810 | CHK_EXEC(SQLQuery(query)); | |
811 | ||
812 | _sntprintf(query, 256, _T("UPDATE items SET retention_time=0 WHERE retention_time=%d"), defaultRetentionTime); | |
813 | CHK_EXEC(SQLQuery(query)); | |
814 | ||
815 | _sntprintf(query, 256, _T("UPDATE dc_tables SET polling_interval=0 WHERE polling_interval=%d"), defaultPollingInterval); | |
816 | CHK_EXEC(SQLQuery(query)); | |
817 | ||
818 | _sntprintf(query, 256, _T("UPDATE dc_tables SET retention_time=0 WHERE retention_time=%d"), defaultRetentionTime); | |
819 | CHK_EXEC(SQLQuery(query)); | |
820 | ||
821 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='371' WHERE var_name='SchemaVersion'"))); | |
822 | return TRUE; | |
823 | } | |
824 | ||
8bdd26dc VK |
825 | /** |
826 | * Upgrade from V369 to V370 | |
827 | */ | |
828 | static BOOL H_UpgradeFromV369(int currVersion, int newVersion) | |
829 | { | |
830 | CHK_EXEC(CreateTable( | |
831 | _T("CREATE TABLE dashboard_associations (") | |
832 | _T(" object_id integer not null,") | |
833 | _T(" dashboard_id integer not null,") | |
834 | _T(" PRIMARY KEY(object_id,dashboard_id))"))); | |
835 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='370' WHERE var_name='SchemaVersion'"))); | |
836 | return TRUE; | |
837 | } | |
838 | ||
0a145c10 | 839 | /** |
840 | * Upgrade from V368 to V369 | |
841 | */ | |
842 | static BOOL H_UpgradeFromV368(int currVersion, int newVersion) | |
843 | { | |
844 | CHK_EXEC(CreateTable( | |
c6e191d2 | 845 | _T("CREATE TABLE scheduled_tasks (") |
0a145c10 | 846 | _T(" id integer not null,") |
847 | _T(" taskId varchar(255) null,") | |
c6e191d2 | 848 | _T(" schedule varchar(127) null,") |
0a145c10 | 849 | _T(" params varchar(1023) null,") |
850 | _T(" execution_time integer not null,") | |
851 | _T(" last_execution_time integer not null,") | |
852 | _T(" flags integer not null,") | |
c6e191d2 | 853 | _T(" owner integer not null,") |
0a145c10 | 854 | _T(" PRIMARY KEY(id))"))); |
855 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='369' WHERE var_name='SchemaVersion'"))); | |
856 | return TRUE; | |
857 | } | |
858 | ||
de674bb6 VK |
859 | /** |
860 | * Upgrade from V367 to V368 | |
861 | */ | |
862 | static BOOL H_UpgradeFromV367(int currVersion, int newVersion) | |
863 | { | |
864 | static TCHAR batch[] = | |
865 | _T("ALTER TABLE nodes ADD rack_height integer\n") | |
866 | _T("UPDATE nodes SET rack_height=1\n") | |
867 | _T("<END>"); | |
868 | CHK_EXEC(SQLBatch(batch)); | |
de674bb6 VK |
869 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='368' WHERE var_name='SchemaVersion'"))); |
870 | return TRUE; | |
871 | } | |
872 | ||
cf38357f VK |
873 | /** |
874 | * Upgrade from V366 to V367 | |
875 | */ | |
876 | static BOOL H_UpgradeFromV366(int currVersion, int newVersion) | |
877 | { | |
cd071c26 | 878 | CHK_EXEC(CreateConfigParam(_T("TrapSourcesInAllZones"), _T("0"), _T("Search all zones to match trap/syslog source address to node"), 'B', true, true, false, false)); |
cf38357f VK |
879 | |
880 | CHK_EXEC(SQLQuery(_T("ALTER TABLE nodes ADD snmp_sys_contact varchar(127)"))); | |
881 | CHK_EXEC(SQLQuery(_T("ALTER TABLE nodes ADD snmp_sys_location varchar(127)"))); | |
882 | ||
883 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='367' WHERE var_name='SchemaVersion'"))); | |
884 | return TRUE; | |
885 | } | |
886 | ||
48905317 VK |
887 | /** |
888 | * Upgrade from V365 to V366 | |
889 | */ | |
890 | static BOOL H_UpgradeFromV365(int currVersion, int newVersion) | |
891 | { | |
b3643ffe | 892 | CHK_EXEC(CreateConfigParam(_T("ServerCommandOutputTimeout"), _T("60"), true, false)); |
48905317 VK |
893 | |
894 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='366' WHERE var_name='SchemaVersion'"))); | |
895 | return TRUE; | |
896 | } | |
897 | ||
d0a2ada6 | 898 | /** |
899 | * Upgrade from V364 to V365 | |
900 | */ | |
901 | static BOOL H_UpgradeFromV364(int currVersion, int newVersion) | |
902 | { | |
4e7ebbb4 | 903 | CHK_EXEC(CreateConfigParam(_T("SNMPPorts"), _T("161"), true, false)); |
d0a2ada6 | 904 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='365' WHERE var_name='SchemaVersion'"))); |
905 | return TRUE; | |
906 | } | |
907 | ||
3d37f7bf VK |
908 | /** |
909 | * Upgrade from V363 to V364 | |
910 | */ | |
911 | static BOOL H_UpgradeFromV363(int currVersion, int newVersion) | |
912 | { | |
913 | static TCHAR batch[] = | |
914 | _T("ALTER TABLE interfaces ADD speed $SQL:INT64\n") | |
915 | _T("ALTER TABLE interfaces ADD iftable_suffix varchar(127)\n") | |
916 | _T("UPDATE interfaces SET speed=0\n") | |
917 | _T("<END>"); | |
918 | CHK_EXEC(SQLBatch(batch)); | |
919 | ||
920 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='364' WHERE var_name='SchemaVersion'"))); | |
921 | return TRUE; | |
922 | } | |
923 | ||
2589cc10 | 924 | /** |
925 | * Upgrade from V362 to V363 | |
926 | */ | |
927 | static BOOL H_UpgradeFromV362(int currVersion, int newVersion) | |
928 | { | |
929 | ResizeColumn(_T("config"), _T("var_value"), 2000, true); | |
930 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='363' WHERE var_name='SchemaVersion'"))); | |
931 | return TRUE; | |
932 | } | |
933 | ||
8a1519ce VK |
934 | /** |
935 | * Upgrade from V361 to V362 | |
936 | */ | |
937 | static BOOL H_UpgradeFromV361(int currVersion, int newVersion) | |
938 | { | |
939 | CHK_EXEC(CreateConfigParam(_T("CaseInsensitiveLoginNames"), _T("0"), _T("Enable/disable case insensitive login names"), 'B', true, true, false)); | |
940 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='362' WHERE var_name='SchemaVersion'"))); | |
941 | return TRUE; | |
942 | } | |
943 | ||
b576249a VK |
944 | /** |
945 | * Upgrade from V360 to V361 | |
946 | */ | |
947 | static BOOL H_UpgradeFromV360(int currVersion, int newVersion) | |
948 | { | |
949 | CHK_EXEC(CreateTable( | |
950 | _T("CREATE TABLE object_tools_input_fields (") | |
951 | _T(" tool_id integer not null,") | |
952 | _T(" name varchar(31) not null,") | |
953 | _T(" input_type char(1) not null,") | |
954 | _T(" display_name varchar(127) null,") | |
955 | _T(" config $SQL:TEXT null,") | |
956 | _T(" PRIMARY KEY(tool_id,name))"))); | |
957 | ||
958 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='361' WHERE var_name='SchemaVersion'"))); | |
959 | return TRUE; | |
960 | } | |
961 | ||
b2a15edc VK |
962 | /** |
963 | * Upgrade from V359 to V360 | |
964 | */ | |
965 | static BOOL H_UpgradeFromV359(int currVersion, int newVersion) | |
966 | { | |
967 | DB_RESULT hResult = SQLSelect(_T("SELECT tool_id,tool_type,tool_data,confirmation_text FROM object_tools")); | |
968 | if (hResult != NULL) | |
969 | { | |
970 | int count = DBGetNumRows(hResult); | |
971 | for(int i = 0; i < count; i++) | |
972 | { | |
973 | UINT32 id = DBGetFieldULong(hResult, i, 0); | |
2589cc10 | 974 | |
b2a15edc VK |
975 | TCHAR *text = DBGetField(hResult, i, 3, NULL, 0); |
976 | if (text != NULL) | |
977 | { | |
978 | ConvertObjectToolMacros(id, text, _T("confirmation_text")); | |
979 | free(text); | |
980 | } | |
2589cc10 | 981 | |
b2a15edc VK |
982 | int type = DBGetFieldLong(hResult, i, 1); |
983 | if ((type == 1) || (type == 4) || (type == 5)) | |
984 | { | |
985 | text = DBGetField(hResult, i, 2, NULL, 0); | |
986 | if (text != NULL) | |
987 | { | |
988 | ConvertObjectToolMacros(id, text, _T("tool_data")); | |
989 | free(text); | |
990 | } | |
991 | } | |
992 | } | |
993 | DBFreeResult(hResult); | |
994 | } | |
995 | else | |
996 | { | |
997 | if (!g_bIgnoreErrors) | |
998 | return FALSE; | |
999 | } | |
1000 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='360' WHERE var_name='SchemaVersion'"))); | |
1001 | return TRUE; | |
1002 | } | |
1003 | ||
7a8aa001 VK |
1004 | /** |
1005 | * Upgrade from V358 to V359 | |
1006 | */ | |
1007 | static BOOL H_UpgradeFromV358(int currVersion, int newVersion) | |
1008 | { | |
1009 | static TCHAR batch[] = | |
1010 | _T("ALTER TABLE network_maps ADD object_display_mode integer\n") | |
1011 | _T("UPDATE network_maps SET object_display_mode=0\n") | |
1012 | _T("<END>"); | |
1013 | CHK_EXEC(SQLBatch(batch)); | |
1014 | ||
1015 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='359' WHERE var_name='SchemaVersion'"))); | |
1016 | return TRUE; | |
1017 | } | |
1018 | ||
c85c8ef2 VK |
1019 | /** |
1020 | * Upgrade from V357 to V358 | |
1021 | */ | |
1022 | static BOOL H_UpgradeFromV357(int currVersion, int newVersion) | |
1023 | { | |
1024 | static TCHAR batch[] = | |
1025 | _T("ALTER TABLE config ADD data_type char(1) not null default 'S'\n") | |
1026 | _T("ALTER TABLE config ADD is_public char(1) not null default 'N'\n") | |
1027 | _T("ALTER TABLE config ADD description varchar(255)\n") | |
1028 | _T("ALTER TABLE config ADD possible_values $SQL:TEXT\n") | |
1029 | _T("<END>"); | |
1030 | static TCHAR batchOracle[] = | |
1031 | _T("ALTER TABLE config ADD data_type char(1) default 'S' not null\n") | |
1032 | _T("ALTER TABLE config ADD is_public char(1) default 'N' not null\n") | |
1033 | _T("ALTER TABLE config ADD description varchar(255)\n") | |
1034 | _T("ALTER TABLE config ADD possible_values $SQL:TEXT\n") | |
1035 | _T("<END>"); | |
1036 | CHK_EXEC(SQLBatch((g_dbSyntax == DB_SYNTAX_ORACLE) ? batchOracle : batch)); | |
1037 | ||
1038 | CHK_EXEC(CreateConfigParam(_T("DashboardDataExportEnableInterpolation"), _T("1"), _T("Enable/disable data interpolation in dashboard data export"), 'B', true, false, true)); | |
1039 | ||
1040 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='358' WHERE var_name='SchemaVersion'"))); | |
1041 | return TRUE; | |
1042 | } | |
1043 | ||
9db92307 | 1044 | /** |
1045 | * Upgrade from V356 to V357 | |
1046 | */ | |
1047 | static BOOL H_UpgradeFromV356(int currVersion, int newVersion) | |
1048 | { | |
1049 | TCHAR comunityString[256]; | |
1050 | comunityString[0] = 0; | |
1051 | DB_RESULT hResult = SQLSelect(_T("SELECT var_value FROM config WHERE var_name='DefaultCommunityString'")); | |
1052 | if (hResult != NULL) | |
1053 | { | |
1054 | if(DBGetNumRows(hResult) > 0) | |
1055 | { | |
1056 | DBGetField(hResult, 0, 0, comunityString, 256); | |
1057 | } | |
1058 | DBFreeResult(hResult); | |
1059 | } | |
1060 | ||
c85c8ef2 | 1061 | if (comunityString[0] != 0) |
9db92307 | 1062 | { |
1063 | DB_RESULT hResult = SQLSelect(_T("SELECT id, community FROM snmp_communities")); | |
1064 | if (hResult != NULL) | |
1065 | { | |
1066 | CHK_EXEC(SQLQuery(_T("DELETE FROM snmp_communities"))); | |
1067 | ||
1068 | TCHAR query[1024]; | |
1069 | _sntprintf(query, 1024, _T("INSERT INTO snmp_communities (id,community) VALUES(%d,'%s')"), 1, comunityString); | |
1070 | CHK_EXEC(SQLQuery(query)); | |
1071 | ||
1072 | int count = DBGetNumRows(hResult); | |
1073 | for(int i = 0; i < count; i++) | |
1074 | { | |
1075 | _sntprintf(query, 1024, _T("INSERT INTO snmp_communities (id,community) VALUES(%d,'%s')"), i + 2, DBGetField(hResult, i, 1, comunityString, 256)); | |
1076 | CHK_EXEC(SQLQuery(query)); | |
1077 | } | |
1078 | } | |
1079 | } | |
1080 | ||
1081 | CHK_EXEC(SQLQuery(_T("DELETE FROM config WHERE var_name='DefaultCommunityString'"))); | |
1082 | ||
1083 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='357' WHERE var_name='SchemaVersion'"))); | |
1084 | return TRUE; | |
1085 | } | |
1086 | ||
e1d2050f VK |
1087 | /** |
1088 | * Upgrade from V355 to V356 | |
1089 | */ | |
1090 | static BOOL H_UpgradeFromV355(int currVersion, int newVersion) | |
1091 | { | |
1092 | static TCHAR batch[] = | |
1093 | _T("DELETE FROM config WHERE var_name='NumberOfBusinessServicePollers'\n") | |
1094 | _T("DELETE FROM config WHERE var_name='NumberOfConditionPollers'\n") | |
1095 | _T("DELETE FROM config WHERE var_name='NumberOfConfigurationPollers'\n") | |
1096 | _T("DELETE FROM config WHERE var_name='NumberOfDiscoveryPollers'\n") | |
1097 | _T("DELETE FROM config WHERE var_name='NumberOfInstancePollers'\n") | |
1098 | _T("DELETE FROM config WHERE var_name='NumberOfRoutingTablePollers'\n") | |
1099 | _T("DELETE FROM config WHERE var_name='NumberOfStatusPollers'\n") | |
1100 | _T("DELETE FROM config WHERE var_name='NumberOfTopologyTablePollers'\n") | |
1101 | _T("<END>"); | |
1102 | CHK_EXEC(SQLBatch(batch)); | |
1103 | ||
c85c8ef2 VK |
1104 | CHK_EXEC(CreateConfigParam(_T("PollerThreadPoolBaseSize"), _T("10"), true, true)); |
1105 | CHK_EXEC(CreateConfigParam(_T("PollerThreadPoolMaxSize"), _T("250"), true, true)); | |
e1d2050f VK |
1106 | |
1107 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='356' WHERE var_name='SchemaVersion'"))); | |
1108 | return TRUE; | |
1109 | } | |
1110 | ||
9708eff4 VK |
1111 | /** |
1112 | * Upgrade from V354 to V355 | |
1113 | */ | |
1114 | static BOOL H_UpgradeFromV354(int currVersion, int newVersion) | |
1115 | { | |
1116 | static TCHAR batch[] = | |
1117 | _T("ALTER TABLE nodes ADD agent_cache_mode char(1)\n") | |
55d81770 | 1118 | _T("UPDATE nodes SET agent_cache_mode='0'\n") |
e9902466 | 1119 | _T("DELETE FROM config WHERE var_name='ServerID'\n") |
9708eff4 VK |
1120 | _T("<END>"); |
1121 | CHK_EXEC(SQLBatch(batch)); | |
1122 | ||
c85c8ef2 | 1123 | CHK_EXEC(CreateConfigParam(_T("DefaultAgentCacheMode"), _T("2"), true, true)); |
9708eff4 VK |
1124 | |
1125 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='355' WHERE var_name='SchemaVersion'"))); | |
1126 | return TRUE; | |
1127 | } | |
1128 | ||
981d246a VK |
1129 | /** |
1130 | * Upgrade from V353 to V354 | |
1131 | */ | |
1132 | static BOOL H_UpgradeFromV353(int currVersion, int newVersion) | |
1133 | { | |
1134 | CHK_EXEC(ResizeColumn(_T("users"), _T("password"), 127, false)); | |
1135 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='354' WHERE var_name='SchemaVersion'"))); | |
1136 | return TRUE; | |
1137 | } | |
1138 | ||
2096c8f0 VK |
1139 | /** |
1140 | * Upgrade from V352 to V353 | |
1141 | */ | |
1142 | static BOOL H_UpgradeFromV352(int currVersion, int newVersion) | |
1143 | { | |
1144 | CHK_EXEC(SQLQuery(_T("ALTER TABLE dci_summary_tables ADD guid varchar(36)"))); | |
1145 | CHK_EXEC(GenerateGUID(_T("dci_summary_tables"), _T("id"), _T("guid"))); | |
1146 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='353' WHERE var_name='SchemaVersion'"))); | |
1147 | return TRUE; | |
1148 | } | |
1149 | ||
271e3971 VK |
1150 | /** |
1151 | * Upgrade from V351 to V352 | |
1152 | */ | |
1153 | static BOOL H_UpgradeFromV351(int currVersion, int newVersion) | |
1154 | { | |
1155 | CHK_EXEC(SQLQuery(_T("ALTER TABLE object_tools ADD guid varchar(36)"))); | |
1156 | CHK_EXEC(GenerateGUID(_T("object_tools"), _T("tool_id"), _T("guid"))); | |
1157 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='352' WHERE var_name='SchemaVersion'"))); | |
1158 | return TRUE; | |
1159 | } | |
1160 | ||
ac58ffe9 VK |
1161 | /** |
1162 | * Upgrade from V350 to V351 | |
1163 | */ | |
1164 | static BOOL H_UpgradeFromV350(int currVersion, int newVersion) | |
1165 | { | |
1166 | static TCHAR batch[] = | |
1167 | _T("ALTER TABLE access_points ADD ap_index integer\n") | |
1168 | _T("UPDATE access_points SET ap_index=0\n") | |
1169 | _T("<END>"); | |
1170 | CHK_EXEC(SQLBatch(batch)); | |
1171 | ||
1172 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='351' WHERE var_name='SchemaVersion'"))); | |
1173 | return TRUE; | |
1174 | } | |
1175 | ||
fcf91b2e | 1176 | /** |
1177 | * Upgrade from V349 to V350 | |
1178 | */ | |
1179 | static BOOL H_UpgradeFromV349(int currVersion, int newVersion) | |
1180 | { | |
1181 | switch(g_dbSyntax) | |
1182 | { | |
1183 | case DB_SYNTAX_ORACLE: | |
a8a0793d VK |
1184 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties SET comments = comments || chr(13) || chr(10) || (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id) WHERE EXISTS (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id AND description IS NOT NULL)"))); |
1185 | break; | |
fcf91b2e | 1186 | case DB_SYNTAX_DB2: |
a8a0793d VK |
1187 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties SET comments = comments || chr(13) || chr(10) || (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id) WHERE EXISTS (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id AND description IS NOT NULL AND description <> '')"))); |
1188 | break; | |
96e03924 | 1189 | case DB_SYNTAX_MSSQL: |
b69710b9 | 1190 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties SET comments = CAST(comments AS varchar(4000)) + char(13) + char(10) + CAST((SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id) AS varchar(4000)) WHERE EXISTS (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id AND description IS NOT NULL AND datalength(description) <> 0)"))); |
fcf91b2e | 1191 | break; |
1192 | case DB_SYNTAX_PGSQL: | |
a8a0793d | 1193 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties SET comments = comments || '\\015\\012' || (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id) WHERE EXISTS (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id AND description IS NOT NULL AND description <> '')"))); |
fcf91b2e | 1194 | break; |
1195 | case DB_SYNTAX_SQLITE: | |
a8a0793d | 1196 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties SET comments = comments || char(13,10) || (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id) WHERE EXISTS (SELECT description FROM ap_common WHERE ap_common.id = object_properties.object_id AND description IS NOT NULL AND description <> '')"))); |
fcf91b2e | 1197 | break; |
1198 | case DB_SYNTAX_MYSQL: | |
a8a0793d | 1199 | CHK_EXEC(SQLQuery(_T("UPDATE object_properties, ap_common SET object_properties.comments=CONCAT(object_properties.comments, '\\r\\n', ap_common.description) WHERE object_properties.object_id=ap_common.id AND (ap_common.description!='' AND ap_common.description IS NOT NULL)"))); |
fcf91b2e | 1200 | break; |
1201 | default: | |
96e03924 | 1202 | break; |
fcf91b2e | 1203 | } |
1204 | ||
3f543e56 | 1205 | CHK_EXEC(SQLDropColumn(_T("ap_common"), _T("description"))); |
fcf91b2e | 1206 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='350' WHERE var_name='SchemaVersion'"))); |
1207 | return TRUE; | |
1208 | } | |
1209 | ||
b06ae508 VK |
1210 | /** |
1211 | * Upgrade from V348 to V349 | |
1212 | */ | |
1213 | static BOOL H_UpgradeFromV348(int currVersion, int newVersion) | |
1214 | { | |
1215 | CHK_EXEC(SQLQuery(_T("DELETE FROM config WHERE var_name='HouseKeepingInterval'"))); | |
c85c8ef2 | 1216 | CHK_EXEC(CreateConfigParam(_T("HousekeeperStartTime"), _T("02:00"), true, true)); |
b06ae508 VK |
1217 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='349' WHERE var_name='SchemaVersion'"))); |
1218 | return TRUE; | |
1219 | } | |
1220 | ||
c30c0c0f VK |
1221 | /** |
1222 | * Upgrade from V347 to V348 | |
1223 | */ | |
1224 | static BOOL H_UpgradeFromV347(int currVersion, int newVersion) | |
1225 | { | |
1226 | CHK_EXEC(CreateEventTemplate(EVENT_IF_IPADDR_ADDED, _T("SYS_IF_IPADDR_ADDED"), SEVERITY_NORMAL, EF_LOG, | |
1227 | _T("IP address %3/%4 added to interface \"%2\""), | |
1228 | _T("Generated when IP address added to interface.\r\n") | |
1229 | _T("Parameters:\r\n") | |
1230 | _T(" 1) Interface object ID\r\n") | |
1231 | _T(" 2) Interface name\r\n") | |
1232 | _T(" 3) IP address\r\n") | |
1233 | _T(" 4) Network mask\r\n") | |
1234 | _T(" 5) Interface index"))); | |
1235 | ||
1236 | CHK_EXEC(CreateEventTemplate(EVENT_IF_IPADDR_DELETED, _T("SYS_IF_IPADDR_DELETED"), SEVERITY_NORMAL, EF_LOG, | |
1237 | _T("IP address %3/%4 deleted from interface \"%2\""), | |
1238 | _T("Generated when IP address deleted from interface.\r\n") | |
1239 | _T("Parameters:\r\n") | |
1240 | _T(" 1) Interface object ID\r\n") | |
1241 | _T(" 2) Interface name\r\n") | |
1242 | _T(" 3) IP address\r\n") | |
1243 | _T(" 4) Network mask\r\n") | |
1244 | _T(" 5) Interface index"))); | |
1245 | ||
1246 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='348' WHERE var_name='SchemaVersion'"))); | |
1247 | return TRUE; | |
1248 | } | |
1249 | ||
1250 | /** | |
1251 | * Upgrade from V346 to V347 | |
1252 | */ | |
1253 | static BOOL H_UpgradeFromV346(int currVersion, int newVersion) | |
1254 | { | |
1255 | CHK_EXEC(CreateTable( | |
1256 | _T("CREATE TABLE interface_address_list (") | |
1257 | _T(" iface_id integer not null,") | |
1258 | _T(" ip_addr varchar(48) not null,") | |
1259 | _T(" ip_netmask integer not null,") | |
1260 | _T(" PRIMARY KEY(iface_id,ip_addr))"))); | |
1261 | ||
1262 | DB_RESULT hResult = SQLSelect(_T("SELECT id,ip_addr,ip_netmask FROM interfaces WHERE ip_addr<>'0.0.0.0'")); | |
1263 | if (hResult != NULL) | |
1264 | { | |
1265 | int count = DBGetNumRows(hResult); | |
1266 | for(int i = 0; i < count; i++) | |
1267 | { | |
1268 | TCHAR query[256], addr[64]; | |
1269 | _sntprintf(query, 256, _T("INSERT INTO interface_address_list (iface_id,ip_addr,ip_netmask) VALUES (%d,'%s',%d)"), | |
1270 | DBGetFieldLong(hResult, i, 0), DBGetField(hResult, i, 1, addr, 64), DBGetFieldLong(hResult, i, 2)); | |
1271 | CHK_EXEC(SQLQuery(query)); | |
1272 | } | |
1273 | DBFreeResult(hResult); | |
1274 | } | |
1275 | else | |
1276 | { | |
1277 | if (!g_bIgnoreErrors) | |
1278 | return FALSE; | |
1279 | } | |
1280 | ||
1281 | static TCHAR batch[] = | |
1282 | _T("ALTER TABLE interfaces DROP COLUMN ip_addr\n") | |
1283 | _T("ALTER TABLE interfaces DROP COLUMN ip_netmask\n") | |
1284 | _T("<END>"); | |
1285 | CHK_EXEC(SQLBatch(batch)); | |
1286 | ||
1287 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='347' WHERE var_name='SchemaVersion'"))); | |
1288 | return TRUE; | |
1289 | } | |
1290 | ||
c75e9ee4 VK |
1291 | /** |
1292 | * Upgrade from V345 to V346 | |
1293 | */ | |
1294 | static BOOL H_UpgradeFromV345(int currVersion, int newVersion) | |
1295 | { | |
b69710b9 VK |
1296 | if (g_dbSyntax == DB_SYNTAX_MSSQL) |
1297 | { | |
1298 | CHK_EXEC(DropPrimaryKey(_T("cluster_sync_subnets"))); | |
1299 | CHK_EXEC(DropPrimaryKey(_T("address_lists"))); | |
1300 | CHK_EXEC(DropPrimaryKey(_T("vpn_connector_networks"))); | |
1301 | } | |
1302 | ||
1303 | CHK_EXEC(ResizeColumn(_T("cluster_sync_subnets"), _T("subnet_addr"), 48, false)); | |
1304 | CHK_EXEC(ResizeColumn(_T("cluster_resources"), _T("ip_addr"), 48, false)); | |
1305 | CHK_EXEC(ResizeColumn(_T("subnets"), _T("ip_addr"), 48, false)); | |
1306 | CHK_EXEC(ResizeColumn(_T("interfaces"), _T("ip_addr"), 48, false)); | |
1307 | CHK_EXEC(ResizeColumn(_T("network_services"), _T("ip_bind_addr"), 48, false)); | |
1308 | CHK_EXEC(ResizeColumn(_T("vpn_connector_networks"), _T("ip_addr"), 48, false)); | |
1309 | CHK_EXEC(ResizeColumn(_T("snmp_trap_log"), _T("ip_addr"), 48, false)); | |
1310 | CHK_EXEC(ResizeColumn(_T("address_lists"), _T("addr1"), 48, false)); | |
1311 | CHK_EXEC(ResizeColumn(_T("address_lists"), _T("addr2"), 48, false)); | |
1312 | CHK_EXEC(ResizeColumn(_T("nodes"), _T("primary_ip"), 48, false)); | |
c75e9ee4 VK |
1313 | |
1314 | CHK_EXEC(ConvertNetMasks(_T("cluster_sync_subnets"), _T("subnet_mask"), _T("cluster_id"))); | |
1315 | CHK_EXEC(ConvertNetMasks(_T("subnets"), _T("ip_netmask"), _T("id"))); | |
1316 | CHK_EXEC(ConvertNetMasks(_T("interfaces"), _T("ip_netmask"), _T("id"))); | |
1317 | CHK_EXEC(ConvertNetMasks(_T("vpn_connector_networks"), _T("ip_netmask"), _T("vpn_id"), _T("ip_addr"))); | |
1318 | ||
1319 | DB_RESULT hResult = SQLSelect(_T("SELECT community_id,addr_type,addr1,addr2 FROM address_lists WHERE list_type=0")); | |
1320 | if (hResult != NULL) | |
1321 | { | |
1322 | int count = DBGetNumRows(hResult); | |
1323 | if (count > 0) | |
1324 | { | |
1325 | CHK_EXEC(SQLQuery(_T("DELETE FROM address_lists WHERE list_type=0"))); | |
1326 | ||
1327 | for(int i = 0; i < count; i++) | |
1328 | { | |
1329 | TCHAR query[256], addr[64]; | |
1330 | _sntprintf(query, 256, _T("INSERT INTO address_lists (list_type,community_id,addr_type,addr1,addr2) VALUES (0,%d,%d,'%s','%d')"), | |
1331 | DBGetFieldLong(hResult, i, 0), DBGetFieldLong(hResult, i, 1), DBGetField(hResult, i, 2, addr, 64), | |
1332 | BitsInMask(DBGetFieldIPAddr(hResult, i, 3))); | |
1333 | CHK_EXEC(SQLQuery(query)); | |
1334 | } | |
1335 | } | |
1336 | DBFreeResult(hResult); | |
1337 | } | |
1338 | else | |
1339 | { | |
1340 | if (!g_bIgnoreErrors) | |
1341 | return FALSE; | |
1342 | } | |
1343 | ||
b69710b9 VK |
1344 | if (g_dbSyntax == DB_SYNTAX_MSSQL) |
1345 | { | |
1346 | CHK_EXEC(SQLQuery(_T("ALTER TABLE cluster_sync_subnets ADD CONSTRAINT pk_cluster_sync_subnets PRIMARY KEY (cluster_id,subnet_addr)"))); | |
1347 | CHK_EXEC(SQLQuery(_T("ALTER TABLE address_lists ADD CONSTRAINT pk_address_lists PRIMARY KEY (list_type,community_id,addr_type,addr1,addr2)"))); | |
1348 | CHK_EXEC(SQLQuery(_T("ALTER TABLE vpn_connector_networks ADD CONSTRAINT pk_vpn_connector_networks PRIMARY KEY (vpn_id,ip_addr)"))); | |
1349 | } | |
1350 | ||
c75e9ee4 VK |
1351 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='346' WHERE var_name='SchemaVersion'"))); |
1352 | return TRUE; | |
1353 | } | |
1354 | ||
805171de VK |
1355 | /** |
1356 | * Upgrade from V344 to V345 | |
1357 | */ | |
1358 | static BOOL H_UpgradeFromV344(int currVersion, int newVersion) | |
1359 | { | |
1360 | CHK_EXEC(CreateConfigParam(_T("NumberOfInstancePollers"), _T("10"), 1, 1)); | |
1361 | CHK_EXEC(CreateConfigParam(_T("InstancePollingInterval"), _T("600"), 1, 1)); | |
1362 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='345' WHERE var_name='SchemaVersion'"))); | |
1363 | return TRUE; | |
1364 | } | |
1365 | ||
e95680e5 VK |
1366 | /** |
1367 | * Upgrade from V343 to V344 | |
1368 | */ | |
1369 | static BOOL H_UpgradeFromV343(int currVersion, int newVersion) | |
1370 | { | |
c30c0c0f | 1371 | static TCHAR batch[] = |
e95680e5 VK |
1372 | _T("ALTER TABLE interfaces ADD mtu integer\n") |
1373 | _T("ALTER TABLE interfaces ADD alias varchar(255)\n") | |
1374 | _T("UPDATE interfaces SET mtu=0\n") | |
1375 | _T("<END>"); | |
1376 | CHK_EXEC(SQLBatch(batch)); | |
1377 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='344' WHERE var_name='SchemaVersion'"))); | |
1378 | return TRUE; | |
1379 | } | |
1380 | ||
d140955e VK |
1381 | /** |
1382 | * Upgrade from V342 to V343 | |
1383 | */ | |
1384 | static BOOL H_UpgradeFromV342(int currVersion, int newVersion) | |
1385 | { | |
1386 | if (g_dbSyntax != DB_SYNTAX_MSSQL) | |
1387 | { | |
1388 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='CREATE INDEX idx_idata_%d_id_timestamp ON idata_%d(item_id,idata_timestamp DESC)' WHERE var_name='IDataIndexCreationCommand_0'"))); | |
5096f5a5 | 1389 | CHK_EXEC(DBCommit(g_hCoreDB)); // do reindexing outside current transaction |
d140955e | 1390 | ReindexIData(); |
5096f5a5 | 1391 | CHK_EXEC(DBBegin(g_hCoreDB)); |
d140955e VK |
1392 | } |
1393 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='343' WHERE var_name='SchemaVersion'"))); | |
1394 | return TRUE; | |
1395 | } | |
1396 | ||
4b70cb26 | 1397 | /** |
1398 | * Upgrade from V341 to V342 | |
1399 | */ | |
1400 | static BOOL H_UpgradeFromV341(int currVersion, int newVersion) | |
1401 | { | |
d140955e | 1402 | CHK_EXEC(SQLQuery(_T("ALTER TABLE object_tools ADD tool_filter $SQL:TEXT"))); |
4b70cb26 | 1403 | DB_RESULT hResult = SQLSelect(_T("SELECT tool_id, matching_oid FROM object_tools")); |
1404 | if (hResult != NULL) | |
1405 | { | |
1406 | int count = DBGetNumRows(hResult); | |
1407 | for(int i = 0; i < count; i++) | |
1408 | { | |
1409 | TCHAR *oid = DBGetField(hResult, i, 1, NULL, 0); | |
1410 | if (oid == NULL || !_tcscmp(oid, _T(" "))) | |
1411 | { | |
1412 | oid = _tcsdup(_T("")); | |
1413 | } | |
1414 | else | |
1415 | { | |
1416 | TCHAR *newConfig = (TCHAR *)malloc((_tcslen(oid) + 512) * sizeof(TCHAR)); | |
1417 | _tcscpy(newConfig, _T("<objectToolFilter>")); | |
1418 | _tcscat(newConfig, _T("<snmpOid>")); | |
1419 | _tcscat(newConfig, oid); | |
1420 | _tcscat(newConfig, _T("</snmpOid>")); | |
1421 | _tcscat(newConfig, _T("</objectToolFilter>")); | |
1422 | ||
1423 | DB_STATEMENT statment = DBPrepare(g_hCoreDB, _T("UPDATE object_tools SET tool_filter=? WHERE tool_id=?")); | |
1424 | if (statment != NULL) | |
1425 | { | |
1426 | DBBind(statment, 1, DB_SQLTYPE_TEXT, newConfig, DB_BIND_STATIC); | |
1427 | DBBind(statment, 2, DB_SQLTYPE_INTEGER, DBGetFieldULong(hResult, i, 0)); | |
1428 | CHK_EXEC(DBExecute(statment)); | |
1429 | DBFreeStatement(statment); | |
1430 | } | |
1431 | else | |
1432 | { | |
1433 | if (!g_bIgnoreErrors) | |
1434 | return FALSE; | |
1435 | } | |
1436 | } | |
1437 | } | |
1438 | } | |
a19fa589 | 1439 | CHK_EXEC(SQLDropColumn(_T("object_tools"), _T("matching_oid"))); //delete old column |
4b70cb26 | 1440 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='342' WHERE var_name='SchemaVersion'"))); |
1441 | return TRUE; | |
1442 | } | |
1443 | ||
56fa1092 VK |
1444 | /** |
1445 | * Upgrade from V340 to V341 | |
1446 | */ | |
1447 | static BOOL H_UpgradeFromV340(int currVersion, int newVersion) | |
1448 | { | |
1449 | static TCHAR batch[] = | |
1450 | _T("ALTER TABLE object_properties ADD country varchar(63)\n") | |
1451 | _T("ALTER TABLE object_properties ADD city varchar(63)\n") | |
1452 | _T("ALTER TABLE object_properties ADD street_address varchar(255)\n") | |
1453 | _T("ALTER TABLE object_properties ADD postcode varchar(31)\n") | |
1454 | _T("<END>"); | |
1455 | CHK_EXEC(SQLBatch(batch)); | |
1456 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='341' WHERE var_name='SchemaVersion'"))); | |
1457 | return TRUE; | |
1458 | } | |
1459 | ||
b00236dd | 1460 | /** |
1461 | * Upgrade from V339 to V340 | |
1462 | */ | |
1463 | static BOOL H_UpgradeFromV339(int currVersion, int newVersion) | |
1464 | { | |
1465 | CHK_EXEC(CreateConfigParam(_T("LdapPageSize"), _T("1000"), 1, 0)); | |
1466 | CHK_EXEC(SQLQuery(_T("UPDATE config SET var_value='1' WHERE var_name='LdapUserDeleteAction'"))); | |
1467 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='340' WHERE var_name='SchemaVersion'"))); | |
1468 | return TRUE; | |
1469 | } | |
1470 | ||
815638fe VK |
1471 | /** |
1472 | * Upgrade from V338 to V339 | |
1473 | */ | |
1474 | static BOOL H_UpgradeFromV338(int currVersion, int newVersion) | |
1475 | { | |
1476 | CHK_EXEC(CreateConfigParam(_T("EscapeLocalCommands"), _T("0"), 1, 0)); | |
1477 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='339' WHERE var_name='SchemaVersion'"))); | |
1478 | return TRUE; | |
1479 | } | |
1480 | ||
9208c84b VK |
1481 | /** |
1482 | * Upgrade from V337 to V338 | |
1483 | */ | |
1484 | static BOOL H_UpgradeFromV337(int currVersion, int newVersion) | |
1485 | { | |
1486 | static TCHAR batch[] = | |
1487 | _T("ALTER TABLE nodes ADD icmp_proxy integer\n") | |
1488 | _T("UPDATE nodes SET icmp_proxy=0\n") | |
1489 | _T("<END>"); | |
1490 | CHK_EXEC(SQLBatch(batch)); | |
1491 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='338' WHERE var_name='SchemaVersion'"))); | |
1492 | return TRUE; | |
1493 | } | |
1494 | ||
d368074d VK |
1495 | /** |
1496 | * Upgrade from V336 to V337 | |
1497 | */ | |
1498 | static BOOL H_UpgradeFromV336(int currVersion, int newVersion) | |
1499 | { | |
1500 | CHK_EXEC(CreateConfigParam(_T("SyslogNodeMatchingPolicy"), _T("0"), 1, 1)); | |
1501 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='337' WHERE var_name='SchemaVersion'"))); | |
1502 | return TRUE; | |
1503 | } | |
1504 | ||
2b01f47c | 1505 | /** |
1506 | * Upgrade from V335 to V336 | |
1507 | */ | |
1508 | static BOOL H_UpgradeFromV335(int currVersion, int newVersion) | |
1509 | { | |
b69710b9 VK |
1510 | CHK_EXEC(ResizeColumn(_T("network_map_links"), _T("connector_name1"), 255, true)); |
1511 | CHK_EXEC(ResizeColumn(_T("network_map_links"), _T("connector_name2"), 255, true)); | |
2b01f47c | 1512 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='336' WHERE var_name='SchemaVersion'"))); |
1513 | return TRUE; | |
1514 | } | |
1515 | ||
b30bb1bc | 1516 | /** |
1517 | * Upgrade from V334 to V335 | |
1518 | */ | |
1519 | static BOOL H_UpgradeFromV334(int currVersion, int newVersion) | |
1520 | { | |
17b15353 VK |
1521 | CHK_EXEC(CreateEventTemplate(EVENT_IF_MASK_CHANGED, _T("SYS_IF_MASK_CHANGED"), SEVERITY_NORMAL, EF_LOG, |
1522 | _T("Interface \"%2\" changed mask from %6 to %4 (IP Addr: %3/%4, IfIndex: %5)"), | |
1523 | _T("Generated when when network mask on interface is changed.\r\n") | |
1524 | _T("Parameters:\r\n") | |
1525 | _T(" 1) Interface object ID\r\n") | |
1526 | _T(" 2) Interface name\r\n") | |
1527 | _T(" 3) IP address\r\n") | |
1528 | _T(" 4) New network mask\r\n") | |
1529 | _T(" 5) Interface index\r\n") | |
1530 | _T(" 6) Old network mask"))); | |
b30bb1bc | 1531 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='335' WHERE var_name='SchemaVersion'"))); |
1532 | return TRUE; | |
1533 | } | |
1534 | ||
39e60274 AK |
1535 | /** |
1536 | * Upgrade from V333 to V334 | |
1537 | */ | |
1538 | static BOOL H_UpgradeFromV333(int currVersion, int newVersion) | |
1539 | { | |
1540 | CHK_EXEC(SetColumnNullable(_T("user_groups"), _T("description"))); | |
1541 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='334' WHERE var_name='SchemaVersion'"))); | |
1542 | return TRUE; | |
1543 | } | |
1544 | ||
4899db4d | 1545 | /** |
1546 | * Upgrade from V332 to V333 | |
1547 | */ | |
1548 | static BOOL H_UpgradeFromV332(int currVersion, int newVersion) | |
1549 | { | |
1550 | static TCHAR batch[] = | |
1551 | _T("INSERT INTO metadata (var_name,var_value)") | |
1552 | _T(" VALUES ('LocationHistory','CREATE TABLE gps_history_%d (latitude varchar(20), longitude varchar(20), accuracy integer not null, start_timestamp integer not null, end_timestamp integer not null, PRIMARY KEY(start_timestamp))')\n") | |
1553 | _T("<END>"); | |
1554 | CHK_EXEC(SQLBatch(batch)); | |
1555 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='333' WHERE var_name='SchemaVersion'"))); | |
1556 | return TRUE; | |
1557 | } | |
1558 | ||
a6312bd6 VK |
1559 | /** |
1560 | * Upgrade from V331 to V332 | |
1561 | */ | |
1562 | static BOOL H_UpgradeFromV331(int currVersion, int newVersion) | |
1563 | { | |
1564 | CHK_EXEC(SQLQuery(_T("UPDATE items SET instd_data=instance WHERE node_id=template_id AND instd_method=0"))); | |
1565 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='332' WHERE var_name='SchemaVersion'"))); | |
1566 | return TRUE; | |
1567 | } | |
1568 | ||
2a964810 VK |
1569 | /** |
1570 | * Upgrade from V330 to V331 | |
1571 | */ | |
1572 | static BOOL H_UpgradeFromV330(int currVersion, int newVersion) | |
1573 | { | |
1574 | if (g_dbSyntax == DB_SYNTAX_ORACLE) | |
1575 | { | |
1576 | CHK_EXEC(SQLQuery(_T("ALTER TABLE audit_log ADD session_id integer DEFAULT 0 NOT NULL"))); | |
1577 | } | |
1578 | else | |
1579 | { | |
1580 | CHK_EXEC(SQLQuery(_T("ALTER TABLE audit_log ADD session_id integer NOT NULL DEFAULT 0"))); | |
1581 | } | |
1582 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='331' WHERE var_name='SchemaVersion'"))); | |
1583 | return TRUE; | |
1584 | } | |
1585 | ||
b66098ac VK |
1586 | /** |
1587 | * Upgrade from V329 to V330 | |
1588 | */ | |
1589 | static BOOL H_UpgradeFromV329(int currVersion, int newVersion) | |
1590 | { | |
1591 | CHK_EXEC(CreateConfigParam(_T("AlarmListDisplayLimit"), _T("4096"), 1, 0)); | |
1592 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='330' WHERE var_name='SchemaVersion'"))); | |
1593 | return TRUE; | |
1594 | } | |
1595 | ||
4016c0df | 1596 | /** |
1597 | * Upgrade from V328 to V329 | |
1598 | */ | |
1599 | static BOOL H_UpgradeFromV328(int currVersion, int newVersion) | |
1600 | { | |
b6005694 VK |
1601 | CHK_EXEC(SQLQuery(_T("ALTER TABLE items ADD comments $SQL:TEXT"))); |
1602 | CHK_EXEC(SQLQuery(_T("ALTER TABLE dc_tables ADD comments $SQL:TEXT"))); | |
4016c0df | 1603 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='329' WHERE var_name='SchemaVersion'"))); |
1604 | return TRUE; | |
1605 | } | |
1606 | ||
385b1f20 | 1607 | /** |
1608 | * Upgrade from V327 to V328 | |
1609 | */ | |
1610 | static BOOL H_UpgradeFromV327(int currVersion, int newVersion) | |
1611 | { | |
d368074d | 1612 | CHK_EXEC(CreateConfigParam(_T("ResolveDNSToIPOnStatusPoll"), _T("0"), 1, 1)); |
385b1f20 | 1613 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='328' WHERE var_name='SchemaVersion'"))); |
1614 | return TRUE; | |
1615 | } | |
173c189d VK |
1616 | |
1617 | /** | |
1618 | * Upgrade from V326 to V327 | |
1619 | */ | |
1620 | static BOOL H_UpgradeFromV326(int currVersion, int newVersion) | |
1621 | { | |
3fa5e14a VK |
1622 | CHK_EXEC(DropPrimaryKey(_T("network_map_links"))); |
1623 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_network_map_links_map_id ON network_map_links(map_id)"))); | |
173c189d | 1624 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='327' WHERE var_name='SchemaVersion'"))); |
22aaa779 VK |
1625 | return TRUE; |
1626 | } | |
1627 | ||
ade20a86 | 1628 | /** |
1629 | * Upgrade from V325 to V326 | |
1630 | */ | |
1631 | static BOOL H_UpgradeFromV325(int currVersion, int newVersion) | |
1632 | { | |
ade20a86 | 1633 | static TCHAR batch[] = |
1634 | _T("ALTER TABLE network_map_links DROP COLUMN color\n") | |
1635 | _T("ALTER TABLE network_map_links DROP COLUMN status_object\n") | |
1636 | _T("ALTER TABLE network_map_links DROP COLUMN routing\n") | |
1637 | _T("ALTER TABLE network_map_links DROP COLUMN bend_points\n") | |
1638 | _T("<END>"); | |
1639 | CHK_EXEC(SQLBatch(batch)); | |
1640 | ||
1641 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='326' WHERE var_name='SchemaVersion'"))); | |
1642 | return TRUE; | |
1643 | } | |
1644 | ||
1645 | /** | |
1646 | * Upgrade from V324 to V325 | |
1647 | */ | |
1648 | static BOOL H_UpgradeFromV324(int currVersion, int newVersion) | |
1649 | { | |
1650 | //move map link configuration to xml | |
1651 | ||
1652 | DB_RESULT hResult = SQLSelect(_T("SELECT map_id, element1, element2, element_data, color, status_object, routing, bend_points FROM network_map_links")); | |
1653 | if (hResult != NULL) | |
1654 | { | |
1655 | int count = DBGetNumRows(hResult); | |
1656 | for(int i = 0; i < count; i++) | |
1657 | { | |
c55ab1c2 VK |
1658 | TCHAR *config = DBGetField(hResult, i, 3, NULL, 0); |
1659 | if (config == NULL) | |
1660 | config = _tcsdup(_T("")); | |
ade20a86 | 1661 | UINT32 color = DBGetFieldULong(hResult, i, 4); |
1662 | UINT32 statusObject = DBGetFieldULong(hResult, i, 5); | |
1663 | UINT32 routing = DBGetFieldULong(hResult, i, 6); | |
1664 | TCHAR bendPoints[1024]; | |
1665 | DBGetField(hResult, i, 7, bendPoints, 1024); | |
1666 | ||
c55ab1c2 | 1667 | TCHAR *newConfig = (TCHAR *)malloc((_tcslen(config) + 4096) * sizeof(TCHAR)); |
ade20a86 | 1668 | _tcscpy(newConfig, _T("<config>")); |
1669 | TCHAR* c1 = _tcsstr(config, _T("<dciList")); | |
1670 | TCHAR* c2 = _tcsstr(config, _T("</dciList>")); | |
1671 | if(c1 != NULL && c2!= NULL) | |
1672 | { | |
1673 | *c2 = 0; | |
1674 | _tcscat(newConfig, c1); | |
1675 | _tcscat(newConfig, _T("</dciList>")); | |
1676 | } | |
1677 | ||
1678 | TCHAR tmp[2048]; | |
1679 | _sntprintf(tmp, 2048, _T("<color>%d</color>"), color), | |
1680 | _tcscat(newConfig, tmp); | |
1681 | ||
c55ab1c2 | 1682 | if (statusObject != 0) |
ade20a86 | 1683 | { |
1684 | _sntprintf(tmp, 2048, _T("<objectStatusList length=\"1\"><long>%d</long></objectStatusList>"), statusObject); | |
1685 | _tcscat(newConfig, tmp); | |
1686 | } | |
1687 | ||
1688 | _sntprintf(tmp, 2048, _T("<routing>%d</routing>"), routing); | |
1689 | _tcscat(newConfig, tmp); | |
1690 | ||
c55ab1c2 | 1691 | if (routing == 3 && bendPoints[0] != 0) |
ade20a86 | 1692 | { |
1693 | count = 1; | |
30b86580 | 1694 | for(size_t j = 0; j < _tcslen(bendPoints); j++) |
ade20a86 | 1695 | { |
c55ab1c2 | 1696 | if (bendPoints[j] == _T(',')) |
ade20a86 | 1697 | count++; |
1698 | } | |
1699 | _sntprintf(tmp, 2048, _T("<bendPoints length=\"%d\">%s</bendPoints>"), count, bendPoints); | |
1700 | _tcscat(newConfig, tmp); | |
1701 | } | |
1702 | _tcscat(newConfig, _T("</config>")); | |
1703 | ||
1704 | safe_free(config); | |
1705 | DB_STATEMENT statment = DBPrepare(g_hCoreDB, _T("UPDATE network_map_links SET element_data=? WHERE map_id=? AND element1=? AND element2=?")); | |
e196e5d8 VK |
1706 | if (statment != NULL) |
1707 | { | |
1708 | DBBind(statment, 1, DB_SQLTYPE_TEXT, newConfig, DB_BIND_STATIC); | |
1709 | DBBind(statment, 2, DB_SQLTYPE_INTEGER, DBGetFieldULong(hResult, i, 0)); | |
1710 | DBBind(statment, 3, DB_SQLTYPE_INTEGER, DBGetFieldULong(hResult, i, 1)); | |
1711 | DBBind(statment, 4, DB_SQLTYPE_INTEGER, DBGetFieldULong(hResult, i, 2)); | |
1712 | CHK_EXEC(DBExecute(statment)); | |
1713 | DBFreeStatement(statment); | |
1714 | } | |
1715 | else | |
1716 | { | |
1717 | if (!g_bIgnoreErrors) | |
1718 | return FALSE; | |
1719 | } | |
081bba09 | 1720 | safe_free(newConfig); |
ade20a86 | 1721 | } |
1722 | DBFreeResult(hResult); | |
1723 | } | |
1724 | ||
1725 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='325' WHERE var_name='SchemaVersion'"))); | |
1726 | return TRUE; | |
1727 | } | |
1728 | ||
2f1bc68b VK |
1729 | /** |
1730 | * Upgrade from V323 to V324 | |
1731 | */ | |
1732 | static BOOL H_UpgradeFromV323(int currVersion, int newVersion) | |
1733 | { | |
a9f5aa55 | 1734 | if (!MetaDataReadInt(_T("ValidTDataIndex"), 0)) // check if schema is already correct |
2f1bc68b VK |
1735 | { |
1736 | TCHAR query[1024]; | |
ade20a86 | 1737 | _sntprintf(query, 1024, |
66717659 | 1738 | _T("UPDATE metadata SET var_value='CREATE TABLE tdata_records_%%d (record_id %s not null,row_id %s not null,instance varchar(255) null,PRIMARY KEY(row_id),FOREIGN KEY (record_id) REFERENCES tdata_%%d(record_id) ON DELETE CASCADE)' WHERE var_name='TDataTableCreationCommand_1'"), |
2a964810 | 1739 | g_pszSqlType[g_dbSyntax][SQL_TYPE_INT64], g_pszSqlType[g_dbSyntax][SQL_TYPE_INT64]); |
2f1bc68b VK |
1740 | CHK_EXEC(SQLQuery(query)); |
1741 | ||
1742 | RecreateTData(_T("nodes"), true, true); | |
1743 | RecreateTData(_T("clusters"), true, true); | |
1744 | RecreateTData(_T("mobile_devices"), true, true); | |
1745 | } | |
1746 | ||
a9f5aa55 | 1747 | CHK_EXEC(SQLQuery(_T("DELETE FROM metadata WHERE var_name='ValidTDataIndex'"))); |
2f1bc68b VK |
1748 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='324' WHERE var_name='SchemaVersion'"))); |
1749 | return TRUE; | |
1750 | } | |
1751 | ||
c8076b19 VK |
1752 | /** |
1753 | * Upgrade from V322 to V323 | |
1754 | */ | |
1755 | static BOOL H_UpgradeFromV322(int currVersion, int newVersion) | |
1756 | { | |
1757 | CHK_EXEC(CreateConfigParam(_T("ProcessTrapsFromUnmanagedNodes"), _T("0"), 1, 1)); | |
1758 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='323' WHERE var_name='SchemaVersion'"))); | |
1759 | return TRUE; | |
1760 | } | |
1761 | ||
f4d8fe18 | 1762 | /** |
1763 | * Upgrade from V321 to V322 | |
1764 | */ | |
1765 | static BOOL H_UpgradeFromV321(int currVersion, int newVersion) | |
1766 | { | |
2a964810 | 1767 | switch(g_dbSyntax) |
f4d8fe18 | 1768 | { |
1769 | case DB_SYNTAX_DB2: | |
87104c6a VK |
1770 | CHK_EXEC(SQLBatch( |
1771 | _T("ALTER TABLE users ALTER COLUMN system_access SET DATA TYPE $SQL:INT64\n") | |
1772 | _T("ALTER TABLE user_groups ALTER COLUMN system_access SET DATA TYPE $SQL:INT64\n") | |
1773 | _T("<END>"))); | |
f4d8fe18 | 1774 | break; |
1775 | case DB_SYNTAX_MSSQL: | |
87104c6a VK |
1776 | CHK_EXEC(SQLBatch( |
1777 | _T("ALTER TABLE users ALTER COLUMN system_access $SQL:INT64\n") | |
1778 | _T("ALTER TABLE user_groups ALTER COLUMN system_access $SQL:INT64\n") | |
1779 | _T("<END>"))); | |
f4d8fe18 | 1780 | break; |
1781 | case DB_SYNTAX_PGSQL: | |
87104c6a | 1782 | CHK_EXEC(SQLBatch( |
d27fb10d VK |
1783 | _T("ALTER TABLE users ALTER COLUMN system_access TYPE $SQL:INT64\n") |
1784 | _T("ALTER TABLE user_groups ALTER COLUMN system_access TYPE $SQL:INT64\n") | |
87104c6a | 1785 | _T("<END>"))); |
f4d8fe18 | 1786 | break; |
1787 | case DB_SYNTAX_SQLITE: | |
87104c6a VK |
1788 | CHK_EXEC(SQLBatch( |
1789 | _T("CREATE TABLE temp_users AS SELECT * FROM users\n") | |
1790 | _T("DROP TABLE users\n") | |
1791 | _T("CREATE TABLE users (id integer not null, guid varchar(36) not null, name varchar(63) not null, password varchar(48) not null, system_access $SQL:INT64 not null, flags integer not null,") | |
1792 | _T(" full_name varchar(127) null, description varchar(255) null, grace_logins integer not null, auth_method integer not null, cert_mapping_method integer not null, cert_mapping_data $SQL:TEXT null,") | |
1793 | _T(" auth_failures integer not null, last_passwd_change integer not null, min_passwd_length integer not null, disabled_until integer not null, last_login integer not null, password_history $SQL:TEXT null,") | |
1794 | _T(" xmpp_id varchar(127) null, ldap_dn $SQL:TEXT null, PRIMARY KEY(id))\n") | |
1795 | _T("INSERT INTO users SELECT * FROM temp_users\n") | |
1796 | _T("DROP TABLE temp_users\n") | |
1797 | _T("CREATE TABLE temp_user_groups AS SELECT * FROM user_groups\n") | |
1798 | _T("DROP TABLE user_groups\n") | |
1799 | _T("CREATE TABLE user_groups (id integer not null, guid varchar(36) not null, name varchar(63) not null, system_access $SQL:INT64 not null, flags integer not null,") | |
1800 | _T(" description varchar(255) not null, ldap_dn $SQL:TEXT null, PRIMARY KEY(id))\n") | |
1801 | _T("INSERT INTO user_groups SELECT * FROM temp_user_groups\n") | |
1802 | _T("DROP TABLE temp_user_groups\n") | |
1803 | _T("<END>"))); | |
f4d8fe18 | 1804 | break; |
52162395 VK |
1805 | case DB_SYNTAX_ORACLE: |
1806 | // no changes needed | |
1807 | break; | |
f4d8fe18 | 1808 | default: |
87104c6a VK |
1809 | CHK_EXEC(SQLBatch( |
1810 | _T("ALTER TABLE users MODIFY system_access $SQL:INT64\n") | |
1811 | _T("ALTER TABLE user_groups MODIFY system_access $SQL:INT64\n") | |
1812 | _T("<END>"))); | |
f4d8fe18 | 1813 | break; |
1814 | } | |
1815 | ||
1816 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='322' WHERE var_name='SchemaVersion'"))); | |
1817 | return TRUE; | |
1818 | } | |
1819 | ||
1820 | /** | |
d4ce93a2 VK |
1821 | * Upgrade from V320 to V321 |
1822 | */ | |
1823 | static BOOL H_UpgradeFromV320(int currVersion, int newVersion) | |
1824 | { | |
1825 | static TCHAR batch[] = | |
1826 | _T("ALTER TABLE object_tools ADD command_short_name varchar(31)\n") | |
1827 | _T("UPDATE object_tools SET command_short_name='Shutdown' WHERE tool_id=1\n") | |
1828 | _T("UPDATE object_tools SET command_short_name='Restart' WHERE tool_id=2\n") | |
1829 | _T("UPDATE object_tools SET command_short_name='Wakeup' WHERE tool_id=3\n") | |
1830 | _T("<END>"); | |
1831 | CHK_EXEC(SQLBatch(batch)); | |
1832 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='321' WHERE var_name='SchemaVersion'"))); | |
1833 | return TRUE; | |
1834 | } | |
1835 | ||
ac14e3e6 | 1836 | /** |
d4ce93a2 | 1837 | * Upgrade from V319 to V320 |
d9177dd1 | 1838 | */ |
1839 | static BOOL H_UpgradeFromV319(int currVersion, int newVersion) | |
1840 | { | |
6c352bb5 | 1841 | CHK_EXEC(CreateConfigParam(_T("LdapConnectionString"), _T("ldap://localhost:389"), 1, 0)); |
d9177dd1 | 1842 | CHK_EXEC(CreateConfigParam(_T("LdapSyncUser"), _T(""), 1, 0)); |
1843 | CHK_EXEC(CreateConfigParam(_T("LdapSyncUserPassword"), _T(""), 1, 0)); | |
1844 | CHK_EXEC(CreateConfigParam(_T("LdapSearchBase"), _T(""), 1, 0)); | |
1845 | CHK_EXEC(CreateConfigParam(_T("LdapSearchFilter"), _T(""), 1, 0)); | |
1846 | CHK_EXEC(CreateConfigParam(_T("LdapUserDeleteAction"), _T("1"), 1, 0)); | |
f70a8b3c | 1847 | CHK_EXEC(CreateConfigParam(_T("LdapMappingName"), _T(""), 1, 0)); |
d9177dd1 | 1848 | CHK_EXEC(CreateConfigParam(_T("LdapMappingFullName"), _T("displayName"), 1, 0)); |
2575f149 | 1849 | CHK_EXEC(CreateConfigParam(_T("LdapMappingDescription"), _T(""), 1, 0)); |
d9177dd1 | 1850 | CHK_EXEC(CreateConfigParam(_T("LdapGroupClass"), _T(""), 1, 0)); |
1851 | CHK_EXEC(CreateConfigParam(_T("LdapUserClass"), _T(""), 1, 0)); | |
1852 | CHK_EXEC(CreateConfigParam(_T("LdapSyncInterval"), _T("0"), 1, 0)); | |
1853 | ||
1854 | static TCHAR batch[] = | |
1855 | _T("ALTER TABLE users ADD ldap_dn $SQL:TEXT\n") | |
1856 | _T("ALTER TABLE user_groups ADD ldap_dn $SQL:TEXT\n") | |
1857 | _T("<END>"); | |
1858 | CHK_EXEC(SQLBatch(batch)); | |
1859 | ||
1860 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='320' WHERE var_name='SchemaVersion'"))); | |
1861 | return TRUE; | |
1862 | } | |
d4ce93a2 | 1863 | |
d9177dd1 | 1864 | /* |
ac14e3e6 VK |
1865 | * Upgrade from V318 to V319 |
1866 | */ | |
1867 | static BOOL H_UpgradeFromV318(int currVersion, int newVersion) | |
1868 | { | |
1869 | static TCHAR batch[] = | |
1870 | _T("ALTER TABLE object_tools ADD icon $SQL:TEXT\n") | |
1871 | _T("ALTER TABLE object_tools ADD command_name varchar(255)\n") | |
1872 | _T("UPDATE object_tools SET flags=74,command_name='Shutdown system',icon='89504e470d0a1a0a0000000d49484452000000100000001008060000001ff3ff610000000473424954080808087c086488000002bf49444154388d95933f689c7518c73fbf3f7779efaede995c137369d54123ba4843070b1204c10ed24db182939b90c1c1e2eee05871e8d0d2b98a8ba0c52ee2d0cb622acd99222dd1084d9a18cd3597f7bd6bdebbdffbfbe7701d82e8e0071ebec303dfe7e1e1fb883fea7542aba54c080dac153c261ed1a30540b51a8f359bd9c9e565afedd4943ab6b4f4d56873f38d5014ff6af04f95950aaad5fa7e7d7dfdbcee1d1c3cd95d59395b5a5c7c82ffc1fd4ee7acc9f349fd683090b1db15499ae2013b3f8f1c0e296f6f539c380140796707333747a856296d6ca081d1e1a138cc73a95d8cc28f468834459f3ecd7367cee0b38ccd7bf7787e711180dfaf5ee599850544a3c1760898d5556c51e06314d2c5288be150186b995d58404bc9eef5ebb87e86140229257690b17be33b4a4a3173ea14236b71d60a17a3901684b59652b34952ab31dcda6470f76794c9b0b6c0160665320eefae317ab04552ad529e9ec6c78003292dc861bf2f4408e369fb7b948a8cb2cd7085c115868998936887eb75514a617a3db66eb68505211d30f86b97dde536420844a341b17e8bf8db0a21ed12d23ddcda0ff46f7e4dac24482939b8b386b3060f4207206a457afb16be9f519f7f91f22baf52f9e91bfca7ef00829a4fb1af9fa3fed2cbf8419f6c75054a0a0fc800a025f151cafdcb17514af3ecc79f939fbf40d69c259d9ca1ffd687cc7d7411a5145b573e230e52d0120f68ffd8400ad8b97685c9934f31f9ee07b4de5e227ff37d8c311c4f12aad50afb5f5c62e7da65a400519204408f37108408de471e5cfa04fbe3b74c9d7b8ff2d32f1042805f7e25bdf1257fdeee103c8408528d53afa356c85a42b107d6812920bdd3c16f7448cae3d81a0b837cdc2b1c380f724203445d8ff161767cb66df1afe5380a0d3d05ca8d0f148110c02bb035b013109b1a17747b06baa20d3c84897dc93420feeb0b8f22203603dd19307f037f0665861328b32e0000000049454e44ae426082' WHERE tool_id=1\n") | |
1873 | _T("UPDATE object_tools SET flags=74,command_name='Restart system',icon='89504e470d0a1a0a0000000d49484452000000100000001008060000001ff3ff610000000473424954080808087c0864880000029849444154388d85934d8b1c5514869f73eeadaaae6ea77bda388999882241fc5c0e09ae4484c4857b4177fa0b5474256edcfa075cbacbc23f6074a12332a0a2200a2189e8c468a23d93e99e9eaeaaae7beb1e1733f9902c7ce06c0ebc2f2fe7f0ca5fe311fdd71e77d93332922e08b749dcc5fe3bc9f72d5d1fcf861f7dd6f9f295353778ebdd0b71ff977374ad60f7888e1003bbb3379ceb930f4e7fbe7be5a7573da7f65697db17cf2ff2e757fe6e06a00e1141040aab59ebb5dc47076efbdb739cacc63edc9aabee4f64796248efb10dbcf738e750556268e97eff14b937ce6d1607126e55eae33c4956d5f4f72f21ae40d6cfe0bc4755c9f39cd4ccc0d27d7a695ae23c896fe7a645d5482c26340f0d19e639beb9811463c85788610a29c1d11d4284cc416a82848589861a49754bab390fac3f4ba69174f963ba7040d745249f4136033f63efd859769f78933a792c244265ea436d9a9a99e86895bc28b0e90fc03632bd88e463acb787580696f3e0fa299ade09e275a5feed2b09b5898f4ba35bdc40bb6b0034f5357cda4277bec354400d0b0d5d75406a5e42caa751d90596c425e22d00aa48771933a3c99e6230a8d1b241dcd1eb03a4a2c4563600f07615bc622da80510149aefa1b982ef3dc24d7d071b7afc71f0c781d58c83d107e48347d1f62a1a7f44f4d0c0130c4c4196d89fefa1273f215f7d9d4b379fa4dfdf22cb32bc7f99b5f533c45893edbc4fe75a8c0116c05b008b408434fd9a327f031b7d08c73670ee2c65595296259afe20fbe76de2fc9ba39e1cd6c6a7e4b0ae87d5200a4cbea4acce3318bd8865cfe1a283dd9fe9a65f901615a982d400c96360be9eda4ebbfdf0a6ec752f741ac11f1a89db02d9ba5bc8d483ae877587e2f0abdfac2b26b209488fa218b07627d7ff636dc524d52cff0513e53f37235ac3190000000049454e44ae426082' WHERE tool_id=2\n") | |
1874 | _T("UPDATE object_tools SET flags=64,command_name='Wakeup node using Wake-On-LAN',icon='89504e470d0a1a0a0000000d49484452000000100000001008060000001ff3ff610000000473424954080808087c086488000000097048597300000dd700000dd70142289b780000001974455874536f667477617265007777772e696e6b73636170652e6f72679bee3c1a0000023649444154388d8d924f48545114c67ff7bd37ff7cf9071bc70a4d47271ca15c848d448185b40a89204890362d8568eb2270d7a2762d5cb7711504d1ae10c195218895a488528e4e06a653d338de7bdfbcf75ac84ce38c901f9ccdb9e7fbce39f77c627ce6872df6dd71f01f781e1d9c00866003215efaf99de7d6763afb1078721262053a800908ed5a5aa9b1e3bb0802a600c0717d3cdf3fae6cccd24a25abb302a80b990c265a009859d941299763249296d6b2a6732468d25a1f24156f00e0cbd62e9b5a71a0dd9a490cad14a570b4266c780cf546797cab1b1317139747435ddcec69266c78385a53c9b1b45265b548d022d51563f45a9c778b69ce35850058de928c0cb4933fd04c7ffece812e9639e5158480865098ebc9181fbfeef07a6e9dc68805c0af8243f45480ab174e33bb9426e7484a9b942710020c3b40e24c236f3facb1bd9b634d3a00d8e100ab992cb7af7421bc225aa9b280a195a414524972054d5f679488e5a394442949d8f4b8d4d14caea09115f55a490cad155a2b9452ecfdcef37e619ddef6287706ba89c76ce2319be1fe4e926d51663e6d90cdeda3d42147ebaa4fcc161da6a61739df52cfe88d8b0ca712f8be871d0e31bb94666a7a916c2e8feb7aff3cd33ef2f4c8612dd3a0a5d1a6bfa78d544f1bbeef33bf9a617e65939fb902c50a328068bd3bb10c1c71a3210401cb24143cbc82d2459c62ad8980154b2b3909bca87e91c09fea642d26ad67f7fb32afe6bebd5958dd1c2c48ddf45f8a10d87591bdcb89b3b3f7063a337f01f30f1c1c580292640000000049454e44ae426082' WHERE tool_id=3\n") | |
1875 | _T("<END>"); | |
1876 | CHK_EXEC(SQLBatch(batch)); | |
1877 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='319' WHERE var_name='SchemaVersion'"))); | |
1878 | return TRUE; | |
1879 | } | |
1880 | ||
56d5289b VK |
1881 | /** |
1882 | * Upgrade from V317 to V318 | |
1883 | */ | |
1884 | static BOOL H_UpgradeFromV317(int currVersion, int newVersion) | |
1885 | { | |
1886 | CHK_EXEC(CreateEventTemplate(EVENT_AP_DOWN, _T("SYS_AP_DOWN"), SEVERITY_CRITICAL, EF_LOG, | |
1887 | _T("Access point %2 changed state to DOWN"), | |
1888 | _T("Generated when access point state changes to DOWN.\r\n") | |
1889 | _T("Parameters:\r\n") | |
1890 | _T(" 1) Access point object ID\r\n") | |
1891 | _T(" 2) Access point name\r\n") | |
1892 | _T(" 3) Access point MAC address\r\n") | |
1893 | _T(" 4) Access point IP address\r\n") | |
1894 | _T(" 5) Access point vendor name\r\n") | |
1895 | _T(" 6) Access point model\r\n") | |
1896 | _T(" 7) Access point serial number"))); | |
1897 | ||
1898 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='318' WHERE var_name='SchemaVersion'"))); | |
1899 | return TRUE; | |
1900 | } | |
1901 | ||
8deadd79 VK |
1902 | /** |
1903 | * Upgrade from V316 to V317 | |
1904 | */ | |
1905 | static BOOL H_UpgradeFromV316(int currVersion, int newVersion) | |
1906 | { | |
1907 | CHK_EXEC(CreateConfigParam(_T("MinViewRefreshInterval"), _T("1000"), 1, 0)); | |
1908 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='317' WHERE var_name='SchemaVersion'"))); | |
1909 | return TRUE; | |
1910 | } | |
1911 | ||
23ed00c4 VK |
1912 | /** |
1913 | * Upgrade from V315 to V316 | |
1914 | */ | |
1915 | static BOOL H_UpgradeFromV315(int currVersion, int newVersion) | |
1916 | { | |
1917 | static TCHAR batch[] = | |
1918 | _T("ALTER TABLE access_points ADD ap_state integer\n") | |
1919 | _T("UPDATE access_points SET ap_state=0\n") | |
1920 | _T("<END>"); | |
1921 | CHK_EXEC(SQLBatch(batch)); | |
1922 | ||
1923 | CHK_EXEC(CreateEventTemplate(EVENT_AP_ADOPTED, _T("SYS_AP_ADOPTED"), SEVERITY_NORMAL, EF_LOG, | |
1924 | _T("Access point %2 changed state to ADOPTED"), | |
1925 | _T("Generated when access point state changes to ADOPTED.\r\n") | |
1926 | _T("Parameters:\r\n") | |
1927 | _T(" 1) Access point object ID\r\n") | |
1928 | _T(" 2) Access point name\r\n") | |
1929 | _T(" 3) Access point MAC address\r\n") | |
1930 | _T(" 4) Access point IP address\r\n") | |
1931 | _T(" 5) Access point vendor name\r\n") | |
1932 | _T(" 6) Access point model\r\n") | |
1933 | _T(" 7) Access point serial number"))); | |
1934 | ||
1935 | CHK_EXEC(CreateEventTemplate(EVENT_AP_UNADOPTED, _T("SYS_AP_UNADOPTED"), SEVERITY_MAJOR, EF_LOG, | |
1936 | _T("Access point %2 changed state to UNADOPTED"), | |
1937 | _T("Generated when access point state changes to UNADOPTED.\r\n") | |
1938 | _T("Parameters:\r\n") | |
1939 | _T(" 1) Access point object ID\r\n") | |
1940 | _T(" 2) Access point name\r\n") | |
1941 | _T(" 3) Access point MAC address\r\n") | |
1942 | _T(" 4) Access point IP address\r\n") | |
1943 | _T(" 5) Access point vendor name\r\n") | |
1944 | _T(" 6) Access point model\r\n") | |
1945 | _T(" 7) Access point serial number"))); | |
1946 | ||
1947 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='316' WHERE var_name='SchemaVersion'"))); | |
1948 | return TRUE; | |
1949 | } | |
1950 | ||
b2042b58 VK |
1951 | /** |
1952 | * Upgrade from V314 to V315 | |
1953 | */ | |
1954 | static BOOL H_UpgradeFromV314(int currVersion, int newVersion) | |
1955 | { | |
1956 | static TCHAR batch[] = | |
1957 | _T("ALTER TABLE thresholds ADD match_count integer\n") | |
1958 | _T("UPDATE thresholds SET match_count=0 WHERE current_state=0\n") | |
1959 | _T("UPDATE thresholds SET match_count=1 WHERE current_state<>0\n") | |
1960 | _T("<END>"); | |
1961 | CHK_EXEC(SQLBatch(batch)); | |
1962 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='315' WHERE var_name='SchemaVersion'"))); | |
1963 | return TRUE; | |
1964 | } | |
1965 | ||
2d7ee2e0 | 1966 | /** |
1967 | * Upgrade from V313 to V314 | |
1968 | */ | |
1969 | static BOOL H_UpgradeFromV313(int currVersion, int newVersion) | |
1970 | { | |
b2042b58 | 1971 | // Replace double backslash with single backslash in all "file download" (code 7) object tools |
2d7ee2e0 | 1972 | DB_RESULT hResult = SQLSelect(_T("SELECT tool_id, tool_data FROM object_tools WHERE tool_type=7")); |
1973 | if (hResult != NULL) | |
1974 | { | |
1975 | int count = DBGetNumRows(hResult); | |
1976 | for(int i = 0; i < count; i++) | |
1977 | { | |
1978 | TCHAR* toolData = DBGetField(hResult, i, 1, NULL, 0); | |
1979 | TranslateStr(toolData, _T("\\\\"), _T("\\")); | |
1980 | ||
1981 | DB_STATEMENT statment = DBPrepare(g_hCoreDB, _T("UPDATE object_tools SET tool_data=? WHERE tool_id=?")); | |
1982 | if (statment == NULL) | |
1983 | return FALSE; | |
1984 | DBBind(statment, 1, DB_SQLTYPE_TEXT, toolData, DB_BIND_DYNAMIC); | |
1985 | DBBind(statment, 2, DB_SQLTYPE_INTEGER, DBGetFieldULong(hResult, i, 0)); | |
1986 | if(!DBExecute(statment)) | |
1987 | return FALSE; | |
1988 | DBFreeStatement(statment); | |
1989 | } | |
1990 | DBFreeResult(hResult); | |
1991 | } | |
1992 | ||
1993 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='314' WHERE var_name='SchemaVersion'"))); | |
1994 | return TRUE; | |
1995 | } | |
1996 | ||
1997 | /** | |
1998 | * Upgrade from V312 to V313 | |
1999 | */ | |
2000 | static BOOL H_UpgradeFromV312(int currVersion, int newVersion) | |
2001 | { | |
4dfa78b6 VK |
2002 | CHK_EXEC(SetColumnNullable(_T("object_tools"), _T("tool_name"))); |
2003 | CHK_EXEC(SetColumnNullable(_T("object_tools"), _T("tool_data"))); | |
2004 | CHK_EXEC(SetColumnNullable(_T("object_tools"), _T("description"))); | |
2005 | CHK_EXEC(SetColumnNullable(_T("object_tools"), _T("confirmation_text"))); | |
2006 | CHK_EXEC(SetColumnNullable(_T("object_tools"), _T("matching_oid"))); | |
2007 | CHK_EXEC(SetColumnNullable(_T("object_tools_table_columns"), _T("col_name"))); | |
2d7ee2e0 | 2008 | CHK_EXEC(ConvertStrings(_T("object_tools"), _T("tool_id"), _T("tool_name"))); |
2009 | CHK_EXEC(ConvertStrings(_T("object_tools"), _T("tool_id"), _T("tool_data"))); | |
2010 | CHK_EXEC(ConvertStrings(_T("object_tools"), _T("tool_id"), _T("description"))); | |
2011 | CHK_EXEC(ConvertStrings(_T("object_tools"), _T("tool_id"), _T("confirmation_text"))); | |
2012 | CHK_EXEC(ConvertStrings(_T("object_tools"), _T("tool_id"), _T("matching_oid"))); | |
2013 | CHK_EXEC(ConvertStrings(_T("object_tools_table_columns"), _T("tool_id"), _T("col_number"), _T("col_name"), false)); | |
2014 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='313' WHERE var_name='SchemaVersion'"))); | |
2015 | return TRUE; | |
2016 | } | |
2017 | ||
6498e05a VK |
2018 | /** |
2019 | * Upgrade from V311 to V312 | |
2020 | */ | |
2021 | static BOOL H_UpgradeFromV311(int currVersion, int newVersion) | |
2022 | { | |
2023 | CHK_EXEC(CreateConfigParam(_T("EnableReportingServer"), _T("0"), 1, 1)); | |
2024 | CHK_EXEC(CreateConfigParam(_T("ReportingServerHostname"), _T("localhost"), 1, 1)); | |
2025 | CHK_EXEC(CreateConfigParam(_T("ReportingServerPort"), _T("4710"), 1, 1)); | |
2026 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='312' WHERE var_name='SchemaVersion'"))); | |
2027 | return TRUE; | |
2028 | } | |
2029 | ||
9262b092 VK |
2030 | /** |
2031 | * Upgrade from V310 to V311 | |
2032 | */ | |
2033 | static BOOL H_UpgradeFromV310(int currVersion, int newVersion) | |
2034 | { | |
2035 | IntegerArray<UINT32> deleteList; | |
2036 | ||
2037 | // reports | |
2038 | DB_RESULT hResult = SQLSelect(_T("SELECT id FROM reports")); | |
2039 | if (hResult != NULL) | |
2040 | { | |
2041 | int count = DBGetNumRows(hResult); | |
2042 | for(int i = 0; i < count; i++) | |
2043 | deleteList.add(DBGetFieldULong(hResult, i, 0)); | |
2044 | DBFreeResult(hResult); | |
2045 | } | |
2046 | ||
2047 | // report groups | |
2048 | hResult = SQLSelect(_T("SELECT id FROM containers WHERE object_class=25")); | |
2049 | if (hResult != NULL) | |
2050 | { | |
2051 | int count = DBGetNumRows(hResult); | |
2052 | for(int i = 0; i < count; i++) | |
2053 | deleteList.add(DBGetFieldULong(hResult, i, 0)); | |
2054 | DBFreeResult(hResult); | |
2055 | } | |
2056 | ||
2057 | for(int i = 0; i < deleteList.size(); i++) | |
2058 | { | |
2059 | TCHAR query[256]; | |
2060 | ||
2061 | _sntprintf(query, 256, _T("DELETE FROM object_properties WHERE object_id=%d"), deleteList.get(i)); | |
2062 | CHK_EXEC(SQLQuery(query)); | |
2063 | ||
2064 | _sntprintf(query, 256, _T("DELETE FROM object_custom_attributes WHERE object_id=%d"), deleteList.get(i)); | |
2065 | CHK_EXEC(SQLQuery(query)); | |
2066 | ||
2067 | _sntprintf(query, 256, _T("DELETE FROM acl WHERE object_id=%d"), deleteList.get(i)); | |
2068 | CHK_EXEC(SQLQuery(query)); | |
2069 | ||
2070 | _sntprintf(query, 256, _T("DELETE FROM container_members WHERE object_id=%d OR container_id=%d"), deleteList.get(i), deleteList.get(i)); | |
2071 | CHK_EXEC(SQLQuery(query)); | |
2072 | } | |
2073 | ||
2074 | static TCHAR batch[] = | |
2075 | _T("DROP TABLE reports\n") | |
2076 | _T("DROP TABLE report_results\n") | |
2077 | _T("DELETE FROM containers WHERE object_class=25\n") | |
2078 | _T("DELETE FROM object_properties WHERE object_id=8\n") | |
2079 | _T("<END>"); | |
2080 | CHK_EXEC(SQLBatch(batch)); | |
2081 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='311' WHERE var_name='SchemaVersion'"))); | |
2082 | return TRUE; | |
2083 | } | |
2084 | ||
32745683 VK |
2085 | /** |
2086 | * Upgrade from V309 to V310 | |
2087 | */ | |
2088 | static BOOL H_UpgradeFromV309(int currVersion, int newVersion) | |
2089 | { | |
2090 | static TCHAR batch[] = | |
2091 | _T("ALTER TABLE interfaces ADD peer_proto integer\n") | |
2092 | _T("UPDATE interfaces SET peer_proto=0\n") | |
2093 | _T("<END>"); | |
2094 | CHK_EXEC(SQLBatch(batch)); | |
2095 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='310' WHERE var_name='SchemaVersion'"))); | |
2096 | return TRUE; | |
2097 | } | |
2098 | ||
34a320ad VK |
2099 | /** |
2100 | * Upgrade from V308 to V309 | |
2101 | */ | |
2102 | static BOOL H_UpgradeFromV308(int currVersion, int newVersion) | |
2103 | { | |
2104 | CHK_EXEC(CreateConfigParam(_T("HelpDeskLink"), _T("none"), 1, 1)); | |
2105 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='309' WHERE var_name='SchemaVersion'"))); | |
2106 | return TRUE; | |
2107 | } | |
2108 | ||
2ab9314f | 2109 | /** |
2110 | * Upgrade from V307 to V308 | |
2111 | */ | |
2112 | static BOOL H_UpgradeFromV307(int currVersion, int newVersion) | |
2113 | { | |
2114 | static TCHAR batch[] = | |
32745683 VK |
2115 | _T("ALTER TABLE network_map_elements ADD flags integer\n") |
2116 | _T("UPDATE network_map_elements SET flags=0\n") //set all elements like manually generated | |
2117 | _T("ALTER TABLE network_map_links ADD element_data $SQL:TEXT\n") | |
2118 | _T("ALTER TABLE network_map_links ADD flags integer\n") | |
2119 | _T("UPDATE network_map_links SET flags=0\n") //set all elements like manually generated | |
2120 | _T("<END>"); | |
2ab9314f | 2121 | CHK_EXEC(SQLBatch(batch)); |
2122 | ||
32745683 VK |
2123 | // it is assumed that now all autogenerated maps contain only autogenerated objects and links |
2124 | // get elements from autogenerated maps and set their flags to AUTO_GENERATED for map elements and map links | |
2ab9314f | 2125 | TCHAR query[256]; |
2126 | _sntprintf(query, 256, _T("SELECT id FROM network_maps WHERE map_type=%d OR map_type=%d"), | |
2127 | MAP_TYPE_LAYER2_TOPOLOGY, MAP_TYPE_IP_TOPOLOGY); | |
2128 | DB_RESULT hResult = SQLSelect(query); | |
2129 | if (hResult != NULL) | |
2130 | { | |
2131 | int count = DBGetNumRows(hResult); | |
2132 | for(int i = 0; i < count; i++) | |
2133 | { | |
2134 | _sntprintf(query, 256, _T("UPDATE network_map_elements SET flags='1' WHERE map_id=%d"), | |
2135 | DBGetFieldULong(hResult, i, 0)); | |
2136 | CHK_EXEC(SQLQuery(query)); | |
2137 | _sntprintf(query, 256, _T("UPDATE network_map_links SET flags='1' WHERE map_id=%d"), | |
2138 | DBGetFieldULong(hResult, i, 0)); | |
2139 | CHK_EXEC(SQLQuery(query)); | |
2140 | } | |
2141 | DBFreeResult(hResult); | |
2142 | } | |
2143 | ||
2144 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='308' WHERE var_name='SchemaVersion'"))); | |
2145 | return TRUE; | |
2146 | } | |
2147 | ||
b3eb058b VK |
2148 | /** |
2149 | * Upgrade from V306 to V307 | |
2150 | */ | |
2151 | static BOOL H_UpgradeFromV306(int currVersion, int newVersion) | |
2152 | { | |
2153 | CHK_EXEC(SetColumnNullable(_T("config_clob"), _T("var_value"))); | |
2154 | CHK_EXEC(ConvertStrings(_T("config_clob"), _T("var_name"), NULL, _T("var_value"), true)); | |
2155 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='307' WHERE var_name='SchemaVersion'"))); | |
2156 | return TRUE; | |
2157 | } | |
2158 | ||
d1730ccf VK |
2159 | /** |
2160 | * Upgrade from V305 to V306 | |
2161 | */ | |
2162 | static BOOL H_UpgradeFromV305(int currVersion, int newVersion) | |
2163 | { | |
2164 | CHK_EXEC(CreateConfigParam(_T("ExtendedLogQueryAccessControl"), _T("0"), 1, 0)); | |
2165 | CHK_EXEC(CreateConfigParam(_T("EnableTimedAlarmAck"), _T("1"), 1, 1)); | |
9a1f7c45 | 2166 | CHK_EXEC(CreateConfigParam(_T("EnableCheckPointSNMP"), _T("0"), 1, 0)); |
d1730ccf VK |
2167 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='306' WHERE var_name='SchemaVersion'"))); |
2168 | return TRUE; | |
2169 | } | |
2170 | ||
035745fc VK |
2171 | /** |
2172 | * Upgrade from V304 to V305 | |
2173 | */ | |
2174 | static BOOL H_UpgradeFromV304(int currVersion, int newVersion) | |
2175 | { | |
2ab9314f | 2176 | CHK_EXEC(CreateEventTemplate(EVENT_IF_PEER_CHANGED, _T("SYS_IF_PEER_CHANGED"), SEVERITY_NORMAL, EF_LOG, |
035745fc VK |
2177 | _T("New peer for interface %3 is %7 interface %10 (%12)"), |
2178 | _T("Generated when peer information for interface changes.\r\n") | |
2179 | _T("Parameters:\r\n") | |
2180 | _T(" 1) Local interface object ID\r\n") | |
2181 | _T(" 2) Local interface index\r\n") | |
2182 | _T(" 3) Local interface name\r\n") | |
2183 | _T(" 4) Local interface IP address\r\n") | |
2184 | _T(" 5) Local interface MAC address\r\n") | |
2185 | _T(" 6) Peer node object ID\r\n") | |
2186 | _T(" 7) Peer node name\r\n") | |
2187 | _T(" 8) Peer interface object ID\r\n") | |
2188 | _T(" 9) Peer interface index\r\n") | |
2189 | _T(" 10) Peer interface name\r\n") | |
2190 | _T(" 11) Peer interface IP address\r\n") | |
2191 | _T(" 12) Peer interface MAC address"))); | |
2192 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='305' WHERE var_name='SchemaVersion'"))); | |
2193 | return TRUE; | |
2194 | } | |
2195 | ||
fce4295c | 2196 | /** |
2197 | * Upgrade from V303 to V304 | |
2198 | */ | |
2199 | static BOOL H_UpgradeFromV303(int currVersion, int newVersion) | |
2200 | { | |
d184506f | 2201 | CHK_EXEC(CreateConfigParam(_T("StrictAlarmStatusFlow"), _T("0"), 1, 0)); |
fce4295c | 2202 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='304' WHERE var_name='SchemaVersion'"))); |
2203 | return TRUE; | |
2204 | } | |
2205 | ||
6f33021d | 2206 | /** |
2207 | * Upgrade from V302 to V303 | |
2208 | */ | |
2209 | static BOOL H_UpgradeFromV302(int currVersion, int newVersion) | |
2210 | { | |
2211 | static TCHAR batch[] = | |
2212 | _T("ALTER TABLE alarms ADD ack_timeout integer\n") | |
2213 | _T("UPDATE alarms SET ack_timeout='0'\n") | |
2214 | _T("<END>"); | |
2215 | CHK_EXEC(SQLBatch(batch)); | |
2216 | ||
2217 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='303' WHERE var_name='SchemaVersion'"))); | |
2218 | return TRUE; | |
2219 | } | |
2220 | ||
27088c41 AK |
2221 | /** |
2222 | * Upgrade from V301 to V302 | |
2223 | */ | |
2224 | static BOOL H_UpgradeFromV301(int currVersion, int newVersion) | |
2225 | { | |
2226 | static TCHAR batch[] = | |
2227 | _T("DELETE FROM config WHERE var_name='DisableVacuum'\n") | |
2228 | _T("<END>"); | |
2229 | CHK_EXEC(SQLBatch(batch)); | |
2230 | ||
2231 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='302' WHERE var_name='SchemaVersion'"))); | |
2232 | return TRUE; | |
2233 | } | |
2234 | ||
1d34c533 VK |
2235 | /** |
2236 | * Upgrade from V300 to V301 | |
2237 | */ | |
2238 | static BOOL H_UpgradeFromV300(int currVersion, int newVersion) | |
2239 | { | |
2240 | static TCHAR batch[] = | |
2241 | _T("ALTER TABLE thresholds ADD script $SQL:TEXT\n") | |
2242 | _T("ALTER TABLE thresholds ADD sample_count integer\n") | |
2243 | _T("UPDATE thresholds SET sample_count=parameter_1\n") | |
2244 | _T("ALTER TABLE thresholds DROP COLUMN parameter_1\n") | |
2245 | _T("ALTER TABLE thresholds DROP COLUMN parameter_2\n") | |
2246 | _T("<END>"); | |
2247 | CHK_EXEC(SQLBatch(batch)); | |
2248 | ||
2249 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='301' WHERE var_name='SchemaVersion'"))); | |
2250 | return TRUE; | |
2251 | } | |
2252 | ||
244c65ef VK |
2253 | /** |
2254 | * Upgrade from V299 to V300 | |
2255 | */ | |
2256 | static BOOL H_UpgradeFromV299(int currVersion, int newVersion) | |
2257 | { | |
2258 | CHK_EXEC(CreateConfigParam(_T("EnableXMPPConnector"), _T("0"), 1, 1)); | |
2259 | CHK_EXEC(CreateConfigParam(_T("XMPPLogin"), _T("netxms@localhost"), 1, 1)); | |
2260 | CHK_EXEC(CreateConfigParam(_T("XMPPPassword"), _T("netxms"), 1, 1)); | |
2261 | CHK_EXEC(CreateConfigParam(_T("XMPPServer"), _T("localhost"), 1, 1)); | |
2262 | CHK_EXEC(CreateConfigParam(_T("XMPPPort"), _T("5222"), 1, 1)); | |
2263 | ||
2264 | SetColumnNullable(_T("users"), _T("full_name")); | |
2265 | SetColumnNullable(_T("users"), _T("description")); | |
2266 | SetColumnNullable(_T("users"), _T("cert_mapping_data")); | |
2267 | SetColumnNullable(_T("user_groups"), _T("description")); | |
2268 | SetColumnNullable(_T("userdb_custom_attributes"), _T("attr_value")); | |
2269 | ||
2270 | ConvertStrings(_T("users"), _T("id"), _T("full_name")); | |
2271 | ConvertStrings(_T("users"), _T("id"), _T("description")); | |
2272 | ConvertStrings(_T("users"), _T("id"), _T("cert_mapping_data")); | |
2273 | ConvertStrings(_T("user_groups"), _T("id"), _T("description")); | |
2274 | ConvertStrings(_T("userdb_custom_attributes"), _T("object_id"), _T("attr_name"), _T("attr_name"), true); | |
2275 | ConvertStrings(_T("userdb_custom_attributes"), _T("object_id"), _T("attr_name"), _T("attr_value"), true); | |
2276 | ||
2277 | CHK_EXEC(SQLQuery(_T("ALTER TABLE users ADD xmpp_id varchar(127)"))); | |
2278 | ||
2279 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='300' WHERE var_name='SchemaVersion'"))); | |
2280 | return TRUE; | |
2281 | } | |
2282 | ||
ce47611c VK |
2283 | /** |
2284 | * Upgrade from V298 to V299 | |
2285 | */ | |
2286 | static BOOL H_UpgradeFromV298(int currVersion, int newVersion) | |
2287 | { | |
2288 | CHK_EXEC(SQLQuery(_T("UPDATE event_cfg SET message='Subnet %2 added',description='") | |
2289 | _T("Generated when subnet object added to the database.\r\n") | |
2290 | _T("Parameters:\r\n") | |
2291 | _T(" 1) Subnet object ID\r\n") | |
2292 | _T(" 2) Subnet name\r\n") | |
2293 | _T(" 3) IP address\r\n") | |
2294 | _T(" 4) Network mask") | |
2295 | _T("' WHERE event_code=2"))); | |
2296 | CHK_EXEC(SQLQuery(_T("UPDATE event_cfg SET message='Subnet %2 deleted',description='") | |
2297 | _T("Generated when subnet object deleted from the database.\r\n") | |
2298 | _T("Parameters:\r\n") | |
2299 | _T(" 1) Subnet object ID\r\n") | |
2300 | _T(" 2) Subnet name\r\n") | |
2301 | _T(" 3) IP address\r\n") | |
2302 | _T(" 4) Network mask") | |
2303 | _T("' WHERE event_code=19"))); | |
2304 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='299' WHERE var_name='SchemaVersion'"))); | |
2305 | return TRUE; | |
2306 | } | |
2307 | ||
af21affe VK |
2308 | /** |
2309 | * Upgrade from V297 to V298 | |
2310 | */ | |
2311 | static BOOL H_UpgradeFromV297(int currVersion, int newVersion) | |
2312 | { | |
2313 | CHK_EXEC(CreateConfigParam(_T("AgentDefaultSharedSecret"), _T("netxms"), 1, 0)); | |
2314 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='298' WHERE var_name='SchemaVersion'"))); | |
2315 | return TRUE; | |
2316 | } | |
2317 | ||
e02953a4 VK |
2318 | /** |
2319 | * Upgrade from V296 to V297 | |
2320 | */ | |
2321 | static BOOL H_UpgradeFromV296(int currVersion, int newVersion) | |
2322 | { | |
2323 | CHK_EXEC(CreateConfigParam(_T("UseSNMPTrapsForDiscovery"), _T("0"), 1, 1)); | |
2324 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='297' WHERE var_name='SchemaVersion'"))); | |
2325 | return TRUE; | |
2326 | } | |
2327 | ||
71e4ed3a VK |
2328 | /** |
2329 | * Upgrade from V295 to V296 | |
2330 | */ | |
2331 | static BOOL H_UpgradeFromV295(int currVersion, int newVersion) | |
2332 | { | |
2333 | static TCHAR batch[] = | |
2334 | _T("ALTER TABLE nodes ADD boot_time integer\n") | |
2335 | _T("UPDATE nodes SET boot_time=0\n") | |
2336 | _T("<END>"); | |
2337 | CHK_EXEC(SQLBatch(batch)); | |
2338 | ||
2339 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='296' WHERE var_name='SchemaVersion'"))); | |
2340 | return TRUE; | |
2341 | } | |
2342 | ||
c59466d2 VK |
2343 | /** |
2344 | * Upgrade from V294 to V295 | |
2345 | */ | |
2346 | static BOOL H_UpgradeFromV294(int currVersion, int newVersion) | |
2347 | { | |
2348 | CHK_EXEC(CreateConfigParam(_T("IcmpPingTimeout"), _T("1500"), 1, 1)); | |
2349 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='295' WHERE var_name='SchemaVersion'"))); | |
2350 | return TRUE; | |
2351 | } | |
2352 | ||
1d4f7890 VK |
2353 | /** |
2354 | * Upgrade from V293 to V294 | |
2355 | */ | |
2356 | static BOOL H_UpgradeFromV293(int currVersion, int newVersion) | |
2357 | { | |
2358 | static TCHAR batch[] = | |
2359 | _T("DELETE FROM metadata WHERE var_name LIKE 'TDataTableCreationCommand_%'\n") | |
2360 | _T("INSERT INTO metadata (var_name,var_value)") | |
2361 | _T(" VALUES ('TDataTableCreationCommand_0','CREATE TABLE tdata_%d (item_id integer not null,tdata_timestamp integer not null,record_id $SQL:INT64 not null,UNIQUE(record_id))')\n") | |
2362 | _T("INSERT INTO metadata (var_name,var_value)") | |
a9f5aa55 | 2363 | _T(" VALUES ('TDataTableCreationCommand_1','CREATE TABLE tdata_records_%d (record_id $SQL:INT64 not null,row_id $SQL:INT64 not null,instance varchar(255) null,PRIMARY KEY(row_id),FOREIGN KEY (record_id) REFERENCES tdata_%d(record_id) ON DELETE CASCADE)')\n") |
1d4f7890 VK |
2364 | _T("INSERT INTO metadata (var_name,var_value)") |
2365 | _T(" VALUES ('TDataTableCreationCommand_2','CREATE TABLE tdata_rows_%d (row_id $SQL:INT64 not null,column_id integer not null,value varchar(255) null,PRIMARY KEY(row_id,column_id),FOREIGN KEY (row_id) REFERENCES tdata_records_%d(row_id) ON DELETE CASCADE)')\n") | |
a9f5aa55 VK |
2366 | _T("INSERT INTO metadata (var_name,var_value)") |
2367 | _T(" VALUES ('TDataIndexCreationCommand_2','CREATE INDEX idx_tdata_rec_%d_id ON tdata_records_%d(record_id)')\n") | |
1d4f7890 VK |
2368 | _T("<END>"); |
2369 | CHK_EXEC(SQLBatch(batch)); | |
2370 | ||
2f1bc68b VK |
2371 | RecreateTData(_T("nodes"), true, false); |
2372 | RecreateTData(_T("clusters"), true, false); | |
2373 | RecreateTData(_T("mobile_devices"), true, false); | |
1d4f7890 | 2374 | |
a9f5aa55 | 2375 | CHK_EXEC(SQLQuery(_T("INSERT INTO metadata (var_name,var_value) VALUES ('ValidTDataIndex','1')"))); |
1d4f7890 VK |
2376 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='294' WHERE var_name='SchemaVersion'"))); |
2377 | return TRUE; | |
2378 | } | |
2379 | ||
bc969eaf VK |
2380 | /** |
2381 | * Upgrade from V292 to V293 | |
2382 | */ | |
2383 | static BOOL H_UpgradeFromV292(int currVersion, int newVersion) | |
2384 | { | |
2385 | CHK_EXEC(CreateConfigParam(_T("DefaultConsoleShortTimeFormat"), _T("HH:mm"), 1, 0)); | |
2386 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='293' WHERE var_name='SchemaVersion'"))); | |
2387 | return TRUE; | |
2388 | } | |
2389 | ||
badf9a95 VK |
2390 | /** |
2391 | * Upgrade from V291 to V292 | |
2392 | */ | |
2393 | static BOOL H_UpgradeFromV291(int currVersion, int newVersion) | |
2394 | { | |
2395 | CHK_EXEC(SQLQuery(_T("ALTER TABLE event_policy ADD rule_guid varchar(36)"))); | |
271e3971 | 2396 | CHK_EXEC(GenerateGUID(_T("event_policy"), _T("rule_id"), _T("rule_guid"))); |
badf9a95 VK |
2397 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='292' WHERE var_name='SchemaVersion'"))); |
2398 | return TRUE; | |
2399 | } | |
2400 | ||
48d50116 VK |
2401 | /** |
2402 | * Upgrade from V290 to V291 | |
2403 | */ | |
2404 | static BOOL H_UpgradeFromV290(int currVersion, int newVersion) | |
2405 | { | |
2406 | CHK_EXEC(SQLQuery(_T("UPDATE network_services SET service_type=7 WHERE service_type=6"))); | |
2407 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='291' WHERE var_name='SchemaVersion'"))); | |
2408 | return TRUE; | |
2409 | } | |
2410 | ||
701726bc VK |
2411 | /** |
2412 | * Upgrade from V289 to V290 | |
2413 | */ | |
2414 | static BOOL H_UpgradeFromV289(int currVersion, int newVersion) | |
2415 | { | |
2416 | CHK_EXEC(SQLQuery(_T("ALTER TABLE network_maps ADD filter $SQL:TEXT"))); | |
2417 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='290' WHERE var_name='SchemaVersion'"))); | |
2418 | return TRUE; | |
2419 | } | |
2420 | ||
90297892 VK |
2421 | /** |
2422 | * Upgrade from V288 to V289 | |
2423 | */ | |
2424 | static BOOL H_UpgradeFromV288(int currVersion, int newVersion) | |
2425 | { | |
d95c3dad A |
2426 | static TCHAR batch[] = |
2427 | _T("ALTER TABLE dct_thresholds DROP COLUMN current_state\n") | |
2428 | _T("<END>"); | |
2429 | CHK_EXEC(SQLBatch(batch)); | |
90297892 VK |
2430 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='289' WHERE var_name='SchemaVersion'"))); |
2431 | return TRUE; | |
2432 | } | |
2433 | ||
a0dc14f9 VK |
2434 | /** |
2435 | * Upgrade from V287 to V288 | |
2436 | */ | |
2437 | static BOOL H_UpgradeFromV287(int currVersion, int newVersion) | |
2438 | { | |
2439 | CHK_EXEC(CreateEventTemplate(EVENT_TABLE_THRESHOLD_ACTIVATED, _T("SYS_TABLE_THRESHOLD_ACTIVATED"), EVENT_SEVERITY_MINOR, EF_LOG, | |
2440 | _T("Threshold activated on table \"%2\" row %4 (%5)"), | |
2441 | _T("Generated when table threshold is activated.\r\n") | |
2442 | _T("Parameters:\r\n") | |
2443 | _T(" 1) Table DCI name\r\n") | |
2444 | _T(" 2) Table DCI description\r\n") | |
2445 | _T(" 3) Table DCI ID\r\n") | |
2446 | _T(" 4) Table row\r\n") | |
2447 | _T(" 5) Instance"))); | |
2448 | ||
2449 | CHK_EXEC(CreateEventTemplate(EVENT_TABLE_THRESHOLD_DEACTIVATED, _T("SYS_TABLE_THRESHOLD_DEACTIVATED"), EVENT_SEVERITY_NORMAL, EF_LOG, | |
2450 | _T("Threshold deactivated on table \"%2\" row %4 (%5)"), | |
2451 | _T("Generated when table threshold is deactivated.\r\n") | |
2452 | _T("Parameters:\r\n") | |
2453 | _T(" 1) Table DCI name\r\n") | |
2454 | _T(" 2) Table DCI description\r\n") | |
2455 | _T(" 3) Table DCI ID\r\n") | |
2456 | _T(" 4) Table row\r\n") | |
2457 | _T(" 5) Instance"))); | |
2458 | ||
2459 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='288' WHERE var_name='SchemaVersion'"))); | |
2460 | return TRUE; | |
2461 | } | |
2462 | ||
9387bc59 VK |
2463 | /** |
2464 | * Upgrade from V286 to V287 | |
2465 | */ | |
2466 | static BOOL H_UpgradeFromV286(int currVersion, int newVersion) | |
2467 | { | |
2468 | static TCHAR batch[] = | |
2469 | _T("ALTER TABLE dc_table_columns ADD sequence_number integer\n") | |
2470 | _T("UPDATE dc_table_columns SET sequence_number=0\n") | |
2471 | _T("<END>"); | |
2472 | CHK_EXEC(SQLBatch(batch)); | |
2473 | ||
2474 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='287' WHERE var_name='SchemaVersion'"))); | |
2475 | return TRUE; | |
2476 | } | |
2477 | ||
9098ad59 VK |
2478 | /** |
2479 | * Upgrade from V285 to V286 | |
2480 | */ | |
2481 | static BOOL H_UpgradeFromV285(int currVersion, int newVersion) | |
2482 | { | |
2483 | CHK_EXEC(CreateTable( | |
2484 | _T("CREATE TABLE dct_thresholds (") | |
2485 | _T("id integer not null,") | |
2486 | _T("table_id integer not null,") | |
2487 | _T("sequence_number integer not null,") | |
2488 | _T("current_state char(1) not null,") | |
2489 | _T("activation_event integer not null,") | |
2490 | _T("deactivation_event integer not null,") | |
2491 | _T("PRIMARY KEY(id))"))); | |
2492 | ||
2493 | CHK_EXEC(CreateTable( | |
2494 | _T("CREATE TABLE dct_threshold_conditions (") | |
2495 | _T("threshold_id integer not null,") | |
2496 | _T("group_id integer not null,") | |
2497 | _T("sequence_number integer not null,") | |
2498 | _T("column_name varchar(63) null,") | |
2499 | _T("check_operation integer not null,") | |
2500 | _T("check_value varchar(255) null,") | |
2501 | _T("PRIMARY KEY(threshold_id,group_id,sequence_number))"))); | |
2502 | ||
2503 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='286' WHERE var_name='SchemaVersion'"))); | |
2504 | return TRUE; | |
2505 | } | |
2506 | ||
17017844 VK |
2507 | /** |
2508 | * Upgrade from V284 to V285 | |
2509 | */ | |
2510 | static BOOL H_UpgradeFromV284(int currVersion, int newVersion) | |
2511 | { | |
2512 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_items_node_id ON items(node_id)"))); | |
2513 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_dc_tables_node_id ON dc_tables(node_id)"))); | |
2514 | ||
2515 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='285' WHERE var_name='SchemaVersion'"))); | |
2516 | return TRUE; | |
2517 | } | |
2518 | ||
eb4822b6 VK |
2519 | /** |
2520 | * Upgrade from V283 to V284 | |
2521 | */ | |
2522 | static BOOL H_UpgradeFromV283(int currVersion, int newVersion) | |
2523 | { | |
2524 | CHK_EXEC(CreateConfigParam(_T("SNMPTrapPort"), _T("162"), 1, 1)); | |
2525 | ||
2526 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='284' WHERE var_name='SchemaVersion'"))); | |
2527 | return TRUE; | |
2528 | } | |
2529 | ||
0b77b73e VK |
2530 | /** |
2531 | * Upgrade from V282 to V283 | |
2532 | */ | |
2533 | static BOOL H_UpgradeFromV282(int currVersion, int newVersion) | |
2534 | { | |
2535 | static TCHAR batch[] = | |
2536 | _T("ALTER TABLE dc_table_columns ADD display_name varchar(255)\n") | |
2537 | _T("UPDATE dc_table_columns SET display_name=column_name\n") | |
2538 | _T("<END>"); | |
2539 | CHK_EXEC(SQLBatch(batch)); | |
2540 | ||
2541 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='283' WHERE var_name='SchemaVersion'"))); | |
2542 | return TRUE; | |
2543 | } | |
2544 | ||
549f48b3 VK |
2545 | /** |
2546 | * Upgrade from V281 to V282 | |
2547 | */ | |
2548 | static BOOL H_UpgradeFromV281(int currVersion, int newVersion) | |
2549 | { | |
2550 | CHK_EXEC(SQLQuery(_T("DELETE FROM config WHERE var_name='WindowsConsoleUpgradeURL'"))); | |
2551 | CHK_EXEC(CreateConfigParam(_T("EnableObjectTransactions"), _T("0"), 1, 1)); | |
2552 | ||
2553 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='282' WHERE var_name='SchemaVersion'"))); | |
2554 | return TRUE; | |
2555 | } | |
2556 | ||
22aaa779 VK |
2557 | /** |
2558 | * Upgrade from V280 to V281 | |
2559 | */ | |
2560 | static BOOL H_UpgradeFromV280(int currVersion, int newVersion) | |
2561 | { | |
2562 | static TCHAR batch[] = | |
2563 | _T("DELETE FROM metadata WHERE var_name='TDataTableCreationCommand'\n") | |
2564 | _T("INSERT INTO metadata (var_name,var_value)") | |
2565 | _T(" VALUES ('TDataTableCreationCommand_0','CREATE TABLE tdata_%d (item_id integer not null,tdata_timestamp integer not null,record_id $SQL:INT64 not null)')\n") | |
2566 | _T("INSERT INTO metadata (var_name,var_value)") | |
2567 | _T(" VALUES ('TDataTableCreationCommand_1','CREATE TABLE tdata_records_%d (record_id $SQL:INT64 not null,row_id $SQL:INT64 not null,instance varchar(255) null,PRIMARY KEY(record_id,row_id))')\n") | |
2568 | _T("INSERT INTO metadata (var_name,var_value)") | |
2569 | _T(" VALUES ('TDataTableCreationCommand_2','CREATE TABLE tdata_rows_%d (row_id $SQL:INT64 not null,column_id integer not null,value varchar(255) null,PRIMARY KEY(row_id,column_id))')\n") | |
2570 | _T("INSERT INTO metadata (var_name,var_value)") | |
2571 | _T(" VALUES ('TDataIndexCreationCommand_1','CREATE INDEX idx_tdata_rec_%d_instance ON tdata_records_%d(instance)')\n") | |
2572 | _T("<END>"); | |
2573 | CHK_EXEC(SQLBatch(batch)); | |
2574 | ||
2f1bc68b VK |
2575 | RecreateTData(_T("nodes"), false, false); |
2576 | RecreateTData(_T("clusters"), false, false); | |
2577 | RecreateTData(_T("mobile_devices"), false, false); | |
22aaa779 VK |
2578 | |
2579 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='281' WHERE var_name='SchemaVersion'"))); | |
2580 | return TRUE; | |
2581 | } | |
2582 | ||
2583 | /** | |
2584 | * Upgrade from V279 to V280 | |
2585 | */ | |
2586 | static BOOL H_UpgradeFromV279(int currVersion, int newVersion) | |
2587 | { | |
2588 | static TCHAR batch[] = | |
2589 | _T("ALTER TABLE dc_table_columns ADD flags integer\n") | |
2590 | _T("UPDATE dc_table_columns SET flags=data_type\n") | |
2591 | _T("ALTER TABLE dc_table_columns DROP COLUMN data_type\n") | |
2592 | _T("<END>"); | |
2593 | CHK_EXEC(SQLBatch(batch)); | |
2594 | ||
2595 | DB_RESULT hResult = SQLSelect(_T("SELECT item_id,instance_column FROM dc_tables")); | |
2596 | if (hResult != NULL) | |
2597 | { | |
2598 | int count = DBGetNumRows(hResult); | |
2599 | for(int i = 0; i < count; i++) | |
2600 | { | |
2601 | TCHAR columnName[MAX_COLUMN_NAME] = _T(""); | |
2602 | DBGetField(hResult, i, 1, columnName, MAX_COLUMN_NAME); | |
2603 | if (columnName[0] != 0) | |
2604 | { | |
2605 | TCHAR query[256]; | |
2606 | _sntprintf(query, 256, _T("UPDATE dc_table_columns SET flags=flags+256 WHERE table_id=%d AND column_name=%s"), | |
2607 | DBGetFieldLong(hResult, i, 0), (const TCHAR *)DBPrepareString(g_hCoreDB, columnName)); | |
2608 | CHK_EXEC(SQLQuery(query)); | |
2609 | } | |
2610 | } | |
2611 | DBFreeResult(hResult); | |
2612 | } | |
2613 | else | |
2614 | { | |
2615 | if (!g_bIgnoreErrors) | |
2616 | return FALSE; | |
2617 | } | |
2618 | ||
2619 | CHK_EXEC(SQLQuery(_T("ALTER TABLE dc_tables DROP COLUMN instance_column"))); | |
2620 | ||
2621 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='280' WHERE var_name='SchemaVersion'"))); | |
2622 | return TRUE; | |
2623 | } | |
2624 | ||
22ee6d97 VK |
2625 | /** |
2626 | * Upgrade from V278 to V279 | |
2627 | */ | |
2628 | static BOOL H_UpgradeFromV278(int currVersion, int newVersion) | |
2629 | { | |
2630 | CHK_EXEC(CreateConfigParam(_T("DeleteEventsOfDeletedObject"), _T("1"), 1, 0)); | |
2631 | CHK_EXEC(CreateConfigParam(_T("DeleteAlarmsOfDeletedObject"), _T("1"), 1, 0)); | |
2632 | ||
2633 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='279' WHERE var_name='SchemaVersion'"))); | |
2634 | return TRUE; | |
2635 | } | |
2636 | ||
85ae39bc VK |
2637 | /** |
2638 | * Upgrade from V277 to V278 | |
2639 | */ | |
2640 | static BOOL H_UpgradeFromV277(int currVersion, int newVersion) | |
2641 | { | |
2642 | DB_RESULT hResult = SQLSelect(_T("SELECT id FROM clusters")); | |
2643 | if (hResult != NULL) | |
2644 | { | |
2645 | int count = DBGetNumRows(hResult); | |
2646 | for(int i = 0; i < count; i++) | |
2647 | { | |
2648 | DWORD id = DBGetFieldULong(hResult, i, 0); | |
2649 | if (!CreateIDataTable(id)) | |
2650 | { | |
2651 | if (!g_bIgnoreErrors) | |
2652 | { | |
2653 | DBFreeResult(hResult); | |
2654 | return FALSE; | |
2655 | } | |
2656 | } | |
22aaa779 | 2657 | if (!CreateTDataTable_preV281(id)) |
85ae39bc VK |
2658 | { |
2659 | if (!g_bIgnoreErrors) | |
2660 | { | |
2661 | DBFreeResult(hResult); | |
2662 | return FALSE; | |
2663 | } | |
2664 | } | |
2665 | } | |
2666 | DBFreeResult(hResult); | |
2667 | } | |
2668 | else | |
2669 | { | |
2670 | if (!g_bIgnoreErrors) | |
2671 | return FALSE; | |
2672 | } | |
2673 | ||
2674 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='278' WHERE var_name='SchemaVersion'"))); | |
2675 | return TRUE; | |
2676 | } | |
2677 | ||
62f41164 VK |
2678 | /** |
2679 | * Upgrade from V276 to V277 | |
2680 | */ | |
2681 | static BOOL H_UpgradeFromV276(int currVersion, int newVersion) | |
2682 | { | |
b4c2a628 VK |
2683 | CHK_EXEC(CreateTable(_T("CREATE TABLE dci_summary_tables (") |
2684 | _T("id integer not null,") | |
2685 | _T("menu_path varchar(255) not null,") | |
2686 | _T("title varchar(127) null,") | |
2687 | _T("node_filter $SQL:TEXT null,") | |
2688 | _T("flags integer not null,") | |
2689 | _T("columns $SQL:TEXT null,") | |
2690 | _T("PRIMARY KEY(id))"))); | |
2691 | ||
62f41164 VK |
2692 | CHK_EXEC(CreateConfigParam(_T("DefaultMapBackgroundColor"), _T("0xffffff"), 1, 0)); |
2693 | ||
2694 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='277' WHERE var_name='SchemaVersion'"))); | |
2695 | return TRUE; | |
2696 | } | |
2697 | ||
55bdca5a VK |
2698 | /** |
2699 | * Upgrade from V275 to V276 | |
2700 | */ | |
2701 | static BOOL H_UpgradeFromV275(int currVersion, int newVersion) | |
2702 | { | |
2703 | static TCHAR batch[] = | |
2704 | _T("ALTER TABLE dc_table_columns DROP COLUMN transformation_script\n") | |
2705 | _T("ALTER TABLE dc_tables ADD transformation_script $SQL:TEXT\n") | |
2706 | _T("<END>"); | |
2707 | CHK_EXEC(SQLBatch(batch)); | |
2708 | ||
2709 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='276' WHERE var_name='SchemaVersion'"))); | |
2710 | return TRUE; | |
2711 | } | |
2712 | ||
8715a84c VK |
2713 | /** |
2714 | * Upgrade from V274 to V275 | |
2715 | */ | |
2716 | static BOOL H_UpgradeFromV274(int currVersion, int newVersion) | |
2717 | { | |
2718 | static TCHAR batch[] = | |
2719 | _T("ALTER TABLE nodes ADD rack_image varchar(36)\n") | |
2720 | _T("ALTER TABLE nodes ADD rack_position integer\n") | |
2721 | _T("ALTER TABLE nodes ADD rack_id integer\n") | |
2722 | _T("UPDATE nodes SET rack_image='00000000-0000-0000-0000-000000000000',rack_position=0,rack_id=0\n") | |
2723 | _T("<END>"); | |
2724 | CHK_EXEC(SQLBatch(batch)); | |
2725 | ||
2726 | CHK_EXEC(CreateTable(_T("CREATE TABLE access_points (") | |
2727 | _T("id integer not null,") | |
2728 | _T("node_id integer not null,") | |
f1989a3a | 2729 | _T("mac_address varchar(12) null,") |
8715a84c VK |
2730 | _T("vendor varchar(64) null,") |
2731 | _T("model varchar(128) null,") | |
2732 | _T("serial_number varchar(64) null,") | |
2733 | _T("PRIMARY KEY(id))"))); | |
2734 | ||
2735 | CHK_EXEC(CreateTable(_T("CREATE TABLE racks (") | |
2736 | _T("id integer not null,") | |
2737 | _T("height integer not null,") | |
2738 | _T("PRIMARY KEY(id))"))); | |
2739 | ||
2740 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='275' WHERE var_name='SchemaVersion'"))); | |
2741 | return TRUE; | |
2742 | } | |
2743 | ||
d02f6b92 VK |
2744 | /** |
2745 | * Upgrade from V273 to V274 | |
2746 | */ | |
2747 | static BOOL H_UpgradeFromV273(int currVersion, int newVersion) | |
2748 | { | |
2749 | static TCHAR batch[] = | |
2750 | _T("ALTER TABLE items ADD samples integer\n") | |
2751 | _T("UPDATE items SET samples=0\n") | |
2752 | _T("<END>"); | |
2753 | CHK_EXEC(SQLBatch(batch)); | |
2754 | ||
2755 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='274' WHERE var_name='SchemaVersion'"))); | |
2756 | return TRUE; | |
2757 | } | |
2758 | ||
f05a8a45 VK |
2759 | /** |
2760 | * Upgrade from V272 to V273 | |
2761 | */ | |
2762 | static BOOL H_UpgradeFromV272(int currVersion, int newVersion) | |
2763 | { | |
2764 | CHK_EXEC(CreateConfigParam(_T("DefaultDCIRetentionTime"), _T("30"), 1, 0)); | |
2765 | CHK_EXEC(CreateConfigParam(_T("DefaultDCIPollingInterval"), _T("60"), 1, 0)); | |
2766 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='273' WHERE var_name='SchemaVersion'"))); | |
2767 | return TRUE; | |
2768 | } | |
2769 | ||
0f75f8fc VK |
2770 | /** |
2771 | * Upgrade from V271 to V272 | |
2772 | */ | |
2773 | static BOOL H_UpgradeFromV271(int currVersion, int newVersion) | |
2774 | { | |
2775 | CHK_EXEC(CreateConfigParam(_T("SNMPTrapLogRetentionTime"), _T("90"), 1, 0)); | |
28e1575f | 2776 | CHK_EXEC(SQLQuery(_T("ALTER TABLE nodes ADD driver_name varchar(32)\n"))); |
0f75f8fc VK |
2777 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='272' WHERE var_name='SchemaVersion'"))); |
2778 | return TRUE; | |
2779 | } | |
2780 | ||
86634c2c VK |
2781 | /** |
2782 | * Upgrade from V270 to V271 | |
2783 | */ | |
2784 | static BOOL H_UpgradeFromV270(int currVersion, int newVersion) | |
2785 | { | |
2786 | static TCHAR batch[] = | |
2787 | _T("ALTER TABLE object_properties ADD location_accuracy integer\n") | |
f2d5b2c4 VK |
2788 | _T("ALTER TABLE object_properties ADD location_timestamp integer\n") |
2789 | _T("UPDATE object_properties SET location_accuracy=0,location_timestamp=0\n") | |
86634c2c VK |
2790 | _T("<END>"); |
2791 | CHK_EXEC(SQLBatch(batch)); | |
2792 | ||
2793 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='271' WHERE var_name='SchemaVersion'"))); | |
2794 | return TRUE; | |
2795 | } | |
2796 | ||
afbe5388 VK |
2797 | /** |
2798 | * Upgrade from V269 to V270 | |
2799 | */ | |
2800 | static BOOL H_UpgradeFromV269(int currVersion, int newVersion) | |
2801 | { | |
6f33021d | 2802 | static TCHAR batch[] = |
afbe5388 VK |
2803 | _T("ALTER TABLE items ADD instd_method integer\n") |
2804 | _T("ALTER TABLE items ADD instd_data varchar(255)\n") | |
2805 | _T("ALTER TABLE items ADD instd_filter $SQL:TEXT\n") | |
2806 | _T("UPDATE items SET instd_method=0\n") | |
2807 | _T("<END>"); | |
2808 | CHK_EXEC(SQLBatch(batch)); | |
2809 | ||
2810 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='270' WHERE var_name='SchemaVersion'"))); | |
2811 | return TRUE; | |
2812 | } | |
2813 | ||
480e036b VK |
2814 | /** |
2815 | * Upgrade from V268 to V269 | |
2816 | */ | |
2817 | static BOOL H_UpgradeFromV268(int currVersion, int newVersion) | |
2818 | { | |
b69710b9 VK |
2819 | CHK_EXEC(ResizeColumn(_T("alarms"), _T("message"), 2000, true)); |
2820 | CHK_EXEC(ResizeColumn(_T("alarm_events"), _T("message"), 2000, true)); | |
2821 | CHK_EXEC(ResizeColumn(_T("event_log"), _T("event_message"), 2000, true)); | |
2822 | CHK_EXEC(ResizeColumn(_T("event_cfg"), _T("message"), 2000, true)); | |
2823 | CHK_EXEC(ResizeColumn(_T("event_policy"), _T("alarm_message"), 2000, true)); | |
2824 | CHK_EXEC(ResizeColumn(_T("items"), _T("name"), 1024, true)); | |
2825 | CHK_EXEC(ResizeColumn(_T("dc_tables"), _T("name"), 1024, true)); | |
480e036b VK |
2826 | |
2827 | CHK_EXEC(SetColumnNullable(_T("event_policy"), _T("alarm_key"))); | |
2828 | CHK_EXEC(SetColumnNullable(_T("event_policy"), _T("alarm_message"))); | |
2829 | CHK_EXEC(SetColumnNullable(_T("event_policy"), _T("comments"))); | |
2830 | CHK_EXEC(SetColumnNullable(_T("event_policy"), _T("situation_instance"))); | |
2831 | CHK_EXEC(SetColumnNullable(_T("event_policy"), _T("script"))); | |
2832 | CHK_EXEC(ConvertStrings(_T("event_policy"), _T("rule_id"), _T("alarm_key"))); | |
2833 | CHK_EXEC(ConvertStrings(_T("event_policy"), _T("rule_id"), _T("alarm_message"))); | |
2834 | CHK_EXEC(ConvertStrings(_T("event_policy"), _T("rule_id"), _T("comments"))); | |
2835 | CHK_EXEC(ConvertStrings(_T("event_policy"), _T("rule_id"), _T("situation_instance"))); | |
2836 | CHK_EXEC(ConvertStrings(_T("event_policy"), _T("rule_id"), _T("script"))); | |
2837 | ||
2838 | CHK_EXEC(SetColumnNullable(_T("policy_situation_attr_list"), _T("attr_value"))); | |
2839 | // convert strings in policy_situation_attr_list | |
2840 | DB_RESULT hResult = SQLSelect(_T("SELECT rule_id,situation_id,attr_name,attr_value FROM policy_situation_attr_list")); | |
2841 | if (hResult != NULL) | |
2842 | { | |
2843 | if (SQLQuery(_T("DELETE FROM policy_situation_attr_list"))) | |
2844 | { | |
2845 | TCHAR name[MAX_DB_STRING], value[MAX_DB_STRING], query[1024]; | |
2846 | int count = DBGetNumRows(hResult); | |
2847 | for(int i = 0; i < count; i++) | |
2848 | { | |
2849 | LONG ruleId = DBGetFieldLong(hResult, i, 0); | |
2850 | LONG situationId = DBGetFieldLong(hResult, i, 1); | |
2851 | DBGetField(hResult, i, 2, name, MAX_DB_STRING); | |
2852 | DBGetField(hResult, i, 3, value, MAX_DB_STRING); | |
2853 | ||
2854 | DecodeSQLString(name); | |
2855 | DecodeSQLString(value); | |
2856 | ||
2857 | if (name[0] == 0) | |
2858 | _tcscpy(name, _T("noname")); | |
2859 | ||
2860 | _sntprintf(query, 1024, _T("INSERT INTO policy_situation_attr_list (rule_id,situation_id,attr_name,attr_value) VALUES (%d,%d,%s,%s)"), | |
2861 | ruleId, situationId, (const TCHAR *)DBPrepareString(g_hCoreDB, name), (const TCHAR *)DBPrepareString(g_hCoreDB, value)); | |
2862 | if (!SQLQuery(query)) | |
2863 | { | |
2864 | if (!g_bIgnoreErrors) | |
2865 | { | |
2866 | DBFreeResult(hResult); | |
2867 | return FALSE; | |
2868 | } | |
2869 | } | |
2870 | } | |
2871 | } | |
2872 | else | |
2873 | { | |
2874 | if (!g_bIgnoreErrors) | |
2875 | { | |
2876 | DBFreeResult(hResult); | |
2877 | return FALSE; | |
2878 | } | |
2879 | } | |
2880 | DBFreeResult(hResult); | |
2881 | } | |
2882 | else | |
2883 | { | |
2884 | if (!g_bIgnoreErrors) | |
2885 | return FALSE; | |
2886 | } | |
2887 | ||
2888 | CHK_EXEC(SetColumnNullable(_T("event_cfg"), _T("description"))); | |
2889 | CHK_EXEC(SetColumnNullable(_T("event_cfg"), _T("message"))); | |
2890 | CHK_EXEC(ConvertStrings(_T("event_cfg"), _T("event_code"), _T("description"))); | |
2891 | CHK_EXEC(ConvertStrings(_T("event_cfg"), _T("event_code"), _T("message"))); | |
2892 | ||
2893 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='269' WHERE var_name='SchemaVersion'"))); | |
2894 | return TRUE; | |
2895 | } | |
2896 | ||
d6bf58f9 VK |
2897 | /** |
2898 | * Upgrade from V267 to V268 | |
2899 | */ | |
2900 | static BOOL H_UpgradeFromV267(int currVersion, int newVersion) | |
2901 | { | |
480e036b VK |
2902 | CHK_EXEC(SetColumnNullable(_T("network_services"), _T("check_request"))); |
2903 | CHK_EXEC(SetColumnNullable(_T("network_services"), _T("check_responce"))); | |
d6bf58f9 VK |
2904 | CHK_EXEC(ConvertStrings(_T("network_services"), _T("id"), _T("check_request"))); |
2905 | CHK_EXEC(ConvertStrings(_T("network_services"), _T("id"), _T("check_responce"))); | |
2906 | ||
480e036b | 2907 | CHK_EXEC(SetColumnNullable(_T("config"), _T("var_value"))); |
d6bf58f9 VK |
2908 | CHK_EXEC(ConvertStrings(_T("config"), _T("var_name"), NULL, _T("var_value"), true)); |
2909 | ||
480e036b | 2910 | CHK_EXEC(SetColumnNullable(_T("dci_schedules"), _T("schedule"))); |
d6bf58f9 VK |
2911 | CHK_EXEC(ConvertStrings(_T("dci_schedules"), _T("schedule_id"), _T("item_id"), _T("schedule"), false)); |
2912 | ||
2913 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='268' WHERE var_name='SchemaVersion'"))); | |
2914 | return TRUE; | |
2915 | } | |
2916 | ||
c1482463 VK |
2917 | /** |
2918 | * Upgrade from V266 to V267 | |
2919 | */ | |
2920 | static BOOL H_UpgradeFromV266(int currVersion, int newVersion) | |
2921 | { | |
2922 | CHK_EXEC(CreateEventTemplate(EVENT_NODE_UNREACHABLE, _T("SYS_NODE_UNREACHABLE"), EVENT_SEVERITY_CRITICAL, | |
2923 | EF_LOG, _T("Node unreachable because of network failure"), | |
2924 | _T("Generated when node is unreachable by management server because of network failure.\r\nParameters:\r\n No event-specific parameters"))); | |
2925 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='267' WHERE var_name='SchemaVersion'"))); | |
2926 | return TRUE; | |
2927 | } | |
2928 | ||
69bb7f47 VK |
2929 | /** |
2930 | * Upgrade from V265 to V266 | |
2931 | */ | |
2932 | static BOOL H_UpgradeFromV265(int currVersion, int newVersion) | |
2933 | { | |
2934 | // create index on root event ID in event log | |
2a964810 | 2935 | switch(g_dbSyntax) |
69bb7f47 VK |
2936 | { |
2937 | case DB_SYNTAX_MSSQL: | |
2938 | case DB_SYNTAX_PGSQL: | |
2939 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_event_log_root_id ON event_log(root_event_id) WHERE root_event_id > 0"))); | |
2940 | break; | |
2941 | case DB_SYNTAX_ORACLE: | |
2942 | CHK_EXEC(SQLQuery(_T("CREATE OR REPLACE FUNCTION zero_to_null(id NUMBER) ") | |
2943 | _T("RETURN NUMBER ") | |
2944 | _T("DETERMINISTIC ") | |
2945 | _T("AS BEGIN") | |
2946 | _T(" IF id > 0 THEN") | |
2947 | _T(" RETURN id;") | |
2948 | _T(" ELSE") | |
2949 | _T(" RETURN NULL;") | |
2950 | _T(" END IF;") | |
2951 | _T("END;"))); | |
2952 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_event_log_root_id ON event_log(zero_to_null(root_event_id))"))); | |
2953 | break; | |
2954 | default: | |
2955 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_event_log_root_id ON event_log(root_event_id)"))); | |
2956 | break; | |
2957 | } | |
2958 | ||
2959 | CHK_EXEC(CreateTable(_T("CREATE TABLE mapping_tables (") | |
2960 | _T("id integer not null,") | |
2961 | _T("name varchar(63) not null,") | |
2962 | _T("flags integer not null,") | |
2963 | _T("description $SQL:TXT4K null,") | |
2964 | _T("PRIMARY KEY(id))"))); | |
2965 | ||
2966 | CHK_EXEC(CreateTable(_T("CREATE TABLE mapping_data (") | |
2967 | _T("table_id integer not null,") | |
2968 | _T("md_key varchar(63) not null,") | |
2969 | _T("md_value varchar(255) null,") | |
f41af2c4 | 2970 | _T("description $SQL:TXT4K null,") |
69bb7f47 VK |
2971 | _T("PRIMARY KEY(table_id,md_key))"))); |
2972 | ||
2973 | CHK_EXEC(SQLQuery(_T("DROP TABLE deleted_objects"))); | |
2974 | ||
2975 | CHK_EXEC(CreateConfigParam(_T("FirstFreeObjectId"), _T("100"), 0, 1, FALSE)); | |
2976 | ||
2977 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='266' WHERE var_name='SchemaVersion'"))); | |
2978 | return TRUE; | |
2979 | } | |
2980 | ||
b1e9b6b3 VK |
2981 | /** |
2982 | * Upgrade from V264 to V265 | |
2983 | */ | |
2984 | static BOOL H_UpgradeFromV264(int currVersion, int newVersion) | |
2985 | { | |
2986 | CHK_EXEC(CreateTable(_T("CREATE TABLE alarm_events (") | |
2987 | _T("alarm_id integer not null,") | |
2988 | _T("event_id $SQL:INT64 not null,") | |
2989 | _T("event_code integer not null,") | |
2990 | _T("event_name varchar(63) null,") | |
2991 | _T("severity integer not null,") | |
2992 | _T("source_object_id integer not null,") | |
2993 | _T("event_timestamp integer not null,") | |
2994 | _T("message varchar(255) null,") | |
2995 | _T("PRIMARY KEY(alarm_id,event_id))"))); | |
2996 | CHK_EXEC(SQLQuery(_T("CREATE INDEX idx_alarm_events_alarm_id ON alarm_events(alarm_id)"))); | |
2997 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='265' WHERE var_name='SchemaVersion'"))); | |
2998 | return TRUE; | |
2999 | } | |
3000 | ||
9aa67910 VK |
3001 | /** |
3002 | * Upgrade from V263 to V264 | |
3003 | */ | |
3004 | static BOOL H_UpgradeFromV263(int currVersion, int newVersion) | |
3005 | { | |
3006 | CHK_EXEC(CreateTable(_T("CREATE TABLE mobile_devices (") | |
3007 | _T("id integer not null,") | |
3008 | _T("device_id varchar(64) not null,") | |
3009 | _T("vendor varchar(64) null,") | |
3010 | _T("model varchar(128) null,") | |
3011 | _T("serial_number varchar(64) null,") | |
3012 | _T("os_name varchar(32) null,") | |
3013 | _T("os_version varchar(64) null,") | |
3014 | _T("user_id varchar(64) null,") | |
171c2fd6 | 3015 | _T("battery_level integer not null,") |
9aa67910 | 3016 | _T("PRIMARY KEY(id))"))); |
534e1b83 | 3017 | CHK_EXEC(CreateConfigParam(_T("MobileDeviceListenerPort"), _T("4747"), 1, 1)); |
9aa67910 VK |
3018 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='264' WHERE var_name='SchemaVersion'"))); |
3019 | return TRUE; | |
3020 | } | |
3021 | ||
84880c89 VK |
3022 | /** |
3023 | * Upgrade from V262 to V263 | |
3024 | */ | |
3025 | static BOOL H_UpgradeFromV262(int currVersion, int newVersion) | |
3026 | { | |
3027 | CHK_EXEC(SQLQuery(_T("ALTER TABLE network_maps ADD radius integer"))); | |
3028 | CHK_EXEC(SQLQuery(_T("UPDATE network_maps SET radius=-1"))); | |
3029 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='263' WHERE var_name='SchemaVersion'"))); | |
3030 | return TRUE; | |
3031 | } | |
3032 | ||
dc4a1aec AK |
3033 | /** |
3034 | * Upgrade from V261 to V262 | |
3035 | */ | |
3036 | static BOOL H_UpgradeFromV261(int currVersion, int newVersion) | |
3037 | { | |
534e1b83 | 3038 | CHK_EXEC(CreateConfigParam(_T("ApplyDCIFromTemplateToDisabledDCI"), _T("0"), 1, 1)); |
dc4a1aec AK |
3039 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='262' WHERE var_name='SchemaVersion'"))); |
3040 | return TRUE; | |
3041 | } | |
3042 | ||
4f50e45c VK |
3043 | /** |
3044 | * Upgrade from V260 to V261 | |
3045 | */ | |
3046 | static BOOL H_UpgradeFromV260(int currVersion, int newVersion) | |
3047 | { | |
534e1b83 | 3048 | CHK_EXEC(CreateConfigParam(_T("NumberOfBusinessServicePollers"), _T("10"), 1, 1)); |
4f50e45c VK |
3049 | CHK_EXEC(SQLQuery(_T("DELETE FROM config WHERE var_name='NumberOfEventProcessors'"))); |
3050 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='261' WHERE var_name='SchemaVersion'"))); | |
3051 | return TRUE; | |
3052 | } | |
a203ea53 | 3053 | |
4f50e45c VK |
3054 | /** |
3055 | * Upgrade from V259 to V260 | |
3056 | */ | |
a203ea53 AK |
3057 | static BOOL H_UpgradeFromV259(int currVersion, int newVersion) |
3058 | { | |
534e1b83 | 3059 | CHK_EXEC(CreateConfigParam(_T("UseFQDNForNodeNames"), _T("1"), 1, 1)); |
a203ea53 AK |
3060 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='260' WHERE var_name='SchemaVersion'"))); |
3061 | return TRUE; | |
3062 | } | |
3063 | ||
4f50e45c VK |
3064 | /** |
3065 | * Upgrade from V258 to V259 | |
3066 | */ | |
5da6ca46 VK |
3067 | static BOOL H_UpgradeFromV258(int currVersion, int newVersion) |
3068 | { | |
3069 | // have to made these columns nullable again because | |
3070 | // because they was forgotten as NOT NULL in schema.in | |
3071 | // and so some databases can still have them as NOT NULL | |
480e036b VK |
3072 | CHK_EXEC(SetColumnNullable(_T("templates"), _T("apply_filter"))); |
3073 | CHK_EXEC(SetColumnNullable(_T("containers"), _T("auto_bind_filter"))); | |
5da6ca46 VK |
3074 | |
3075 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='259' WHERE var_name='SchemaVersion'"))); | |
3076 | return TRUE; | |
3077 | } | |
3078 | ||
4f50e45c VK |
3079 | /** |
3080 | * Upgrade from V257 to V258 | |
3081 | */ | |
dd42ad0a AK |
3082 | static BOOL H_UpgradeFromV257(int currVersion, int newVersion) |
3083 | { | |
6f33021d | 3084 | static TCHAR batch[] = |
dd42ad0a AK |
3085 | _T("ALTER TABLE nodes ADD down_since integer\n") |
3086 | _T("UPDATE nodes SET down_since=0\n") | |
3087 | _T("<END>"); | |
3088 | ||
3089 | CHK_EXEC(SQLBatch(batch)); | |
3090 | ||
534e1b83 | 3091 | CHK_EXEC(CreateConfigParam(_T("DeleteUnreachableNodesPeriod"), _T("0"), 1, 1)); |
dd42ad0a AK |
3092 | |
3093 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='258' WHERE var_name='SchemaVersion'"))); | |
3094 | return TRUE; | |
3095 | } | |
aa16f82b | 3096 | |
534e1b83 VK |
3097 | /** |
3098 | * Upgrade from V256 to V257 | |
3099 | */ | |
e4acd770 VK |
3100 | static BOOL H_UpgradeFromV256(int currVersion, int newVersion) |
3101 | { | |
6f33021d | 3102 | static TCHAR batch[] = |
e4acd770 VK |
3103 | _T("ALTER TABLE network_maps ADD bg_color integer\n") |
3104 | _T("ALTER TABLE network_maps ADD link_routing integer\n") | |
3105 | _T("UPDATE network_maps SET bg_color=16777215,link_routing=1\n") | |
3106 | _T("ALTER TABLE network_map_links ADD routing integer\n") | |
3107 | _T("ALTER TABLE network_map_links ADD bend_points $SQL:TXT4K\n") | |
3108 | _T("UPDATE network_map_links SET routing=0\n") | |
3109 | _T("<END>"); | |
3110 | ||
3111 | CHK_EXEC(SQLBatch(batch)); | |
6f33021d | 3112 | |
e4acd770 VK |
3113 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='257' WHERE var_name='SchemaVersion'"))); |
3114 | return TRUE; | |
3115 | } | |
3116 | ||
534e1b83 VK |
3117 | /** |
3118 | * Upgrade from V255 to V256 | |
3119 | */ | |
aabe5b72 VK |
3120 | static BOOL H_UpgradeFromV255(int currVersion, int newVersion) |
3121 | { | |
534e1b83 VK |
3122 | CHK_EXEC(CreateConfigParam(_T("DefaultConsoleDateFormat"), _T("dd.MM.yyyy"), 1, 0)); |
3123 | CHK_EXEC(CreateConfigParam(_T("DefaultConsoleTimeFormat"), _T("HH:mm:ss"), 1, 0)); | |
aabe5b72 VK |
3124 | |
3125 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='256' WHERE var_name='SchemaVersion'"))); | |
3126 | return TRUE; | |
3127 | } | |
3128 | ||
480e036b VK |
3129 | /** |
3130 | * Upgrade from V254 to V255 | |
3131 | */ | |
5f6bc78c VK |
3132 | static BOOL H_UpgradeFromV254(int currVersion, int newVersion) |
3133 | { | |
6f33021d | 3134 | static TCHAR batch[] = |
5f6bc78c VK |
3135 | _T("ALTER TABLE alarms ADD resolved_by integer\n") |
3136 | _T("UPDATE alarms SET resolved_by=0\n") | |
3137 | _T("UPDATE alarms SET alarm_state=3 WHERE alarm_state=2\n") | |
3138 | _T("<END>"); | |
3139 | ||
3140 | CHK_EXEC(SQLBatch(batch)); | |
3141 | ||
3e9e0cc5 | 3142 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='255' WHERE var_name='SchemaVersion'"))); |
5f6bc78c VK |
3143 | return TRUE; |
3144 | } | |
40647141 | 3145 | |
badf9a95 VK |
3146 | /** |
3147 | * Upgrade from V253 to V254 | |
3148 | */ | |
40647141 VK |
3149 | static BOOL H_UpgradeFromV253(int currVersion, int newVersion) |
3150 | { | |
6f33021d | 3151 | static TCHAR batch[] = |
40647141 VK |
3152 | _T("ALTER TABLE network_maps ADD flags integer\n") |
3153 | _T("ALTER TABLE network_maps ADD link_color integer\n") | |
3154 | _T("UPDATE network_maps SET flags=1,link_color=-1\n") | |
3155 | _T("ALTER TABLE network_map_links ADD color integer\n") | |
3156 | _T("ALTER TABLE network_map_links ADD status_object integer\n") | |
3157 | _T("UPDATE network_map_links SET color=-1,status_object=0\n") | |
3158 | _T("<END>"); | |
3159 | ||
3160 | CHK_EXEC(SQLBatch(batch)); | |
3161 | ||
3162 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='254' WHERE var_name='SchemaVersion'"))); | |
3163 | return TRUE; | |
3164 | } | |
3165 | ||
d6bf58f9 VK |
3166 | /** |
3167 | * Upgrade from V252 to V253 | |
3168 | */ | |
feab3324 VK |
3169 | static BOOL H_UpgradeFromV252(int currVersion, int newVersion) |
3170 | { | |
480e036b | 3171 | CHK_EXEC(SetColumnNullable(_T("templates"), _T("apply_filter"))); |
242e9c7f VK |
3172 | CHK_EXEC(ConvertStrings(_T("templates"), _T("id"), _T("apply_filter"))); |
3173 | ||
480e036b | 3174 | CHK_EXEC(SetColumnNullable(_T("containers"), _T("auto_bind_filter"))); |
242e9c7f VK |
3175 | CHK_EXEC(ConvertStrings(_T("containers"), _T("id"), _T("auto_bind_filter"))); |
3176 | ||
6f33021d | 3177 | static TCHAR batch[] = |
feab3324 | 3178 | _T("ALTER TABLE templates ADD flags integer\n") |
2984ac95 VK |
3179 | _T("UPDATE templates SET flags=0 WHERE enable_auto_apply=0\n") |
3180 | _T("UPDATE templates SET flags=3 WHERE enable_auto_apply<>0\n") | |
feab3324 VK |
3181 | _T("ALTER TABLE templates DROP COLUMN enable_auto_apply\n") |
3182 | _T("ALTER TABLE containers ADD flags integer\n") | |
2984ac95 VK |
3183 | _T("UPDATE containers SET flags=0 WHERE enable_auto_bind=0\n") |
3184 | _T("UPDATE containers SET flags=3 WHERE enable_auto_bind<>0\n") | |
feab3324 VK |
3185 | _T("ALTER TABLE containers DROP COLUMN enable_auto_bind\n") |
3186 | _T("<END>"); | |
feab3324 VK |
3187 | CHK_EXEC(SQLBatch(batch)); |
3188 | ||
3189 | CHK_EXEC(CreateEventTemplate(EVENT_CONTAINER_AUTOBIND, _T("SYS_CONTAINER_AUTOBIND"), EVENT_SEVERITY_NORMAL, 1, | |
6f33021d | 3190 | _T("Node %2 automatically bound to container %4"), |
feab3324 VK |
3191 | _T("Generated when node bound to container object by autobind rule.\r\n") |
3192 | _T("Parameters:#\r\n") | |
3193 | _T(" 1) Node ID\r\n") | |
3194 | _T(" 2) Node name\r\n") | |
3195 | _T(" 3) Container ID\r\n") | |
3196 | _T(" 4) Container name") | |
3197 | )); | |
3198 | ||
3199 | CHK_EXEC(CreateEventTemplate(EVENT_CONTAINER_AUTOUNBIND, _T("SYS_CONTAINER_AUTOUNBIND"), EVENT_SEVERITY_NORMAL, 1, | |
6f33021d | 3200 | _T("Node %2 automatically unbound from container %4"), |
feab3324 VK |
3201 | _T("Generated when node unbound from container object by autobind rule.\r\n") |
3202 | _T("Parameters:#\r\n") | |
3203 | _T(" 1) Node ID\r\n") | |
3204 | _T(" 2) Node name\r\n") | |
3205 | _T(" 3) Container ID\r\n") | |
3206 | _T(" 4) Container name") | |
3207 | )); | |
3208 | ||
3209 | CHK_EXEC(CreateEventTemplate(EVENT_TEMPLATE_AUTOAPPLY, _T("SYS_TEMPLATE_AUTOAPPLY"), EVENT_SEVERITY_NORMAL, 1, | |
6f33021d | 3210 | _T("Template %4 automatically applied to node %2"), |
feab3324 VK |
3211 | _T("Generated when template applied to node by autoapply rule.\r\n") |
3212 | _T("Parameters:#\r\n") | |
3213 | _T(" 1) Node ID\r\n") | |
3214 | _T(" 2) Node name\r\n") | |
3215 | _T(" 3) Template ID\r\n") | |
3216 | _T(" 4) Template name") | |
3217 | )); | |
3218 | ||
3219 | CHK_EXEC(CreateEventTemplate(EVENT_TEMPLATE_AUTOREMOVE, _T("SYS_TEMPLATE_AUTOREMOVE"), EVENT_SEVERITY_NORMAL, 1, | |
6f33021d | 3220 | _T("Template %4 automatically removed from node %2"), |
feab3324 VK |
3221 | _T("Generated when template removed from node by autoapply rule.\r\n") |
3222 | _T("Parameters:#\r\n") | |
3223 | _T(" 1) Node ID\r\n") | |
3224 | _T(" 2) Node name\r\n") | |
3225 | _T(" 3) Template ID\r\n") | |
3226 | _T(" 4) Template name") | |
3227 | )); | |
3228 | ||
65790062 VK |
3229 | TCHAR buffer[64]; |
3230 | _sntprintf(buffer, 64, _T("%d"), ConfigReadInt(_T("AllowedCiphers"), 15) + 16); | |
3231 | CreateConfigParam(_T("AllowedCiphers"), buffer, 1, 1, TRUE); | |
3232 | ||
feab3324 VK |
3233 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='253' WHERE var_name='SchemaVersion'"))); |
3234 | return TRUE; | |
3235 | } | |
3236 | ||
badf9a95 VK |
3237 | /** |
3238 | * Upgrade from V251 to V252 | |
3239 | */ | |
1e6b68a6 VK |
3240 | static BOOL H_UpgradeFromV251(int currVersion, int newVersion) |
3241 | { | |
6f33021d | 3242 | static TCHAR batch[] = |
1e6b68a6 VK |
3243 | _T("ALTER TABLE interfaces ADD admin_state integer\n") |
3244 | _T("ALTER TABLE interfaces ADD oper_state integer\n") | |
3245 | _T("UPDATE interfaces SET admin_state=0,oper_state=0\n") | |
3246 | _T("<END>"); | |
3247 | ||
3248 | CHK_EXEC(SQLBatch(batch)); | |
3249 | ||
3250 | CHK_EXEC(CreateEventTemplate(EVENT_INTERFACE_UNEXPECTED_UP, _T("SYS_IF_UNEXPECTED_UP"), EVENT_SEVERITY_MAJOR, 1, | |
6f33021d | 3251 | _T("Interface \"%2\" unexpectedly changed state to UP (IP Addr: %3/%4, IfIndex: %5)"), |
1e6b68a6 VK |
3252 | _T("Generated when interface goes up but it's expected state set to DOWN.\r\n") |
3253 | _T("Please note that source of event is node, not an interface itself.\r\n") | |
3254 | _T("Parameters:#\r\n") | |
3255 | _T(" 1) Interface object ID\r\n") | |
3256 | _T(" 2) Interface name\r\n") | |
3257 | _T(" 3) Interface IP address\r\n") | |
3258 | _T(" 4) Interface netmask\r\n") | |
3259 | _T(" 5) Interface index") | |
3260 | )); | |
3261 | ||
3262 | CHK_EXEC(CreateEventTemplate(EVENT_INTERFACE_EXPECTED_DOWN, _T("SYS_IF_EXPECTED_DOWN"), EVENT_SEVERITY_NORMAL, 1, | |
6f33021d | 3263 | _T("Interface \"%2\" with expected state DOWN changed state to DOWN (IP Addr: %3/%4, IfIndex: %5)"), |
1e6b68a6 VK |
3264 | _T("Generated when interface goes down and it's expected state is DOWN.\r\n") |
3265 | _T("Please note that source of event is node, not an interface itself.\r\n") | |
3266 | _T("Parameters:#\r\n") | |
3267 | _T(" 1) Interface object ID\r\n") | |
3268 | _T(" 2) Interface name\r\n") | |
3269 | _T(" 3) Interface IP address\r\n") | |
3270 | _T(" 4) Interface netmask\r\n") | |
3271 | _T(" 5) Interface index") | |
3272 | )); | |
3273 | ||
3274 | // Create rule pair in event processing policy | |
3275 | int ruleId = 0; | |
3276 | DB_RESULT hResult = SQLSelect(_T("SELECT max(rule_id) FROM event_policy")); | |
3277 | if (hResult != NULL) | |
3278 | { | |
3279 | ruleId = DBGetFieldLong(hResult, 0, 0) + 1; | |
3280 | DBFreeResult(hResult); | |
3281 | } | |
3282 | ||
3283 | TCHAR query[1024]; | |
6f33021d | 3284 | _sntprintf(query, 1024, |
1e6b68a6 VK |
3285 | _T("INSERT INTO event_policy (rule_id,flags,comments,alarm_message,alarm_severity,alarm_key,") |
3286 | _T("script,alarm_timeout,alarm_timeout_event,situation_id,situation_instance) VALUES ") | |
3287 | _T("(%d,7944,'Show alarm when interface is unexpectedly up','%%m',5,'IF_UNEXP_UP_%%i_%%1',") | |
3288 | _T("'#00',0,%d,0,'#00')"), ruleId, EVENT_ALARM_TIMEOUT); | |
3289 | CHK_EXEC(SQLQuery(query)); | |
3290 | _sntprintf(query, 1024, _T("INSERT INTO policy_event_list (rule_id,event_code) VALUES (%d,%d)"), ruleId, EVENT_INTERFACE_UNEXPECTED_UP); | |
3291 | CHK_EXEC(SQLQuery(query)); | |
3292 | ruleId++; | |
3293 | ||
6f33021d | 3294 | _sntprintf(query, 1024, |
1e6b68a6 VK |
3295 | _T("INSERT INTO event_policy (rule_id,flags,comments,alarm_message,alarm_severity,alarm_key,") |
3296 | _T("script,alarm_timeout,alarm_timeout_event,situation_id,situation_instance) VALUES ") | |
3297 | _T("(%d,7944,'Acknowlege interface unexpectedly up alarms when interface goes down','%%m',") | |
3298 | _T("6,'IF_UNEXP_UP_%%i_%%1','#00',0,%d,0,'#00')"), ruleId, EVENT_ALARM_TIMEOUT); | |
3299 | CHK_EXEC(SQLQuery(query)); | |
3300 | _sntprintf(query, 1024, _T("INSERT INTO policy_event_list (rule_id,event_code) VALUES (%d,%d)"), ruleId, EVENT_INTERFACE_EXPECTED_DOWN); | |
3301 | CHK_EXEC(SQLQuery(query)); | |
3302 | ||
3303 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='252' WHERE var_name='SchemaVersion'"))); | |
3304 | return TRUE; | |
3305 | } | |
3306 | ||
9aa67910 VK |
3307 | /** |
3308 | * Upgrade from V250 to V251 | |
3309 | */ | |
711e5e9a VK |
3310 | static BOOL H_UpgradeFromV250(int currVersion, int newVersion) |
3311 | { | |
6f33021d | 3312 | static TCHAR batch[] = |
711e5e9a VK |
3313 | _T("ALTER TABLE thresholds ADD current_severity integer\n") |
3314 | _T("ALTER TABLE thresholds ADD last_event_timestamp integer\n") | |
3315 | _T("UPDATE thresholds SET current_severity=0,last_event_timestamp=0\n") | |
3316 | _T("<END>"); | |
3317 | ||
3318 | CHK_EXEC(SQLBatch(batch)); | |
3319 | ||
480e036b VK |
3320 | CHK_EXEC(SetColumnNullable(_T("thresholds"), _T("fire_value"))); |
3321 | CHK_EXEC(SetColumnNullable(_T("thresholds"), _T("rearm_value"))); | |
711e5e9a VK |
3322 | CHK_EXEC(ConvertStrings(_T("thresholds"), _T("threshold_id"), _T("fire_value"))); |
3323 | CHK_EXEC(ConvertStrings(_T("thresholds"), _T("threshold_id"), _T("rearm_value"))); | |
3324 | ||
3325 | CHK_EXEC(CreateConfigParam(_T("EnableNXSLContainerFunctions"), _T("1"), 1, 1)); | |
3326 | CHK_EXEC(CreateConfigParam(_T("UseDNSNameForDiscoveredNodes"), _T("0"), 1, 0)); | |
3327 | CHK_EXEC(CreateConfigParam(_T("AllowTrapVarbindsConversion"), _T("1"), 1, 1)); | |
3328 | ||
3329 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='251' WHERE var_name='SchemaVersion'"))); | |
3330 | return TRUE; | |
3331 | } | |
3332 | ||
9aa67910 VK |
3333 | /** |
3334 | * Upgrade from V249 to V250 | |
3335 | */ | |
ae2a3458 VK |
3336 | static BOOL H_UpgradeFromV249(int currVersion, int newVersion) |
3337 | { | |
3338 | CHK_EXEC(CreateTable(_T("CREATE TABLE licenses (") | |
3339 | _T("id integer not null,") | |
3340 | _T("content $SQL:TEXT null,") | |
3341 | _T("PRIMARY KEY(id))"))); | |
3342 | ||
3343 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='250' WHERE var_name='SchemaVersion'"))); | |
3344 | return TRUE; | |
3345 | } | |
3346 | ||
9aa67910 VK |
3347 | /** |
3348 | * Upgrade from V248 to V249 | |
3349 | */ | |
d6124fa0 VK |
3350 | #define TDATA_CREATE_QUERY _T("CREATE TABLE tdata_%d (item_id integer not null,tdata_timestamp integer not null,tdata_row integer not null,tdata_column integer not null,tdata_value varchar(255) null)") |
3351 | #define TDATA_INDEX_MSSQL _T("CREATE CLUSTERED INDEX idx_tdata_%d_id_timestamp ON tdata_%d(item_id,tdata_timestamp)") | |
3352 | #define TDATA_INDEX_PGSQL _T("CREATE INDEX idx_tdata_%d_timestamp_id ON tdata_%d(tdata_timestamp,item_id)") | |
3353 | #define TDATA_INDEX_DEFAULT _T("CREATE INDEX idx_tdata_%d_id_timestamp ON tdata_%d(item_id,tdata_timestamp)") | |
3354 | ||
3355 | static BOOL CreateTData(DWORD nodeId) | |
3356 | { | |
3357 | TCHAR query[256]; | |
3358 | ||
3359 | _sntprintf(query, 256, TDATA_CREATE_QUERY, (int)nodeId); | |
3360 | CHK_EXEC(SQLQuery(query)); | |
3361 | ||
2a964810 | 3362 | switch(g_dbSyntax) |
d6124fa0 VK |
3363 | { |
3364 | case DB_SYNTAX_MSSQL: | |
3365 | _sntprintf(query, 256, TDATA_INDEX_MSSQL, (int)nodeId, (int)nodeId); | |
3366 | break; | |
3367 | case DB_SYNTAX_PGSQL: | |
3368 | _sntprintf(query, 256, TDATA_INDEX_PGSQL, (int)nodeId, (int)nodeId); | |
3369 | break; | |
3370 | default: | |
3371 | _sntprintf(query, 256, TDATA_INDEX_DEFAULT, (int)nodeId, (int)nodeId); | |
3372 | break; | |
3373 | } | |
3374 | CHK_EXEC(SQLQuery(query)); | |
3375 | ||
3376 | return TRUE; | |
3377 | } | |
3378 | ||
3379 | static BOOL H_UpgradeFromV248(int currVersion, int newVersion) | |
3380 | { | |
3381 | CHK_EXEC(SQLQuery(_T("INSERT INTO metadata (var_name,var_value) VALUES ('TDataTableCreationCommand','") TDATA_CREATE_QUERY _T("')"))); | |
3382 | ||
2a964810 | 3383 | switch(g_dbSyntax) |
d6124fa0 VK |
3384 | { |
3385 | case DB_SYNTAX_MSSQL: | |
3386 | CHK_EXEC(SQLQuery(_T("INSERT INTO metadata (var_name,var_value) VALUES ('TDataIndexCreationCommand_0','") TDATA_INDEX_MSSQL _T("')"))); | |
3387 | break; | |
3388 | case DB_SYNTAX_PGSQL: | |
3389 | CHK_EXEC(SQLQuery(_T("INSERT INTO metadata (var_name,var_value) VALUES ('TDataIndexCreationCommand_0','") TDATA_INDEX_PGSQL _T("')"))); | |
3390 | break; | |
3391 | default: | |
3392 | CHK_EXEC(SQLQuery(_T("INSERT INTO metadata (var_name,var_value) VALUES ('TDataIndexCreationCommand_0','") TDATA_INDEX_DEFAULT _T("')"))); | |
3393 | break; | |
3394 | } | |
3395 | ||
3396 | CHK_EXEC(CreateTable(_T("CREATE TABLE dct_column_names (") | |
3397 | _T("column_id integer not null,") | |
3398 | _T("column_name varchar(63) not null,") | |
3399 | _T("PRIMARY KEY(column_id))"))); | |
3400 | ||
3401 | DB_RESULT hResult = SQLSelect(_T("SELECT id FROM nodes")); | |
3402 | if (hResult != NULL) | |
3403 | { | |
3404 | int count = DBGetNumRows(hResult); | |
3405 | for(int i = 0 ; i < count; i++) | |
3406 | { | |
3407 | if (!CreateTData(DBGetFieldULong(hResult, i, 0))) | |
3408 | { | |
3409 | if (!g_bIgnoreErrors) | |
3410 | { | |
3411 | DBFreeResult(hResult); | |
3412 | return FALSE; | |
3413 | } | |
3414 | } | |
3415 | } | |
3416 | DBFreeResult(hResult); | |
3417 | } | |
3418 | else | |
3419 | { | |
3420 | if (!g_bIgnoreErrors) | |
3421 | return FALSE; | |
3422 | } | |
3423 | ||
3424 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='249' WHERE var_name='SchemaVersion'"))); | |
3425 | return TRUE; | |
3426 | } | |
3427 | ||
480e036b VK |
3428 | /** |
3429 | * Upgrade from V247 to V248 | |
3430 | */ | |
cc8ce218 VK |
3431 | static BOOL H_UpgradeFromV247(int currVersion, int newVersion) |
3432 | { | |
3433 | CHK_EXEC(CreateTable(_T("CREATE TABLE dc_tables (") | |
3434 | _T("item_id integer not null,") | |
3435 | _T("node_id integer not null,") | |
3436 | _T("template_id integer not null,") | |
3437 | _T("template_item_id integer not null,") | |
3438 | _T("name varchar(255) null,") | |
3439 | _T("instance_column varchar(63) null,") | |
3440 | _T("description varchar(255) null,") | |
3441 | _T("flags integer not null,") | |
3442 | _T("source integer not null,") | |
3443 | _T("snmp_port integer not null,") | |
3444 | _T("polling_interval integer not null,") | |
3445 | _T("retention_time integer not null,") | |
3446 | _T("status integer not null,") | |
3447 | _T("system_tag varchar(255) null,") | |
3448 | _T("resource_id integer not null,") | |
3449 | _T("proxy_node integer not null,") | |
3450 | _T("perftab_settings $SQL:TEXT null,") | |
3451 | _T("PRIMARY KEY(item_id))"))); | |
3452 | ||
3453 | CHK_EXEC(CreateTable(_T("CREATE TABLE dc_table_columns (") | |
3454 | _T("table_id integer not null,") | |
3455 | _T("column_name varchar(63) not null,") | |
3456 | _T("snmp_oid varchar(1023) null,") | |
3457 | _T("data_type integer not null,") | |
3458 | _T("transformation_script $SQL:TEXT null,") | |
3459 | _T("PRIMARY KEY(table_id,column_name))"))); | |
3460 | ||
3461 | CHK_EXEC(SQLQuery(_T("UPDATE metadata SET var_value='248' WHERE var_name='SchemaVersion'"))); | |
3462 | return TRUE; | |
3463 | } | |
3464 | ||
480e036b VK |
3465 | /** |
3466 | * Upgrade from V246 to V247 | |
3467 | */ | |
ff392ecf VK |
3468 | static BOOL H_UpgradeFromV246(int currVersion, int newVersion) |
3469 | { | |
3470 | static TCHAR insertQuery[] = _T("INSERT INTO object_custom_attributes (object_id,attr_name,attr_value) VALUES (?,?,?)"); | |
3471 | ||
480e036b | 3472 | CHK_EXEC(SetColumnNullable(_T("object_custom_attributes"), _T("attr_value"))); |
ff392ecf VK |
3473 | |
3474 | // Convert strings in object_custom_attributes table | |
3475 | DB_RESULT hResult = SQLSelect(_T("SELECT object_id,attr_name,attr_value FROM object_custom_attributes")); | |
3476 | if (hResult != NULL) | |
3477 | { | |
3478 | if (SQLQuery(_T("DELETE FROM object_custom_attributes"))) | |
3479 | { | |
3480 | TCHAR errorText[DBDRV_MAX_ERROR_TEXT]; | |
3481 | DB_STATEMENT hStmt = DBPrepareEx(g_hCoreDB, insertQuery, errorText); | |
3482 | if (hStmt != NULL) | |
3483 | { | |
3484 | TCHAR name[128], *value; | |
3485 | int count = DBGetNumRows(hResult); | |
3486 | for(int i = 0; i < count; i++) | |
3487 | { | |
967893bb | 3488 | UINT32 id = DBGetFieldULong(hResult, i, 0); |
ff392ecf VK |
3489 | DBGetField(hResult, i, 1, name, 128); |
3490 | DecodeSQLString(name); | |
3491 | value = DBGetField(hResult, i, 2, NULL, 0); | |
3492 | DecodeSQLString(value); | |
3493 | ||
3494 | DBBind(hStmt, 1, DB_SQLTYPE_INTEGER, id); | |
3495 | DBBind(hStmt, 2, DB_SQLTYPE_VARCHAR, name, DB_BIND_STATIC); | |
3496 | DBBind(hStmt, 3, DB_SQLTYPE_VARCHAR, value, DB_BIND_DYNAMIC); | |
3497 | if (g_bTrace) | |