auronandace
ce28b8786a
follow-up eliminating more as casts
2026-07-15 10:54:26 +01:00
auronandace
6671339ec3
revert cfg and remove unused import
2026-07-15 10:44:50 +01:00
auronandace
e320c755ff
tackle more clippy lints for redox
2026-07-15 10:30:48 +01:00
auronandace
b632453fd4
follow-up casts in redox socket
2026-07-14 09:50:26 +01:00
auronandace
da54c331f5
revert two casts
2026-07-14 09:29:44 +01:00
auronandace
70505f0a6f
address some clippy lints in redox
2026-07-14 09:16:29 +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
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
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
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
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
Wildan M
c4924fba79
Workaround epoll edge cases
2026-05-21 11:06:54 +07: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
Ibuki.O
0e2f24125a
fix: Fix fstatat by passing O_PATH when calling openat2
2026-05-20 12:11:11 +09:00
Wildan M
4a7f2d80ff
Avoid StringWriter cast and string format
2026-05-20 09:10:25 +07:00
David Finder
1dbc61932a
Alarm fix
2026-05-18 16:52:04 -06:00
Wildan M
519bc8ebc8
Remove ld.so cache
2026-05-13 07:11:36 +07:00