blob: 30a3510ad0e1735c0b28dc5c6990c47d9af63d94 [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
Harald Welte27205342017-06-03 09:51:45 +02008# it under the terms of the GNU General Public License as
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +02009# 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
Harald Welte27205342017-06-03 09:51:45 +020015# GNU General Public License for more details.
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020016#
Harald Welte27205342017-06-03 09:51:45 +020017# You should have received a copy of the GNU General Public License
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020018# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20import os
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020021
Pau Espin Pedrole1a58bd2020-04-10 20:46:07 +020022from ..core import log, process
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020023
24class PcapRecorder(log.Origin):
25
Pau Espin Pedrola442cb82020-05-05 12:54:37 +020026 def __init__(self, testenv, run_dir, iface=None, filters='', netns=None):
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020027 self.iface = iface
28 if not self.iface:
29 self.iface = "any"
Neels Hofmeyr95fd6732017-05-15 14:03:07 +020030 self.filters = filters
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020031 super().__init__(log.C_RUN, 'pcap-recorder_%s' % self.iface, filters=self.filters)
Pau Espin Pedrola442cb82020-05-05 12:54:37 +020032 self.testenv = testenv
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020033 self.run_dir = run_dir
Pau Espin Pedrol772b2b12018-10-26 15:53:35 +020034 self.netns = netns
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020035 self.start()
36
37 def start(self):
Pau Espin Pedrol2c48c342018-02-23 17:25:39 +010038 self.dbg('Recording pcap', self.run_dir, self.filters)
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020039 dumpfile = os.path.join(os.path.abspath(self.run_dir), self.name() + ".pcap")
Pau Espin Pedrol772b2b12018-10-26 15:53:35 +020040 popen_args = ('tcpdump', '-n',
41 '-i', self.iface,
42 '-w', dumpfile,
43 self.filters)
44 if self.netns:
45 self.process = process.NetNSProcess(self.name(), self.run_dir, self.netns, popen_args)
46 else:
47 self.process = process.Process(self.name(), self.run_dir, popen_args)
Pau Espin Pedrola442cb82020-05-05 12:54:37 +020048 self.testenv.remember_to_stop(self.process)
Pau Espin Pedrol13143bc2017-05-08 17:07:28 +020049 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