blob: 3b3c307e6ced794ab34c7207ec1bb4015f3cae15 [file] [log] [blame]
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +02001# osmo_gsm_tester: specifics for running an osmo-nitb
2#
3# Copyright (C) 2016-2017 by sysmocom - s.f.m.c. GmbH
4#
5# Author: Pau Espin Pedrol <pespin@sysmocom.de>
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Affero General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (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 Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20import os
21import random
22import re
23import socket
24
25from . import log, util, config, template, process, osmo_ctrl
26
27class PcapRecorder(log.Origin):
28
Neels Hofmeyr95fd6732017-05-15 14:03:07 +020029 def __init__(self, suite_run, run_dir, iface=None, filters=''):
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020030 self.suite_run = suite_run
31 self.run_dir = run_dir
32 self.iface = iface
33 if not self.iface:
34 self.iface = "any"
Neels Hofmeyr95fd6732017-05-15 14:03:07 +020035 self.filters = filters
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020036 self.set_log_category(log.C_RUN)
37 self.set_name('pcap-recorder_%s' % self.iface)
38 self.start()
39
40 def start(self):
41 self.log('Recording pcap', self.run_dir, self.gen_filter())
42 dumpfile = os.path.join(os.path.abspath(self.run_dir), self.name() + ".pcap")
43 self.process = process.Process(self.name(), self.run_dir,
44 ('tcpdump', '-n',
45 '-i', self.iface,
46 '-w', dumpfile,
Neels Hofmeyr95fd6732017-05-15 14:03:07 +020047 self.filters))
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020048 self.suite_run.remember_to_stop(self.process)
49 self.process.launch()
50
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020051 def running(self):
52 return not self.process.terminated()
Neels Hofmeyr143ab812017-05-14 15:43:30 +020053
54# vim: expandtab tabstop=4 shiftwidth=4