selected project news
2024-08-16
The /proc file system now uses general-purpose virtual files that are
based on NTFS temporary files, and thus entail just a very small overhead.
2024-08-06
The virtual resolv.conf has now been moved from /etc to the /proc/vfs/etc
directory.
2024-07-17
System Call Layer: poll() and select(), as well as the internal __io()
implementation, now apply proper SA_RESTART semantics even upon i/o
call cancellation.
2024-07-07
System Call Layer: expanded support of socket options.
2024-04-11
System Call Layer: __psx_setcwd() now applies root relative notation
where applicable.
2024-02-01
System Call Layer: refactoring and optimization of posix signal delivery
is now complete.
2020-06-05
Posix semantics: __openat() now robustly supports pread() and pwrite()
even when unlinking takes place prior to the first pread() or pwrite()
operation.
2020-05-03
Pre-alpha abi upgrade: struct __dirent now perfectly matches the NTFS
path component length. This brings support of NTFS directory entries
consisting of 255 utf-16 characters of the (little-endian) form
zzzzyyyy yyxxxxxx, of which the respective utf-8 representation form
is 1110zzzz 10yyyyyy 10xxxxxx.
2020-05-01
Framework-specific interfaces now include __fs_tmpfile() and
__fs_tmpdir(), providing a quick and safe way to create a temporary
file (or directory) that are only visible to the calling process.
2020-04-26
Following testing in diverse environment, the framework now supports
directory listing of mapped network volumes that do not provide a
per-entry, 64-bit file-id.
2020-03-10
Having addressed a rare corner-case in __psx_poll(), the framework's
poll() implementation now passes even the most extreme tests with zero
errors.
2020-01-04
More interoperability, and a ding alarm! With support added to the
framework's public API in general, and __psx_init() in particular,
win32 applications may now load a sysroot'ed framework loader library
and subsequently invoke all of its public interfaces. It is the
application's responsibility to obtain the address of all interfaces
of interest, for instance by passing an interface name and the loader's
hmodule, as returned by the system's library-loading function,
to GetProcAddress().
2019-12-07
The framework's ntux utility now provides a simple chmod utility, which
sole aim at the present is to enable directory propagation alongside
a posix permission scheme.
2019-11-06
The midipix port of gdb is now fully functional. The target-specific
bits were all written from scratch, are clean, and use framework-specific
interfaces that are exposed by libc (via mmglue) as its backend.
2019-08-18
The midipix port of ld now supports generation of mdso import libraries
on the fly. Passing /path/to/libfoo.so to the linker now results in the
exact same binary as passing -lfoo.
2019-08-13
The framework's path resolution algorithm now disallows path arguments
which begin with a backslash, preventing any and all ambiguity between
a root-relative path and a winnt server share notation. Use of backslashes
in the middle of a path argument is permitted the same way as before.
2019-07-21
Further progress with the framework's /proc virtual file system, and
initial support of /proc/registry.
2019-06-24
When absent from the physical file system, /etc/resolv.conf is now
generated on the fly based on registry settings.
2019-06-08
Added the /dev/net virtual file system, supporting notation of the form
/dev/net/server/share and a non-hanging virtual /dev/net/server.
2019-06-02
Framework-specific interfaces now include __fs_rpath(), __fs_apath(),
__fs_npath(), and __fs_dpath(), providing a robust method to determine
a file-descriptor's underlying path in root-relative notation (/foo/bar),
file-system absolute location (/dev/fs/c/foo/bar), native tool notation
(c:/foo/bar), or device-driver notation (\Device\Harddisk0\foo\bar),
respectively.
2019-05-28
The ntapi library now provides low-level debug interfaces.
2019-04-12
The toolchain and psxscl now seamlessly support SEH exception handling,
which can be used by C++, ObjC, and other front-ends. The exception
filter resides in psxscl, which means that changes and additional
functionality in the translation layer between the system's SEH
mechanism and the compiler-provided exception handling (libstdc++ or
otherwise) does not require a rebuild of the toolchain or any of the
binaries.
2019-02-27
mdso and midipix-specific custom import libraries: finalized the abi,
adding proper .linkonce support.
2019-02-25
Completed initial work on sbpython2/sbpython3, thereby providing an a
clean, external, sofort-based method for (cross-)building the Python
interpreter.
2019-01-24
Finished overhaul of mpackage, the midipix distro bits.
2019-01-10
Completed overhaul of the sofort build system, now supporting custom
configuration, generic build- and host-related tests, and a variety of
enhanced tests to detect target properties.
2018-11-10
slibtool now fully supports suffixed suffixes (used by OSX).
2018-05-07
Added support for advisory file locking.
2017-10-07
important recent additions to the framework's extended interfaces (xfi),
as well as the framework's internals, include: path conversion functions,
fixed-sized, cached buffer regions, temporary ofd objects, API-based
shared objects, object directory getdents support, and many more.
2017-09-08
sysv message queues are now completed and integrated within the framework.
similar to the implementation of sysv semaphores, the sysv message queues
are composed of ntctty as the backend, ntapi as the client-side component,
and psxscl as the system call translation layer around the latter.
2017-08-05
sysv semaphores are now complete and integrated with ntctty as a
backend, ntapi as the client-side component, and psxscl as a translation
layer around the latter. providing a rarely-used, yet required interface,
the sysv semaphore implementation demonstrate ntctty's power as an
extensible subsystem. the midipix sysv semaphores are fast, robust,
and correctly support SEM_UNDO across execve(2) invocations.
2017-02-11
known as the 'midipix dso scanvenger',
mdso
is now complete and fully functional.
import libraries generated by mdso do not use the .idata section,
but rather the custom sections .dsometa (library headers), .dsosyms
(__imp_foo), and .dsostrs ("foo"). the use of custom sections makes
it possible for the loader (libpsxscl.so) to be in full charge of
path-independent library loading, and also allows marking a library
as a system library, thereby ensuring its loading from the operating
system's designated library directory (aka %system32%).
2017-01-29
with the implementation of
pe_load_framework_loader(), the statically linked part of the framework's
loader is now complete. in a top-level framework process, the loader (libpsxscl.so)
is found according to the logic that was recently described on the
mailing list.
2016-12-17
it's all relative!
the dynamic loader functions in libpemagine, which are responsible for loading
the framework's loader at process initialization, are now complete and working.
The implementation is based on a clean, framework-neutral API/ABI, and could
thus easily be used in a variety of execution environments.
2016-05-01
we now have a mailing list!
many thanks to daurnimator for providing the daemon and helping set up the
list.
2016-05-03
slibtool: a surrogate libtool
implementation, written in C
is working very nicely not only for this project, but also for all other
supported targets (linux, bsd, etc.); build once, use with all native and cross
compilation of libtool-based packages. slibtool alpha has now been
released,
and is currently at version
0.5.13.
2015-12-16
sofort: portable software
project template
is out! the project provides a fast-and-skinny build system, along with a
thread-safe and very powerful argument vector parser and usage screen generator.
this project has already generated the skeleton for four different
midipix-related tools (perk, mdso, apimagic, and elfbites).
2015-08-31
internal release, a working bash, colorful bugs, and lots of fun. for links to
the internal tarballs please join the project's freenode irc channel (#midipix).