1 # Copyright (c) 2017 Intel Corporation
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
19 from yardstick.common.process import check_if_process_failed
20 from yardstick.network_services.vnf_generic.vnf.prox_helpers import ProxDpdkVnfSetupEnvHelper
21 from yardstick.network_services.vnf_generic.vnf.prox_helpers import ProxResourceHelper
22 from yardstick.network_services.vnf_generic.vnf.sample_vnf import SampleVNF
23 from yardstick.network_services import constants
25 LOG = logging.getLogger(__name__)
28 class ProxApproxVnf(SampleVNF):
32 PROX_MODE = "Workload"
33 VNF_PROMPT = "PROX started"
34 LUA_PARAMETER_NAME = "sut"
36 def __init__(self, name, vnfd, setup_env_helper_type=None, resource_helper_type=None):
37 if setup_env_helper_type is None:
38 setup_env_helper_type = ProxDpdkVnfSetupEnvHelper
40 if resource_helper_type is None:
41 resource_helper_type = ProxResourceHelper
43 self.prev_packets_in = 0
44 self.prev_packets_sent = 0
47 super(ProxApproxVnf, self).__init__(name, vnfd, setup_env_helper_type,
50 def _vnf_up_post(self):
51 self.resource_helper.up_post()
53 def vnf_execute(self, cmd, *args, **kwargs):
54 # try to execute with socket commands
55 # ignore socket errors, e.g. when using force_quit
56 ignore_errors = kwargs.pop("_ignore_errors", False)
58 return self.resource_helper.execute(cmd, *args, **kwargs)
60 if e.errno in {errno.EPIPE, errno.ESHUTDOWN, errno.ECONNRESET}:
62 LOG.debug("ignoring vnf_execute exception %s for command %s", e, cmd)
68 def collect_kpi(self):
69 # we can't get KPIs if the VNF is down
70 check_if_process_failed(self._vnf_process, 0.01)
71 if self.resource_helper is None:
76 "collect_stats": {"core": {}},
80 if (self.tsc_hz == 0):
81 self.tsc_hz = float(self.resource_helper.sut.hz())
82 LOG.debug("TSC = %f", self.tsc_hz)
83 if (self.tsc_hz == 0):
84 raise RuntimeError("Unable to retrieve TSC")
86 # use all_ports so we only use ports matched in topology
87 port_count = len(self.vnfd_helper.port_pairs.all_ports)
88 if port_count not in {1, 2, 4}:
89 raise RuntimeError("Failed ..Invalid no of ports .. "
90 "1, 2 or 4 ports only supported at this time")
92 all_port_stats = self.vnf_execute('multi_port_stats', range(port_count))
93 rx_total = tx_total = 0
95 for single_port_stats in all_port_stats:
96 rx_total = rx_total + single_port_stats[1]
97 tx_total = tx_total + single_port_stats[2]
98 tsc = single_port_stats[5]
99 except (TypeError, IndexError):
100 LOG.error("Invalid data ...")
104 "packets_in": rx_total,
105 "packets_dropped": max((tx_total - rx_total), 0),
106 "packets_fwd": tx_total,
107 # we share ProxResourceHelper with TG, but we want to collect
108 # collectd KPIs here and not TG KPIs, so use a different method name
109 "collect_stats": self.resource_helper.collect_collectd_kpi(),
112 curr_packets_in = int(((rx_total - self.prev_packets_in) * self.tsc_hz)
113 / (tsc - self.prev_tsc) * port_count)
114 except ZeroDivisionError:
115 LOG.error("Error.... Divide by Zero")
119 curr_packets_fwd = int(((tx_total - self.prev_packets_sent) * self.tsc_hz)
120 / (tsc - self.prev_tsc) * port_count)
121 except ZeroDivisionError:
122 LOG.error("Error.... Divide by Zero")
125 result["curr_packets_in"] = curr_packets_in
126 result["curr_packets_fwd"] = curr_packets_fwd
128 self.prev_packets_in = rx_total
129 self.prev_packets_sent = tx_total
132 LOG.debug("%s collect KPIs %s %s", self.APP_NAME, datetime.datetime.now(), result)
135 def _tear_down(self):
136 # this should be standardized for all VNFs or removed
137 self.setup_helper.tear_down()
140 # stop collectd first or we get pika errors?
141 self.resource_helper.stop_collect()
142 # try to quit with socket commands
143 # pkill is not matching, debug with pgrep
144 self.ssh_helper.execute("sudo pgrep -lax %s" % self.setup_helper.APP_NAME)
145 self.ssh_helper.execute("sudo ps aux | grep -i %s" % self.setup_helper.APP_NAME)
146 if self._vnf_process.is_alive():
147 self.vnf_execute("stop_all")
148 self.vnf_execute("quit")
149 # hopefully quit succeeds and socket closes, so ignore force_quit socket errors
150 self.vnf_execute("force_quit", _ignore_errors=True)
151 self.setup_helper.kill_vnf()
153 if self._vnf_process is not None:
154 LOG.debug("joining before terminate %s", self._vnf_process.name)
155 self._vnf_process.join(constants.PROCESS_JOIN_TIMEOUT)
156 self._vnf_process.terminate()