mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-28 07:18:30 +00:00
Make fixes and improvements
- Invent iso8601us() for faster timestamps - Improve --strace descriptions of sigset_t - Rebuild the Landlock Make bootstrap binary - Introduce MODE=sysv for non-Windows builds - Permit OFD fcntl() locks under pledge(flock) - redbean can now protect your kernel from ddos - Have vfork() fallback to sys_fork() not fork() - Change kmalloc() to not die when out of memory - Improve documentation for some termios functions - Rewrite putenv() and friends to conform to POSIX - Fix linenoise + strace verbosity issue on Windows - Fix regressions in our ability to show backtraces - Change redbean SetHeader() to no-op if value is nil - Improve fcntl() so SQLite locks work in non-WAL mode - Remove some unnecessary work during fork() on Windows - Create redbean-based SSL reverse proxy for IPv4 TurfWar - Fix ape/apeinstall.sh warning when using non-bash shells - Add ProgramTrustedIp(), and IsTrustedIp() APIs to redbean - Support $PWD, $UID, $GID, and $EUID in command interpreter - Introduce experimental JTqFpD APE prefix for non-Windows builds - Invent blackhole daemon for firewalling IP addresses via UNIX named socket - Add ProgramTokenBucket(), AcquireToken(), and CountTokens() APIs to redbean
This commit is contained in:
parent
648bf6555c
commit
f7ff77d865
209 changed files with 3818 additions and 998 deletions
0
libc/zipos/.cosmo
Normal file
0
libc/zipos/.cosmo
Normal file
|
@ -17,6 +17,7 @@
|
|||
│ PERFORMANCE OF THIS SOFTWARE. │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/assert.h"
|
||||
#include "libc/calls/blocksigs.internal.h"
|
||||
#include "libc/calls/calls.h"
|
||||
#include "libc/calls/internal.h"
|
||||
#include "libc/calls/state.internal.h"
|
||||
|
@ -188,13 +189,14 @@ static int __zipos_load(struct Zipos *zipos, size_t cf, unsigned flags,
|
|||
* Loads compressed file from αcτµαlly pδrταblε εxεcµταblε object store.
|
||||
*
|
||||
* @param uri is obtained via __zipos_parseuri()
|
||||
* @asyncsignalsafe (todo)
|
||||
* @asyncsignalsafe
|
||||
* @threadsafe
|
||||
*/
|
||||
int __zipos_open(const struct ZiposUri *name, unsigned flags, int mode) {
|
||||
int rc;
|
||||
ssize_t cf;
|
||||
struct Zipos *zipos;
|
||||
BLOCK_SIGNALS;
|
||||
if ((flags & O_ACCMODE) == O_RDONLY) {
|
||||
if ((zipos = __zipos_get())) {
|
||||
if ((cf = __zipos_find(zipos, name)) != -1) {
|
||||
|
@ -208,5 +210,6 @@ int __zipos_open(const struct ZiposUri *name, unsigned flags, int mode) {
|
|||
} else {
|
||||
rc = einval();
|
||||
}
|
||||
ALLOW_SIGNALS;
|
||||
return rc;
|
||||
}
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
#include "libc/macros.internal.h"
|
||||
|
||||
// static_yoink this symbol for open(/zip/...) support.
|
||||
zip_uri_support = 0
|
||||
.globl zip_uri_support
|
||||
zipos = 0
|
||||
.globl zipos
|
||||
|
||||
.yoink __zip_end
|
||||
.yoink __zip_start
|
||||
|
@ -34,3 +34,10 @@
|
|||
.yoink __zipos_read
|
||||
.yoink __zipos_stat
|
||||
.yoink __zipos_notat
|
||||
|
||||
// TODO(jart): why does corruption happen when zip has no assets?
|
||||
.yoink .cosmo
|
||||
|
||||
// deprecated: use STATIC_YOINK("zipos")
|
||||
zip_uri_support = 0
|
||||
.globl zip_uri_support
|
||||
|
|
|
@ -20,7 +20,8 @@ LIBC_ZIPOS_A_SRCS = \
|
|||
|
||||
LIBC_ZIPOS_A_OBJS = \
|
||||
$(LIBC_ZIPOS_A_SRCS_S:%.S=o/$(MODE)/%.o) \
|
||||
$(LIBC_ZIPOS_A_SRCS_C:%.c=o/$(MODE)/%.o)
|
||||
$(LIBC_ZIPOS_A_SRCS_C:%.c=o/$(MODE)/%.o) \
|
||||
o/$(MODE)/libc/zipos/.cosmo.zip.o
|
||||
|
||||
LIBC_ZIPOS_A_CHECKS = \
|
||||
$(LIBC_ZIPOS_A).pkg \
|
||||
|
@ -51,6 +52,10 @@ $(LIBC_ZIPOS_A).pkg: \
|
|||
$(LIBC_ZIPOS_A_OBJS) \
|
||||
$(foreach zipos,$(LIBC_ZIPOS_A_DIRECTDEPS),$($(zipos)_A).pkg)
|
||||
|
||||
o/$(MODE)/libc/zipos/.cosmo.zip.o: private \
|
||||
ZIPOBJ_FLAGS += \
|
||||
-B
|
||||
|
||||
LIBC_ZIPOS_LIBS = $(foreach zipos,$(LIBC_ZIPOS_ARTIFACTS),$($(zipos)))
|
||||
LIBC_ZIPOS_SRCS = $(foreach zipos,$(LIBC_ZIPOS_ARTIFACTS),$($(zipos)_SRCS))
|
||||
LIBC_ZIPOS_HDRS = $(foreach zipos,$(LIBC_ZIPOS_ARTIFACTS),$($(zipos)_HDRS))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue