mirror of
https://github.com/CumulusNetworks/ifupdown2.git
synced 2024-05-06 15:54:50 +00:00
Ticket: None Reviewed By: CCR-4692 Testing Done: smoke + scale tests If called with close_fds=True the subprocess module will try to close every fd from 3 to MAXFD before executing the specified command. This is done in Python not even with a C-implementation which truly affecting performances. This patch aims to better handle the file descriptor used by ifupdown2. Either by closing them after use or by setting the close-on-exec flag for the file descriptor, which causes the file descriptor to be automatically (and atomically) closed when any of the exec-family functions succeed. With the actual patch all tests are passing, I can't think of any future issue but if any a possible future modification might be to use the parameter 'preexec_fn', which allows us to set function which will be executed in the child process before executing the command line. We can always manually close any remaining open file descriptors with something like: >>> os.listdir('/proc/self/fd/') ['0', '1', '2', ‘3’, etc..] >>> for fd in os.listdir('/proc/self/fd/') >>> if int(fd) > 2: >>> os.close(fd) This patch is also totally re-organising the use of subprocesses. By removing all subprocess code redundancy.
52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
#!/usr/bin/python
|
|
#
|
|
# Copyright 2014 Cumulus Networks, Inc. All rights reserved.
|
|
# Author: Roopa Prabhu, roopa@cumulusnetworks.com
|
|
#
|
|
# ifupdownBase --
|
|
# base object for various ifupdown objects
|
|
#
|
|
|
|
import logging
|
|
import re
|
|
import os
|
|
import rtnetlink_api as rtnetlink_api
|
|
|
|
from iface import *
|
|
import ifupdownflags as ifupdownflags
|
|
|
|
class ifupdownBase(object):
|
|
|
|
def __init__(self):
|
|
modulename = self.__class__.__name__
|
|
self.logger = logging.getLogger('ifupdown.' + modulename)
|
|
|
|
def ignore_error(self, errmsg):
|
|
if (ifupdownflags.flags.FORCE == True or re.search(r'exists', errmsg,
|
|
re.IGNORECASE | re.MULTILINE) is not None):
|
|
return True
|
|
return False
|
|
|
|
def log_warn(self, str):
|
|
if self.ignore_error(str) == False:
|
|
if self.logger.getEffectiveLevel() == logging.DEBUG:
|
|
traceback.print_stack()
|
|
self.logger.warn(str)
|
|
pass
|
|
|
|
def log_error(self, str):
|
|
if self.ignore_error(str) == False:
|
|
raise
|
|
#raise Exception(str)
|
|
else:
|
|
pass
|
|
|
|
def link_exists(self, ifacename):
|
|
return os.path.exists('/sys/class/net/%s' %ifacename)
|
|
|
|
def link_up(self, ifacename):
|
|
rtnetlink_api.rtnl_api.link_set(ifacename, "up")
|
|
|
|
def link_down(self, ifacename):
|
|
rtnetlink_api.rtnl_api.link_set(ifacename, "down")
|