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
// Copyright 2025 FastLabs Developers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! StackSafe prevents stack overflows in deeply recursive algorithms by providing intelligent stack
//! management. No more crashes from recursive functions or data structures that exceed the default
//! stack size - StackSafe automatically allocates additional stack space when needed, eliminating
//! the need for manual stack size tuning or complex refactoring to iterative approaches.
//!
//! ## Quick Start
//!
//! Add StackSafe to your `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! stacksafe = "1"
//! ```
//!
//! Transform recursive functions with the [`#[stacksafe]`](stacksafe) attribute to prevent stack
//! overflow:
//!
//! ```rust
//! use stacksafe::stacksafe;
//!
//! #[stacksafe]
//! fn fibonacci(n: u64) -> u64 {
//! match n {
//! 0 | 1 => n,
//! _ => fibonacci(n - 1) + fibonacci(n - 2),
//! }
//! }
//!
//! // No stack overflow, even for deep recursion
//! println!("Fibonacci of 30: {}", fibonacci(30));
//! ```
//!
//! ## Recursive Data Structures
//!
//! Use [`StackSafe<T>`] to wrap recursive data structures and prevent stack overflow during
//! traversal:
//!
//! ```rust
//! use stacksafe::StackSafe;
//! use stacksafe::stacksafe;
//!
//! #[derive(Debug, Clone)]
//! enum BinaryTree {
//! Leaf(i32),
//! Node {
//! value: i32,
//! left: Box<StackSafe<BinaryTree>>,
//! right: Box<StackSafe<BinaryTree>>,
//! },
//! }
//!
//! #[stacksafe]
//! fn tree_sum(tree: &BinaryTree) -> i32 {
//! match tree {
//! BinaryTree::Leaf(value) => *value,
//! BinaryTree::Node { value, left, right } => value + tree_sum(left) + tree_sum(right),
//! }
//! }
//! ```
//!
//! ## How It Works
//!
//! - [`#[stacksafe]`](stacksafe) attribute monitors remaining stack space at function entry points.
//! When available space falls below a threshold (default: 128 KiB), it automatically allocates a
//! new stack segment (default: 2 MiB) and continues execution, preventing stack overflow.
//!
//! - [`StackSafe<T>`] is a wrapper type that transparently implement common traits like [`Clone`],
//! [`Debug`], and [`PartialEq`] with `#[stacksafe]` support, ensuring stack-safe operations on
//! recursive data structures without risking overflow.
//!
//! - In `debug` builds, accessing [`StackSafe<T>`] performs additional checks to ensure the current
//! function is properly annotated with `#[stacksafe]`, helping catch potential issues during
//! development.
//!
//! Read this [blog post](https://fast.github.io/blog/stacksafe-taming-recursion-in-rust-without-stack-overflow/)
//! for an in-depth explanation of StackSafe's design and implementation.
//!
//! ## Configuration
//!
//! Customize stack management behavior:
//!
//! ```rust
//! use stacksafe::set_minimum_stack_size;
//! use stacksafe::set_stack_allocation_size;
//!
//! // Trigger allocation when < 64 KiB remaining (default: 128 KiB).
//! set_minimum_stack_size(64 * 1024);
//!
//! // Allocate 4 MiB stacks for deep recursion (default: 2 MiB).
//! set_stack_allocation_size(4 * 1024 * 1024);
//! ```
//!
//! ## Feature Flags
//!
//! StackSafe supports several optional features:
//!
//! - `serde`: Provides stack-safe serialization and deserialization for [`StackSafe<T>`].
//!
//! ## Platform Support
//!
//! StackSafe works on all major platforms supported by the [`stacker`](https://crates.io/crates/stacker) crate, including:
//!
//! - Linux (x86_64, ARM64, others)
//! - macOS (Intel, Apple Silicon)
//! - Windows (MSVC, GNU)
//! - FreeBSD, NetBSD, OpenBSD
//! - And more...
use Deref;
use DerefMut;
use AtomicUsize;
use Ordering;
/// Attribute macro for automatic stack overflow prevention in recursive functions.
///
/// This macro transforms functions to automatically check available stack space
/// and allocate new stack segments when needed, preventing stack overflow in
/// deeply recursive scenarios.
///
/// # Examples
///
/// ```rust
/// use stacksafe::stacksafe;
///
/// #[stacksafe]
/// fn factorial(n: u64) -> u64 {
/// if n <= 1 { 1 } else { n * factorial(n - 1) }
/// }
/// ```
///
/// For recursive data structures:
///
/// ```rust
/// use stacksafe::StackSafe;
/// use stacksafe::stacksafe;
///
/// struct TreeNode<T> {
/// value: T,
/// left: Option<Box<StackSafe<TreeNode<T>>>>,
/// right: Option<Box<StackSafe<TreeNode<T>>>>,
/// }
///
/// #[stacksafe]
/// fn tree_depth<T>(node: &Option<Box<StackSafe<TreeNode<T>>>>) -> usize {
/// match node {
/// None => 0,
/// Some(n) => 1 + tree_depth(&n.left).max(tree_depth(&n.right)),
/// }
/// }
/// ```
///
/// # Limitations
///
/// - Cannot be applied to `async` functions
/// - Functions with `impl Trait` return types may need type annotations
/// - Adds small runtime overhead for stack size checking
pub use stacksafe;
static MINIMUM_STACK_SIZE: AtomicUsize = new;
static STACK_ALLOC_SIZE: AtomicUsize = new;
/// Configures the minimum stack space threshold for triggering stack allocation in bytes.
///
/// When a function marked with [`#[stacksafe]`](stacksafe) is called and the remaining stack
/// space is less than this threshold, a new stack segment will be allocated.
///
/// Defaults to 128 KiB.
/// Returns the current minimum stack space threshold in bytes.
///
/// This value determines when new stack segments are allocated for functions
/// marked with [`#[stacksafe]`](stacksafe).
/// Configures the size of newly allocated stack segments in bytes.
///
/// When a function marked with [`#[stacksafe]`](stacksafe) needs more stack space,
/// it allocates a new stack segment of this size.
///
/// Defaults to 2 MiB.
/// Returns the current stack allocation size in bytes.
///
/// This is the size of new stack segments allocated when functions marked
/// with [`#[stacksafe]`](stacksafe) require additional stack space.
/// A wrapper type for recursive data structures with automatic stack-safe operations.
///
/// [`StackSafe<T>`] wraps values that are part of recursive data structures, ensuring
/// that operations like cloning, dropping, comparison, and serialization are performed
/// safely without risking stack overflow.
///
/// The wrapper provides transparent access to the underlying value through [`Deref`]
/// and [`DerefMut`], but enforces that such access occurs within a stack-safe context
/// (i.e., within a function marked with [`#[stacksafe]`](stacksafe)).
;