-
Notifications
You must be signed in to change notification settings - Fork 643
/
Copy pathrate_limiter.rs
721 lines (643 loc) · 24.2 KB
/
rate_limiter.rs
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
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
use crate::schema::{publish_limit_buckets, publish_rate_overrides};
use crate::sql::{date_part, floor, greatest, interval_part, least, pg_enum};
use crate::util::errors::{AppResult, TooManyRequests};
use chrono::{NaiveDateTime, Utc};
use diesel::dsl::IntervalDsl;
use diesel::prelude::*;
use diesel::sql_types::Interval;
use std::borrow::Cow;
use std::collections::HashMap;
use std::time::Duration;
pg_enum! {
pub enum LimitedAction {
PublishNew = 0,
PublishUpdate = 1,
YankUnyank = 2,
VerifyEmail = 3,
}
}
impl LimitedAction {
pub fn default_rate_seconds(&self) -> u64 {
match self {
LimitedAction::PublishNew => 10 * 60, // 10 minutes
LimitedAction::PublishUpdate => 60, // 1 minute
LimitedAction::YankUnyank => 60, // 1 minute
LimitedAction::VerifyEmail => 30 * 60, // 30 minutes
}
}
pub fn default_burst(&self) -> i32 {
match self {
LimitedAction::PublishNew => 5,
LimitedAction::PublishUpdate => 30,
LimitedAction::YankUnyank => 100,
LimitedAction::VerifyEmail => 3,
}
}
pub fn env_var_key(&self) -> &'static str {
match self {
LimitedAction::PublishNew => "PUBLISH_NEW",
LimitedAction::PublishUpdate => "PUBLISH_UPDATE",
LimitedAction::YankUnyank => "YANK_UNYANK",
LimitedAction::VerifyEmail => "VERIFY_EMAIL",
}
}
pub fn error_message(&self) -> &'static str {
match self {
LimitedAction::PublishNew => {
"You have published too many new crates in a short period of time"
}
LimitedAction::PublishUpdate => {
"You have published too many updates to existing crates in a short period of time"
}
LimitedAction::YankUnyank => {
"You have yanked or unyanked too many versions in a short period of time"
}
LimitedAction::VerifyEmail => {
"You have attempted to verify too many e-mail addresses in a short period of time"
}
}
}
}
#[derive(Debug, Clone, Copy)]
pub struct RateLimiterConfig {
pub rate: Duration,
pub burst: i32,
}
#[derive(Debug)]
pub struct RateLimiter {
config: HashMap<LimitedAction, RateLimiterConfig>,
}
impl RateLimiter {
pub fn new(config: HashMap<LimitedAction, RateLimiterConfig>) -> Self {
Self { config }
}
pub fn check_rate_limit(
&self,
uploader: i32,
performed_action: LimitedAction,
conn: &mut PgConnection,
) -> AppResult<()> {
let bucket = self.take_token(uploader, performed_action, Utc::now().naive_utc(), conn)?;
if bucket.tokens >= 1 {
Ok(())
} else {
Err(Box::new(TooManyRequests {
action: performed_action,
retry_after: bucket.last_refill
+ chrono::Duration::from_std(self.config_for_action(performed_action).rate)
.unwrap(),
}))
}
}
/// Refill a user's bucket as needed, take a token from it,
/// and returns the result.
///
/// The number of tokens remaining will always be between 0 and self.burst.
/// If the number is 0, the request should be rejected, as the user doesn't
/// have a token to take. Technically a "full" bucket would have
/// `self.burst + 1` tokens in it, but that value would never be returned
/// since we only refill buckets when trying to take a token from it.
fn take_token(
&self,
uploader: i32,
performed_action: LimitedAction,
now: NaiveDateTime,
conn: &mut PgConnection,
) -> QueryResult<Bucket> {
let config = self.config_for_action(performed_action);
let refill_rate = (config.rate.as_millis() as i64).milliseconds();
let burst: i32 = publish_rate_overrides::table
.find((uploader, performed_action))
.filter(
publish_rate_overrides::expires_at
.is_null()
.or(publish_rate_overrides::expires_at.gt(now)),
)
.select(publish_rate_overrides::burst)
.first(conn)
.optional()?
.unwrap_or(config.burst);
// Interval division is poorly defined in general (what is 1 month / 30 days?)
// However, for the intervals we're dealing with, it is always well
// defined, so we convert to an f64 of seconds to represent this.
let tokens_to_add = floor(
(date_part("epoch", now) - date_part("epoch", publish_limit_buckets::last_refill))
/ interval_part("epoch", refill_rate),
);
diesel::insert_into(publish_limit_buckets::table)
.values((
publish_limit_buckets::user_id.eq(uploader),
publish_limit_buckets::action.eq(performed_action),
publish_limit_buckets::tokens.eq(burst),
publish_limit_buckets::last_refill.eq(now),
))
.on_conflict((
publish_limit_buckets::user_id,
publish_limit_buckets::action,
))
.do_update()
.set((
publish_limit_buckets::tokens.eq(least(
burst,
greatest(0, publish_limit_buckets::tokens - 1) + tokens_to_add,
)),
publish_limit_buckets::last_refill.eq(publish_limit_buckets::last_refill
+ refill_rate.into_sql::<Interval>() * tokens_to_add),
))
.get_result(conn)
}
fn config_for_action(&self, action: LimitedAction) -> Cow<'_, RateLimiterConfig> {
// The wrapper returns the default config for the action when not configured.
match self.config.get(&action) {
Some(config) => Cow::Borrowed(config),
None => Cow::Owned(RateLimiterConfig {
rate: Duration::from_secs(action.default_rate_seconds()),
burst: action.default_burst(),
}),
}
}
}
#[derive(Queryable, Insertable, Debug, PartialEq, Clone, Copy)]
#[diesel(table_name = publish_limit_buckets, check_for_backend(diesel::pg::Pg))]
#[allow(dead_code)] // Most fields only read in tests
struct Bucket {
user_id: i32,
tokens: i32,
last_refill: NaiveDateTime,
action: LimitedAction,
}
#[cfg(test)]
mod tests {
use super::*;
use crate::email::Emails;
use crate::test_util::*;
#[test]
fn default_rate_limits() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
// Set the defaults as if no env vars have been set in production
let mut rate_limiter = HashMap::new();
for action in LimitedAction::VARIANTS {
rate_limiter.insert(
*action,
RateLimiterConfig {
rate: Duration::from_secs(action.default_rate_seconds()),
burst: action.default_burst(),
},
);
}
let rate = RateLimiter::new(rate_limiter);
let user_id = new_user_bucket(conn, 5, now)?.user_id;
// Publishing new crates has a burst of 5 and refill time of 1 every 10 minutes, which
// means we should be able to publish every 10 min, always have tokens remaining, and
// set the last_refill based on the refill time.
let action = LimitedAction::PublishNew;
let mut last_refill_times = vec![];
let mut expected_last_refill_times = vec![];
for publish_num in 1..=10 {
let publish_time = now + chrono::Duration::minutes(10 * publish_num);
let bucket = rate.take_token(user_id, action, publish_time, conn)?;
last_refill_times.push(bucket.last_refill);
expected_last_refill_times.push(publish_time);
}
assert_eq!(expected_last_refill_times, last_refill_times);
// Publishing new versions has a burst of 30 and refill time of every minute, which
// means we should be able to publish every min, always have tokens remaining, and
// set the last_refill based on the refill time.
let action = LimitedAction::PublishUpdate;
let mut last_refill_times = vec![];
let mut expected_last_refill_times = vec![];
for publish_num in 1..=35 {
let publish_time = now + chrono::Duration::minutes(publish_num);
let bucket = rate.take_token(user_id, action, publish_time, conn)?;
last_refill_times.push(bucket.last_refill);
expected_last_refill_times.push(publish_time);
}
assert_eq!(expected_last_refill_times, last_refill_times);
// Yanking/unyanking has a burst of 100 and refill time of every minute, which
// means we should be able to yank/unyank every min, always have tokens remaining, and
// set the last_refill based on the refill time.
let action = LimitedAction::YankUnyank;
let mut last_refill_times = vec![];
let mut expected_last_refill_times = vec![];
for publish_num in 1..=110 {
let publish_time = now + chrono::Duration::minutes(publish_num);
let bucket = rate.take_token(user_id, action, publish_time, conn)?;
last_refill_times.push(bucket.last_refill);
expected_last_refill_times.push(publish_time);
}
assert_eq!(expected_last_refill_times, last_refill_times);
// E-mail verification has a burst of 3 and a refill time of 30 minutes, which means we
// should be able to verify an e-mail address every 30 minutes, always have tokens
// remaining, and set the last_refill based on the refill time.
let action = LimitedAction::VerifyEmail;
let mut last_refill_times = vec![];
let mut expected_last_refill_times = vec![];
for publish_num in 1..=3 {
let publish_time = now + chrono::Duration::minutes(30 * publish_num);
let bucket = rate.take_token(user_id, action, publish_time, conn)?;
last_refill_times.push(bucket.last_refill);
expected_last_refill_times.push(publish_time);
}
assert_eq!(expected_last_refill_times, last_refill_times);
Ok(())
}
#[test]
fn take_token_with_no_bucket_creates_new_one() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
let rate = SampleRateLimiter {
rate: Duration::from_secs(1),
burst: 10,
action: LimitedAction::PublishNew,
}
.create();
let bucket = rate.take_token(
new_user(conn, "user1")?,
LimitedAction::PublishNew,
now,
conn,
)?;
let expected = Bucket {
user_id: bucket.user_id,
tokens: 10,
last_refill: now,
action: LimitedAction::PublishNew,
};
assert_eq!(expected, bucket);
let rate = SampleRateLimiter {
rate: Duration::from_millis(50),
burst: 20,
action: LimitedAction::PublishNew,
}
.create();
let bucket = rate.take_token(
new_user(conn, "user2")?,
LimitedAction::PublishNew,
now,
conn,
)?;
let expected = Bucket {
user_id: bucket.user_id,
tokens: 20,
last_refill: now,
action: LimitedAction::PublishNew,
};
assert_eq!(expected, bucket);
Ok(())
}
#[test]
fn take_token_with_existing_bucket_modifies_existing_bucket() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
let rate = SampleRateLimiter {
rate: Duration::from_secs(1),
burst: 10,
action: LimitedAction::PublishNew,
}
.create();
let user_id = new_user_bucket(conn, 5, now)?.user_id;
let bucket = rate.take_token(user_id, LimitedAction::PublishNew, now, conn)?;
let expected = Bucket {
user_id,
tokens: 4,
last_refill: now,
action: LimitedAction::PublishNew,
};
assert_eq!(expected, bucket);
Ok(())
}
#[test]
fn take_token_after_delay_refills() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
let rate = SampleRateLimiter {
rate: Duration::from_secs(1),
burst: 10,
action: LimitedAction::PublishNew,
}
.create();
let user_id = new_user_bucket(conn, 5, now)?.user_id;
let refill_time = now + chrono::Duration::seconds(2);
let bucket = rate.take_token(user_id, LimitedAction::PublishNew, refill_time, conn)?;
let expected = Bucket {
user_id,
tokens: 6,
last_refill: refill_time,
action: LimitedAction::PublishNew,
};
assert_eq!(expected, bucket);
Ok(())
}
#[test]
fn refill_subsecond_rate() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
// Subsecond rates have floating point rounding issues, so use a known
// timestamp that rounds fine
let now =
NaiveDateTime::parse_from_str("2019-03-19T21:11:24.620401", "%Y-%m-%dT%H:%M:%S%.f")
.unwrap();
let rate = SampleRateLimiter {
rate: Duration::from_millis(100),
burst: 10,
action: LimitedAction::PublishNew,
}
.create();
let user_id = new_user_bucket(conn, 5, now)?.user_id;
let refill_time = now + chrono::Duration::milliseconds(300);
let bucket = rate.take_token(user_id, LimitedAction::PublishNew, refill_time, conn)?;
let expected = Bucket {
user_id,
tokens: 7,
last_refill: refill_time,
action: LimitedAction::PublishNew,
};
assert_eq!(expected, bucket);
Ok(())
}
#[test]
fn last_refill_always_advanced_by_multiple_of_rate() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
let rate = SampleRateLimiter {
rate: Duration::from_millis(100),
burst: 10,
action: LimitedAction::PublishNew,
}
.create();
let user_id = new_user_bucket(conn, 5, now)?.user_id;
let bucket = rate.take_token(
user_id,
LimitedAction::PublishNew,
now + chrono::Duration::milliseconds(250),
conn,
)?;
let expected_refill_time = now + chrono::Duration::milliseconds(200);
let expected = Bucket {
user_id,
tokens: 6,
last_refill: expected_refill_time,
action: LimitedAction::PublishNew,
};
assert_eq!(expected, bucket);
Ok(())
}
#[test]
fn zero_tokens_returned_when_user_has_no_tokens_left() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
let rate = SampleRateLimiter {
rate: Duration::from_secs(1),
burst: 10,
action: LimitedAction::PublishNew,
}
.create();
let user_id = new_user_bucket(conn, 1, now)?.user_id;
let bucket = rate.take_token(user_id, LimitedAction::PublishNew, now, conn)?;
let expected = Bucket {
user_id,
tokens: 0,
last_refill: now,
action: LimitedAction::PublishNew,
};
assert_eq!(expected, bucket);
let bucket = rate.take_token(user_id, LimitedAction::PublishNew, now, conn)?;
assert_eq!(expected, bucket);
Ok(())
}
#[test]
fn a_user_with_no_tokens_gets_a_token_after_exactly_rate() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
let rate = SampleRateLimiter {
rate: Duration::from_secs(1),
burst: 10,
action: LimitedAction::PublishNew,
}
.create();
let user_id = new_user_bucket(conn, 0, now)?.user_id;
let refill_time = now + chrono::Duration::seconds(1);
let bucket = rate.take_token(user_id, LimitedAction::PublishNew, refill_time, conn)?;
let expected = Bucket {
user_id,
tokens: 1,
last_refill: refill_time,
action: LimitedAction::PublishNew,
};
assert_eq!(expected, bucket);
Ok(())
}
#[test]
fn tokens_never_refill_past_burst() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
let rate = SampleRateLimiter {
rate: Duration::from_secs(1),
burst: 10,
action: LimitedAction::PublishNew,
}
.create();
let user_id = new_user_bucket(conn, 8, now)?.user_id;
let refill_time = now + chrono::Duration::seconds(4);
let bucket = rate.take_token(user_id, LimitedAction::PublishNew, refill_time, conn)?;
let expected = Bucket {
user_id,
tokens: 10,
last_refill: refill_time,
action: LimitedAction::PublishNew,
};
assert_eq!(expected, bucket);
Ok(())
}
#[test]
fn two_actions_dont_interfere_with_each_other() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
let mut config = HashMap::new();
config.insert(
LimitedAction::PublishNew,
RateLimiterConfig {
rate: Duration::from_secs(1),
burst: 10,
},
);
config.insert(
LimitedAction::YankUnyank,
RateLimiterConfig {
rate: Duration::from_secs(1),
burst: 20,
},
);
let rate = RateLimiter::new(config);
let user_id = new_user(conn, "user")?;
assert_eq!(
10,
rate.take_token(user_id, LimitedAction::PublishNew, now, conn)?
.tokens
);
assert_eq!(
9,
rate.take_token(user_id, LimitedAction::PublishNew, now, conn)?
.tokens
);
assert_eq!(
20,
rate.take_token(user_id, LimitedAction::YankUnyank, now, conn)?
.tokens
);
Ok(())
}
#[test]
fn override_is_used_instead_of_global_burst_if_present() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
let rate = SampleRateLimiter {
rate: Duration::from_secs(1),
burst: 10,
action: LimitedAction::PublishNew,
}
.create();
let user_id = new_user(conn, "user1")?;
let other_user_id = new_user(conn, "user2")?;
diesel::insert_into(publish_rate_overrides::table)
.values((
publish_rate_overrides::user_id.eq(user_id),
publish_rate_overrides::action.eq(LimitedAction::PublishNew),
publish_rate_overrides::burst.eq(20),
))
.execute(conn)?;
let bucket = rate.take_token(user_id, LimitedAction::PublishNew, now, conn)?;
let other_bucket = rate.take_token(other_user_id, LimitedAction::PublishNew, now, conn)?;
assert_eq!(bucket.tokens, 20);
assert_eq!(other_bucket.tokens, 10);
Ok(())
}
#[test]
fn overrides_can_expire() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
let rate = SampleRateLimiter {
rate: Duration::from_secs(1),
burst: 10,
action: LimitedAction::PublishNew,
}
.create();
let user_id = new_user(conn, "user1")?;
let other_user_id = new_user(conn, "user2")?;
diesel::insert_into(publish_rate_overrides::table)
.values((
publish_rate_overrides::user_id.eq(user_id),
publish_rate_overrides::action.eq(LimitedAction::PublishNew),
publish_rate_overrides::burst.eq(20),
publish_rate_overrides::expires_at.eq(now + chrono::Duration::days(30)),
))
.execute(conn)?;
let bucket = rate.take_token(user_id, LimitedAction::PublishNew, now, conn)?;
let other_bucket = rate.take_token(other_user_id, LimitedAction::PublishNew, now, conn)?;
assert_eq!(bucket.tokens, 20);
assert_eq!(other_bucket.tokens, 10);
// Manually expire the rate limit
diesel::update(publish_rate_overrides::table)
.set(publish_rate_overrides::expires_at.eq(now - chrono::Duration::days(30)))
.filter(publish_rate_overrides::user_id.eq(user_id))
.execute(conn)?;
let bucket = rate.take_token(user_id, LimitedAction::PublishNew, now, conn)?;
let other_bucket = rate.take_token(other_user_id, LimitedAction::PublishNew, now, conn)?;
// The number of tokens of user_id is 10 and not 9 because when the new burst limit is
// lower than the amount of available tokens, the number of available tokens is reset to
// the new burst limit.
assert_eq!(bucket.tokens, 10);
assert_eq!(other_bucket.tokens, 9);
Ok(())
}
#[test]
fn override_is_different_for_each_action() -> AppResult<()> {
let (_test_db, conn) = &mut test_db_connection();
let now = now();
let user_id = new_user(conn, "user")?;
let mut config = HashMap::new();
for action in [LimitedAction::PublishNew, LimitedAction::YankUnyank] {
config.insert(
action,
RateLimiterConfig {
rate: Duration::from_secs(1),
burst: 10,
},
);
}
let rate = RateLimiter::new(config);
diesel::insert_into(publish_rate_overrides::table)
.values((
publish_rate_overrides::user_id.eq(user_id),
publish_rate_overrides::action.eq(LimitedAction::PublishNew),
publish_rate_overrides::burst.eq(20),
))
.execute(conn)?;
assert_eq!(
20,
rate.take_token(user_id, LimitedAction::PublishNew, now, conn)?
.tokens,
);
assert_eq!(
10,
rate.take_token(user_id, LimitedAction::YankUnyank, now, conn)?
.tokens,
);
Ok(())
}
fn new_user(conn: &mut PgConnection, gh_login: &str) -> AppResult<i32> {
use crate::models::NewUser;
let user = NewUser {
gh_login,
..NewUser::default()
}
.create_or_update(
None,
&Emails::new_in_memory(),
&RateLimiter::new(Default::default()),
conn,
)?;
Ok(user.id)
}
fn new_user_bucket(
conn: &mut PgConnection,
tokens: i32,
now: NaiveDateTime,
) -> AppResult<Bucket> {
Ok(diesel::insert_into(publish_limit_buckets::table)
.values(Bucket {
user_id: new_user(conn, "new_user")?,
tokens,
last_refill: now,
action: LimitedAction::PublishNew,
})
.get_result(conn)?)
}
struct SampleRateLimiter {
rate: Duration,
burst: i32,
action: LimitedAction,
}
impl SampleRateLimiter {
fn create(self) -> RateLimiter {
let mut config = HashMap::new();
config.insert(
self.action,
RateLimiterConfig {
rate: self.rate,
burst: self.burst,
},
);
RateLimiter::new(config)
}
}
/// Strips ns precision from `Utc::now`. PostgreSQL only has microsecond
/// precision, but some platforms (notably Linux) provide nanosecond
/// precision, meaning that round tripping through the database would
/// change the value.
fn now() -> NaiveDateTime {
let now = Utc::now();
let nanos = now.timestamp_subsec_nanos();
now.naive_utc() - chrono::Duration::nanoseconds(nanos.into())
}
}