Ibuki Omatsu
32d067d293
Introduce SchemeRoot and integrate unlink and rmdir into unlinkat.
2026-01-20 20:55:47 -07:00
Jeremy Soller
42db72daf2
0.8.6: workaround for memory leaks
2026-01-03 09:44:23 -07:00
Jeremy Soller
7bd6189ca9
Fix no_std
2026-01-02 19:25:26 -07:00
Jeremy Soller
5778818bf6
Fix typo in redox mount code
2026-01-02 13:26:09 -07:00
Jeremy Soller
0e01427cd8
Implement release list and add open node tracking to filesystem
2026-01-02 13:23:29 -07:00
Jeremy Soller
57e05acef2
Leak nodes still in use, preparation for release list
2025-12-25 15:52:27 -07:00
Jeremy Soller
a44303b4f6
WIP: delete after close instead of unlink
2025-12-25 15:51:53 -07:00
Josh Megnauth
2b8ea938ea
Fix test lints and add rename test
...
This fixes lints for tests/tests.rs and adds a test for rename. The new
rename test is based on the rename_no_replace tests. There are two
discrepancies between Linux and Redox but I'm not sure if they matter. I
added a note to those tests.
There are two fixed lints of note.
* assert_cmd deprecated Command::cargo_bin in favor of a compile time
checked macro.
* The mode literals were wrong: 0666 instead of 0o666. 0o is the prefix
for octal literals.
2025-12-20 19:17:36 -05:00
Ibuki Omatsu
a59e7fca9b
refactor: Replace unlink and rmdir with unlinkat.
2025-12-17 18:45:39 -07:00
Josh Megnauth
66f4766c6b
Implement RENAME_NO_REPLACE
...
RENAME_NO_REPLACE is a neat flag for renameat2 which disallows renaming
a source onto an existing target.
I originally implemented this flag in relibc, but that code is still
subject to TOCTOU because the sequence of checking if the target exists
and the actual rename isn't atomic.
The code for the flag isn't used anywhere yet, like frename, but it's
unit tested and works for now.
2025-12-14 21:03:56 -05:00
Wildan M
50683d5a7a
Split fuse feature
2025-11-17 17:21:59 +07:00
Jeremy Soller
54df280b02
Use new scheme format in fpath
2025-11-14 14:29:19 -07:00
Jeremy Soller
91c5ffb986
When upgrading from inline data, only take bytes that fit
2025-11-10 20:59:08 -07:00
Jeremy Soller
116d482d2b
Reduce logging
2025-11-01 20:25:43 -06:00
Jeremy Soller
fefd943c3f
Add resizing support
2025-10-31 11:16:13 -06:00
Jeremy Soller
ab92a083e8
Ensure header size matches allocated blocks
2025-10-31 07:41:29 -06:00
Jeremy Soller
5abce443a5
Ensure allocation is done with the lowest block indexes first
2025-10-30 21:25:37 -06:00
Jeremy Soller
5af2abde0a
Fix reading sparse data when using inline data
2025-09-26 14:36:22 -06:00
Jeremy Soller
437d06ab8c
Support inline data in files
2025-09-26 14:17:03 -06:00
Jeremy Soller
5c54b189f9
Prepare for inline node data support
2025-09-26 13:03:07 -06:00
Jeremy Soller
9484534c76
Merge remote-tracking branch 'origin/master' into v8
2025-09-26 12:03:22 -06:00
Jeremy Soller
eea5c96137
Implement clone threshold to work around Redox problems
2025-09-26 11:25:22 -06:00
Jeremy Soller
5e044e88c0
Fix cursor when printing clone progress
2025-09-26 10:43:34 -06:00
Jeremy Soller
d7391bc6a8
Throttle clone progress messages
2025-09-26 10:18:54 -06:00
Jeremy Soller
c796cc7413
Add units for clone progress
2025-09-26 10:10:22 -06:00
Jeremy Soller
f37afb04bb
Add progress callback to clone function
2025-09-26 10:08:54 -06:00
Jeremy Soller
74582a0917
Squash allocation log in clone
2025-09-26 09:29:02 -06:00
Jeremy Soller
5622165c92
Support for fast cloning of RedoxFS partition
2025-09-26 09:24:21 -06:00
Jeremy Soller
8a46a6df39
Implement From<File> for DiskFile
2025-09-26 09:23:41 -06:00
Jeremy Soller
ae034662e6
Fix documentation
2025-09-26 09:23:29 -06:00
Wildan M
fc4c2470a1
Fix test
2025-09-26 01:02:07 +07:00
Wildan M
2d61aceff9
Move tests with mount as integration tests
2025-09-25 20:58:49 +07:00
Wildan M
4af64e157a
Allow partial result of getdents
2025-09-23 23:34:26 +07:00
Jeremy Soller
98286ce752
Fix compilation with no_std
2025-08-03 20:02:09 -06:00
Jeremy Soller
5828e12e85
Provide context for all allocations and deallocations
2025-08-01 21:32:16 -06:00
Jeremy Soller
0a14166c2f
Fix issue where compressed data could be returned
2025-08-01 14:07:26 -06:00
Jeremy Soller
d03aa518fe
Fix compression with 128 KiB records, use compress cache
2025-08-01 13:23:56 -06:00
Jeremy Soller
b40fecf185
Fix comment in node.rs
2025-08-01 12:55:49 -06:00
Jeremy Soller
ca7ea3c0c8
node: debug blocks
2025-08-01 12:07:51 -06:00
Jeremy Soller
a1c94311db
Store number of blocks actually used
2025-08-01 11:51:37 -06:00
Jeremy Soller
f30b363ce1
Fix build with no_std
2025-08-01 09:55:21 -06:00
Jeremy Soller
26dc32d710
v8: transparent lz4 compression
2025-07-31 18:48:17 -06:00
Jeremy Soller
0cb6f3cad5
Fix compilation on Linux
2025-07-24 13:45:57 -06:00
Ibuki Omatsu
63217aa69a
feat: Add UDS bind and connect integration
2025-07-21 18:32:18 -06:00
Jeremy Soller
dc25344b68
Update aes and xts-mode
2025-07-02 12:48:39 -06:00
Jeremy Soller
aecd042afc
Use AES-XTS for encryption
2025-07-02 10:20:17 -06:00
James Matlik
b959c34287
Improve performance
2025-07-01 19:11:00 -06:00
Darley Barreto
d0d5761b2d
Implement openat syscall
2025-07-01 09:42:16 -06:00
Yousef Moazzam
3d06dd39ba
Refer to "node" rather than "file" in node mode docstrings
2025-05-24 21:56:30 +01:00
Yousef Moazzam
13642ab159
Clarify bit position using most/least significant bit terminology
2025-05-24 21:55:39 +01:00