mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-25 00:37:31 +02:00
190 lines
3.8 KiB
Python
190 lines
3.8 KiB
Python
"""jc - JSON CLI output utility lsmod Parser
|
|
|
|
Usage:
|
|
|
|
specify --lsmod as the first argument if the piped input is coming from lsmod
|
|
|
|
Compatibility:
|
|
|
|
'linux'
|
|
|
|
Examples:
|
|
|
|
$ lsmod | jc --lsmod -p
|
|
[
|
|
...
|
|
{
|
|
"module": "nf_nat",
|
|
"size": 26583,
|
|
"used": 3,
|
|
"by": [
|
|
"nf_nat_ipv4",
|
|
"nf_nat_ipv6",
|
|
"nf_nat_masquerade_ipv4"
|
|
]
|
|
},
|
|
{
|
|
"module": "iptable_mangle",
|
|
"size": 12695,
|
|
"used": 1
|
|
},
|
|
{
|
|
"module": "iptable_security",
|
|
"size": 12705,
|
|
"used": 1
|
|
},
|
|
{
|
|
"module": "iptable_raw",
|
|
"size": 12678,
|
|
"used": 1
|
|
},
|
|
{
|
|
"module": "nf_conntrack",
|
|
"size": 139224,
|
|
"used": 7,
|
|
"by": [
|
|
"nf_nat",
|
|
"nf_nat_ipv4",
|
|
"nf_nat_ipv6",
|
|
"xt_conntrack",
|
|
"nf_nat_masquerade_ipv4",
|
|
"nf_conntrack_ipv4",
|
|
"nf_conntrack_ipv6"
|
|
]
|
|
},
|
|
...
|
|
]
|
|
|
|
$ lsmod | jc --lsmod -p -r
|
|
[
|
|
...
|
|
{
|
|
"module": "nf_conntrack",
|
|
"size": "139224",
|
|
"used": "7",
|
|
"by": [
|
|
"nf_nat",
|
|
"nf_nat_ipv4",
|
|
"nf_nat_ipv6",
|
|
"xt_conntrack",
|
|
"nf_nat_masquerade_ipv4",
|
|
"nf_conntrack_ipv4",
|
|
"nf_conntrack_ipv6"
|
|
]
|
|
},
|
|
{
|
|
"module": "ip_set",
|
|
"size": "45799",
|
|
"used": "0"
|
|
},
|
|
{
|
|
"module": "nfnetlink",
|
|
"size": "14519",
|
|
"used": "1",
|
|
"by": [
|
|
"ip_set"
|
|
]
|
|
},
|
|
{
|
|
"module": "ebtable_filter",
|
|
"size": "12827",
|
|
"used": "1"
|
|
},
|
|
{
|
|
"module": "ebtables",
|
|
"size": "35009",
|
|
"used": "2",
|
|
"by": [
|
|
"ebtable_nat",
|
|
"ebtable_filter"
|
|
]
|
|
},
|
|
...
|
|
]
|
|
"""
|
|
import jc.utils
|
|
import jc.parsers.universal
|
|
|
|
|
|
class info():
|
|
version = '1.1'
|
|
description = 'lsmod command parser'
|
|
author = 'Kelly Brazil'
|
|
author_email = 'kellyjonbrazil@gmail.com'
|
|
|
|
# compatible options: linux, darwin, cygwin, win32, aix, freebsd
|
|
compatible = ['linux']
|
|
magic_commands = ['lsmod']
|
|
|
|
|
|
__version__ = info.version
|
|
|
|
|
|
def process(proc_data):
|
|
"""
|
|
Final processing to conform to the schema.
|
|
|
|
Parameters:
|
|
|
|
proc_data: (dictionary) raw structured data to process
|
|
|
|
Returns:
|
|
|
|
List of dictionaries. Structured data with the following schema:
|
|
|
|
[
|
|
{
|
|
"module": string,
|
|
"size": integer,
|
|
"used": integer,
|
|
"by": [
|
|
string
|
|
]
|
|
}
|
|
]
|
|
"""
|
|
for entry in proc_data:
|
|
# integer changes
|
|
int_list = ['size', 'used']
|
|
for key in int_list:
|
|
if key in entry:
|
|
try:
|
|
key_int = int(entry[key])
|
|
entry[key] = key_int
|
|
except (ValueError):
|
|
entry[key] = None
|
|
|
|
return proc_data
|
|
|
|
|
|
def parse(data, raw=False, quiet=False):
|
|
"""
|
|
Main text parsing function
|
|
|
|
Parameters:
|
|
|
|
data: (string) text data to parse
|
|
raw: (boolean) output preprocessed JSON if True
|
|
quiet: (boolean) suppress warning messages if True
|
|
|
|
Returns:
|
|
|
|
List of dictionaries. Raw or processed structured data.
|
|
"""
|
|
if not quiet:
|
|
jc.utils.compatibility(__name__, info.compatible)
|
|
|
|
cleandata = data.splitlines()
|
|
cleandata[0] = cleandata[0].lower()
|
|
|
|
raw_output = jc.parsers.universal.simple_table_parse(cleandata)
|
|
|
|
for mod in raw_output:
|
|
if 'by' in mod:
|
|
mod['by'] = mod['by'].split(',')
|
|
|
|
if raw:
|
|
return raw_output
|
|
else:
|
|
return process(raw_output)
|