Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEXServer: Listen on both abstract & named sockets #4159

Merged
merged 4 commits into from
Nov 19, 2024

Commits on Nov 18, 2024

  1. FEXServerClient: Switch GetTempFolder to not use temp_directory_path()

    Apparently this causes allocations which are banned in some paths?
    asahilina committed Nov 18, 2024
    Configuration menu
    Copy the full SHA
    44213c3 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2024

  1. FEXServerClient: Do not use strerror() in ConnectToServer()

    This triggers glibc allocation.
    
    Signed-off-by: Asahi Lina <[email protected]>
    asahilina committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    a1aa254 View commit details
    Browse the repository at this point in the history
  2. FEXServer: Listen on both abstract & named sockets

    Abstract sockets have one limitation: they are bound to a network
    namespace. Chromium/CEF sandboxes using a new netns, which breaks
    connecting to the FEXServer.
    
    To work around this, use and try *both* abstract and named sockets. As
    long as either the filesystem or the network is unsandboxed, things will
    work. If both are sandboxed, there isn't much we can do... but at that
    point we shouldn't be reinitializing the FEXServer connection anyway
    since the FS should be available on FEXInterpreter startup.
    asahilina committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    d761fc4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c3e8cd8 View commit details
    Browse the repository at this point in the history