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
//! # brakes
//!
//! **brakes** is a distributed rate limiting library. It offers a number of rate limiting algorithms, supports multiple caching backends (local memory, Redis, Memcached), and includes a set of middlewares for popular Rust web frameworks like [Actix Web](https://actix.rs/) and [Axum](https://docs.rs/axum/latest/axum/).
//!
//! ## Features
//! - Support for multiple rate limiting algorithms:
//! - Fixed window
//! - Sliding window counter
//! - Token bucket
//! - Leaky bucket
//! - Configurable caching backends:
//! - Local memory
//! - Memcache
//! - Redis
//! - Middleware for popular frameworks (see examples):
//! - [Actix Web](https://actix.rs/)
//! - [Axum](https://docs.rs/axum/latest/axum/)
//! - Retry strategies
//!
//! ## Usage
//!
//! ### You can use `RateLimiter` directly
//!
//! ```rust
//! use std::time::Duration;
//!
//! use brakes::{
//! backend::local::Memory,
//! types::{leaky_bucket::LeakyBucket, RateLimiterError},
//! RateLimiter,
//! };
//!
//! fn main() {
//! let limiter = RateLimiter::builder()
//! .with_backend(Memory::new())
//! .with_limiter(LeakyBucket::new(100, Duration::from_secs(10)))
//! .build();
//!
//! let result = limiter.is_ratelimited("key");
//! match &result {
//! Ok(()) => println!("allowed"),
//! Err(RateLimiterError::RateExceeded) => println!("rate exceeded"),
//! Err(e) => println!("error {:?}", e),
//! }
//!
//! assert!(result.is_ok());
//! }
//! ```
//!
//! ### Built-in middlewares
//!
//! #### Actixweb:
//!
//! **Available on crate feature `actixweb` only**
//!
//! ```rust,ignore
//! use std::time::Duration;
//!
//! use actix_web::{get, post, web, App, HttpResponse, HttpServer, Responder};
//! use brakes::{
//! backend::memcache::MemCache, middleware::actixweb::ActixwebRateLimiter,
//! types::token_bucket::TokenBucket, RateLimiter,
//! };
//!
//! #[get("/")]
//! async fn hello() -> impl Responder {
//! HttpResponse::Ok().body("Hello world!")
//! }
//!
//! #[post("/")]
//! async fn echo(req_body: String) -> impl Responder {
//! HttpResponse::Ok().body(req_body)
//! }
//!
//! #[actix_web::main]
//! async fn main() -> Result<(), std::io::Error> {
//! let cache = memcache::connect("memcache://127.0.0.1:11211").unwrap();
//!
//! let hello_limiter = RateLimiter::builder()
//! .with_backend(MemCache::new(cache.clone()))
//! .with_limiter(TokenBucket::new(2, Duration::from_secs(2)))
//! .build();
//!
//! let hello_middleware = ActixwebRateLimiter::new(hello_limiter);
//!
//! let echo_limiter = RateLimiter::builder()
//! .with_backend(MemCache::new(cache))
//! .with_limiter(TokenBucket::new(5, Duration::from_secs(1)))
//! .build();
//!
//! let echo_middleware = ActixwebRateLimiter::new(echo_limiter)
//! .with_callback(|_| HttpResponse::TooManyRequests().body("too many requests"))
//! .with_key_extractor(|req| {
//! req.headers()
//! .get("x-forwarded-for")
//! .unwrap()
//! .to_str()
//! .unwrap()
//! .to_string()
//! });
//!
//! HttpServer::new(move || {
//! let hello_middleware = hello_middleware.clone();
//! let echo_middleware = echo_middleware.clone();
//!
//! App::new()
//! .service(web::scope("hello").wrap(hello_middleware).service(hello))
//! .service(web::scope("echo").wrap(echo_middleware).service(echo))
//! })
//! .bind(("127.0.0.1", 8080))?
//! .run()
//! .await
//! }
//!
//! ```
//!
//! #### Axum
//!
//! **Available on crate feature `tower` only**
//!
//! Axum doesn't have a middleware system of its own, instead it relies on `tower` middleware
//!
//! ```rust,ignore
//! use std::{net::SocketAddr, time::Duration};
//!
//! use axum::{body::Body, extract::ConnectInfo, routing::get, Router};
//! use brakes::{
//! backend::redis::RedisBackend, middleware::tower::TowerRateLimiterLayer,
//! types::fixed_window::FixedWindow, RateLimiter,
//! };
//!
//! async fn hello() -> &'static str {
//! "Hello, World!"
//! }
//!
//! async fn hi() -> &'static str {
//! "hi"
//! }
//!
//! #[tokio::main]
//! async fn main() {
//! let client = redis::Client::open("redis://127.0.0.1/").unwrap();
//! let pool = r2d2::Pool::builder()
//! .connection_timeout(Duration::from_secs(1))
//! .build(client)
//! .unwrap();
//!
//! let hello_limiter = RateLimiter::builder()
//! .with_backend(RedisBackend::new(pool.clone()))
//! .with_limiter(FixedWindow::new(5, Duration::from_secs(10)))
//! .build();
//!
//! let hello_layer =
//! // ::default() uses the default callback
//! TowerRateLimiterLayer::default(hello_limiter, |r: &axum::http::Request<Body>| {
//! // key extractor
//! r.headers()
//! .get("x-forwarded-for")
//! .unwrap()
//! .to_str()
//! .unwrap()
//! .to_string()
//! });
//!
//! let hi_limiter = RateLimiter::builder()
//! .with_backend(RedisBackend::new(pool))
//! .with_limiter(FixedWindow::new(5, Duration::from_secs(10)))
//! .build();
//!
//! let hi_layer = TowerRateLimiterLayer::new(
//! hi_limiter,
//! // callback for RateExceeded
//! |_| {
//! axum::response::Response::builder()
//! .status(429)
//! .body(Body::from("too many requests"))
//! .unwrap()
//! },
//! // key extractor
//! |r: &axum::http::Request<Body>| {
//! r.extensions()
//! .get::<ConnectInfo<SocketAddr>>()
//! .unwrap()
//! .ip()
//! .to_string()
//! },
//! );
//!
//! let app = Router::new()
//! .route("/hello", get(hello).layer(hello_layer))
//! .route("/hi", get(hi).layer(hi_layer));
//!
//! let listener = tokio::net::TcpListener::bind("127.0.0.1:8080")
//! .await
//! .unwrap();
//! axum::serve(
//! listener,
//! app.into_make_service_with_connect_info::<SocketAddr>(),
//! )
//! .await
//! .unwrap();
//! }
//!
//! ```
//!
//! ## Cache Backends
//! Cache backends are used to store `LimiterInstance`s. A `LimiterInstance` contains information about a single rate limiter instance's (a user's or ip's) usage.
//!
//! ### Memory
//! Uses an in memory `HashMap` to store keys and values (`LimiterInstance`s).
//!
//! It can be used safely across threads since it utilizes a `Mutex`, but it can't be used across processes or in a distributed fashion.
//!
//! ```rust,ignore
//! let memory_cache = Memory::new();
//! let limiter = RateLimiter::builder()
//! .with_backend(memory_cache)
//! .with_limiter(...)
//! .build();
//! ```
//!
//! ### Memcache
//!
//! **Available on crate feature `memcache` only**
//!
//! Uses a `memcache` client to store `LimiterInstance` data.
//!
//! Writes to `memcache` are done using the `CAS` (check-and-set) command to ensure conncurent writes won't conflict.
//!
//! If there's a conflict (data related to a single `LimiterInstance` changed while it was being updated by another process), the write is either retried (if `RetryAndAllow` or `RetryAndDeny` is used) or a `RateLimiterError::BackendConflict` is returned. In either case, whether the request is ratelimited or not is based on the `RetryStrategy` used.
//!
//! ```rust,ignore
//! let cache = memcache::connect("memcache://127.0.0.1:11211").unwrap();
//! let memcache_backend = MemCache::new(cache);
//! let limiter = RateLimiter::builder()
//! .with_backend(memcache_backend)
//! .with_limiter(FixedWindow::new(10000, Duration::from_millis(1000)))
//! .with_conflict_strategy(brakes::RetryStrategy::RetryAndDeny(2))
//! .build();
//! ```
//!
//! ### Redis
//!
//! **Available on crate feature `redis` only**
//!
//! Uses a `redis` connection pool to connect to redis. `RedisBackend::new` expects a `r2d2::Pool`.
//!
//! Writes use `transactions` (`WATCH`, `MULTI`, and `EXEC`) to ensure conncurent writes won't conflict.
//!
//! If there's a conflict (data related to a single `LimiterInstance` changed while it was being updated by another process), the write is either retried (if `RetryAndAllow` or `RetryAndDeny` is used) or a `RateLimiterError::BackendConflict` is returned. In either case, whether the request is ratelimited or not is based on the `RetryStrategy` used.
//!
//! ```rust,ignore
//! let client = redis::Client::open("redis://127.0.0.1/").unwrap();
//! let pool = r2d2::Pool::builder().build(client).unwrap();
//!
//! let limiter = RateLimiter::builder()
//! .with_backend(RedisBackend::new(pool))
//! .with_limiter(FixedWindow::new(100, Duration::from_millis(1000)))
//! .with_conflict_strategy(brakes::RetryStrategy::RetryAndDeny(1))
//! .build();
//! ```
//!
//! ## Rate Limiter Types
//!
//! `LimiterType` dictates the rate limiting algorithm to be used.
//!
//! The `LimiterType` (ex: `FixedWindow` limiter type) stores configuration about the algorithm (ex: for `FixedWindow`, it's the `threshold` and the `window_size`), while its associated `LimiterInstance` stores information about a single key's (user, for example) usage of the limiter (ex: for `FixedWindow`, it's `window_start` timestamp and `count`).
//!
//! `LimiterInstance`s are stored in the configured `Backend`
//!
//! ### FixedWindow
//! Defined by a `threshold` and a `window_length`.
//!
//! The `FixedWindowInstance` keeps track of `window_start` and `count` for each key (user, for example).
//!
//! ```rust,ignore
//! // allow upto 10 requests in any 1000ms fixed window.
//! let limiter = RateLimiter::builder()
//! .with_backend(...)
//! .with_limiter(FixedWindow::new(10, Duration::from_millis(1000)))
//! .with_conflict_strategy(brakes::RetryStrategy::RetryAndDeny(1))
//! .build();
//! ```
//!
//! ### SlidingWindowCounter
//! Defined by a `threshold` and a `window_length`.
//!
//! The `SlidingWindowInstance` keeps track of the current and previous `window_start` and `count`.
//!
//! ```rust,ignore
//! // allow upto 5 requests in any 1000ms sliding window.
//! let limiter = RateLimiter::builder()
//! .with_backend(...)
//! .with_limiter(SlidingWindowCounter::new(5, Duration::from_millis(1000)))
//! .with_conflict_strategy(brakes::RetryStrategy::RetryAndDeny(1))
//! .build();
//! ```
//!
//! ### TokenBucket
//! Defined by a `capacity` and a `fill_frequency`.
//!
//! A bucket with a `capacity` of 10, and a `fill_frequency` of 1 second will allow up to 10 requests to be allowed. Each request consumes a token from the bucket. The bucket is refilled by 1 token every second. If the bucket is empty, no requests are allowed.
//!
//! The `TokenBucketInstance` keeps track of how many `token`s are available and the `last_access` timestamp for the user.
//!
//! ```rust,ignore
//! // 10 tokens at most, with a fill rate of 1 token every 2 seconds
//!let hello_limiter = RateLimiter::builder()
//! .with_backend(...)
//! .with_limiter(TokenBucket::new(10, Duration::from_secs(2)))
//! .build();
//! ```
//!
//! ### LeakyBucket
//! Defined by a `capacity` and a `leak_frequency`.
//!
//! A bucket with a `capacity` of 10, and a `leak_frequency` of 1 second will allow up to 10 requests to be allowed. Each request is added to the bucket until it's full. If the bucket is full, further requests are denied until requests are leaked. A `leak_frequency` of 1 second will leak one request per second.
//!
//! The `LeakyBucketInstance` keeps track of how many allowed requests there are in the bucket and the `last_leaked` timestamp for the user.
//!
//! ```rust,ignore
//! // upto 100 requests can be allowed, with a leak rate of 1 request every 2 seconds
//!let hello_limiter = RateLimiter::builder()
//! .with_backend(...)
//! .with_limiter(LeakyBucket::new(100, Duration::from_secs(2)))
//! .build();
//! ```
//!
//! ## Retry Strategies
//!
//! Retry strategies can be useful in two cases:
//! - When reads or writes to the `Backend` fail (for example due to a network timeout). Can be set using `RateLimiterBuilder::with_failure_strategy`
//! - When writes to the `Backend` fail due to a conflict (caused by concurrent requests for the same ip for example). Can be set using `RateLimiterBuilder::with_conflict_strategy`
//!
//! A `RetyStrategy` can be one of four:
//! - `RetryAndAllow(n)` tries the operation a total of n+1 times. If all fail, it allows the request.
//! - `RetryAndDeny(n)` tries the operation a total of n+1 times. If all fail, it denies the request.
//! - `Allow` allows the request without retries.
//! - `Deny` denies the request without retries.
//!
//! Where `n` is the number of retries.
//!
//! If `with_failure_strategy` or `with_conflict_strategy` is not set, the default is used:
//! - Failure strategy of `RetryStrategy::RetryAndAllow(2)`
//! - Conflict strategy of `RetryStrategy::RetryAndDeny(2)`
//!
//! Both can be set as follows:
//!
//! ```rust,ignore
//! let limiter = RateLimiter::builder()
//! .with_backend(...)
//! .with_limiter(...)
//! .with_failure_strategy(brakes::RetryStrategy::RetryAndAllow(1))
//! .with_conflict_strategy(brakes::RetryStrategy::Deny)
//! .build();
//! ```
//!
use crate::;
use ;