- Jul 19, 2020
-
-
Ahmed Abd El Mawgood authored
-
Ahmed Abd El Mawgood authored
-
Ahmed Abd El Mawgood authored
I by mistake commented _dl_debug_state() function which would break debugging
-
Jeremy Soller authored
-
- Jul 18, 2020
-
-
Jeremy Soller authored
Allocator See merge request !295
-
-
Ahmed Abd El Mawgood authored
-
Ahmed Abd El Mawgood authored
-
Ahmed Abd El Mawgood authored
-
Ahmed Abd El Mawgood authored
-
Ahmed Abd El Mawgood authored
-
Jeremy Soller authored
Fix wrong TLS resolving See merge request redox-os/relibc!294
-
Ahmed Abd El Mawgood authored
I attempted fixing this issue before at 43fbaf99. Although it did work, it worked wrong, and it was just consistently working (but in wrong way) until it didn't. Since this is (hopefully) the real fix, I will try to explain exactly what is going on. This is explaination by example: our TLS is memory of size 0x1000 starting at 0x7ffff6c50000, but the real size is 0x000068 so we have padding stored at master.offset = 0xf98 Now our symbol looks as follows Offset Type Sym. Value Name 000000432b20 R_X86_64_DTPOFF64 0000000000000058 errno The old code did 0x7ffff6c50000 + 0xf98 + 000000432b20 which is obviosly overflowing the memory and wrong. The right way 0x7ffff6c50000 + 0xf98 + 0000000000000058. THe Tls base part and offset are added at __tls_get_addr function. What is left is storing the 0x58 at the relocation address. The problem is that we don't have 0x58, but we have (binary base + 0x58) in global symbol table and binary base so what we store is the (binarybase + 0x58 - binary base). I hope this does turn out to be wrong.
-
- Jul 15, 2020
-
-
jD91mZM2 authored
-
- Jul 09, 2020
-
-
Jeremy Soller authored
Add fwide function See merge request redox-os/relibc!291
-
- Jul 08, 2020
-
-
Wren Turkal authored
When a byte-oriented stream function touches a stream, that stream should be set to byte-oriented mode if it hasn't been set yet. If it has been set, the opertion should only succeed if the stream is already in byte-oriented mode. Signed-off-by:
Wren Turkal <wt@penguintechs.org>
-
Wren Turkal authored
Signed-off-by:
Wren Turkal <wt@penguintechs.org>
-
Wren Turkal authored
Signed-off-by:
Wren Turkal <wt@penguintechs.org>
-
Wren Turkal authored
This function is used to set the orientation of a stream to either byte-oriented or wchar-oriented. More info on this function is here: https://man7.org/linux/man-pages/man3/fwide.3p.html This implementation only impmlemnts the manual switching and does not yet guard against using a byte-oriented stream with wchar functions and vice versa. Those step will come in additional commits. Signed-off-by:
Wren Turkal <wt@penguintechs.org>
-
- Jul 01, 2020
-
-
Jeremy Soller authored
Various socket-related changes and other See merge request !289
-
- Jun 29, 2020
- Jun 27, 2020
-
-
jD91mZM2 authored
-
- Jun 25, 2020
-
-
jD91mZM2 authored
-
- Jun 24, 2020
-
-
Jeremy Soller authored
Rename lcg48 module as rand48 See merge request !287
-
Jeremy Soller authored
Don't assume u32 alignment of random() state buffer See merge request !286
-
-
Jeremy Soller authored
Fix bugs in handling non pie elfs See merge request !285
-
Ahmed Abd El Mawgood authored
The problem here was that we alway added the base address, and we assumed that all addresses we access are relative but this is not the case in case of non pie binaries. The issue is that all addresses were base+offset. so if we added the base again it will ofcourse generate wrong address.
-
- Jun 23, 2020
-
-
Peter Limkilde Svendsen authored
-
- Jun 22, 2020
-
-
Jeremy Soller authored
Use C type names in byteorder functions See merge request !274
-
Jeremy Soller authored
Add test for ctime_r(), replace mem::uninitialized() See merge request !273
-
Jeremy Soller authored
Implement random() and friends See merge request !284
-
-
- Jun 20, 2020
-
-
Jeremy Soller authored
Ld library path See merge request !279
-
Jeremy Soller authored
Get rid of assembly code in call_inits_finis See merge request !282
-
Ahmed Abd El Mawgood authored
-
- Jun 19, 2020
-
-
Jeremy Soller authored
Socket fix See merge request !281
-