]> git.ipfire.org Git - ipfire-2.x.git/blob - src/scripts/xt_geoip_update
ebd2665331c75ac5863e2d455e8cda6a5c37cb07
[ipfire-2.x.git] / src / scripts / xt_geoip_update
1 #!/bin/bash
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2019 IPFire Development Team <info@ipfire.org> #
6 # #
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. #
11 # #
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. #
16 # #
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/>. #
19 # #
20 ###############################################################################
21
22 TMP_PATH=$(mktemp -dp /var/tmp)
23 TMP_FILE=$(mktemp -p $TMP_PATH)
24
25 SCRIPT_PATH=/usr/local/bin
26 DEST_PATH=/usr/share/xt_geoip
27 DB_PATH=/var/lib/GeoIP
28 DB1_PATH=/usr/share/GeoIP
29
30 DL_URL=https://geolite.maxmind.com/download/geoip/database
31 DL_FILE=GeoLite2-Country-CSV.zip
32
33 eval $(/usr/local/bin/readhash /var/ipfire/proxy/settings)
34
35 function download() {
36 echo "Downloading latest GeoIP ruleset..."
37
38 # Proxy settings.
39 # Check if a proxy should be used.
40 if [[ $UPSTREAM_PROXY ]]; then
41 PROXYSETTINGS="-e https_proxy=http://"
42
43 # Check if authentication against the proxy is configured.
44 if [[ $UPSTREAM_USER && $UPSTREAM_PASSWORD ]]; then
45 PROXYSETTINGS="$PROXYSETTINGS$UPSTREAM_USER:$UPSTREAM_PASSWORD@"
46 fi
47
48 # Add proxy server.
49 PROXYSETTINGS="$PROXYSETTINGS$UPSTREAM_PROXY"
50 fi
51
52 # Get the latest GeoIP database from server.
53 wget $DL_URL/$DL_FILE $PROXYSETTINGS -O $TMP_FILE
54
55 # Extract files to database path.
56 unzip $TMP_FILE -d $TMP_PATH
57
58 return 0
59 }
60
61 function install() {
62 echo "Install CSV database..."
63
64 # Check if the database dir exists.
65 if [ ! -e "$DB_PATH" ]; then
66 mkdir -p $DB_PATH &>/dev/null
67 fi
68
69 # Check if the directory for binary databases exists.
70 if [ ! -e "$DEST_PATH" ]; then
71 mkdir -p $DEST_PATH &>/dev/null
72 fi
73
74 # Install CSV databases.
75 if ! cp -af $TMP_PATH/*/* $DB_PATH &>/dev/null; then
76 echo "Could not copy files. Aborting." >&2
77 return 1
78 fi
79
80 return 0
81 }
82
83 function build_legacy() {
84 echo "Convert database to legacy GeoIP.dat ..."
85 cat $DB_PATH/GeoLite2-Country-Blocks-IPv4.csv | \
86 $DB1_PATH/bin/geolite2-to-legacy-csv.sh $DB1_PATH/bin/countryInfo.txt > \
87 $TMP_FILE
88 $DB1_PATH/bin/geoip-generator -v -4 --info="$(date -u +'GEO-106FREE %Y%m%d Build -IPFire-' \
89 -r $DB_PATH/GeoLite2-Country-Blocks-IPv4.csv) $(<$DB_PATH/COPYRIGHT.txt)" -o \
90 $DB1_PATH/GeoIP.dat $TMP_FILE
91
92 return 0
93 }
94
95
96 function build() {
97 echo "Convert database..."
98
99 # Run script to convert the CSV file into several xtables
100 # compatible binary files.
101 if ! $SCRIPT_PATH/xt_geoip_build -S $DB_PATH -D $DEST_PATH; then
102 echo "Could not convert ruleset. Aborting." >&2
103 return 1
104 fi
105
106 return 0
107 }
108
109 function cleanup() {
110 echo "Cleaning up temporary files..."
111 if ! rm -rf $TMP_PATH &>/dev/null; then
112 echo "Could not remove files. Aborting." >&2
113 return 1
114 fi
115
116 return 0
117 }
118
119 function main() {
120 local func
121 for func in download install build build_legacy; do
122 if ! ${func}; then
123 # Cleanup any temporary data
124 cleanup
125
126 return 1
127 fi
128 done
129
130 # Cleanup
131 cleanup || return $?
132
133 # All done
134 return 0
135 }
136
137 # Run the main function.
138 main || exit $?