8.3 KiB
Windows Agent
Role
Agent-Windows/OGP64/OGP/ogp_agent.pl is the Windows/Cygwin execution agent currently tracked in this repository. It mirrors the Linux agent as closely as practical, while using Windows-compatible paths, processes, and wrappers.
Important Files
Agent-Windows/OGP64/OGP/ogp_agent.plAgent-Windows/OGP64/OGP/Cfg/Config.pmAgent-Windows/OGP64/OGP/Cfg/Preferences.pmAgent-Windows/OGP64/OGP/Cfg/bash_prefs.cfgAgent-Windows/OGP64/OGP/Cfg/*.defaultAgent-Windows/php-query/Agent-Windows/ArmaBE/Agent-Windows/Cfg/Agent-Windows/Install/Agent-Windows/ServerFiles/Agent-Windows/Schedule/
Cygwin Requirements
The Windows agent assumes a Cygwin-style environment that can provide:
screen- Perl
- shell utilities such as
ps,grep,cut,awk,sed cygpath- a usable
bash
The goal is to keep the Windows agent behavior close to the Linux agent so the Panel does not need separate semantics for basic lifecycle operations.
Startup Logic
Relevant functions:
universal_start_without_decryptcreate_screen_cmdcreate_screen_cmd_loopreplace_OGP_Env_Vars
The Windows agent also uses screen sessions for managed server execution. Depending on the game and binary type, it may wrap commands in cmd /Q /C start or run a batch file wrapper.
The session naming scheme also follows the OGP convention:
OGP_HOME_000000123
Windows Startup Launcher
Relevant files:
Agent-Windows/Install/agent_start.batAgent-Windows/Install/agent_start_cygwin.sh/OGP/Cfg/bash_prefs.cfgon an installed node
The batch launcher must not assume that bash is in the Windows PATH. It explicitly checks:
%~dp0bin\bash.exe%~dp0..\bin\bash.exe%~dp0..\..\bin\bash.exeC:\OGP64\bin\bash.exeC:\cygwin64\bin\bash.exeC:\cygwin\bin\bash.exe
This matters because the maintained launcher may be run from C:\OGP64\agent_start.bat or from C:\OGP64\OGP\Install\agent_start.bat. In the second case the actual Cygwin root is two directories above the launcher, so C:\OGP64\bin\bash.exe must be checked.
Manual launches pause on fatal errors so the error remains visible. Service or scheduled-task wrappers can set GSP_AGENT_NO_PAUSE=1 to return immediately instead of waiting forever at a pause prompt.
The Cygwin-side helper performs the shell work:
- enter
/OGP - normalize CRLF to LF for
.pl,.pm,.sh, and.cfgfiles under/OGP - create missing
Cfg/Config.pm,Cfg/Preferences.pm, andCfg/bash_prefs.cfgfrom tracked.defaultfiles - strip CRLF and leading whitespace before assignments in
/OGP/Cfg/bash_prefs.cfg - source
/OGP/Cfg/bash_prefs.cfg - optionally update only the Windows agent file from Forgejo when
agent_auto_update=1 - backup the current
/OGP/ogp_agent.pl - validate downloaded and installed agent files with content checks plus
perl -c - restore the backup if validation fails
- refuse to launch if
Cfg/Config.pmstill contains placeholder values - launch
/OGP/ogp_agent.pl
Default optional update source:
- repo:
http://forge.runlevelsystems.com/dev/GSP.git - branch:
Panel-unstable - source file:
Agent-Windows/OGP64/OGP/ogp_agent.plin the current repo layout - raw URL:
http://forge.runlevelsystems.com/dev/GSP/raw/branch/Panel-unstable/Agent-Windows/OGP64/OGP/ogp_agent.pl - target file:
/OGP/ogp_agent.pl
Auto-update failure is non-fatal. Missing curl/git, download failure, clone failure, missing source file, HTTP error-page downloads, empty files, or failed validation should warn and continue with the current installed agent.
Restart-time auto-update is allowlisted. It may replace only /OGP/ogp_agent.pl. It must never overwrite Cfg/Config.pm, Cfg/Preferences.pm, Cfg/bash_prefs.cfg, service settings, passwords, generated installer config, server homes, logs, or user-created files. Broader agent updates belong to the admin-only Panel component_update flow, which also preserves Cfg/.
The Windows agent file does not use DBI at startup. If a Windows node reports Can't locate DBI.pm at line 48, it is a strong signal that a Linux agent file was copied onto the Windows node.
Required Cygwin Perl packages include perl, perl_vendor, perl-HTTP-Daemon, perl-Path-Class, perl-XML-Parser, perl-XML-Simple, perl-Archive-Zip, and perl-Archive-Extract. A clean non-Cygwin Linux workstation may fail perl -c on these dependencies even though the bundled Windows Cygwin tree contains them.
Default tracked config template files contain placeholders only. Production installs must replace CHANGE_ME_PANEL_AGENT_KEY, web_api_url, and related values with the values configured in the Panel remote-server record. If startup creates Config.pm from Config.pm.default, it stops with a clear error until those values are changed.
Status Logic
Relevant functions:
is_screen_running_without_decryptget_screen_pid_without_decryptserver_status_without_decryptverify_server_stopped_without_decrypt
The status model should check:
- screen/session existence
- process/PID information when available
- game port listening
- optional query metadata
The old SERVER_STOPPED file should not be the source of truth.
If the game port is listening but the managed screen session is not found, the agent reports ONLINE with a warning. This protects customers from false offline/unknown states when a process survives a screen/session mismatch or an older agent cannot report the session correctly.
Logging
Relevant function:
get_log
Windows/Cygwin logs come from screen logs and/or local copies. Log retrieval should remain compatible with the Panel's AJAX log view.
Workshop / Server Content
The primary Workshop workflow is owned by the Panel addonsmanager, not the legacy steam_workshop RPC. For Windows/Cygwin servers the Panel:
- writes
gsp_server_content/workshop_manifest.jsonunder the server home - stages
generic_steam_workshop_windows_cygwin.shundergsp_server_content/scripts/workshop/ - invokes the staged script through the authenticated
execRPC
The staged script uses Python and SteamCMD, validates numeric Workshop IDs, keeps writes under the server home, logs to gsp_server_content/workshop_install_windows.log, and supports DayZ/Arma-style @mod folders plus .bikey copying.
The older steam_workshop XML-RPC method remains for legacy compatibility only and should not be treated as the primary customer workflow.
Scheduler
Relevant functions:
scheduler_dispatcherscheduler_server_actionscheduler_log_eventsscheduler_add_taskscheduler_del_taskscheduler_edit_taskscheduler_read_tasksscheduler_stopscheduler_list_tasks
The Windows scheduler implementation should remain aligned with the Linux scheduler implementation so the Panel can treat both the same way.
Remote Git Self-Update
The Windows agent exposes the same admin-only component_update XML-RPC method as the Linux agent. In this repository the Windows agent is explicitly Cygwin-based, so the first implementation uses a Cygwin-compatible detached shell updater rather than a separate native PowerShell service wrapper.
Flow:
- Panel sends an encrypted payload containing repo URL, branch, Windows agent source folder, optional Git path, optional backup path, and optional admin post-update command.
- Agent validates the request and writes
gsp_component_update_<timestamp>.shunder the current agent run directory, usually/OGP. - The updater runs detached in
screen. - The updater clones the configured branch into staging.
- It copies only the configured Windows agent source folder, usually
Agent-Windows. - It preserves
Cfg/,ServerFiles/,Schedule/, logs, screen logs,steamcmd/,startups/, temporary folders, backups, and PID files. - It validates
ogp_agent.plwithperl -c. - It restarts the agent using the existing Cygwin/screen fallback.
The immediate response is queued with the agent-side log path gsp_component_update.log.
Windows-Specific Notes
- Path conversion between Cygwin and native Windows paths matters during startup.
- Batch wrappers are often needed for Windows executables.
- Process cleanup must avoid killing unrelated processes that happen to share an executable name.
- The agent should continue to use
screenwhere it already does so, to stay aligned with Linux behavior.