You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remote OS Version: Red Hat Enterprise Linux release 8.9
Remote Extension/Connection Type: Dev Containers/WSL/Remote - Tunnels/VS Code Server
Logs:
We have discovered a bug in the client side extension.js code that manages the re-use of an already running host agent. This bug only occurs if the default install path involves a symlink. For default install of Dev Containers it is running from
However, due to limited home directory space, it is normal practice here to redirect the vscode install
directories away from one's home directory for a a large directory. For example:
There is a function called Jue that obtains the list of already running host agents whereby the
list is dynamically determined by reading /proc/<pid/>/... including the cwd of the main shell process group for the host agent (more on that later). In calculating the value of cwd it is set to the output of readlink and, therefore all symlinks expanded.
In order to determine if this already running host agent can be reused, it's cwd is compared to two values labelled installFolder or sharedInstallFolder.
HOWEVER, the value of installFolder is using the original install location, ~/.vscode-server/bin/dd....
Since they value of cwd and installFolder do not match, the code decides it cannot reuse the host agent and so attempts to end the entire program group (aka tree) by issuing
kill -9 -<pgrp>
I was able to fix the reusing of the host agent by modifying the client side `extension.jsto perform the comparison against the thereadlink -f installFolder``` or ```readlink -f sharedInstallFolder```:
I ran extension.js through a javascript pretty printer first.
diff -r /Users/jebossom/extension.js /Users/jebossom/.vscode/extensions/ms-vscode-remote.remote-containers-0.401.0/dist/extension/extension.js
39386a39387,39412
>
> if ( l ) {
> let {
> stdout : l_real
> } = await d.exec(`readlink -f ${l}`);
> if ( l_real ) {
> l_real = l_real.trim();
> if ( l !== l_real ) {
> e.output.write(`Using readlink path ${JSON.stringify(l_real,void 0," ")}`, 1);
> l = l_real;
> }
> }
> }
> if ( u ) {
> let {
> stdout : u_real
> } = await d.exec(`readlink -f ${u}`);
> if ( u_real ) {
> u_real = u_real.trim();
> if ( u !== u_real ) {
> e.output.write(`Using readlink path ${JSON.stringify(u_real,void 0," ")}`, 1);
> u = u_real;
> }
> }
> }
>
Without the fix, above, the host agent is always terminated and restarted every time you close it's client window on your laptop.
This is reproducible with the off-the-shelf podman container, ubi8/ubi-init
Steps to Reproduce:
On your remote host, obtain an off-the-shelf podman container:
Notice that the value of cwd is the full path to the host agent's install directory with symlinks expanded.
Notice that the code determines it cannot re-attach to this host agent and issues kill -9 -252 to kill the entire process tree.
10. Now, close the Dev Containers window and we are going to re-use the same running container, but this time swap out the client side extension.js with the patched version that expands symlinks on the installFolder before comparing to cwd.
You will notice a new log message Using readlink path... below indicating that the patch had expanded symlinks on installFolder before comparing to cwd. You will now also notice that the code is successfully re-using the container's host agent `Extension host agent is already running.
I will be opening a subsequent bug that I discovered when the RHEL podman OCI is switched from the older runc Go implementation to the newer crun implementation. i.e. If you repeat the above without my patch you will not be able to successfully re-attach to the existing container unless you manually kill all the host agent's processes in the container. This is because the extension code assumed it could set up a process group in order to kill the entire process tree, however, all processes in the process tree for the host agent have PGID and SESS set to 0.
Please feel free to reach out to me at jebossom@cisco.com should you require further information. I had to use my personal email address since I couldn't login with my work email for some reason.
Our rollout of an internal solution leveraging containers is contingent on a solution to this. If there is anything I can provide to assist you please let me know.
We have discovered a bug in the client side
extension.js
code that manages the re-use of an already running host agent. This bug only occurs if the default install path involves a symlink. For default install ofDev Containers
it is running fromHowever, due to limited home directory space, it is normal practice here to redirect the vscode install
directories away from one's home directory for a a large directory. For example:
This practice has been followed long before the introduction of
remote.SSH.serverInstallPath
.PLUS
Dev Containers
does not use this setting.What this scenario has uncovered is a bug in the client-side
extension.js
code:There is a function called
Jue
that obtains the list of already running host agents whereby thelist is dynamically determined by reading
/proc/<pid/>/...
including thecwd
of the main shell process group for the host agent (more on that later). In calculating the value ofcwd
it is set to the output ofreadlink
and, therefore all symlinks expanded.In order to determine if this already running
host agent
can be reused, it'scwd
is compared to two values labelledinstallFolder
orsharedInstallFolder
.HOWEVER, the value of
installFolder
is using the original install location,~/.vscode-server/bin/dd...
.Since they value of
cwd
andinstallFolder
do not match, the code decides it cannot reuse thehost agent
and so attempts to end the entireprogram group
(aka tree) by issuingI was able to fix the reusing of the
host agent
by modifying the client side `extension.jsto perform the comparison against the the
readlink -f installFolder``` or ```readlink -f sharedInstallFolder```:I ran
extension.js
through a javascript pretty printer first.Without the fix, above, the
host agent
is always terminated and restarted every time you close it's client window on your laptop.This is reproducible with the off-the-shelf podman container,
ubi8/ubi-init
Steps to Reproduce:
NOTE:
/users/${USER}
is our home directory and/nobackup/${USER}
is where we redirect the vscode installation.runc
here... I will be opening another bug regarding the use of the OCI runtimecrun
.vscode-test-runc
.dev.containers.logLevel
totrace
Dev Containers: Attach to Running Container...
Notice that the value of
cwd
is the full path to the host agent's install directory with symlinks expanded.Notice that the code determines it cannot re-attach to this host agent and issues
kill -9 -252
to kill the entire process tree.10. Now, close the Dev Containers window and we are going to re-use the same running container, but this time swap out the client side
extension.js
with the patched version that expands symlinks on theinstallFolder
before comparing tocwd
.You will notice a new log message
Using readlink path...
below indicating that the patch had expanded symlinks oninstallFolder
before comparing tocwd
. You will now also notice that the code is successfully re-using the container's host agent `Extension host agent is already running.Does this issue occur when you try this locally?: N/A
Does this issue occur when you try this locally and all extensions are disabled?: N/A
The text was updated successfully, but these errors were encountered: