| """ |
| Argument-fidelity checker: does the Bash solution actually reference the same |
| concrete nouns (filenames, extensions, users, groups, hosts, services, procs, |
| ports, logfiles) named in the natural-language request? |
| |
| `arg_mismatch(nl, bash)` returns a short reason string if the request names a |
| concrete argument the command does NOT use, else None. High precision: it only |
| flags token classes that must be shared, and only in the NL->Bash direction |
| (the request specifies X; the solution must honor X). |
| |
| Used both as a standalone auditor over the dataset and as a generation gate. |
| """ |
| import re |
|
|
| FILE_EXTS = {"txt","log","csv","json","md","py","sh","tmp","bak","conf","yaml","yml", |
| "xml","html","css","js","jpg","jpeg","png","gif","pdf","gz","old","sql", |
| "zip","cache","tsv","ini","bz2","xz","core","img","iso","mp4"} |
|
|
| |
| |
| USERS = {"deploy","www-data","alice","bob","postgres","nginx","jenkins","ubuntu", |
| "carol","git","backup","dave","erin","mysql","redis","ec2-user","admin", |
| "svc-app","operator","tomcat"} |
| GROUPS = {"www-data","developers","staff","docker","sudo","admin","deploy","users", |
| "wheel","operators","mysql","backup"} |
| SERVICES = {"nginx","docker","ssh","sshd","postgresql","mysql","mariadb","redis", |
| "cron","apache2","firewalld","fail2ban","prometheus","grafana-server", |
| "elasticsearch","rabbitmq","memcached","haproxy","containerd","chronyd", |
| "systemd-networkd","mongod"} |
| PROCS = {"nginx","node","python","python3","java","mysqld","postgres","redis-server", |
| "sshd","apache2","dockerd","gunicorn","celery","php-fpm","containerd","mongod", |
| "rabbitmq","elasticsearch","memcached","haproxy"} |
|
|
| FILE_RE = re.compile(r'\b[a-zA-Z0-9_][a-zA-Z0-9_-]*\.[a-zA-Z0-9.]+\b') |
| def _files(s): |
| out=set() |
| for t in FILE_RE.findall(s): |
| parts=t.lower().split(".") |
| if t.lower().endswith("tar.gz") or t.lower().endswith("tar.bz2"): |
| out.add(t) |
| elif parts[-1] in FILE_EXTS: |
| out.add(t) |
| return out |
|
|
| EXT_NL_RE = re.compile(r'\.([a-z0-9]{1,5})\s+(?:files?|extension)\b') |
| def _ext_nl(s): return set(EXT_NL_RE.findall(s.lower())) |
| def _ext_bash(s): return set(re.findall(r'\.([a-z0-9]{1,5})', s.lower())) |
|
|
| def _words(s): |
| return set(re.findall(r'[a-zA-Z0-9][a-zA-Z0-9._-]*', s.lower())) |
|
|
| PORT_NL_RE = re.compile(r'\bport\s+(\d{1,5})\b') |
|
|
| def arg_mismatch(nl, bash): |
| nll, bashl = nl.lower(), bash.lower() |
| |
| nlf = _files(nl) |
| if nlf: |
| bf = _files(bash) | _words(bash) |
| missing = {f for f in nlf if f not in bashl} |
| |
| if missing: |
| return f"file(s) in request not in command: {sorted(missing)}" |
| |
| nle = _ext_nl(nl) |
| if nle: |
| be = _ext_bash(bash) |
| miss = nle - be |
| if miss: |
| return f"extension(s) in request not in command: {sorted(miss)}" |
| |
| |
| |
| |
| words_nl = _words(nl) |
| words_bash = _words(bash.replace("[","").replace("]","")) |
| ug_cue = re.search(r'\b(owner|own|owned|user|group|chown|chgrp|uid|gid|permission)\b', nll) |
| sp_cue = re.search(r'\b(service|process|processes|daemon|running|restart|status|pid|kill|reload|stop|start)\b', nll) |
| checks=[] |
| if ug_cue: checks += [("user",USERS),("group",GROUPS)] |
| if sp_cue: checks += [("service",SERVICES),("process",PROCS)] |
| for label, vocab in checks: |
| named = words_nl & vocab |
| miss = {t for t in named if t not in words_bash} |
| if miss: |
| return f"{label}(s) in request not in command: {sorted(miss)}" |
| |
| for p in PORT_NL_RE.findall(nll): |
| if p not in bashl: |
| return f"port {p} in request not in command" |
| return None |
|
|