aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: db7833cf065e763ce98f7d612958b1c5de0c148f (plain)
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#![feature(never_type)]

pub mod config;

use anyhow::bail;
use azalea_protocol::{
    packets::{
        handshaking::{client_intention_packet::ClientIntentionPacket, ServerboundHandshakePacket},
        login::ServerboundLoginPacket,
        ConnectionProtocol,
    },
    read::read_packet,
    write::write_packet,
};
// use azalea_protocol::{
//     packets::{
//         handshake::{client_intention_packet::ClientIntentionPacket, ServerboundHandshakePacket},
//         login::ServerboundLoginPacket,
//         ConnectionProtocol,
//     },
//     read::read_packet,
//     write::write_packet,
// };
use bytes::BytesMut;
use config::Config;
use log::{error, info, warn};
use std::{
    fs::read_to_string,
    sync::{Arc, RwLock},
};
use tokio::{
    io::{AsyncReadExt, AsyncWriteExt},
    net::{
        tcp::{OwnedReadHalf, OwnedWriteHalf},
        TcpListener, TcpStream,
    },
};

fn main() {
    env_logger::builder()
        .filter_level(log::LevelFilter::Info)
        .parse_env("LOG")
        .init();
    tokio::runtime::Builder::new_multi_thread()
        .enable_all()
        .build()
        .unwrap()
        .block_on(async move {
            match run().await {
                Ok(_) => {}
                Err(err) => error!("fatal error: {err}"),
            }
        });
}

async fn run() -> anyhow::Result<!> {
    let config = Arc::new(RwLock::new(Arc::new(serde_yaml::from_str::<Config>(
        &read_to_string("proxy.yaml")?,
    )?)));
    config::watch(config.clone());

    let listener = TcpListener::bind(config.read().unwrap().bind).await?;
    info!("listening");
    loop {
        match listener.accept().await {
            Ok((sock, addr)) => {
                info!("connected: {addr}");
                let config = config.read().unwrap().clone();
                tokio::spawn(async move {
                    match handle_client(config, sock).await {
                        Ok(()) => info!("disconnected: {addr}"),
                        Err(err) => warn!("error: ({addr}) {err}"),
                    }
                });
            }
            Err(e) => error!("{}", e),
        }
    }
}

async fn handle_client(config: Arc<Config>, sock: TcpStream) -> Result<(), anyhow::Error> {
    let mut buf = BytesMut::new();
    sock.set_nodelay(true)?;
    let (mut downstream_reader, downstream_writer) = sock.into_split();

    let handshake = read_packet::<ServerboundHandshakePacket, _>(
        &mut downstream_reader,
        &mut buf,
        None,
        &mut None,
    )
    .await?;

    let upstream_handshake = match handshake {
        ServerboundHandshakePacket::ClientIntention(p) => {
            info!(
                "new client (version={}, intent={:?})",
                p.protocol_version, p.intention
            );
            if p.protocol_version != config.protocol {
                bail!("protocol version unsupported")
            }
            match p.intention {
                ConnectionProtocol::Status => {
                    handle_status_intent(config, downstream_writer, downstream_reader).await?;
                    return Ok(());
                }
                ConnectionProtocol::Login => {}
                _ => bail!("unsupported intent"),
            }
            p
        }
    };

    let login =
        read_packet::<ServerboundLoginPacket, _>(&mut downstream_reader, &mut buf, None, &mut None)
            .await?;
    let upstream_login = match login {
        ServerboundLoginPacket::Hello(mut p) => {
            info!("client hello (username={:?})", p.name);

            let profile = config
                .whitelist
                .iter()
                .find(|e| e.token.as_ref().map_or(false, |e| e == &p.name));

            match profile {
                Some(profile) => {
                    info!("login as {:?}", profile.username);
                    p.name = profile.username.clone();
                }
                None => bail!("no profile found, disconnecting client"),
            }
            p
        }
        ServerboundLoginPacket::LoginAcknowledged(_) => bail!("wtf?"),
        ServerboundLoginPacket::Key(_) => bail!("key not supported"),
        ServerboundLoginPacket::CustomQueryAnswer(_) => bail!("custom query not supported"),
    };

    let upstream = TcpStream::connect(config.backend).await?;
    let (upstream_reader, mut upstream_writer) = upstream.into_split();

    write_packet(
        &ServerboundHandshakePacket::ClientIntention(upstream_handshake),
        &mut upstream_writer,
        None,
        &mut None,
    )
    .await?;

    write_packet::<ServerboundLoginPacket, _>(
        &ServerboundLoginPacket::Hello(upstream_login),
        &mut upstream_writer,
        None,
        &mut None,
    )
    .await?;

    let task_res = tokio::spawn(async move { connect(downstream_writer, upstream_reader).await });
    let res = connect(upstream_writer, downstream_reader).await;
    task_res.abort();
    res?;
    if let Ok(r) = task_res.await {
        r?;
    }

    Ok(())
}

async fn connect(mut writer: OwnedWriteHalf, mut reader: OwnedReadHalf) -> anyhow::Result<()> {
    let mut buf = [0; 1024];
    loop {
        let size = reader.read(&mut buf).await?;
        if size == 0 {
            break Ok(());
        }
        writer.write_all(&buf[..size]).await?;
    }
}

async fn handle_status_intent(
    config: Arc<Config>,
    writer: OwnedWriteHalf,
    reader: OwnedReadHalf,
) -> anyhow::Result<()> {
    // let mut buf = BytesMut::new();
    let upstream = TcpStream::connect(config.backend).await?;
    upstream.set_nodelay(true)?;
    let (upstream_reader, mut upstream_writer) = upstream.into_split();

    write_packet(
        &ServerboundHandshakePacket::ClientIntention(ClientIntentionPacket {
            protocol_version: config.protocol,
            hostname: config.backend.ip().to_string(),
            port: config.backend.port(),
            intention: ConnectionProtocol::Status,
        }),
        &mut upstream_writer,
        None,
        &mut None,
    )
    .await?;

    let task_res = tokio::spawn(async move { connect(writer, upstream_reader).await });
    let res = connect(upstream_writer, reader).await;
    task_res.abort();
    res?;
    if let Ok(r) = task_res.await {
        r?;
    }

    return Ok(());
}

// loop {
//     let req = read_packet::<ServerboundStatusPacket, _>(&mut reader, &mut buf, None, &mut None)
//         .await?;
//     info!("{req:?}");
//     match req {
//         ServerboundStatusPacket::StatusRequest(..) => {
//             write_packet(
//                 &ClientboundStatusPacket::StatusResponse(ClientboundStatusResponsePacket {
//                     description: azalea_chat::component::Component::Text(
//                         legacy_color_code_to_text_component("blub"),
//                     ),
//                     favicon: None,
//                     players: Players {
//                         max: 10,
//                         online: 0,
//                         sample: vec![],
//                     },
//                     version: Version {
//                         name: azalea_chat::component::Component::Text(
//                             legacy_color_code_to_text_component("blub"),
//                         ),
//                         protocol: 760,
//                     },
//                 }),
//                 &mut writer,
//                 None,
//                 &mut None,
//             )
//             .await?;
//         }
//         ServerboundStatusPacket::PingRequest(p) => {
//             write_packet(
//                 &ClientboundStatusPacket::PongResponse(ClientboundPongResponsePacket {
//                     time: p.time,
//                 }),
//                 &mut writer,
//                 None,
//                 &mut None,
//             )
//             .await?;
//         }
//     }
// }
// Ok(())

// for _ in 0..3 {
//     let a = read_packet::<ClientboundLoginPacket, _>(
//         &mut upstream_reader,
//         &mut buf,
//         None,
//         &mut None,
//     )
//     .await?;
//     debug!("login {a:?}");
//     write_packet(&a, &mut downstream_writer, None, &mut None).await?;
// }

// tokio::spawn(async move {
//     let mut buf = BytesMut::new();
//     loop {
//         let a = read_packet::<ClientboundGamePacket, _>(
//             &mut upstream_reader,
//             &mut buf,
//             None,
//             &mut None,
//         )
//         .await
//         .unwrap();
//         debug!("downstream {a:?}");
//         write_packet(&a, &mut downstream_writer, None, &mut None)
//             .await
//             .unwrap();
//     }
// });

// loop {
//     let a = read_packet::<ClientboundGamePacket, _>(
//         &mut downstream_reader,
//         &mut buf,
//         None,
//         &mut None,
//     )
//     .await?;
//     debug!("upstream {a:?}");
//     write_packet(&a, &mut upstream_writer, None, &mut None).await?;
// }