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
//! Messages involved in the SSH's **authentication** (`SSH-USERAUTH`) part of the protocol,
//! as defined in the [RFC 4252](https://datatracker.ietf.org/doc/html/rfc4252) and [RFC 4256](https://datatracker.ietf.org/doc/html/rfc4256).
use binrw::binrw;
use crate::arch;
/// The `SSH_MSG_USERAUTH_REQUEST` message.
///
/// see <https://datatracker.ietf.org/doc/html/rfc4252>.
#[binrw]
#[derive(Debug)]
#[brw(big, magic = 50_u8)]
pub struct UserauthRequest {
/// Username for the auth request.
pub username: arch::StringUtf8,
/// Service name to query.
pub service_name: arch::StringAscii,
#[bw(calc = arch::StringAscii::new(method.as_str()))]
auth_method: arch::StringAscii,
/// Authentication method used.
#[br(args(&auth_method))]
pub method: UserauthMethod,
}
/// The Authentication method in the `SSH_MSG_USERAUTH_REQUEST` message.
#[binrw]
#[derive(Debug)]
#[br(import(method: &str))]
pub enum UserauthMethod {
/// Authenticate using the `none` method,
/// as defined in [RFC4252 section 5.2](https://datatracker.ietf.org/doc/html/rfc4252#section-5.2).
#[br(pre_assert(method == UserauthMethod::NONE))]
None,
/// Authenticate using the `publickey` method,
/// as defined in [RFC4252 section 7](https://datatracker.ietf.org/doc/html/rfc4252#section-7).
#[br(pre_assert(method == UserauthMethod::PUBLICKEY))]
Publickey {
#[bw(calc = arch::Bool(signature.is_some()))]
signed: arch::Bool,
/// Public key algorithm's name.
algorithm: arch::String,
/// Public key blob.
blob: arch::String,
/// The optional signature of the authentication packet,
/// signed with the according private key.
#[br(if(*signed))]
signature: Option<arch::String>,
},
/// Authenticate using the `password` method,
/// as defined in [RFC4252 section 8](https://datatracker.ietf.org/doc/html/rfc4252#section-8).
#[br(pre_assert(method == UserauthMethod::PASSWORD))]
Password {
#[bw(calc = arch::Bool(new.is_some()))]
change: arch::Bool,
/// Plaintext password.
password: arch::StringUtf8,
/// In the case of a the receival of a [`UserauthPasswdChangereq`],
/// the new password to be set in place of the old one.
#[br(if(*change))]
new: Option<arch::StringUtf8>,
},
/// Authenticate using the `hostbased` method,
/// as defined in [RFC4252 section 9](https://datatracker.ietf.org/doc/html/rfc4252#section-9).
#[br(pre_assert(method == UserauthMethod::HOSTBASED))]
Hostbased {
/// Public key algorithm for the host key.
algorithm: arch::String,
/// Public host key and certificates for client host.
host_key: arch::String,
/// Client host name expressed as the FQDN.
client_fqdn: arch::StringAscii,
/// User name on the client host.
username: arch::StringUtf8,
/// The signature of the authentication packet.
signature: arch::String,
},
/// Authenticate using the `keyboard-interactive` method,
/// as defined in [RFC4256 section 3.1](https://datatracker.ietf.org/doc/html/rfc4256#section-3.1).
#[br(pre_assert(method == UserauthMethod::KEYBOARD_INTERACTIVE))]
KeyboardInteractive {
/// Language tag.
language: arch::StringAscii,
/// A hint for the prefered interactive submethod.
submethods: arch::StringUtf8,
},
}
impl UserauthMethod {
const NONE: &str = "none";
const PUBLICKEY: &str = "publickey";
const PASSWORD: &str = "password";
const HOSTBASED: &str = "hostbased";
const KEYBOARD_INTERACTIVE: &str = "keyboard-interactive";
/// Transforms the [`UserauthMethod`] to it's SSH identifier.
pub fn as_str(&self) -> &'static str {
match self {
Self::None { .. } => Self::NONE,
Self::Publickey { .. } => Self::PUBLICKEY,
Self::Password { .. } => Self::PASSWORD,
Self::Hostbased { .. } => Self::HOSTBASED,
Self::KeyboardInteractive { .. } => Self::KEYBOARD_INTERACTIVE,
}
}
}
/// The `SSH_MSG_USERAUTH_PK_OK` message.
///
/// see <https://datatracker.ietf.org/doc/html/rfc4252#section-7>.
#[binrw]
#[derive(Debug)]
#[brw(big, magic = 60_u8)]
pub struct UserauthPkOk {
/// Public key algorithm name from the request.
pub algorithm: arch::String,
/// Public key blob from the request.
pub blob: arch::String,
}
/// The `SSH_MSG_USERAUTH_PASSWD_CHANGEREQ` message.
///
/// see <https://datatracker.ietf.org/doc/html/rfc4252#section-8>.
#[binrw]
#[derive(Debug)]
#[brw(big, magic = 60_u8)]
pub struct UserauthPasswdChangereq {
/// Password change prompt.
pub prompt: arch::StringUtf8,
/// Language tag (deprecated).
pub language: arch::StringAscii,
}
/// The `SSH_MSG_USERAUTH_INFO_REQUEST` message.
///
/// see <https://datatracker.ietf.org/doc/html/rfc4256#section-3.2>.
#[binrw]
#[derive(Debug)]
#[brw(big, magic = 60_u8)]
pub struct UserauthInfoRequest {
/// Name of the challenge.
pub name: arch::StringUtf8,
/// Instructions for the challenge.
pub instruction: arch::StringUtf8,
/// Language tag (deprecated).
pub language: arch::StringAscii,
#[bw(calc = prompts.len() as u32)]
num_prompts: u32,
/// The challenge's prompts.
#[br(count = num_prompts)]
pub prompts: Vec<UserauthInfoRequestPrompt>,
}
/// A prompt in the `SSH_MSG_USERAUTH_INFO_REQUEST` message.
#[binrw]
#[derive(Debug)]
#[brw(big)]
pub struct UserauthInfoRequestPrompt {
/// Challenge prompt text.
pub prompt: arch::StringUtf8,
/// Whether the client should echo back typed characters.
pub echo: arch::Bool,
}
/// The `SSH_MSG_USERAUTH_INFO_RESPONSE` message.
///
/// see <https://datatracker.ietf.org/doc/html/rfc4256#section-3.4>.
#[binrw]
#[derive(Debug)]
#[brw(big, magic = 61_u8)]
pub struct UserauthInfoResponse {
#[bw(calc = responses.len() as u32)]
num_responses: u32,
/// Responses to the provided challenge.
#[br(count = num_responses)]
pub responses: Vec<arch::StringUtf8>,
}
/// The `SSH_MSG_USERAUTH_FAILURE` message.
///
/// see <https://datatracker.ietf.org/doc/html/rfc4252#section-5.1>.
#[binrw]
#[derive(Debug)]
#[brw(big, magic = 51_u8)]
pub struct UserauthFailure {
/// Authentications that can continue.
pub continue_with: arch::NameList,
/// Partial success.
pub partial_success: arch::Bool,
}
/// The `SSH_MSG_USERAUTH_SUCCESS` message.
///
/// see <https://datatracker.ietf.org/doc/html/rfc4252#section-5.1>.
#[binrw]
#[derive(Debug)]
#[brw(big, magic = 52_u8)]
pub struct UserauthSuccess;
/// The `SSH_MSG_USERAUTH_BANNER` message.
///
/// see <https://datatracker.ietf.org/doc/html/rfc4252#section-5.4>.
#[binrw]
#[derive(Debug)]
#[brw(big, magic = 53_u8)]
pub struct UserauthBanner {
/// The auth banner message.
pub message: arch::StringUtf8,
/// Language tag.
pub language: arch::StringAscii,
}