2 ###############################################################################
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2014 IPFire Development Team <info@ipfire.org> #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
20 ###############################################################################
23 TMP_FILE=$(mktemp -p $TMP_PATH)
25 SCRIPT_PATH=/usr/local/bin
26 DEST_PATH=/usr/share/xt_geoip
27 DB_PATH=/var/lib/GeoIP
29 DL_URL=http://geolite.maxmind.com/download/geoip/database/
30 DL_FILE=GeoLite2-Country-CSV.zip
32 eval $(/usr/local/bin/readhash /var/ipfire/proxy/settings)
35 echo "Downloading latest GeoIP ruleset..."
37 # Create temporary directory.
41 # Check if a proxy should be used.
42 if [[ $UPSTREAM_PROXY ]]; then
43 PROXYSETTINGS="-e http_proxy=http://"
45 # Check if authentication against the proxy is configured.
46 if [[ $UPSTREAM_USER && $UPSTREAM_PASSWORD ]]; then
47 PROXYSETTINGS="$PROXYSETTINGS$UPSTREAM_USER:$UPSTREAM_PASSWORD@"
51 PROXYSETTINGS="$PROXYSETTINGS$UPSTREAM_PROXY"
54 # Get the latest GeoIP database from server.
55 wget $DL_URL/$DL_FILE $PROXYSETTINGS -O $TMP_FILE
57 # Extract files to database path.
58 unzip $TMP_FILE -d $TMP_PATH
64 echo "Install CSV database..."
66 # Check if the database dir exists.
67 if [ ! -e "$DB_PATH" ]; then
68 mkdir -p $DB_PATH &>/dev/null
71 # Check if the directory for binary databases exists.
72 if [ ! -e "$DEST_PATH" ]; then
73 mkdir -p $DEST_PATH &>/dev/null
76 # Install CSV databases.
77 if ! cp -af $TMP_PATH/*/* $DB_PATH &>/dev/null; then
78 echo "Could not copy files. Aborting." >&2
86 echo "Convert database..."
88 # Run script to convert the CSV file into several xtables
89 # compatible binary files.
90 if ! $SCRIPT_PATH/xt_geoip_build -S $DB_PATH -D $DEST_PATH; then
91 echo "Could not convert ruleset. Aborting." >&2
99 echo "Cleaning up temporary files..."
100 if ! rm -rf $TMP_PATH &>/dev/null; then
101 echo "Could not remove files. Aborting." >&2
118 # Remove temporary files.
121 # Convert the ruleset.
127 # Run the main function.