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
//! Provides a "nice" wrapper around paseto tokens in order to check things such as "Expiration".
//! Issuer, etc.

use crate::errors::GenericError;

#[cfg(feature = "v1")]
use crate::v1::{decrypt_paseto as V1Decrypt, verify_paseto as V1Verify};
#[cfg(feature = "v2")]
use crate::v2::{decrypt_paseto as V2Decrypt, verify_paseto as V2Verify};

use chrono::prelude::*;
use failure::Error;
#[cfg(feature = "v2")]
use ring::signature::Ed25519KeyPair;
use ring::signature::KeyPair;
use serde_json::{from_str as ParseJson, Value as JsonValue};

pub mod builder;
pub use self::builder::*;

/// Wraps the two paseto public key types so we can just have a "validate_public_token"
/// method without splitting the two implementations.
pub enum PasetoPublicKey {
  #[cfg(feature = "v1")]
  RSAPublicKey(Vec<u8>),
  #[cfg(feature = "v2")]
  ED25519KeyPair(Ed25519KeyPair),
  #[cfg(feature = "v2")]
  ED25519PublicKey(Vec<u8>),
}

/// Validates a potential json data blob, returning a JsonValue.
///
/// This specifically validates:
///   * issued_at
///   * expired
///   * not_before
/// This specifically does not validate:
///   * audience
///   * jti
///   * issuedBy
///   * subject
pub fn validate_potential_json_blob(data: String) -> Result<JsonValue, Error> {
  let value: JsonValue = ParseJson(&data)?;

  let validation = {
    let issued_at_opt = value.get("iat");
    let expired_opt = value.get("exp");
    let not_before_opt = value.get("nbf");

    if let Some(issued_at) = issued_at_opt {
      if let Some(iat) = issued_at.as_str() {
        if let Ok(parsed_iat) = iat.parse::<DateTime<Utc>>() {
          if parsed_iat > Utc::now() {
            return Err(GenericError::InvalidToken {})?;
          }
        } else {
          return Err(GenericError::InvalidToken {})?;
        }
      } else {
        return Err(GenericError::InvalidToken {})?;
      }
    }

    if let Some(expired) = expired_opt {
      if let Some(exp) = expired.as_str() {
        if let Ok(parsed_exp) = exp.parse::<DateTime<Utc>>() {
          if parsed_exp < Utc::now() {
            return Err(GenericError::InvalidToken {})?;
          }
        } else {
          return Err(GenericError::InvalidToken {})?;
        }
      } else {
        return Err(GenericError::InvalidToken {})?;
      }
    }

    if let Some(not_before) = not_before_opt {
      if let Some(nbf) = not_before.as_str() {
        if let Ok(parsed_nbf) = nbf.parse::<DateTime<Utc>>() {
          if parsed_nbf > Utc::now() {
            return Err(GenericError::InvalidToken {})?;
          }
        } else {
          return Err(GenericError::InvalidToken {})?;
        }
      } else {
        return Err(GenericError::InvalidToken {})?;
      }
    }

    Ok(())
  };

  if validation.is_err() {
    validation.err().unwrap()
  } else {
    Ok(value)
  }
}

/// Validate a local token for V1, or V2.
///
/// This specifically validates:
///   * issued_at
///   * expired
///   * not_before
/// This specifically does not validate:
///   * audience
///   * jti
///   * issuedBy
///   * subject
/// Because we validate these fields the resulting type must be a json object. If it's not
/// please use the protocol impls directly.
#[cfg(all(feature = "v1", feature = "v2"))]
pub fn validate_local_token(token: String, footer: Option<String>, mut key: Vec<u8>) -> Result<JsonValue, Error> {
  if token.starts_with("v2.local.") {
    let token = V2Decrypt(token, footer, &mut key)?;
    return validate_potential_json_blob(token);
  } else if token.starts_with("v1.local.") {
    let token = V1Decrypt(token, footer, &key)?;
    return validate_potential_json_blob(token);
  }

  return Err(GenericError::InvalidToken {})?;
}

/// Validate a local token for V1.
///
/// This specifically validates:
///   * issued_at
///   * expired
///   * not_before
/// This specifically does not validate:
///   * audience
///   * jti
///   * issuedBy
///   * subject
/// Because we validate these fields the resulting type must be a json object. If it's not
/// please use the protocol impls directly.
#[cfg(all(feature = "v1", not(feature = "v2")))]
pub fn validate_local_token(token: String, footer: Option<String>, key: Vec<u8>) -> Result<Jsonvalue, Error> {
  let token = V1Decrypt(token, footer, &key)?;
  return validate_potential_json_blob(token);
}

/// Validate a local token for V2.
///
/// This specifically validates:
///   * issued_at
///   * expired
///   * not_before
/// This specifically does not validate:
///   * audience
///   * jti
///   * issuedBy
///   * subject
/// Because we validate these fields the resulting type must be a json object. If it's not
/// please use the protocol impls directly.
#[cfg(all(feature = "v2", not(feature = "v1")))]
pub fn validate_local_token(token: String, footer: Option<String>, mut key: Vec<u8>) -> Result<Jsonvalue, Error> {
  let token = V2Decrypt(token, footer, &mut key)?;
  return validate_potential_json_blob(token);
}

/// Validate a public token for V1, or V2.
///
/// This specifically validates:
///   * issued_at
///   * expired
///   * not_before
/// This specifically does not validate:
///   * audience
///   * jti
///   * issuedBy
///   * subject
/// Because we validate these fields the resulting type must be a json object. If it's not
/// please use the protocol impls directly.
pub fn validate_public_token(token: String, footer: Option<String>, key: PasetoPublicKey) -> Result<JsonValue, Error> {
  if token.starts_with("v2.public.") {
    return match key {
      PasetoPublicKey::ED25519KeyPair(key_pair) => {
        let internal_msg = V2Verify(token, footer, key_pair.public_key().as_ref())?;
        validate_potential_json_blob(internal_msg)
      },
      PasetoPublicKey::ED25519PublicKey(pub_key_contents) => {
        let internal_msg = V2Verify(token, footer, &pub_key_contents)?;
        validate_potential_json_blob(internal_msg)
      },
      _ => Err(GenericError::NoKeyProvided {})?,
    };
  } else if token.starts_with("v1.public.") {
    return match key {
      PasetoPublicKey::RSAPublicKey(key_content) => {
        let internal_msg = V1Verify(token, footer, &key_content)?;
        validate_potential_json_blob(internal_msg)
      }
      _ => Err(GenericError::NoKeyProvided {})?,
    };
  }

  return Err(GenericError::InvalidToken {})?;
}

/// Validate a public token for V1.
///
/// This specifically validates:
///   * issued_at
///   * expired
///   * not_before
/// This specifically does not validate:
///   * audience
///   * jti
///   * issuedBy
///   * subject
/// Because we validate these fields the resulting type must be a json object. If it's not
/// please use the protocol impls directly.
#[cfg(all(feature = "v1", not(feature = "v2")))]
pub fn validate_public_token(token: String, footer: Option<String>, key: PasetoPublicKey) -> Result<Jsonvalue, Error> {
  return match key {
    PasetoPublicKey::RSAPublicKey(key_content) => {
      let internal_msg = V1Verify(token, footer, &key_content)?;
      validate_potential_json_blob(internal_msg)
    }
    _ => Err(GenericError::NoKeyProvided {})?,
  };
}

/// Validate a public token for V2.
///
/// This specifically validates:
///   * issued_at
///   * expired
///   * not_before
/// This specifically does not validate:
///   * audience
///   * jti
///   * issuedBy
///   * subject
/// Because we validate these fields the resulting type must be a json object. If it's not
/// please use the protocol impls directly.
#[cfg(all(feature = "v2", not(feature = "v1")))]
pub fn validate_public_token(token: String, footer: Option<String>, key: PasetoPublicKey) -> Result<Jsonvalue, Error> {
  return match key {
    PasetoPublicKey::ED25519KeyPair(key_pair) => {
      let internal_msg = V2Verify(token, footer, &key_pair)?;
      validate_potential_json_blob(internal_msg)
    }
    _ => Err(GenericError::NoKeyProvided {})?,
  };
}

#[cfg(test)]
mod unit_tests {
  use super::*;

  use ring::rand::SystemRandom;
  use serde_json::json;

  #[test]
  fn valid_enc_token_passes_test() {
    let current_date_time = Utc::now();
    let dt = Utc.ymd(current_date_time.year() + 1, 7, 8).and_hms(9, 10, 11);

    let token = PasetoBuilder::new()
      .set_encryption_key(Vec::from("YELLOW SUBMARINE, BLACK WIZARDRY".as_bytes()))
      .set_issued_at(None)
      .set_expiration(dt)
      .set_issuer(String::from("issuer"))
      .set_audience(String::from("audience"))
      .set_jti(String::from("jti"))
      .set_not_before(Utc::now())
      .set_subject(String::from("test"))
      .set_claim(String::from("claim"), json!(String::from("data")))
      .set_footer(String::from("footer"))
      .build()
      .expect("Failed to construct paseto token w/ builder!");

    validate_local_token(
      token,
      Some(String::from("footer")),
      Vec::from("YELLOW SUBMARINE, BLACK WIZARDRY".as_bytes()),
    )
    .expect("Failed to validate token!");
  }

  #[test]
  fn invalid_enc_token_doesnt_validate() {
    let current_date_time = Utc::now();
    let dt = Utc.ymd(current_date_time.year() - 1, 7, 8).and_hms(9, 10, 11);

    let token = PasetoBuilder::new()
      .set_encryption_key(Vec::from("YELLOW SUBMARINE, BLACK WIZARDRY".as_bytes()))
      .set_issued_at(None)
      .set_expiration(dt)
      .set_issuer(String::from("issuer"))
      .set_audience(String::from("audience"))
      .set_jti(String::from("jti"))
      .set_not_before(Utc::now())
      .set_subject(String::from("test"))
      .set_claim(String::from("claim"), json!(String::from("data")))
      .set_footer(String::from("footer"))
      .build()
      .expect("Failed to construct paseto token w/ builder!");

    assert!(validate_local_token(
      token,
      Some(String::from("footer")),
      Vec::from("YELLOW SUBMARINE, BLACK WIZARDRY".as_bytes())
    )
    .is_err());
  }

  #[test]
  fn valid_pub_token_passes_test() {
    let current_date_time = Utc::now();
    let dt = Utc.ymd(current_date_time.year() + 1, 7, 8).and_hms(9, 10, 11);

    let sys_rand = SystemRandom::new();
    let key_pkcs8 = Ed25519KeyPair::generate_pkcs8(&sys_rand).expect("Failed to generate pkcs8 key!");
    let as_key = Ed25519KeyPair::from_pkcs8(key_pkcs8.as_ref()).expect("Failed to parse keypair");
    let cloned_key = Ed25519KeyPair::from_pkcs8(key_pkcs8.as_ref()).expect("Failed to parse keypair");

    let token = PasetoBuilder::new()
      .set_ed25519_key(as_key)
      .set_issued_at(None)
      .set_expiration(dt)
      .set_issuer(String::from("issuer"))
      .set_audience(String::from("audience"))
      .set_jti(String::from("jti"))
      .set_not_before(Utc::now())
      .set_subject(String::from("test"))
      .set_claim(String::from("claim"), json!(String::from("data")))
      .set_footer(String::from("footer"))
      .build()
      .expect("Failed to construct paseto token w/ builder!");

    validate_public_token(
      token,
      Some(String::from("footer")),
      PasetoPublicKey::ED25519KeyPair(cloned_key),
    )
    .expect("Failed to validate token!");
  }

  #[test]
  fn validate_pub_key_only_v2() {
    let current_date_time = Utc::now();
    let dt = Utc.ymd(current_date_time.year() + 1, 7, 8).and_hms(9, 10, 11);

    let sys_rand = SystemRandom::new();
    let key_pkcs8 = Ed25519KeyPair::generate_pkcs8(&sys_rand).expect("Failed to generate pkcs8 key!");
    let as_key = Ed25519KeyPair::from_pkcs8(key_pkcs8.as_ref()).expect("Failed to parse keypair");
    let cloned_key = Ed25519KeyPair::from_pkcs8(key_pkcs8.as_ref()).expect("Failed to parse keypair");

    let token = PasetoBuilder::new()
      .set_ed25519_key(as_key)
      .set_issued_at(None)
      .set_expiration(dt)
      .set_issuer(String::from("issuer"))
      .set_audience(String::from("audience"))
      .set_jti(String::from("jti"))
      .set_not_before(Utc::now())
      .set_subject(String::from("test"))
      .set_claim(String::from("claim"), json!(String::from("data")))
      .set_footer(String::from("footer"))
      .build()
      .expect("Failed to construct paseto token w/ builder!");

    validate_public_token(
      token,
      Some(String::from("footer")),
      PasetoPublicKey::ED25519PublicKey(Vec::from(cloned_key.public_key().as_ref())),
    )
    .expect("Failed to validate token!");
  }

  #[test]
  fn invalid_pub_token_doesnt_validate() {
    let current_date_time = Utc::now();
    let dt = Utc.ymd(current_date_time.year() - 1, 7, 8).and_hms(9, 10, 11);

    let sys_rand = SystemRandom::new();
    let key_pkcs8 = Ed25519KeyPair::generate_pkcs8(&sys_rand).expect("Failed to generate pkcs8 key!");
    let as_key = Ed25519KeyPair::from_pkcs8(key_pkcs8.as_ref()).expect("Failed to parse keypair");
    let cloned_key = Ed25519KeyPair::from_pkcs8(key_pkcs8.as_ref()).expect("Failed to parse keypair");

    let token = PasetoBuilder::new()
      .set_ed25519_key(as_key)
      .set_issued_at(None)
      .set_expiration(dt)
      .set_issuer(String::from("issuer"))
      .set_audience(String::from("audience"))
      .set_jti(String::from("jti"))
      .set_not_before(Utc::now())
      .set_subject(String::from("test"))
      .set_claim(String::from("claim"), json!(String::from("data")))
      .set_footer(String::from("footer"))
      .build()
      .expect("Failed to construct paseto token w/ builder!");

    assert!(validate_public_token(
      token,
      Some(String::from("footer")),
      PasetoPublicKey::ED25519KeyPair(cloned_key)
    )
    .is_err());
  }
}