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
//! Module to serialize and enarmor a Cert and add informative headers.
use std::io;
use std::str;
use crate::armor;
use crate::cert::{Cert, amalgamation::ValidAmalgamation};
use crate::Result;
use crate::types::RevocationStatus;
use crate::seal;
use crate::serialize::{
Marshal, MarshalInto,
generic_serialize_into, generic_export_into,
TSK,
};
use crate::policy::StandardPolicy as P;
/// Whether or not a character is printable.
pub(crate) fn is_printable(c: &char) -> bool {
// c.is_ascii_alphanumeric || c.is_whitespace || c.is_ascii_punctuation
// would exclude any utf8 character, so it seems that to obtain all
// printable chars, it works just excluding the control chars.
!c.is_control() && !c.is_ascii_control()
}
impl Cert {
/// Creates descriptive armor headers.
///
/// Returns armor headers that describe this Cert. The Cert's
/// primary fingerprint and valid userids (according to the
/// default policy) are included as comments, so that it is easier
/// to identify the Cert when looking at the armored data.
pub fn armor_headers(&self) -> Vec<String> {
let p = &P::default();
let length_value = armor::LINE_LENGTH - "Comment: ".len();
// Create a header per userid.
let mut headers: Vec<String> = self.userids().with_policy(p, None)
// Ignore revoked userids.
.filter(|uidb| {
!matches!(uidb.revocation_status(), RevocationStatus::Revoked(_))
// Ignore userids with non-printable characters.
}).filter_map(|uidb| {
let value = str::from_utf8(uidb.userid().value()).ok()?;
for c in value.chars().take(length_value) {
if !is_printable(&c){
return None;
}
}
// Make sure the line length does not exceed armor::LINE_LENGTH
Some(value.chars().take(length_value).collect())
}).collect();
// Add the fingerprint to the front.
headers.insert(0, self.fingerprint().to_spaced_hex());
headers
}
/// Wraps this Cert in an armor structure when serialized.
///
/// Derives an object from this `Cert` that adds an armor structure
/// to the serialized `Cert` when it is serialized. Additionally,
/// the `Cert`'s User IDs are added as comments, so that it is easier
/// to identify the Cert when looking at the armored data.
///
/// # Examples
///
/// ```rust
/// use sequoia_openpgp as openpgp;
/// use openpgp::cert::prelude::*;
/// use openpgp::serialize::SerializeInto;
///
/// # fn main() -> openpgp::Result<()> {
/// let (cert, _) =
/// CertBuilder::general_purpose(None, Some("Mr. Pink ☮☮☮"))
/// .generate()?;
/// let armored = String::from_utf8(cert.armored().to_vec()?)?;
///
/// assert!(armored.starts_with("-----BEGIN PGP PUBLIC KEY BLOCK-----"));
/// assert!(armored.contains("Mr. Pink ☮☮☮"));
/// # Ok(()) }
/// ```
pub fn armored(&self)
-> impl crate::serialize::Serialize + crate::serialize::SerializeInto + '_
{
Encoder::new(self)
}
}
impl<'a> TSK<'a> {
/// Wraps this TSK in an armor structure when serialized.
///
/// Derives an object from this `TSK` that adds an armor structure
/// to the serialized `TSK` when it is serialized. Additionally,
/// the `TSK`'s User IDs are added as comments, so that it is easier
/// to identify the `TSK` when looking at the armored data.
///
/// # Examples
///
/// ```rust
/// use sequoia_openpgp as openpgp;
/// use openpgp::cert::prelude::*;
/// use openpgp::serialize::SerializeInto;
///
/// # fn main() -> openpgp::Result<()> {
/// let (cert, _) =
/// CertBuilder::general_purpose(None, Some("Mr. Pink ☮☮☮"))
/// .generate()?;
/// let armored = String::from_utf8(cert.as_tsk().armored().to_vec()?)?;
///
/// assert!(armored.starts_with("-----BEGIN PGP PRIVATE KEY BLOCK-----"));
/// assert!(armored.contains("Mr. Pink ☮☮☮"));
/// # Ok(()) }
/// ```
pub fn armored(self)
-> impl crate::serialize::Serialize + crate::serialize::SerializeInto + 'a
{
Encoder::new_tsk(self)
}
}
/// A `Cert` or `TSK` to be armored and serialized.
#[allow(clippy::upper_case_acronyms)]
enum Encoder<'a> {
Cert(&'a Cert),
TSK(TSK<'a>),
}
impl<'a> Encoder<'a> {
/// Returns a new Encoder to enarmor and serialize a `Cert`.
fn new(cert: &'a Cert) -> Self {
Encoder::Cert(cert)
}
/// Returns a new Encoder to enarmor and serialize a `TSK`.
fn new_tsk(tsk: TSK<'a>) -> Self {
Encoder::TSK(tsk)
}
fn serialize_common(&self, o: &mut dyn io::Write, export: bool)
-> Result<()> {
if export {
let exportable = match self {
Encoder::Cert(cert) => cert.exportable(),
Encoder::TSK(tsk) => tsk.cert.exportable(),
};
if ! exportable {
return Ok(());
}
}
let (prelude, headers) = match self {
Encoder::Cert(cert) =>
(armor::Kind::PublicKey, cert.armor_headers()),
Encoder::TSK(tsk) => if tsk.emits_secret_key_packets() {
(armor::Kind::SecretKey, tsk.cert.armor_headers())
} else {
(armor::Kind::PublicKey, tsk.cert.armor_headers())
},
};
// Convert the Vec<String> into Vec<(&str, &str)>
// `iter_into` can not be used here because will take ownership and
// what is needed is the reference.
let headers: Vec<_> = headers.iter()
.map(|value| ("Comment", value.as_str()))
.collect();
let mut w =
armor::Writer::with_headers(o, prelude, headers)?;
if export {
match self {
Encoder::Cert(cert) => cert.export(&mut w)?,
Encoder::TSK(ref tsk) => tsk.export(&mut w)?,
}
} else {
match self {
Encoder::Cert(cert) => cert.serialize(&mut w)?,
Encoder::TSK(ref tsk) => tsk.serialize(&mut w)?,
}
}
w.finalize()?;
Ok(())
}
}
impl<'a> crate::serialize::Serialize for Encoder<'a> {}
impl<'a> seal::Sealed for Encoder<'a> {}
impl<'a> Marshal for Encoder<'a> {
fn serialize(&self, o: &mut dyn io::Write) -> Result<()> {
self.serialize_common(o, false)
}
fn export(&self, o: &mut dyn io::Write) -> Result<()> {
self.serialize_common(o, true)
}
}
impl<'a> crate::serialize::SerializeInto for Encoder<'a> {}
impl<'a> MarshalInto for Encoder<'a> {
fn serialized_len(&self) -> usize {
let h = match self {
Encoder::Cert(cert) => cert.armor_headers(),
Encoder::TSK(ref tsk) => tsk.cert.armor_headers(),
};
let headers_len =
("Comment: ".len() + 1 /* NL */) * h.len()
+ h.iter().map(|c| c.len()).sum::<usize>();
let body_len = (match self {
Self::Cert(cert) => cert.serialized_len(),
Self::TSK(ref tsk) => tsk.serialized_len(),
} + 2) / 3 * 4; // base64
let word = match self {
Self::Cert(_) => "PUBLIC",
Self::TSK(tsk) => if tsk.emits_secret_key_packets() {
"PRIVATE"
} else {
"PUBLIC"
},
}.len();
"-----BEGIN PGP ".len() + word + " KEY BLOCK-----\n\n".len()
+ headers_len
+ body_len
+ (body_len + armor::LINE_LENGTH - 1) / armor::LINE_LENGTH // NLs
+ "=FUaG\n-----END PGP ".len() + word + " KEY BLOCK-----\n".len()
}
fn serialize_into(&self, buf: &mut [u8]) -> Result<usize> {
generic_serialize_into(self, self.serialized_len(), buf)
}
fn export_into(&self, buf: &mut [u8]) -> Result<usize> {
generic_export_into(self, self.serialized_len(), buf)
}
}
#[cfg(test)]
mod tests {
use crate::armor::{Kind, Reader, ReaderMode};
use crate::cert::prelude::*;
use crate::parse::Parse;
use super::*;
#[test]
fn is_printable_succeed() {
let chars: Vec<char> = vec![
'a', 'z', 'A', 'Z', '1', '9', '0',
'|', '!', '#', '$', '%', '^', '&', '*', '-', '+', '/',
// The following unicode characters were taken from:
// https://doc.rust-lang.org/std/primitive.char.html
'é', 'ß', 'ℝ', '💣', '❤', '東', '京', '𝕊', '💝', 'δ',
'Δ', '中', '越', '٣', '7', '৬', '¾', '①', 'K',
'و', '藏', '山', 'I', 'ï', 'İ', 'i'
];
for c in &chars {
assert!(is_printable(c));
}
}
#[test]
fn is_printable_fail() {
let chars: Vec<char> = vec![
'\n', 0x1b_u8.into(),
// U+009C, STRING TERMINATOR
''
];
for c in &chars {
assert!(!is_printable(c));
}
}
#[test]
fn serialize_succeed() {
let cert = Cert::from_bytes(crate::tests::key("neal.pgp")).unwrap();
// Enarmor the Cert.
let mut buffer = Vec::new();
cert.armored()
.serialize(&mut buffer)
.unwrap();
// Parse the armor.
let mut cursor = io::Cursor::new(&buffer);
let mut reader = Reader::from_reader(
&mut cursor, ReaderMode::Tolerant(Some(Kind::PublicKey)));
// Extract the headers.
let mut headers: Vec<&str> = reader.headers()
.unwrap()
.into_iter()
.map(|header| {
assert_eq!(&header.0[..], "Comment");
&header.1[..]})
.collect();
headers.sort();
// Ensure the headers are correct
let mut expected_headers = [
"Neal H. Walfield <neal@walfield.org>",
"Neal H. Walfield <neal@gnupg.org>",
"Neal H. Walfield <neal@pep-project.org>",
"Neal H. Walfield <neal@pep.foundation>",
"Neal H. Walfield <neal@sequoia-pgp.org>",
"8F17 7771 18A3 3DDA 9BA4 8E62 AACB 3243 6300 52D9"];
expected_headers.sort();
assert_eq!(&expected_headers[..], &headers[..]);
}
#[test]
fn serialize_length_succeed() {
let length_value = armor::LINE_LENGTH - "Comment: ".len();
// Create userids one character longer than the size allowed in the
// header and expect headers with the correct length.
// 1 byte character
// Can not use `to_string` here because not such method for
//`std::vec::Vec<char>`
let userid1: String = vec!['a'; length_value + 1].into_iter()
.collect();
let userid1_expected: String = vec!['a'; length_value].into_iter()
.collect();
// 2 bytes character.
let userid2: String = vec!['ß'; length_value + 1].into_iter()
.collect();
let userid2_expected: String = vec!['ß'; length_value].into_iter()
.collect();
// 3 bytes character.
let userid3: String = vec!['€'; length_value + 1].into_iter()
.collect();
let userid3_expected: String = vec!['€'; length_value].into_iter()
.collect();
// 4 bytes character.
let userid4: String = vec!['𐍈'; length_value + 1].into_iter()
.collect();
let userid4_expected: String = vec!['𐍈'; length_value].into_iter()
.collect();
let mut userid5 = vec!['a'; length_value];
userid5[length_value-1] = 'ß';
let userid5: String = userid5.into_iter().collect();
// Create a Cert with the userids.
let (cert, _) = CertBuilder::general_purpose(None, Some(&userid1[..]))
.add_userid(&userid2[..])
.add_userid(&userid3[..])
.add_userid(&userid4[..])
.add_userid(&userid5[..])
.generate()
.unwrap();
// Enarmor the Cert.
let mut buffer = Vec::new();
cert.armored()
.serialize(&mut buffer)
.unwrap();
// Parse the armor.
let mut cursor = io::Cursor::new(&buffer);
let mut reader = Reader::from_reader(
&mut cursor, ReaderMode::Tolerant(Some(Kind::PublicKey)));
// Extract the headers.
let mut headers: Vec<&str> = reader.headers()
.unwrap()
.into_iter()
.map(|header| {
assert_eq!(&header.0[..], "Comment");
&header.1[..]})
.skip(1) // Ignore the first header since it is the fingerprint
.collect();
// Cert canonicalization does not preserve the order of
// userids.
headers.sort();
let mut headers_iter = headers.into_iter();
assert_eq!(headers_iter.next().unwrap(), &userid1_expected);
assert_eq!(headers_iter.next().unwrap(), &userid5);
assert_eq!(headers_iter.next().unwrap(), &userid2_expected);
assert_eq!(headers_iter.next().unwrap(), &userid3_expected);
assert_eq!(headers_iter.next().unwrap(), &userid4_expected);
}
#[test]
fn serialize_into() {
let cert = Cert::from_bytes(crate::tests::key("neal.pgp")).unwrap();
let mut v = Vec::new();
cert.armored().serialize(&mut v).unwrap();
let v_ = cert.armored().to_vec().unwrap();
assert_eq!(v, v_);
// Test truncation.
let mut v = vec![0; cert.armored().serialized_len() - 1];
let r = cert.armored().serialize_into(&mut v[..]);
assert_match!(
crate::Error::InvalidArgument(_) =
r.unwrap_err().downcast().expect("not an openpgp::Error"));
}
}