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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
#include "common/printing.h"
#include "common/jsonconfig.h"
#include "common/strutil.h"
#include "detection/terminalshell/terminalshell.h"
#include "modules/shell/shell.h"
bool ffPrintShell(FFShellOptions* options) {
const FFShellResult* result = ffDetectShell();
if (result->processName.length == 0) {
ffPrintError(FF_SHELL_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, "Couldn't detect shell");
return false;
}
if (options->moduleArgs.outputFormat.length == 0) {
ffPrintLogoAndKey(FF_SHELL_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT);
ffStrbufWriteTo(&result->prettyName, stdout);
if (result->version.length > 0) {
putchar(' ');
ffStrbufWriteTo(&result->version, stdout);
}
putchar('\n');
} else {
FF_PRINT_FORMAT_CHECKED(FF_SHELL_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, ((FFformatarg[]) {
FF_ARG(result->processName, "process-name"),
FF_ARG(result->exe, "exe"),
FF_ARG(result->exeName, "exe-name"),
FF_ARG(result->version, "version"),
FF_ARG(result->pid, "pid"),
FF_ARG(result->prettyName, "pretty-name"),
FF_ARG(result->exePath, "exe-path"),
FF_ARG(result->tty, "tty"),
}));
}
return true;
}
void ffParseShellJsonObject(FFShellOptions* options, yyjson_val* module) {
yyjson_val *key, *val;
size_t idx, max;
yyjson_obj_foreach (module, idx, max, key, val) {
if (ffJsonConfigParseModuleArgs(key, val, &options->moduleArgs)) {
continue;
}
ffPrintError(FF_SHELL_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, "Unknown JSON key %s", unsafe_yyjson_get_str(key));
}
}
void ffGenerateShellJsonConfig(FFShellOptions* options, yyjson_mut_doc* doc, yyjson_mut_val* module) {
ffJsonConfigGenerateModuleArgsConfig(doc, module, &options->moduleArgs);
}
bool ffGenerateShellJsonResult(FF_A_UNUSED FFShellOptions* options, yyjson_mut_doc* doc, yyjson_mut_val* module) {
const FFShellResult* result = ffDetectShell();
if (result->processName.length == 0) {
yyjson_mut_obj_add_str(doc, module, "error", "Couldn't detect shell");
return false;
}
yyjson_mut_val* obj = yyjson_mut_obj_add_obj(doc, module, "result");
yyjson_mut_obj_add_strbuf(doc, obj, "exe", &result->exe);
yyjson_mut_obj_add_strcpy(doc, obj, "exeName", result->exeName);
yyjson_mut_obj_add_strbuf(doc, obj, "exePath", &result->exePath);
yyjson_mut_obj_add_uint(doc, obj, "pid", result->pid);
yyjson_mut_obj_add_uint(doc, obj, "ppid", result->ppid);
yyjson_mut_obj_add_strbuf(doc, obj, "processName", &result->processName);
yyjson_mut_obj_add_strbuf(doc, obj, "prettyName", &result->prettyName);
yyjson_mut_obj_add_strbuf(doc, obj, "version", &result->version);
if (result->tty >= 0) {
yyjson_mut_obj_add_int(doc, obj, "tty", result->tty);
} else {
yyjson_mut_obj_add_null(doc, obj, "tty");
}
return true;
}
void ffInitShellOptions(FFShellOptions* options) {
ffOptionInitModuleArg(&options->moduleArgs, "");
}
void ffDestroyShellOptions(FFShellOptions* options) {
ffOptionDestroyModuleArg(&options->moduleArgs);
}
FFModuleBaseInfo ffShellModuleInfo = {
.name = FF_SHELL_MODULE_NAME,
.description = "Print the current shell name and version",
.initOptions = (void*) ffInitShellOptions,
.destroyOptions = (void*) ffDestroyShellOptions,
.parseJsonObject = (void*) ffParseShellJsonObject,
.printModule = (void*) ffPrintShell,
.generateJsonResult = (void*) ffGenerateShellJsonResult,
.generateJsonConfig = (void*) ffGenerateShellJsonConfig,
.formatArgs = FF_FORMAT_ARG_LIST(((FFModuleFormatArg[]) {
{ "Shell process name", "process-name" },
{ "The first argument of the command line when running the shell", "exe" },
{ "Shell base name of arg0", "exe-name" },
{ "Shell version", "version" },
{ "Shell pid", "pid" },
{ "Shell pretty name", "pretty-name" },
{ "Shell full exe path", "exe-path" },
{ "Shell tty used", "tty" },
}))
};
|