console_relay/
unix.rs

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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#![cfg(unix)]

//! Console relay support using Unix domain sockets.

use futures::AsyncRead;
use futures::AsyncWrite;
use pal_async::driver::Driver;
use pal_async::socket::PolledSocket;
use std::path::Path;
use std::pin::Pin;
use std::task::Context;
use std::task::ready;
use unix_socket::UnixListener;
use unix_socket::UnixStream;

pub struct UnixSocketConsole {
    driver: Box<dyn Driver>,
    state: UnixSocketConsoleState,
}

enum UnixSocketConsoleState {
    Listening(PolledSocket<UnixListener>),
    Connected(PolledSocket<UnixStream>),
}

impl UnixSocketConsole {
    pub fn new(driver: Box<dyn Driver>, path: &Path) -> std::io::Result<Self> {
        let listener = UnixListener::bind(path)?;
        Ok(Self {
            state: UnixSocketConsoleState::Listening(PolledSocket::new(&driver, listener)?),
            driver,
        })
    }

    fn poll_connect(
        &mut self,
        cx: &mut Context<'_>,
    ) -> std::task::Poll<std::io::Result<&mut PolledSocket<UnixStream>>> {
        match &mut self.state {
            UnixSocketConsoleState::Listening(l) => {
                let (c, _) = ready!(l.poll_accept(cx))?;
                let c = PolledSocket::new(&self.driver, c)?;
                self.state = UnixSocketConsoleState::Connected(c);
            }
            UnixSocketConsoleState::Connected(_) => {}
        }
        let UnixSocketConsoleState::Connected(c) = &mut self.state else {
            unreachable!()
        };
        Ok(c).into()
    }
}

impl AsyncRead for UnixSocketConsole {
    fn poll_read(
        mut self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &mut [u8],
    ) -> std::task::Poll<std::io::Result<usize>> {
        let c = ready!(self.poll_connect(cx))?;
        Pin::new(c).poll_read(cx, buf)
    }
}

impl AsyncWrite for UnixSocketConsole {
    fn poll_write(
        mut self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &[u8],
    ) -> std::task::Poll<std::io::Result<usize>> {
        let c = ready!(self.poll_connect(cx))?;
        Pin::new(c).poll_write(cx, buf)
    }

    fn poll_flush(
        mut self: Pin<&mut Self>,
        cx: &mut Context<'_>,
    ) -> std::task::Poll<std::io::Result<()>> {
        match &mut self.state {
            UnixSocketConsoleState::Listening(_) => Ok(()).into(),
            UnixSocketConsoleState::Connected(c) => Pin::new(c).poll_flush(cx),
        }
    }

    fn poll_close(
        mut self: Pin<&mut Self>,
        cx: &mut Context<'_>,
    ) -> std::task::Poll<std::io::Result<()>> {
        match &mut self.state {
            UnixSocketConsoleState::Listening(_) => Ok(()).into(),
            UnixSocketConsoleState::Connected(c) => Pin::new(c).poll_close(cx),
        }
    }
}