File size: 9,412 Bytes
da5a206 |
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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
# Copyright (c) 2022-2025, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
"""Utility functions for managing X11 forwarding in the docker container."""
from __future__ import annotations
import os
import shutil
import subprocess
import sys
from pathlib import Path
from .state_file import StateFile
# This method of x11 enabling forwarding was inspired by osrf/rocker
# https://github.com/osrf/rocker
def configure_x11(statefile: StateFile) -> dict[str, str]:
"""Configure X11 forwarding by creating and managing a temporary .xauth file.
If xauth is not installed, the function prints an error message and exits. The message
instructs the user to install xauth with 'apt install xauth'.
If the .xauth file does not exist, the function creates it and configures it with the necessary
xauth cookie.
Args:
statefile: An instance of the configuration file class.
Returns:
A dictionary with two key-value pairs:
- "__ISAACLAB_TMP_XAUTH": The path to the temporary .xauth file.
- "__ISAACLAB_TMP_DIR": The path to the directory where the temporary .xauth file is stored.
"""
# check if xauth is installed
if not shutil.which("xauth"):
print("[INFO] xauth is not installed.")
print("[INFO] Please install it with 'apt install xauth'")
exit(1)
# set the namespace to X11 for the statefile
statefile.namespace = "X11"
# load the value of the temporary xauth file
tmp_xauth_value = statefile.get_variable("__ISAACLAB_TMP_XAUTH")
if tmp_xauth_value is None or not Path(tmp_xauth_value).exists():
# create a temporary directory to store the .xauth file
tmp_dir = subprocess.run(["mktemp", "-d"], capture_output=True, text=True, check=True).stdout.strip()
# create the .xauth file
tmp_xauth_value = create_x11_tmpfile(tmpdir=Path(tmp_dir))
# set the statefile variable
statefile.set_variable("__ISAACLAB_TMP_XAUTH", str(tmp_xauth_value))
else:
tmp_dir = Path(tmp_xauth_value).parent
return {"__ISAACLAB_TMP_XAUTH": str(tmp_xauth_value), "__ISAACLAB_TMP_DIR": str(tmp_dir)}
def x11_check(statefile: StateFile) -> tuple[list[str], dict[str, str]] | None:
"""Check and configure X11 forwarding based on user input and existing state.
This function checks if X11 forwarding is enabled in the configuration file. If it is not configured,
the function prompts the user to enable or disable X11 forwarding. If X11 forwarding is enabled, the function
configures X11 forwarding by creating a temporary .xauth file.
Args:
statefile: An instance of the configuration file class.
Returns:
If X11 forwarding is enabled, the function returns a tuple containing the following:
- A list containing the x11.yaml file configuration option for docker-compose.
- A dictionary containing the environment variables for the container.
If X11 forwarding is disabled, the function returns None.
"""
# set the namespace to X11 for the statefile
statefile.namespace = "X11"
# check if X11 forwarding is enabled
is_x11_forwarding_enabled = statefile.get_variable("X11_FORWARDING_ENABLED")
if is_x11_forwarding_enabled is None:
print("[INFO] X11 forwarding from the Isaac Lab container is disabled by default.")
print(
"[INFO] It will fail if there is no display, or this script is being run via ssh without proper"
" configuration."
)
x11_answer = input("Would you like to enable it? (y/N) ")
# parse the user's input
if x11_answer.lower() == "y":
is_x11_forwarding_enabled = "1"
print("[INFO] X11 forwarding is enabled from the container.")
else:
is_x11_forwarding_enabled = "0"
print("[INFO] X11 forwarding is disabled from the container.")
# remember the user's choice and set the statefile variable
statefile.set_variable("X11_FORWARDING_ENABLED", is_x11_forwarding_enabled)
else:
# print the current configuration
print(f"[INFO] X11 Forwarding is configured as '{is_x11_forwarding_enabled}' in '.container.cfg'.")
# print help message to enable/disable X11 forwarding
if is_x11_forwarding_enabled == "1":
print("\tTo disable X11 forwarding, set 'X11_FORWARDING_ENABLED=0' in '.container.cfg'.")
else:
print("\tTo enable X11 forwarding, set 'X11_FORWARDING_ENABLED=1' in '.container.cfg'.")
if is_x11_forwarding_enabled == "1":
x11_envars = configure_x11(statefile)
# If X11 forwarding is enabled, return the proper args to
# compose the x11.yaml file. Else, return an empty string.
return ["--file", "x11.yaml"], x11_envars
return None
def x11_cleanup(statefile: StateFile):
"""Clean up the temporary .xauth file used for X11 forwarding.
If the .xauth file exists, this function deletes it and remove the corresponding state variable.
Args:
statefile: An instance of the configuration file class.
"""
# set the namespace to X11 for the statefile
statefile.namespace = "X11"
# load the value of the temporary xauth file
tmp_xauth_value = statefile.get_variable("__ISAACLAB_TMP_XAUTH")
# if the file exists, delete it and remove the state variable
if tmp_xauth_value is not None and Path(tmp_xauth_value).exists():
print(f"[INFO] Removing temporary Isaac Lab '.xauth' file: {tmp_xauth_value}.")
Path(tmp_xauth_value).unlink()
statefile.delete_variable("__ISAACLAB_TMP_XAUTH")
def create_x11_tmpfile(tmpfile: Path | None = None, tmpdir: Path | None = None) -> Path:
"""Creates an .xauth file with an MIT-MAGIC-COOKIE derived from the current ``DISPLAY`` environment variable.
Args:
tmpfile: A Path to a file which will be filled with the correct .xauth info.
tmpdir: A Path to the directory where a random tmp file will be made.
This is used as an ``--tmpdir arg`` to ``mktemp`` bash command.
Returns:
The Path to the .xauth file.
"""
if tmpfile is None:
if tmpdir is None:
add_tmpdir = ""
else:
add_tmpdir = f"--tmpdir={tmpdir}"
# Create .tmp file with .xauth suffix
tmp_xauth = Path(
subprocess.run(
["mktemp", "--suffix=.xauth", f"{add_tmpdir}"], capture_output=True, text=True, check=True
).stdout.strip()
)
else:
tmpfile.touch()
tmp_xauth = tmpfile
# Derive current MIT-MAGIC-COOKIE and make it universally addressable
xauth_cookie = subprocess.run(
["xauth", "nlist", os.environ["DISPLAY"]], capture_output=True, text=True, check=True
).stdout.replace("ffff", "")
# Merge the new cookie into the create .tmp file
subprocess.run(["xauth", "-f", tmp_xauth, "nmerge", "-"], input=xauth_cookie, text=True, check=True)
return tmp_xauth
def x11_refresh(statefile: StateFile):
"""Refresh the temporary .xauth file used for X11 forwarding.
If x11 is enabled, this function generates a new .xauth file with the current MIT-MAGIC-COOKIE-1.
The new file uses the same filename so that the bind-mount and ``XAUTHORITY`` var from build-time
still work.
As the envar ``DISPLAY` informs the contents of the MIT-MAGIC-COOKIE-1, that value within the container
will also need to be updated to the current value on the host. Currently, this done automatically in
:meth:`ContainerInterface.enter` method.
The function exits if X11 forwarding is enabled but the temporary .xauth file does not exist. In this case,
the user must rebuild the container.
Args:
statefile: An instance of the configuration file class.
"""
# set the namespace to X11 for the statefile
statefile.namespace = "X11"
# check if X11 forwarding is enabled
is_x11_forwarding_enabled = statefile.get_variable("X11_FORWARDING_ENABLED")
# load the value of the temporary xauth file
tmp_xauth_value = statefile.get_variable("__ISAACLAB_TMP_XAUTH")
# print the current configuration
if is_x11_forwarding_enabled is not None:
status = "enabled" if is_x11_forwarding_enabled == "1" else "disabled"
print(f"[INFO] X11 Forwarding is {status} from the settings in '.container.cfg'")
# if the file exists, delete it and create a new one
if tmp_xauth_value is not None and Path(tmp_xauth_value).exists():
# remove the file and create a new one
Path(tmp_xauth_value).unlink()
create_x11_tmpfile(tmpfile=Path(tmp_xauth_value))
# update the statefile with the new path
statefile.set_variable("__ISAACLAB_TMP_XAUTH", str(tmp_xauth_value))
elif tmp_xauth_value is None:
if is_x11_forwarding_enabled is not None and is_x11_forwarding_enabled == "1":
print(
"[ERROR] X11 forwarding is enabled but the temporary .xauth file does not exist."
" Please rebuild the container by running: './docker/container.py start'"
)
sys.exit(1)
else:
print("[INFO] X11 forwarding is disabled. No action taken.")
|