]> git.ipfire.org Git - people/ms/libloc.git/blame - src/python/export.py
export: Change back to use Network objects
[people/ms/libloc.git] / src / python / export.py
CommitLineData
88ef7e9c
MT
1#!/usr/bin/python3
2###############################################################################
3# #
4# libloc - A library to determine the location of someone on the Internet #
5# #
6# Copyright (C) 2020 IPFire Development Team <info@ipfire.org> #
7# #
8# This library is free software; you can redistribute it and/or #
9# modify it under the terms of the GNU Lesser General Public #
10# License as published by the Free Software Foundation; either #
11# version 2.1 of the License, or (at your option) any later version. #
12# #
13# This library is distributed in the hope that it will be useful, #
14# but WITHOUT ANY WARRANTY; without even the implied warranty of #
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU #
16# Lesser General Public License for more details. #
17# #
18###############################################################################
19
20import io
21import ipaddress
22import logging
23import os
24import socket
25
fae36e81
MT
26import _location
27
88ef7e9c
MT
28# Initialise logging
29log = logging.getLogger("location.export")
30log.propagate = 1
31
bd1dc6bf 32FLAGS = {
fae36e81
MT
33 _location.NETWORK_FLAG_ANONYMOUS_PROXY : "A1",
34 _location.NETWORK_FLAG_SATELLITE_PROVIDER : "A2",
35 _location.NETWORK_FLAG_ANYCAST : "A3",
36}
37
88ef7e9c
MT
38class OutputWriter(object):
39 suffix = "networks"
40 mode = "w"
41
28c73fa3
PM
42 def __init__(self, db, f, prefix=None, flatten=True):
43 self.db, self.f, self.prefix, self.flatten = db, f, prefix, flatten
43554dc4
MT
44
45 # The previously written network
46 self._last_network = None
88ef7e9c
MT
47
48 # Immediately write the header
49 self._write_header()
50
51 @classmethod
28c73fa3 52 def open(cls, db, filename, **kwargs):
88ef7e9c
MT
53 """
54 Convenience function to open a file
55 """
56 f = open(filename, cls.mode)
57
28c73fa3 58 return cls(db, f, **kwargs)
88ef7e9c
MT
59
60 def __repr__(self):
61 return "<%s f=%s>" % (self.__class__.__name__, self.f)
62
43554dc4
MT
63 def _flatten(self, network):
64 """
65 Checks if the given network needs to be written to file,
66 or if it is a subnet of the previously written network.
67 """
68 if self._last_network and network.is_subnet_of(self._last_network):
69 return True
70
71 # Remember this network for the next call
72 self._last_network = network
73 return False
74
88ef7e9c
MT
75 def _write_header(self):
76 """
77 The header of the file
78 """
79 pass
80
81 def _write_footer(self):
82 """
83 The footer of the file
84 """
85 pass
86
43554dc4 87 def _write_network(self, network):
88ef7e9c
MT
88 self.f.write("%s\n" % network)
89
c242f732 90 def write(self, network):
43554dc4 91 if self.flatten and self._flatten(network):
bbed1fd2 92 log.debug("Skipping writing network %s (last one was %s)" % (network, self._last_network))
43554dc4
MT
93 return
94
c242f732 95 return self._write_network(network)
43554dc4 96
88ef7e9c
MT
97 def finish(self):
98 """
99 Called when all data has been written
100 """
101 self._write_footer()
102
103 # Close the file
104 self.f.close()
105
106
107class IpsetOutputWriter(OutputWriter):
108 """
109 For ipset
110 """
111 suffix = "ipset"
112
113 def _write_header(self):
114 self.f.write("create %s hash:net family inet hashsize 1024 maxelem 65536\n" % self.prefix)
115
43554dc4 116 def _write_network(self, network):
88ef7e9c
MT
117 self.f.write("add %s %s\n" % (self.prefix, network))
118
119
120class NftablesOutputWriter(OutputWriter):
121 """
122 For nftables
123 """
124 suffix = "set"
125
126 def _write_header(self):
127 self.f.write("define %s = {\n" % self.prefix)
128
129 def _write_footer(self):
130 self.f.write("}\n")
131
43554dc4 132 def _write_network(self, network):
88ef7e9c
MT
133 self.f.write(" %s,\n" % network)
134
135
136class XTGeoIPOutputWriter(OutputWriter):
137 """
138 Formats the output in that way, that it can be loaded by
139 the xt_geoip kernel module from xtables-addons.
140 """
141 suffix = "iv"
142 mode = "wb"
143
43554dc4 144 def _write_network(self, network):
c242f732 145 for address in (network.first_address, network.last_address):
2b9338ea 146 # Convert this into a string of bits
e6592434 147 bytes = socket.inet_pton(network.family, address)
88ef7e9c
MT
148
149 self.f.write(bytes)
150
151
152formats = {
153 "ipset" : IpsetOutputWriter,
154 "list" : OutputWriter,
155 "nftables" : NftablesOutputWriter,
156 "xt_geoip" : XTGeoIPOutputWriter,
157}
158
159class Exporter(object):
160 def __init__(self, db, writer):
161 self.db, self.writer = db, writer
162
163 def export(self, directory, families, countries, asns):
164 for family in families:
165 log.debug("Exporting family %s" % family)
166
167 writers = {}
168
169 # Create writers for countries
170 for country_code in countries:
171 filename = self._make_filename(
172 directory, prefix=country_code, suffix=self.writer.suffix, family=family,
173 )
174
28c73fa3 175 writers[country_code] = self.writer.open(self.db, filename, prefix="CC_%s" % country_code)
88ef7e9c
MT
176
177 # Create writers for ASNs
178 for asn in asns:
179 filename = self._make_filename(
180 directory, "AS%s" % asn, suffix=self.writer.suffix, family=family,
181 )
182
28c73fa3 183 writers[asn] = self.writer.open(self.db, filename, prefix="AS%s" % asn)
88ef7e9c 184
7af51f8a
MT
185 # Filter countries from special country codes
186 country_codes = [
bd1dc6bf 187 country_code for country_code in countries if not country_code in FLAGS.values()
7af51f8a
MT
188 ]
189
bd1dc6bf
MT
190 # Collect flags
191 flags = 0
192 for flag in FLAGS:
193 if FLAGS[flag] in countries:
194 flags |= flag
195
88ef7e9c 196 # Get all networks that match the family
7af51f8a 197 networks = self.db.search_networks(family=family,
84a2f0c2 198 country_codes=country_codes, asns=asns, flags=flags, flatten=True)
28c73fa3 199
88ef7e9c 200 # Walk through all networks
bbed1fd2 201 for network in networks:
88ef7e9c 202 # Write matching countries
c242f732
MT
203 try:
204 writers[network.country_code].write(network)
205 except KeyError:
206 pass
88ef7e9c
MT
207
208 # Write matching ASNs
c242f732
MT
209 try:
210 writers[network.asn].write(network)
211 except KeyError:
212 pass
88ef7e9c 213
fae36e81 214 # Handle flags
bd1dc6bf 215 for flag in FLAGS:
fae36e81
MT
216 if network.has_flag(flag):
217 # Fetch the "fake" country code
bd1dc6bf 218 country = FLAGS[flag]
fae36e81 219
c242f732
MT
220 try:
221 writers[country].write(network)
222 except KeyError:
223 pass
fae36e81 224
88ef7e9c
MT
225 # Write everything to the filesystem
226 for writer in writers.values():
227 writer.finish()
228
229 def _make_filename(self, directory, prefix, suffix, family):
230 filename = "%s.%s%s" % (
231 prefix, suffix, "6" if family == socket.AF_INET6 else "4"
232 )
233
234 return os.path.join(directory, filename)