fix: ARMv7 32-bit compilation overflow

The constant 10 * 1024 * 1024 * 1024 (10 GB) overflows on 32-bit systems
where usize is 32-bit (max ~4GB). This caused compilation failures on
ARMv7 architecture.

Fix by using architecture-appropriate limits:
- 64-bit: 10 GB (unchanged)
- 32-bit: 1 GB (safe maximum for 32-bit usize)

Fixes #206
This commit is contained in:
BillionClaw
2026-03-17 04:39:18 +08:00
parent c9ca1f8885
commit 0cbbb6b7ac
3 changed files with 22 additions and 4 deletions
+8 -1
View File
@@ -150,7 +150,14 @@ pub fn create_api_routes(app_state: &Arc<AppState>) -> Router<Arc<AppState>> {
get(FileHandler::get_thumbnail).put(FileHandler::upload_thumbnail),
)
.route("/{id}/metadata", get(FileHandler::get_file_metadata))
.layer(DefaultBodyLimit::max(10 * 1024 * 1024 * 1024)) // 10 GB for file uploads
.layer(DefaultBodyLimit::max({
// Use architecture-appropriate body limit: 10 GB on 64-bit, 1 GB on 32-bit
#[cfg(target_pointer_width = "64")]
const FILE_BODY_LIMIT: usize = 10 * 1024 * 1024 * 1024;
#[cfg(target_pointer_width = "32")]
const FILE_BODY_LIMIT: usize = 1024 * 1024 * 1024;
FILE_BODY_LIMIT
})) // for file uploads
.with_state(app_state.clone());
// File operations with trash support