Jeremy Soller
52bb3bbfe3
Merge branch 'ptr-offset-by-literal-lint' into 'master'
...
add ptr_offset_by_literal clippy lint and set to deny
See merge request redox-os/relibc!1527
2026-07-06 06:04:43 -06:00
auronandace
bf6dc24407
add ptr_offset_by_literal clippy lint and set to deny
2026-07-06 12:40:43 +01:00
Wildan M
812982556a
Parse flags when logging openat
2026-07-06 05:35:13 +07:00
Jeremy Soller
9930a90de0
Merge branch 'all-path' into 'master'
...
Adapt with new redox-path
See merge request redox-os/relibc!1504
2026-07-05 10:53:21 -06:00
Wildan M
2e8ee25139
Add open trace logging
2026-07-05 19:28:23 +07:00
Wildan M
c0cdc017d3
Adapt with new redox-path
2026-07-05 19:27:57 +07:00
Wildan M
7f4c3803bc
Fix curl EOPNOSUPP due to MSG_NOSIGNAL
2026-07-05 15:33:40 +07:00
auronandace
e714c570bc
make mut_from_ref deny
2026-07-02 08:28:38 +01:00
Ibuki Omatsu
fba233467a
refactor: Move fd allocation logic into userspace
2026-07-01 08:08:23 -06:00
Wildan M
b5e764d967
Fix posix_spawn launching sh script
2026-06-23 12:22:31 +07:00
Wildan M
c234ace91d
Use ArrayString for Cwd
2026-06-22 22:13:24 +07:00
Mathew John Roberts
4e4ed8b8c7
Merge branch 'dis-spawn-test' into 'master'
...
Disable spawn test temporarily
See merge request redox-os/relibc!1484
2026-06-21 19:37:51 +01:00
Wildan M
c47b492717
Disable spawn test temporarily
2026-06-21 14:54:58 +07:00
Wildan M
73a8c843a8
Fix relative program path handling in posix_spawn
2026-06-21 14:12:05 +07:00
Wildan M
5779743a9a
Remove posix_spawn string allocation
2026-06-20 12:31:32 +07:00
Wildan M
56d5fe6bce
Fix posix_spawn various issues
2026-06-20 07:05:28 +07:00
Mathew John Roberts
09ae605623
Apply 1 suggestion(s) to 1 file(s)
...
Co-authored-by: Wildan Mubarok <willnode@wellosoft.net >
2026-06-18 13:02:25 +01:00
auronandace
d0760c2b90
fix amount
2026-06-18 12:25:40 +01:00
auronandace
c84f1f41fb
use SYMLOOP_MAX in resolve_sym_links in redox path
2026-06-18 12:06:56 +01:00
Mathew John Roberts
da55b3be0e
Merge branch 'spawn' into 'master'
...
Add support for `posix_spawn` and `posix_spawnp` (Redox OS)
Closes #192
See merge request redox-os/relibc!1333
2026-06-17 06:18:59 +01:00
auronandace
f5c0c1a9c9
split out ucred to a bits header
2026-06-16 08:04:26 +01:00
R Aadarsh
1ff7d7bba0
* Fix pgroup inheritance
...
* Remove unnecessary nesting
* Make the child process explicitly inherit parent's u/g id
2026-06-15 17:08:11 +05:30
R Aadarsh
58fefac9f5
Enable sched params change
2026-06-15 17:08:11 +05:30
R Aadarsh
484fe42c0e
* Add docs
...
* Change safety signatures
* Change tests
* Correctly set u/g id
2026-06-15 17:08:11 +05:30
R Aadarsh
6d14437f34
Implement u/g id change based on executable's s(u/g)id mode bit
2026-06-15 17:08:11 +05:30
R Aadarsh
ad151e0de8
* Correctly determine argv[0]
...
- If the function called is `posix_spawnp`, and the passed program name **does not** contain a slash, the path is used unmodified, and the path to the directory containing the program on $PATH is prepended to the program's path and assigned to `argv[0]. If the program name **does** contain a slash, the path is absolutised relative to CWD, and assigned to argv[0]
- If the function called is `posix_spawn`, the behaviour is as described above in the case where path contains a slash
* Add initial tests
2026-06-15 17:08:11 +05:30
R Aadarsh
a941458ba0
Remove the use of platform::redox::path
2026-06-15 17:08:11 +05:30
R Aadarsh
fefea0f0a9
Make code safer by disallowing NULL argv, empty argv and NULL values for pointer arguments to functions
2026-06-15 17:08:11 +05:30
R Aadarsh
8c65ed481a
Make path to be owned
2026-06-15 17:08:11 +05:30
R Aadarsh
91933b4165
* Change Operation to Action
...
* Change the linked list to a `Vec<Action>`
* Make functions unsafe
2026-06-15 17:08:11 +05:30
R Aadarsh
2df7484e6c
* Make posix_spawnp consider the program argument as a path if it contains a slash
...
* Remove existence and file type check
* Make envp optional
* Ensure that the CWD of the calling process is same before and after spawning
2026-06-15 17:08:11 +05:30
R Aadarsh
38af072426
Implement chdir and fchdir operations
2026-06-15 17:08:11 +05:30
R Aadarsh
db5eeb7c20
Remove call to close, instead make the kernel remove the file
2026-06-15 17:08:11 +05:30
R Aadarsh
a6e1b269af
* Make dup2 work
...
* Use `CloseCloExec` for closing O_CLOEXEC files
2026-06-15 17:08:11 +05:30
R Aadarsh
4df38b6f0d
* Implement open operation
...
* Comment out the code for dup2
2026-06-15 17:08:11 +05:30
R Aadarsh
0810991d7d
Do the requested sigmask changes and u/g id changes
2026-06-15 17:08:11 +05:30
R Aadarsh
0e5210cb4d
Make close operation work
2026-06-15 17:08:11 +05:30
R Aadarsh
e3d2257f64
* Make posix_spawn_file_actions_t an iterator
...
* Fix bug that caused the spawned process to not start
* Make the spawned process inherit the parent's file descriptos
2026-06-15 17:08:11 +05:30
R Aadarsh
119f078216
* Fix bug that caused pid of the child process to be returned instead of 0 or errorno
...
* Add `same_process` field to not change the address space when `fexec_impl` is called on a different process
2026-06-15 17:08:11 +05:30
R Aadarsh
1bc472e7e1
Add posix_spawn and posix_spawnp for RedoxOS
2026-06-15 17:08:11 +05:30
auronandace
94b2f29beb
tackle various clippy lints
2026-06-05 14:36:06 +01:00
sourceturner
e39106835a
fix compiler warnings
2026-06-04 17:33:37 +02:00
Wildan M
959e7d6cca
Implement event timeout with EVENT_TIMEOUT_ID
2026-05-30 01:03:37 +07:00
Ibuki Omatsu
c2bcf91339
feat: Implement relpathat
2026-05-27 16:36:44 +02:00
sourceturner
4b4dc2ce94
implement housekeeping for posix timers
2026-05-24 19:14:02 +02:00
sourceturner
d16183732c
use raw borrow operator instead of pointer cast
...
clippy dislikes the pointer cast - let's make clippy happy
2026-05-24 19:12:05 +02:00
Wildan M
c4924fba79
Workaround epoll edge cases
2026-05-21 11:06:54 +07:00
Jeremy Soller
e3514fa329
Merge branch 'shm' into 'master'
...
Implement key_t, sys/ipc and sys/shm
See merge request redox-os/relibc!1367
2026-05-20 10:11:58 -06:00
Jeremy Soller
6ef45672d1
Merge branch 'fix-fstatat' into 'master'
...
fix: Fix fstatat by passing O_PATH when calling openat2
See merge request redox-os/relibc!1362
2026-05-20 06:29:10 -06:00
Wildan M
bc6ea5ba99
Implement key_t, sys/ipc and sys/shm
2026-05-20 18:51:53 +07:00