-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess_traditional.sh
executable file
·170 lines (142 loc) · 5 KB
/
process_traditional.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#!/bin/bash
# Copyright (c) 2016, Tobias Fiebig
# 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 BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER OR CONTRIBUTORS 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.
#
# The views and conclusions contained in the software and documentation are those
# of the authors and should not be interpreted as representing official policies,
# either expressed or implied, of their employers.
set -u
### simple configuration
datadirectory='./data/'
TMPDIR='/tmp' # ideally use a ramfs for this;
# DNS Server to use; ideally utilize a local resolver
DNS='127.0.0.1'
# maximum number of parallel threads
PAR=80
# program paths: external
BGPDUMP='./bgpdump/bgpdump' # get it from https://bitbucket.org/ripencc/bgpdump/wiki/Home
# program paths: base system
SORT='/usr/bin/sort' # requires newer sort with --parallel
WGET='/usr/bin/wget'
CAT='/usr/bin/cat'
ZCAT='/usr/bin/zcat'
BZCAT='/usr/bin/bzcat'
CURL='/usr/bin/curl'
UNIQ='/usr/bin/uniq'
DATEPRG='/bin/date'
MV='/bin/mv'
PARALLEL='/usr/bin/parallel' # beware of this, older versions (EL6!) bloat the
# tmp-folder by writing 8193 bytes to a file every N seconds; due to truncate
# semantics data is only appended -> disk full!
# program paths: internal
PRFXEXTRACT='./extract_prefixes.py'
COOKDOWN='./cook_down.py'
EXTRACTTERMINALS='./extract_terminals.py'
### advanced configuration
# Hosts from RIPE BGP collection
RIPEHOSTS="
rrc16
rrc15
rrc14
rrc13
rrc12
rrc11
rrc10
rrc09
rrc08
rrc07
rrc06
rrc05
rrc04
rrc03
rrc02
rrc01
rrc00
"
# RouteViews Route Collectors
rviews="
route-views.eqix
route-views.isc
route-views.kixp
route-views.jinx
route-views.linx
route-views.nwax
route-views.telxatl
route-views.wide
route-views.sydney
route-views.saopaulo
route-views.sg
route-views.perth
route-views.sfmix
route-views.soxrs
"
# determine current data for RouteViews format and obtain name of latest file
datem=`$DATEPRG +%Y.%m`
rviewslatest=`$CURL http://archive.routeviews.org/route-views.nwax/bgpdata/$datem/RIBS/ 2> /dev/null |grep -o -E '>(rib[^<]+)'|tail -n 1 | sed s/.//`
# determine indexing date
date=`$DATEPRG +%s`
# Prefix used for
PRFX="$datadirectory/$date"
# create data storage directory
mkdir -p $PRFX
echo "obtaining raw data"
for i in $RIPEHOSTS;
do
$WGET -o $PRFX/$i-gather.log -O $PRFX/$i.gz "http://data.ris.ripe.net/$i/latest-bview.gz";
done;
for i in $rviews;
do
$WGET -o $PRFX/$i-gather.log -O $PRFX/$i.bz2 "http://archive.routeviews.org/$i/bgpdata/$datem/RIBS/$rviewslatest";
done;
echo "decoding raw data"
for i in $PRFX/*.gz;
do
$ZCAT $i | $BGPDUMP -m -v - > $i-plain;
done;
for i in $PRFX/*.bz2;
do
$BZCAT $i | $BGPDUMP -m -v - > $i-plain;
done;
echo "extracting prefixes"
for i in $PRFX/*-plain;
do
$CAT $i | $PRFXEXTRACT > $i-v6;
done;
echo "uniqing prefixes"
time $CAT $PRFX/*plain-v6 | $SORT --parallel=80 -S 32G | $UNIQ > $PRFX/prefixes_uniq
echo "ip6.arpa." >> $PRFX/prefixes_uniq
echo "de-aggregating to /32"
time $CAT $PRFX/prefixes_uniq | $PARALLEL --linebuffer --tmpdir $TMPDIR -j $PAR "$COOKDOWN {} $DNS 32 " > $PRFX/32pref 2> $PRFX/32_run.log
echo "find-sort /32"
time $CAT $PRFX/32pref | grep -v '^#' | $SORT --parallel=80 -S 32G |uniq > $PRFX/32agg
echo "de-aggregating to /48"
time $CAT $PRFX/32agg | $PARALLEL --linebuffer --tmpdir $TMPDIR -j $PAR "$COOKDOWN {} $DNS 48 " > $PRFX/48pref 2> $PRFX/48_run.log
echo "find-sort /48"
time $CAT $PRFX/48pref | grep -v '^#' | $SORT --parallel=80 -S 32G |uniq > $PRFX/48agg
echo "de-aggregating to /64"
time $CAT $PRFX/48agg | $PARALLEL --linebuffer --tmpdir $TMPDIR -j $PAR "$COOKDOWN {} $DNS 64" > $PRFX/64pref 2> $PRFX/64_run.log
echo "find-sort /64"
time $CAT $PRFX/64pref | grep -v '^#' | $SORT --parallel=80 -S 32G |uniq > $PRFX/64agg
echo "resolving hosts"
time $CAT $PRFX/64agg | grep -v '^#' | $PARALLEL --linebuffer --tmpdir $TMPDIR -j $PAR "$EXTRACTTERMINALS {} $DNS $date" > $PRFX/dataset.json 2> $PRFX/terminal.log
$MV ./run.log $PRFX/run_log_full.log