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
// Set of libraries for privacy-preserving networking apps
//
// SPDX-License-Identifier: Apache-2.0
//
// Written in 2019-2023 by
// Dr. Maxim Orlovsky <orlovsky@cyphernet.org>
//
// Copyright 2022-2023 Cyphernet DAO, Switzerland
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
//! Pure rust SOCKS5 protocol implementation for a client with zero dependencies.
//!
//! The library is a part of [rust cyphernet suite](https://github.com/Cyphernet-DAO/rust-cyphernet)
//! and used by it for generic implementation of noise protocol framework abstracted
//! from the underlying curve.
#[macro_use]
extern crate amplify;
mod encoding;
mod error;
use std::io;
use cypheraddr::{Host, HostName, NetAddr};
pub use error::ServerError;
use crate::encoding::{Encoding, EncodingError, DOMAIN, IPV4, IPV6};
#[derive(Debug, Display, Error, From)]
#[display(inner)]
pub enum Error {
#[from]
Server(ServerError),
#[from]
Encoding(EncodingError),
/// invalid server reply
InvalidReply,
/// not supported SOCKS protocol version {0}
VersionNotSupported(u8),
/// server requires authentication with an unsupported method
AuthRequired,
/// SOCKS5 connection is established, the handshake is complete
Completed,
/// connection is closed due to a failure
Closed,
}
#[derive(Debug)]
pub enum Socks5 {
Initial(NetAddr<HostName>, bool),
Connected(NetAddr<HostName>),
Awaiting,
Reading(u8, u8),
Active(NetAddr<HostName>),
Rejected(ServerError, u8, u8),
Failed(Error),
}
impl Socks5 {
pub fn with(addr: impl Into<NetAddr<HostName>>, force_proxy: bool) -> Self {
Self::Initial(addr.into(), force_proxy)
}
pub fn advance(&mut self, input: &[u8]) -> Result<Vec<u8>, Error> {
match self {
Socks5::Initial(addr, false) if !addr.requires_proxy() => {
*self = Socks5::Active(addr.clone());
Ok(vec![])
}
Socks5::Initial(addr, _) => {
debug_assert!(input.is_empty());
let out = vec![0x05, 0x01, 0x00];
*self = Socks5::Connected(addr.clone());
Ok(out)
}
Socks5::Connected(addr) => {
debug_assert_eq!(input.len(), 2);
if input[0] != 0x05 {
*self = Socks5::Failed(Error::VersionNotSupported(input[0]));
return Err(Error::VersionNotSupported(input[0]));
}
if input[1] != 0x00 {
*self = Socks5::Failed(Error::AuthRequired);
return Err(Error::AuthRequired);
}
let mut out = vec![0x05, 0x01, 0x00];
addr.encode(&mut out)?;
*self = Socks5::Awaiting;
Ok(out)
}
Socks5::Awaiting => {
debug_assert_eq!(input.len(), 5);
if input[0] != 0x05 {
*self = Socks5::Failed(Error::VersionNotSupported(input[0]));
return Err(Error::VersionNotSupported(input[0]));
}
if input[1] != 0x00 {
let err = ServerError::from(input[1]);
*self = Socks5::Rejected(err, input[3], input[4]);
} else {
*self = Socks5::Reading(input[3], input[4]);
}
Ok(vec![])
}
Socks5::Reading(code1, code2) => {
let mut vec = Vec::with_capacity(input.len() + 2);
vec.extend_from_slice(&[*code1, *code2]);
vec.extend_from_slice(input);
let mut cursor = io::Cursor::new(vec);
let addr = NetAddr::<HostName>::decode(&mut cursor)?;
*self = Socks5::Active(addr);
Ok(vec![])
}
Socks5::Active(_) => Err(Error::Completed),
Socks5::Rejected(_, _, _) | Socks5::Failed(_) => Err(Error::Closed),
}
}
pub fn next_read_len(&self) -> usize {
match self {
Socks5::Initial(_, _) => 0,
Socks5::Connected(_) => 2,
Socks5::Awaiting => 5,
Socks5::Reading(ty, _) | Socks5::Rejected(_, ty, _) if *ty == IPV4 => 5,
Socks5::Reading(ty, _) | Socks5::Rejected(_, ty, _) if *ty == IPV6 => 17,
Socks5::Reading(ty, len) | Socks5::Rejected(_, ty, len) if *ty == DOMAIN => {
*len as usize + 1
}
Socks5::Reading(_, _) | Socks5::Rejected(_, _, _) => 1,
Socks5::Active(_) | Socks5::Failed(_) => 0,
}
}
}