summaryrefslogtreecommitdiff
path: root/src/leap/util/misc.py
blob: aa3ebe254db9220214af75d221559f1fe3d6fa06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
"""
misc utils
"""
import psutil

from leap.base.constants import OPENVPN_BIN


class ImproperlyConfigured(Exception):
    """
    """


def null_check(value, value_name):
    try:
        assert value is not None
    except AssertionError:
        raise ImproperlyConfigured(
            "%s parameter cannot be None" % value_name)
        
def get_openvpn_pids():
    # binary name might change

    openvpn_pids = []
    for p in psutil.process_iter():
        try:
            # XXX Not exact!
            # Will give false positives.
            # we should check that cmdline BEGINS
            # with openvpn or with our wrapper
            # (pkexec / osascript / whatever)
            if OPENVPN_BIN in ' '.join(p.cmdline):
                openvpn_pids.append(p.pid)
        except psutil.error.AccessDenied:
            pass
    return openvpn_pids