Merge pull request #36 from nak3/fix-regex

Use strict regex for additional args
pull/38/head
Alessandro Decina 3 years ago committed by GitHub
commit b9abc9a11c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -47,19 +47,19 @@ choices = [ "Ingress", "Egress" ]
[conditional.'program_type == "sk_msg"'.placeholders.sock_map] [conditional.'program_type == "sk_msg"'.placeholders.sock_map]
type = "string" type = "string"
prompt = "Map Name (UPPER_CASE)?" prompt = "Map Name (UPPER_CASE)?"
regex = "[A-Z_]+" regex = "^[A-Z_]+$"
[conditional.'program_type == "tracepoint"'.placeholders.tracepoint_category] [conditional.'program_type == "tracepoint"'.placeholders.tracepoint_category]
type = "string" type = "string"
prompt = "Which tracepoint category? (e.g sched, net etc...)" prompt = "Which tracepoint category? (e.g sched, net etc...)"
regex = "[a-z]+" regex = "^[a-z_]+$"
[conditional.'program_type == "tracepoint" || program_type == "tp_btf"'.placeholders.tracepoint_name] [conditional.'program_type == "tracepoint" || program_type == "tp_btf"'.placeholders.tracepoint_name]
type = "string" type = "string"
prompt = "Which tracepoint name? (e.g sched_switch, net_dev_queue)" prompt = "Which tracepoint name? (e.g sched_switch, net_dev_queue)"
regex = "[a-z]+" regex = "^[a-z_]+$"
[conditional.'program_type == "lsm"'.placeholders.lsm_hook] [conditional.'program_type == "lsm"'.placeholders.lsm_hook]
type = "string" type = "string"
prompt = "Which lsm hook? (e.g file_open, task_alloc) You can find a list of hooks in include/linux/lsm_hooks.h in the kernel source tree." prompt = "Which lsm hook? (e.g file_open, task_alloc) You can find a list of hooks in include/linux/lsm_hooks.h in the kernel source tree."
regex = "[a-z]+" regex = "^[a-z_]+$"

Loading…
Cancel
Save