Commit Graph

66 Commits

Author SHA1 Message Date
Jonas 'Sortie' Termansen edd8566155 Modernize extfs(8) error handling. 2023-07-12 21:54:57 +02:00
Jonas 'Sortie' Termansen 384218d787 Fix the the. 2023-02-17 23:25:40 +01:00
Jonas 'Sortie' Termansen f2d50bbf9c Add daemon support to init(8).
This change implements a dependency tracking daemon(7) system in init with
overridable init(5) configuration, parallel startup, readiness signaling,
rotating logs, reliable stopping, and handling of leaked processes.

The /etc/init/target file is replaced by the new /etc/init/default per the
new init(5) format. The old configuration is migrated upon upgrade using an
upgrade hook.

extfs(8) now signals readiness using READYFD for fast mounting.

Filesystems that fail to be repaired are now mounted read-only.

The mounting and filesystem checking code is synchronized with sysinstall.

The duplicated array_add utility function now protects against overflows.

tix-iso-bootconfig(8) gains the --init-target option.

tix-iso-liveconfig(8) gains the --daemons option.
2022-10-20 23:26:03 +02:00
Jonas 'Sortie' Termansen add59b27da Fix extfs(8) read-only compat mode. 2022-09-10 20:54:32 +02:00
Jonas 'Sortie' Termansen 322c8317d6 Fix non-throwing operator new failure checks being optimized away. 2022-04-26 01:08:19 +02:00
Jonas 'Sortie' Termansen 23832546d5 Fix chown(2) not supporting -1 to not set the owner and group. 2022-01-15 20:48:54 +01:00
Jonas 'Sortie' Termansen e695e93146 Fix st_blocks being wrong on ext2. 2021-01-19 23:20:05 +01:00
Jonas 'Sortie' Termansen 29555d72bb Fix <fcntl.h> including <sys/stat.h> namespace pollution.
POSIX allows <fcntl.h> to include <sys/stat.h>, but doesn't require it.
There's little reason to do that, since they are separate headers, and
<fcntl.h> just needs the mode_t constants. Fix the code accidentally
relying on <fcntl.h> including <sys/stat.h>. The mode_t constants are now
provided in their own kernel header <sortix/mode.h>.

Additionally fix <sys/stat.h> pulling in all of <sys/types.h>, which is not
allowed by POSIX, which only requires a few types to be declared. Fix the
code accidentally relying on <sys/stat.h> including <sys/types.h>.

Finally fix <dirent.h> pulling in <stdint.h> through <sortix/dirent.h>.

The <sortix/__/dt.h> and <sortix/__/stat.h> headers are no longer required
and their contents have been merged into <sortix/__/dirent.h>.
2018-08-06 23:59:34 +02:00
Jonas 'Sortie' Termansen d393b67d72 Fix st_blksize and st_blocks kernel values. 2018-03-31 00:55:33 +02:00
Jonas 'Sortie' Termansen 9ec09476ba Fix handling of unmountable filesystems. 2016-03-26 16:07:22 +01:00
Jonas 'Sortie' Termansen 2b72262b4f Relicense Sortix to the ISC license.
I hereby relicense all my work on Sortix under the ISC license as below.

All Sortix contributions by other people are already under this license,
are not substantial enough to be copyrightable, or have been removed.

All imported code from other projects is compatible with this license.

All GPL licensed code from other projects had previously been removed.

Copyright 2011-2016 Jonas 'Sortie' Termansen and contributors.

Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2016-03-05 22:21:50 +01:00
Jonas 'Sortie' Termansen ede0571926 Add UTIME_NOW and UTIME_OMIT. 2016-02-24 17:32:05 +01:00
Jonas 'Sortie' Termansen 52007a1793 Collect leaked inode references in extfs. 2016-02-07 17:56:40 +01:00
Jonas 'Sortie' Termansen 9fe234d4d8 Rewrite init(8). 2016-02-06 17:29:42 +01:00
Jonas 'Sortie' Termansen c8315c1ac2 Add extfs s_last_mounted support. 2016-01-26 21:17:09 +01:00
Jonas 'Sortie' Termansen e89dc04674 Add extfs support for d_type. 2016-01-26 21:17:08 +01:00
Jonas 'Sortie' Termansen 2e4b15daed Simplify directory reading. 2016-01-26 18:42:54 +01:00
Jonas 'Sortie' Termansen 1e26626cc2 Silence extfs on unmount. 2016-01-25 17:42:26 +01:00
Jonas 'Sortie' Termansen 01afa43fb0 Improve extfs incoming message reliability. 2016-01-25 17:42:26 +01:00
Jonas 'Sortie' Termansen ec990882b0 Limit extfs device cache to 10% of system memory. 2016-01-25 17:42:26 +01:00
Jonas 'Sortie' Termansen bae08f13ef Fix fsmarshall not handling users and groups.
This is an incompatible ABI change.
2015-10-28 16:07:36 +01:00
Jonas 'Sortie' Termansen 82775c4803 Fix extfs invalid block free on truncation. 2015-10-09 16:17:52 +02:00
Jonas 'Sortie' Termansen 41d4dbdce7 Fix extfs read-only support. 2015-08-27 22:12:11 +02:00
Jonas 'Sortie' Termansen e2202b2ddb Fix extfs unhandled allocation failures.
This is not sufficient. The operator new calls are dangerous right now
because they throw exceptions (not handled) on error instead of returning
NULL. This needs to be changed to operator new nothrow instead.
2015-08-27 22:12:11 +02:00
Jonas 'Sortie' Termansen bc928e99a4 Fix extfs coding style and general issues.
This cleans up constructors so fields are initialized in the same order they
are declared in. This makes it trivial to spot accidentally uninitialized
fields.

This fixes a minor argument parsing bug when the mount path isn't set, but
fortunately argv[argc] is NULL and we wanted to set it to NULL anyway.

This prevents excessively large block sizes from being used.

This improves inode value range checks in the fsmarshall code. Inode 0 is
not a valid inode. The new code for this is also simpler.

This prevents creating links with names larger than 255 bytes.

This adds a check to ensure inodes don't overflow the hardlink count.

This ensures the dirent filetype is only set if supported.
2015-08-27 22:12:11 +02:00
Jonas 'Sortie' Termansen c88dadae8b Fix extfs fuse readlink buffer overrun. 2015-08-27 22:12:11 +02:00
Jonas 'Sortie' Termansen 7953023517 Fix extfs fsmarshall symlink error case. 2015-08-27 22:12:11 +02:00
Jonas 'Sortie' Termansen 0da44df5ce Fix extfs fsmarshall read/write/readlink error reporting. 2015-08-27 22:12:11 +02:00
Jonas 'Sortie' Termansen dd8b4198ec Fix extfs unmaintained invariant on bitmap free. 2015-08-27 22:12:11 +02:00
Jonas 'Sortie' Termansen 5deb51eeae Fix extfs reference counts. 2015-08-27 22:12:11 +02:00
Jonas 'Sortie' Termansen 21c82e4467 Fix missing static keyword in extfs. 2015-08-27 22:12:11 +02:00
Jonas 'Sortie' Termansen b5b2d159c6 Fix extfs mkdir setting bad mode. 2015-08-27 22:12:11 +02:00
Jonas 'Sortie' Termansen ac785d861e Add extfs optimized symlink write support. 2015-08-27 22:12:11 +02:00
Jonas 'Sortie' Termansen 147aae31b1 Sync extfs device file descriptor. 2015-08-26 23:12:55 +02:00
Jonas 'Sortie' Termansen 78d3a673aa Add statvfs support to extfs. 2015-08-26 23:12:55 +02:00
Jonas 'Sortie' Termansen d85f446da9 Add tcgetblob support to extfs. 2015-08-26 23:12:55 +02:00
Jonas 'Sortie' Termansen 6e8f17b5df Add extfs background sync thread. 2015-08-26 23:12:55 +02:00
Jonas 'Sortie' Termansen 26336de7ff Split extfs frontends into their own files. 2015-08-26 23:12:55 +02:00
Jonas 'Sortie' Termansen de21e9c8e2 Refactor extfs dirty pattern to BeginWrite then FinishWrite pattern. 2015-08-26 23:12:45 +02:00
Jonas 'Sortie' Termansen ef45218660 Add S_ISGID and S_ISUID.
I originally left them out because Sortix doesn't have setuid and setgid
executable support, but this created considerable compatibility issues and
it is better to supply them as the mode bits still exist and can be set.
2015-08-21 21:25:00 +02:00
Jonas 'Sortie' Termansen 5444d1014e Fix extfs leaking inode reference on readlink failure. 2015-04-05 01:26:38 +02:00
Jonas 'Sortie' Termansen e0ee3017e1 Fix extfs FUSE backend missing symbolic link support. 2015-04-05 01:26:38 +02:00
Jonas 'Sortie' Termansen 577323b950 Update the ioleast family to current coding conventions. 2015-02-08 22:58:32 +01:00
Jonas 'Sortie' Termansen ebb75f656c Honor O_EXCL only if O_CREAT. 2015-02-08 22:58:32 +01:00
Jonas 'Sortie' Termansen a22cca77f5 Fix extfs O_DIRECTORY error codes. 2015-02-06 14:56:35 +01:00
Jonas 'Sortie' Termansen 22a510e957 Fix extfs uninitialized inode members. 2015-02-06 14:56:31 +01:00
Jonas 'Sortie' Termansen 3d6fc8438a Fix extfs chmod never succeeding. 2015-02-06 14:55:36 +01:00
Jonas 'Sortie' Termansen 3754dbd5cd Fix extfs fuse frontend not compiling. 2015-02-06 14:55:36 +01:00
Jonas 'Sortie' Termansen 231f73c4f9 Fix extfs symbolic link access and truncation bugs. 2015-02-06 14:55:36 +01:00
Jonas 'Sortie' Termansen 00f9af4bf3 Fix extfs filesystem typo. 2015-02-06 14:55:35 +01:00