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 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
use std::io;
use std::path::Path;
use buffered_reader::BufferedReader;
use crate::Result;
use crate::parse::PacketParserResult;
use crate::parse::PacketParser;
use crate::parse::PacketParserEOF;
use crate::parse::PacketParserState;
use crate::parse::PacketParserSettings;
use crate::parse::ParserResult;
use crate::parse::Parse;
use crate::parse::Cookie;
use crate::armor;
use crate::packet;
/// Controls transparent stripping of ASCII armor when parsing.
///
/// When parsing OpenPGP data streams, the [`PacketParser`] will by
/// default automatically detect and remove any ASCII armor encoding
/// (see [Section 6 of RFC 4880]). This automatism can be disabled
/// and fine-tuned using [`PacketParserBuilder::dearmor`].
///
/// [Section 6 of RFC 4880]: https://tools.ietf.org/html/rfc4880#section-6
/// [`PacketParserBuilder::dearmor`]: PacketParserBuilder::dearmor()
#[derive(PartialEq)]
pub enum Dearmor {
/// Unconditionally treat the input as if it were an OpenPGP
/// message encoded using ASCII armor.
///
/// Parsing a binary encoded OpenPGP message using this mode will
/// fail. The [`ReaderMode`] allow further customization of the
/// ASCII armor parser.
///
/// [`ReaderMode`]: crate::armor::ReaderMode
Enabled(armor::ReaderMode),
/// Unconditionally treat the input as if it were a binary OpenPGP
/// message.
///
/// Parsing an ASCII armor encoded OpenPGP message using this mode will
/// fail.
Disabled,
/// If input does not appear to be a binary encoded OpenPGP
/// message, treat it as if it were encoded using ASCII armor.
///
/// This is the default. The [`ReaderMode`] allow further
/// customization of the ASCII armor parser.
///
/// [`ReaderMode`]: crate::armor::ReaderMode
Auto(armor::ReaderMode),
}
assert_send_and_sync!(Dearmor);
impl Default for Dearmor {
fn default() -> Self {
Dearmor::Auto(Default::default())
}
}
/// This is the level at which we insert the dearmoring filter into
/// the buffered reader stack.
pub(super) const ARMOR_READER_LEVEL: isize = -2;
/// A builder for configuring a `PacketParser`.
///
/// Since the default settings are usually appropriate, this mechanism
/// will only be needed in exceptional circumstances. Instead use,
/// for instance, `PacketParser::from_file` or
/// `PacketParser::from_reader` to start parsing an OpenPGP message.
///
/// # Examples
///
/// ```rust
/// # fn main() -> sequoia_openpgp::Result<()> {
/// use sequoia_openpgp as openpgp;
/// use openpgp::parse::{Parse, PacketParserResult, PacketParserBuilder};
///
/// // Parse a message.
/// let message_data: &[u8] = // ...
/// # include_bytes!("../../tests/data/messages/compressed-data-algo-0.pgp");
/// let mut ppr = PacketParserBuilder::from_bytes(message_data)?
/// // Customize the `PacketParserBuilder` here.
/// .build()?;
/// while let PacketParserResult::Some(mut pp) = ppr {
/// // ...
///
/// // Start parsing the next packet, recursing.
/// ppr = pp.recurse()?.1;
/// }
/// # Ok(()) }
/// ```
pub struct PacketParserBuilder<'a> {
bio: Box<dyn BufferedReader<Cookie> + 'a>,
dearmor: Dearmor,
settings: PacketParserSettings,
csf_transformation: bool,
}
assert_send_and_sync!(PacketParserBuilder<'_>);
impl<'a> Parse<'a, PacketParserBuilder<'a>> for PacketParserBuilder<'a> {
/// Starts parsing an OpenPGP object stored in a `BufferedReader` object.
///
/// This function returns a `PacketParser` for the first packet in
/// the stream.
fn from_buffered_reader<R>(reader: R) -> Result<PacketParserBuilder<'a>>
where
R: BufferedReader<Cookie> + 'a,
{
PacketParserBuilder::from_cookie_reader(reader.into_boxed())
}
/// Creates a `PacketParserBuilder` for an OpenPGP message stored
/// in a `std::io::Read` object.
fn from_reader<R: io::Read + 'a + Send + Sync>(reader: R) -> Result<Self> {
PacketParserBuilder::from_cookie_reader(
Box::new(buffered_reader::Generic::with_cookie(
reader, None, Cookie::default())))
}
/// Creates a `PacketParserBuilder` for an OpenPGP message stored
/// in the file named `path`.
fn from_file<P: AsRef<Path>>(path: P) -> Result<Self> {
PacketParserBuilder::from_cookie_reader(
Box::new(buffered_reader::File::with_cookie(path, Cookie::default())?))
}
/// Creates a `PacketParserBuilder` for an OpenPGP message stored
/// in the specified buffer.
fn from_bytes<D: AsRef<[u8]> + ?Sized>(data: &'a D) -> Result<PacketParserBuilder<'a>> {
PacketParserBuilder::from_cookie_reader(
Box::new(buffered_reader::Memory::with_cookie(
data.as_ref(), Cookie::default())))
}
}
impl<'a> PacketParserBuilder<'a> {
// Creates a `PacketParserBuilder` for an OpenPGP message stored
// in a `BufferedReader` object.
//
// Note: this clears the `level` field of the
// `Cookie` cookie.
pub(crate) fn from_cookie_reader(mut bio: Box<dyn BufferedReader<Cookie> + 'a>)
-> Result<Self> {
bio.cookie_mut().level = None;
Ok(PacketParserBuilder {
bio,
dearmor: Default::default(),
settings: PacketParserSettings::default(),
csf_transformation: false,
})
}
/// Sets the maximum recursion depth.
///
/// Setting this to 0 means that the `PacketParser` will never
/// recurse; it will only parse the top-level packets.
///
/// This is a u8, because recursing more than 255 times makes no
/// sense. The default is [`DEFAULT_MAX_RECURSION_DEPTH`].
/// (GnuPG defaults to a maximum recursion depth of 32.)
///
/// [`DEFAULT_MAX_RECURSION_DEPTH`]: crate::parse::DEFAULT_MAX_RECURSION_DEPTH
///
/// # Examples
///
/// ```rust
/// # fn main() -> sequoia_openpgp::Result<()> {
/// use sequoia_openpgp as openpgp;
/// use openpgp::Packet;
/// use openpgp::parse::{Parse, PacketParserResult, PacketParserBuilder};
///
/// // Parse a compressed message.
/// let message_data: &[u8] = // ...
/// # include_bytes!("../../tests/data/messages/compressed-data-algo-0.pgp");
/// let mut ppr = PacketParserBuilder::from_bytes(message_data)?
/// .max_recursion_depth(0)
/// .build()?;
/// while let PacketParserResult::Some(mut pp) = ppr {
/// assert_eq!(pp.recursion_depth(), 0);
///
/// // Start parsing the next packet, recursing.
/// ppr = pp.recurse()?.1;
/// }
/// # Ok(()) }
/// ```
pub fn max_recursion_depth(mut self, value: u8) -> Self {
self.settings.max_recursion_depth = value;
self
}
/// Sets the maximum size in bytes of non-container packets.
///
/// Packets that exceed this limit will be returned as
/// `Packet::Unknown`, with the error set to
/// `Error::PacketTooLarge`.
///
/// This limit applies to any packet type that is *not* a
/// container packet, i.e. any packet that is not a literal data
/// packet, a compressed data packet, a symmetrically encrypted
/// data packet, or an AEAD encrypted data packet.
///
/// The default is [`DEFAULT_MAX_PACKET_SIZE`].
///
/// [`DEFAULT_MAX_PACKET_SIZE`]: crate::parse::DEFAULT_MAX_PACKET_SIZE
///
/// # Examples
///
/// ```rust
/// # fn main() -> sequoia_openpgp::Result<()> {
/// use sequoia_openpgp as openpgp;
/// use openpgp::{Error, Packet};
/// use openpgp::packet::Tag;
/// use openpgp::parse::{Parse, PacketParserResult, PacketParserBuilder};
/// use openpgp::serialize::MarshalInto;
///
/// // Parse a signed message.
/// let message_data: &[u8] = // ...
/// # include_bytes!("../../tests/data/messages/signed-1.gpg");
/// let mut ppr = PacketParserBuilder::from_bytes(message_data)?
/// .max_packet_size(256) // Only parse 256 bytes of headers.
/// .buffer_unread_content() // Used below.
/// .build()?;
/// while let PacketParserResult::Some(mut pp) = ppr {
/// match &pp.packet {
/// Packet::OnePassSig(p) =>
/// // The OnePassSig packet was small enough.
/// assert!(p.serialized_len() < 256),
/// Packet::Literal(p) =>
/// // Likewise the `Literal` packet, excluding the body.
/// assert!(p.serialized_len() - p.body().len() < 256),
/// Packet::Unknown(p) =>
/// // The signature packet was too big.
/// assert_eq!(
/// &Error::PacketTooLarge(Tag::Signature, 307, 256),
/// p.error().downcast_ref().unwrap()),
/// _ => unreachable!(),
/// }
///
/// // Start parsing the next packet, recursing.
/// ppr = pp.recurse()?.1;
/// }
/// # Ok(()) }
/// ```
pub fn max_packet_size(mut self, value: u32) -> Self {
self.settings.max_packet_size = value;
self
}
/// Causes `PacketParser::build()` to buffer any unread content.
///
/// The unread content can be accessed using [`Literal::body`],
/// [`Unknown::body`], or [`Container::body`].
///
/// [`Literal::body`]: crate::packet::Literal::body()
/// [`Unknown::body`]: crate::packet::Unknown::body()
/// [`Container::body`]: crate::packet::Container::body()
///
/// # Examples
///
/// ```rust
/// # fn main() -> sequoia_openpgp::Result<()> {
/// use sequoia_openpgp as openpgp;
/// use openpgp::Packet;
/// use openpgp::parse::{Parse, PacketParserResult, PacketParserBuilder};
///
/// // Parse a simple message.
/// let message_data = b"\xcb\x12t\x00\x00\x00\x00\x00Hello world.";
/// let mut ppr = PacketParserBuilder::from_bytes(message_data)?
/// .buffer_unread_content()
/// .build()?;
/// while let PacketParserResult::Some(mut pp) = ppr {
/// // Start parsing the next packet, recursing.
/// let (packet, tmp) = pp.recurse()?;
/// ppr = tmp;
///
/// match packet {
/// Packet::Literal(l) => assert_eq!(l.body(), b"Hello world."),
/// _ => unreachable!(),
/// }
/// }
/// # Ok(()) }
/// ```
pub fn buffer_unread_content(mut self) -> Self {
self.settings.buffer_unread_content = true;
self
}
/// Causes `PacketParser::finish()` to drop any unread content.
///
/// This is the default.
///
/// # Examples
///
/// ```rust
/// # fn main() -> sequoia_openpgp::Result<()> {
/// use sequoia_openpgp as openpgp;
/// use openpgp::Packet;
/// use openpgp::parse::{Parse, PacketParserResult, PacketParserBuilder};
///
/// // Parse a simple message.
/// let message_data = b"\xcb\x12t\x00\x00\x00\x00\x00Hello world.";
/// let mut ppr = PacketParserBuilder::from_bytes(message_data)?
/// .drop_unread_content()
/// .build()?;
/// while let PacketParserResult::Some(mut pp) = ppr {
/// // Start parsing the next packet, recursing.
/// let (packet, tmp) = pp.recurse()?;
/// ppr = tmp;
///
/// match packet {
/// Packet::Literal(l) => assert_eq!(l.body(), b""),
/// _ => unreachable!(),
/// }
/// }
/// # Ok(()) }
/// ```
pub fn drop_unread_content(mut self) -> Self {
self.settings.buffer_unread_content = false;
self
}
/// Controls mapping.
///
/// Note that enabling mapping buffers all the data.
///
/// # Examples
///
/// ```
/// # fn main() -> sequoia_openpgp::Result<()> {
/// use sequoia_openpgp as openpgp;
/// use openpgp::parse::{Parse, PacketParserBuilder};
///
/// let message_data = b"\xcb\x12t\x00\x00\x00\x00\x00Hello world.";
/// let pp = PacketParserBuilder::from_bytes(message_data)?
/// .map(true) // Enable mapping.
/// .build()?
/// .expect("One packet, not EOF");
/// let map = pp.map().expect("Mapping is enabled");
///
/// assert_eq!(map.iter().nth(0).unwrap().name(), "CTB");
/// assert_eq!(map.iter().nth(0).unwrap().offset(), 0);
/// assert_eq!(map.iter().nth(0).unwrap().as_bytes(), &[0xcb]);
/// # Ok(()) }
/// ```
pub fn map(mut self, enable: bool) -> Self {
self.settings.map = enable;
self
}
/// Controls dearmoring.
///
/// By default, if the input does not appear to be plain binary
/// OpenPGP data, we assume that it is ASCII-armored. This method
/// can be used to tweak the behavior. See [`Dearmor`] for
/// details.
///
///
/// # Examples
///
/// ```
/// # fn main() -> sequoia_openpgp::Result<()> {
/// use sequoia_openpgp as openpgp;
/// use openpgp::parse::{Parse, PacketParserBuilder, Dearmor};
///
/// let message_data = b"\xcb\x12t\x00\x00\x00\x00\x00Hello world.";
/// let pp = PacketParserBuilder::from_bytes(message_data)?
/// .dearmor(Dearmor::Disabled) // Disable dearmoring.
/// .build()?
/// .expect("One packet, not EOF");
/// # Ok(()) }
/// ```
pub fn dearmor(mut self, mode: Dearmor) -> Self {
self.dearmor = mode;
self
}
/// Controls automatic hashing.
///
/// When encountering a [`OnePassSig`] packet, the packet parser
/// will, by default, start hashing later packets using the hash
/// algorithm specified in the packet. In some cases, this is not
/// needed, and hashing will incur a non-trivial overhead.
///
/// If automatic hashing is disabled, then hashing may be
/// explicitly enabled using [`PacketParser::start_hashing`] while
/// parsing each [`OnePassSig`] packet.
///
/// [`OnePassSig`]: crate::packet::OnePassSig
///
/// # Examples
///
/// ```
/// # fn main() -> sequoia_openpgp::Result<()> {
/// # use sequoia_openpgp as openpgp;
/// # use openpgp::parse::{Parse, PacketParserBuilder};
/// #
/// let message_data = b"\xcb\x12t\x00\x00\x00\x00\x00Hello world.";
/// let pp = PacketParserBuilder::from_bytes(message_data)?
/// .automatic_hashing(false) // Disable automatic hashing.
/// .build()?
/// .expect("One packet, not EOF");
/// # Ok(()) }
/// ```
pub fn automatic_hashing(mut self, enable: bool) -> Self {
self.settings.automatic_hashing = enable;
self
}
/// Controls transparent transformation of messages using the
/// cleartext signature framework into signed messages.
///
/// XXX: This could be controlled by `Dearmor`, but we cannot add
/// values to that now.
pub(crate) fn csf_transformation(mut self, enable: bool) -> Self {
self.csf_transformation = enable;
self
}
/// Builds the `PacketParser`.
///
/// # Examples
///
/// ```rust
/// # fn main() -> sequoia_openpgp::Result<()> {
/// use sequoia_openpgp as openpgp;
/// use openpgp::parse::{Parse, PacketParserResult, PacketParserBuilder};
///
/// // Parse a message.
/// let message_data: &[u8] = // ...
/// # include_bytes!("../../tests/data/messages/compressed-data-algo-0.pgp");
/// let mut ppr = PacketParserBuilder::from_bytes(message_data)?
/// // Customize the `PacketParserBuilder` here.
/// .build()?;
/// while let PacketParserResult::Some(mut pp) = ppr {
/// // ...
///
/// // Start parsing the next packet, recursing.
/// ppr = pp.recurse()?.1;
/// }
/// # Ok(()) }
#[allow(clippy::redundant_pattern_matching)]
pub fn build(mut self)
-> Result<PacketParserResult<'a>>
where Self: 'a
{
let state = PacketParserState::new(self.settings);
let dearmor_mode = match self.dearmor {
Dearmor::Enabled(mode) => Some(mode),
Dearmor::Disabled => None,
Dearmor::Auto(mode) => {
if self.bio.eof() {
None
} else {
let mut reader = buffered_reader::Dup::with_cookie(
self.bio, Cookie::default());
let header = packet::Header::parse(&mut reader);
self.bio = Box::new(reader).into_inner().unwrap();
if let Ok(header) = header {
if let Err(_) = header.valid(false) {
// Invalid header: better try an ASCII armor
// decoder.
Some(mode)
} else {
None
}
} else {
// Failed to parse the header: better try an ASCII
// armor decoder.
Some(mode)
}
}
}
};
if let Some(mode) = dearmor_mode {
// Add a top-level filter so that it is peeled off when
// the packet parser is finished. We use level -2 for that.
self.bio =
armor::Reader::from_cookie_reader_csft(self.bio, Some(mode),
Cookie::new(ARMOR_READER_LEVEL), self.csf_transformation)
.into_boxed();
}
// Parse the first packet.
match PacketParser::parse(Box::new(self.bio), state, vec![ 0 ])? {
ParserResult::Success(mut pp) => {
// We successfully parsed the first packet's header.
pp.state.message_validator.push(
pp.packet.tag(), pp.packet.version(), &[0]);
pp.state.keyring_validator.push(pp.packet.tag());
pp.state.cert_validator.push(pp.packet.tag());
Ok(PacketParserResult::Some(pp))
},
ParserResult::EOF((reader, state, _path)) => {
// `bio` is empty. We're done.
Ok(PacketParserResult::EOF(PacketParserEOF::new(state, reader)))
}
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn armor() {
// Not ASCII armor encoded data.
let msg = crate::tests::message("sig.gpg");
// Make sure we can read the first packet.
let ppr = PacketParserBuilder::from_bytes(msg).unwrap()
.dearmor(Dearmor::Disabled)
.build();
assert_match!(Ok(PacketParserResult::Some(ref _pp)) = ppr);
let ppr = PacketParserBuilder::from_bytes(msg).unwrap()
.dearmor(Dearmor::Auto(Default::default()))
.build();
assert_match!(Ok(PacketParserResult::Some(ref _pp)) = ppr);
let ppr = PacketParserBuilder::from_bytes(msg).unwrap()
.dearmor(Dearmor::Enabled(Default::default()))
.build();
assert_match!(Err(_) = ppr);
// ASCII armor encoded data.
let msg = crate::tests::message("a-cypherpunks-manifesto.txt.ed25519.sig");
// Make sure we can read the first packet.
let ppr = PacketParserBuilder::from_bytes(msg).unwrap()
.dearmor(Dearmor::Disabled)
.build();
assert_match!(Err(_) = ppr);
let ppr = PacketParserBuilder::from_bytes(msg).unwrap()
.dearmor(Dearmor::Auto(Default::default()))
.build();
assert_match!(Ok(PacketParserResult::Some(ref _pp)) = ppr);
let ppr = PacketParserBuilder::from_bytes(msg).unwrap()
.dearmor(Dearmor::Enabled(Default::default()))
.build();
assert_match!(Ok(PacketParserResult::Some(ref _pp)) = ppr);
}
}