~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/tc-testing/plugin-lib/nsPlugin.py

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/testing/selftests/tc-testing/plugin-lib/nsPlugin.py (Version linux-6.12-rc7) and /tools/testing/selftests/tc-testing/plugin-lib/nsPlugin.py (Version linux-4.4.302)


  1 import os                                         
  2 import signal                                     
  3 from string import Template                       
  4 import subprocess                                 
  5 import time                                       
  6 from multiprocessing import Pool                  
  7 from functools import cached_property             
  8 from TdcPlugin import TdcPlugin                   
  9                                                   
 10 from tdc_config import *                          
 11                                                   
 12 try:                                              
 13     from pyroute2 import netns                    
 14     from pyroute2 import IPRoute                  
 15     netlink = True                                
 16 except ImportError:                               
 17     netlink = False                               
 18     print("!!! Consider installing pyroute2 !!    
 19                                                   
 20 class SubPlugin(TdcPlugin):                       
 21     def __init__(self):                           
 22         self.sub_class = 'ns/SubPlugin'           
 23         super().__init__()                        
 24                                                   
 25     def pre_suite(self, testcount, testlist):     
 26         super().pre_suite(testcount, testlist)    
 27                                                   
 28     def prepare_test(self, test):                 
 29         if 'skip' in test and test['skip'] ==     
 30             return                                
 31                                                   
 32         if 'nsPlugin' not in test['plugins']:     
 33             return                                
 34                                                   
 35         if netlink == True:                       
 36             self._nl_ns_create()                  
 37         else:                                     
 38             self._ipr2_ns_create()                
 39                                                   
 40         # Make sure the netns is visible in th    
 41         ticks = 20                                
 42         while True:                               
 43             if ticks == 0:                        
 44                 raise TimeoutError                
 45             self._proc_check()                    
 46             try:                                  
 47                 ns = self.args.NAMES['NS']        
 48                 f = open('/run/netns/{}'.forma    
 49                 f.close()                         
 50                 break                             
 51             except:                               
 52                 time.sleep(0.1)                   
 53                 ticks -= 1                        
 54                 continue                          
 55                                                   
 56     def pre_case(self, test, test_skip):          
 57         if self.args.verbose:                     
 58             print('{}.pre_case'.format(self.su    
 59                                                   
 60         if test_skip:                             
 61             return                                
 62                                                   
 63         self.prepare_test(test)                   
 64                                                   
 65     def post_case(self):                          
 66         if self.args.verbose:                     
 67             print('{}.post_case'.format(self.s    
 68                                                   
 69         if netlink == True:                       
 70             self._nl_ns_destroy()                 
 71         else:                                     
 72             self._ipr2_ns_destroy()               
 73                                                   
 74     def post_suite(self, index):                  
 75         if self.args.verbose:                     
 76             print('{}.post_suite'.format(self.    
 77                                                   
 78         # Make sure we don't leak resources       
 79         cmd = self._replace_keywords("$IP -a n    
 80                                                   
 81         if self.args.verbose > 3:                 
 82             print('_exec_cmd:  command "{}"'.f    
 83                                                   
 84         subprocess.run(cmd, shell=True, stdout    
 85                                                   
 86     def adjust_command(self, stage, command):     
 87         super().adjust_command(stage, command)    
 88         cmdform = 'list'                          
 89         cmdlist = list()                          
 90                                                   
 91         if self.args.verbose:                     
 92             print('{}.adjust_command'.format(s    
 93                                                   
 94         if not isinstance(command, list):         
 95             cmdform = 'str'                       
 96             cmdlist = command.split()             
 97         else:                                     
 98             cmdlist = command                     
 99         if stage == 'setup' or stage == 'execu    
100             if self.args.verbose:                 
101                 print('adjust_command:  stage     
102             cmdlist.insert(0, self.args.NAMES[    
103             cmdlist.insert(0, 'exec')             
104             cmdlist.insert(0, 'netns')            
105             cmdlist.insert(0, self.args.NAMES[    
106         else:                                     
107             pass                                  
108                                                   
109         if cmdform == 'str':                      
110             command = ' '.join(cmdlist)           
111         else:                                     
112             command = cmdlist                     
113                                                   
114         if self.args.verbose:                     
115             print('adjust_command:  return com    
116         return command                            
117                                                   
118     def _nl_ns_create(self):                      
119         ns = self.args.NAMES["NS"];               
120         dev0 = self.args.NAMES["DEV0"];           
121         dev1 = self.args.NAMES["DEV1"];           
122         dummy = self.args.NAMES["DUMMY"];         
123                                                   
124         if self.args.verbose:                     
125             print('{}._nl_ns_create'.format(se    
126                                                   
127         netns.create(ns)                          
128         netns.pushns(newns=ns)                    
129         with IPRoute() as ip:                     
130             ip.link('add', ifname=dev1, kind='    
131             ip.link('add', ifname=dummy, kind=    
132             ticks = 20                            
133             while True:                           
134                 if ticks == 0:                    
135                     raise TimeoutError            
136                 try:                              
137                     dev1_idx = ip.link_lookup(    
138                     dummy_idx = ip.link_lookup    
139                     ip.link('set', index=dev1_    
140                     ip.link('set', index=dummy    
141                     break                         
142                 except:                           
143                     time.sleep(0.1)               
144                     ticks -= 1                    
145                     continue                      
146         netns.popns()                             
147                                                   
148         with IPRoute() as ip:                     
149             ticks = 20                            
150             while True:                           
151                 if ticks == 0:                    
152                     raise TimeoutError            
153                 try:                              
154                     dev0_idx = ip.link_lookup(    
155                     ip.link('set', index=dev0_    
156                     break                         
157                 except:                           
158                     time.sleep(0.1)               
159                     ticks -= 1                    
160                     continue                      
161                                                   
162     def _ipr2_ns_create_cmds(self):               
163         cmds = []                                 
164                                                   
165         ns = self.args.NAMES['NS']                
166                                                   
167         cmds.append(self._replace_keywords('ne    
168         cmds.append(self._replace_keywords('li    
169         cmds.append(self._replace_keywords('li    
170         cmds.append(self._replace_keywords('li    
171         cmds.append(self._replace_keywords('li    
172         cmds.append(self._replace_keywords('ne    
173         cmds.append(self._replace_keywords('ne    
174         cmds.append(self._replace_keywords('li    
175                                                   
176         if self.args.device:                      
177             cmds.append(self._replace_keywords    
178             cmds.append(self._replace_keywords    
179                                                   
180         return cmds                               
181                                                   
182     def _ipr2_ns_create(self):                    
183         '''                                       
184         Create the network namespace in which     
185         the required network devices for it.      
186         '''                                       
187         self._exec_cmd_batched('pre', self._ip    
188                                                   
189     def _nl_ns_destroy(self):                     
190         ns = self.args.NAMES['NS']                
191         netns.remove(ns)                          
192                                                   
193     def _ipr2_ns_destroy_cmd(self):               
194         return self._replace_keywords('netns d    
195                                                   
196     def _ipr2_ns_destroy(self):                   
197         '''                                       
198         Destroy the network namespace for test    
199         devices as well)                          
200         '''                                       
201         self._exec_cmd('post', self._ipr2_ns_d    
202                                                   
203     @cached_property                              
204     def _proc(self):                              
205         ip = self._replace_keywords("$IP -b -"    
206         proc = subprocess.Popen(ip,               
207             shell=True,                           
208             stdin=subprocess.PIPE,                
209             env=ENVIR)                            
210                                                   
211         return proc                               
212                                                   
213     def _proc_check(self):                        
214         proc = self._proc                         
215                                                   
216         proc.poll()                               
217                                                   
218         if proc.returncode is not None and pro    
219             raise RuntimeError("iproute2 exite    
220                                                   
221     def _exec_cmd(self, stage, command):          
222         '''                                       
223         Perform any required modifications on     
224         it in a subprocess and return the resu    
225         '''                                       
226                                                   
227         if self.args.verbose > 3:                 
228             print('_exec_cmd:  command "{}"'.f    
229                                                   
230         proc = self._proc                         
231                                                   
232         proc.stdin.write((command + '\n').enco    
233         proc.stdin.flush()                        
234                                                   
235         if self.args.verbose > 3:                 
236             print('_exec_cmd proc: {}'.format(    
237                                                   
238         self._proc_check()                        
239                                                   
240     def _exec_cmd_batched(self, stage, command    
241         for cmd in commands:                      
242             self._exec_cmd(stage, cmd)            
243                                                   
244     def _replace_keywords(self, cmd):             
245         """                                       
246         For a given executable command, substi    
247         variables contained within NAMES with     
248         """                                       
249         tcmd = Template(cmd)                      
250         subcmd = tcmd.safe_substitute(self.arg    
251         return subcmd                             
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php