Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
5ec2101a
Commit
5ec2101a
authored
Aug 07, 2016
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(insight) check database integrity before start, repair if broken
parent
7bf1343b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
1 deletion
+73
-1
flowd_aggregate.py
src/opnsense/scripts/netflow/flowd_aggregate.py
+4
-1
sqlite3_helper.py
src/opnsense/site-python/sqlite3_helper.py
+69
-0
No files found.
src/opnsense/scripts/netflow/flowd_aggregate.py
View file @
5ec2101a
...
...
@@ -28,7 +28,6 @@
Aggregate flowd data for reporting
"""
import
time
import
datetime
import
os
import
sys
import
signal
...
...
@@ -37,6 +36,7 @@ import copy
import
syslog
import
traceback
sys
.
path
.
insert
(
0
,
"/usr/local/opnsense/site-python"
)
from
sqlite3_helper
import
check_and_repair
from
lib.parse
import
parse_flow
from
lib.aggregate
import
AggMetadata
import
lib.aggregates
...
...
@@ -130,6 +130,9 @@ class Main(object):
""" run, endless loop, until sigterm is received
:return: None
"""
# check database consistency / repair
check_and_repair
(
'/var/netflow/*.sqlite'
)
vacuum_interval
=
(
60
*
60
*
8
)
# 8 hour vacuum cycle
vacuum_countdown
=
None
while
self
.
running
:
...
...
src/opnsense/site-python/sqlite3_helper.py
0 → 100644
View file @
5ec2101a
"""
Copyright (c) 2016 Ad Schellevis
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
--------------------------------------------------------------------------------------
SQLite3 support functions
"""
import
datetime
import
glob
import
sqlite3
import
syslog
import
os
def
check_and_repair
(
filename_mask
):
""" check and repair sqlite databases
:param filename_mask: filenames (glob pattern)
:return: None
"""
for
filename
in
glob
.
glob
(
filename_mask
):
try
:
conn
=
sqlite3
.
connect
(
filename
,
detect_types
=
sqlite3
.
PARSE_DECLTYPES
|
sqlite3
.
PARSE_COLNAMES
)
cur
=
conn
.
cursor
()
cur
.
execute
(
"SELECT name FROM sqlite_master where type = 'table'"
)
except
sqlite3
.
DatabaseError
:
# unrecoverable, doesn't look like a database, rename to .bck
filename_tmp
=
'
%
s.
%
s.bck'
%
(
filename
,
datetime
.
datetime
.
now
()
.
strftime
(
"
%
Y
%
m
%
d
%
H
%
M
%
S"
))
syslog
.
syslog
(
syslog
.
LOG_ERR
,
"sqlite3
%
s doesn't look like a database, rename to
%
s "
%
(
filename
,
filename_tmp
))
cur
=
None
os
.
rename
(
filename
,
filename_tmp
)
# try to vacuum all tables, triggers a "database disk image is malformed" when corrupted
# force a repair when corrupted, using a dump / import
if
cur
is
not
None
:
try
:
for
table
in
cur
.
fetchall
():
cur
.
execute
(
'vacuum
%
s'
%
table
[
0
])
except
sqlite3
.
DatabaseError
,
e
:
if
e
.
message
.
find
(
'malformed'
)
>
-
1
:
syslog
.
syslog
(
syslog
.
LOG_ERR
,
"sqlite3 repair
%
s"
%
filename
)
filename_tmp
=
'
%
s.fix'
%
filename
if
os
.
path
.
exists
(
filename_tmp
):
os
.
remove
(
filename_tmp
)
os
.
system
(
'echo ".dump" | /usr/local/bin/sqlite3
%
s | /usr/local/bin/sqlite3
%
s'
%
(
filename
,
filename_tmp
))
if
os
.
path
.
exists
(
filename_tmp
):
os
.
remove
(
filename
)
os
.
rename
(
filename_tmp
,
filename
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment