| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
We do a few things here:
- Move search_path to the scope where it is used to make dependencies
more clear.
- Have a separate variable to store the file name we eventually need to
free and move the free logic to happen in a single place.
Both of this allows us to still free the name even if a fault is generated and
also avoids a compiler warning as we try to assign a 'const char*'
file_name_exec to a 'char *', making it more clear to what exactly we
need to free. I also believe 'error' in line 245 was not initialized in
case 'file_name_exec' is used and this fixes that too.
Message-ID: <20240121210757.1900938-1-flaviocruz@gmail.com>
|
|
|
|
| |
Message-ID: <20240121210757.1900938-4-flaviocruz@gmail.com>
|
|
|
|
| |
Message-ID: <20240121210757.1900938-3-flaviocruz@gmail.com>
|
|
|
|
|
| |
Not needed since b2c97e251bb470e6f967c716081675a96dbde59c
Message-ID: <20240121210757.1900938-2-flaviocruz@gmail.com>
|
|
|
|
|
| |
/hurd/remap --version was claiming to be fakeroot
Message-ID: <621e135a-f272-43e8-9c10-35804abb1ed5@xobnur.uk>
|
| |
|
| |
|
|
|
|
| |
We don't actually want to write these anyway.
|
|
|
|
| |
We need to mask out before shifting the bits.
|
| |
|
|
|
|
|
| |
mach_open_devstream creates a fully-buffered stream by default.
This prevents from seeing various messages.
|
| |
|
|
|
|
| |
In case the user is using a debug kernel, they will get to see these.
|
|
|
|
| |
It now provides a pkg-config file instead of libgcrypt-config
|
|
|
|
| |
Message-ID: <3pmgbk2myx4phdb6wcso54solmybulrvbytols5md3nri2p2qp@xjmfmpvwjp6t>
|
|
|
|
|
|
|
|
|
| |
top of sylink/device/fifo/socket files.
While these are short-circuited translators and simply change st_mode,
actual translators can be set on top. We want `showtrans` to
show the actual passive translator, not the short-circuited one.
Message-ID: <b3ujoovkmz3iagqkmv6lyzgqsv3g5u2wiaqwktlttbalyd7oak@6qeiiupzzmag>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This issue come from ruby language community. Below test program
hang up when only run on Linux.
% uname -mrsv
Linux 2.6.26-2-486 #1 Sat Dec 26 08:37:39 UTC 2009 i686
% ruby -rsocket -ve '
BasicSocket.do_not_reverse_lookup = true
serv = TCPServer.open("127.0.0.1", 0)
s1 = TCPSocket.open("127.0.0.1", serv.addr[1])
s2 = serv.accept
s2.close
s1.write("a") rescue p $!
s1.write("a") rescue p $!
Thread.new {
s1.write("a")
}.join'
ruby 1.9.3dev (2010-07-06 trunk 28554) [i686-linux]
#<Errno::EPIPE: Broken pipe>
[Hang Here]
FreeBSD, Solaris, Mac doesn't. because Ruby's write() method call
select() internally. and tcp_poll has a bug.
SUS defined 'ready for writing' of select() as following.
| A descriptor shall be considered ready for writing when a call to an output
| function with O_NONBLOCK clear would not block, whether or not the function
| would transfer data successfully.
That said, EPIPE situation is clearly one of 'ready for writing'.
We don't have read-side issue because tcp_poll() already has read side
shutdown care.
| if (sk->sk_shutdown & RCV_SHUTDOWN)
| mask |= POLLIN | POLLRDNORM | POLLRDHUP;
So, Let's insert same logic in write side.
- reference url
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/31065
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/31068
Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
|
|
|
|
|
| |
Callers are not expecting to get EPIPE, and rather a real EOF, like is done
in S_io_read.
|
|
|
|
|
|
|
|
|
| |
* ftpfts/ftpfs: use appropriate function signature for interrupt_check.
* pfinet/Makefile: turn off warnings in Linux driver code that are now
errors in GCC 14.
* pfinet/glue-include/linux/socket.h: remove duplicate functions. These
are implemented in linux-src/net/core/iovec.c.
Message-ID: <pnx5mho5ipgabehscwu2ogk5l7zfjsxpmjz37fuplgbtohwtjj@ofhr2r5xvqm6>
|
|
|
|
|
| |
Compilation fails otherwise due to -Werror=implicit-function-declaration
Message-ID: <uuxfc5gjinlekgdyjzxesz72t6dabbl6s2f2n2fi7iw2bi5nl5@js7sx73kagmd>
|
|
|
|
|
| |
If netdde is restarting, it may have not finished probing devices, give
it some time.
|
|
|
|
|
| |
The bootstrap filesystem doesn't have to be ext2fs
Message-ID: <8932f426-8ab5-4344-81a6-52a90dfada09@runbox.com>
|
|
|
|
|
| |
The field length check should check for field overflow.
Message-ID: <8e69aefc-8c08-4189-a5b9-974303427597@xobnur.uk>
|
|
|
|
|
|
| |
Add a helper library for attaching interrupt handlers in userspace.
Message-ID: <20240326045846.1661099-2-damien@zamaudio.com>
|
|
|
|
|
|
| |
This reverts commit db46ea2eb9dc84959fbf9b1819facac3d6078ba1.
This is making the hurd startup hang.
|
|
|
|
|
|
|
|
|
| |
This maps to EM_AARCH64. Just like the x86_64 branch, we only compile
this code if CPU_TYPE_ARM64 is defined in Mach headers, to avoid
raising Mach version requirement on other architectures; and we
explicitly enable the branch when building for AArch64 itself, to get
a build error if CPU_TYPE_ARM64 is somehow not defined.
Message-ID: <20240323115322.69075-7-bugaevc@gmail.com>
|
|
|
|
| |
Message-ID: <20240323115322.69075-10-bugaevc@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Since no CPU subtypes are defined for CPU_TYPE_ARM64, just report the
type, same as for x86_64.
Sample uname(2) output:
sysname: GNU
release: 0.9
version: GNU-Mach 1.8/Hurd-0.9
machine: aarch64
Message-ID: <20240323115322.69075-9-bugaevc@gmail.com>
|
|
|
|
| |
Message-ID: <20240323115322.69075-8-bugaevc@gmail.com>
|
|
|
|
|
|
|
| |
The code here just wants to deallocate the whole address space, and Mach
already contains the logic to limit the passed-in range to the vm_map's
actual bounds (see VM_MAP_RANGE_CHECK).
Message-ID: <20240323115322.69075-6-bugaevc@gmail.com>
|
|
|
|
|
|
|
|
|
|
| |
While GNU Mach on AArch64 still exports VM_MIN_ADDRESS / VM_MAX_ADDRESS
for compatibility, we should try to rely on it less when possible; in
the future we might be able to stop exporting them from Mach. The code
here really just wants to wire everything in its address space, and the
wire_segment_internal () routine already queries for actually present
memory regions dynamically.
Message-ID: <20240323115322.69075-5-bugaevc@gmail.com>
|
|
|
|
|
|
| |
None of the new architectures are going to have it; that isn't specific
to x86_64.
Message-ID: <20240323115322.69075-4-bugaevc@gmail.com>
|
|
|
|
|
| |
Not only on x86_64.
Message-ID: <20240323115322.69075-3-bugaevc@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The previous logic had two independent issues:
* We need to make the stack executable if either the program or its ELF
interpreter requires executable stack. In practice, it's common for
the program itself to not require executable stack, but ld.so (glibc)
needs it.
* mach_setup_thread () allocates stacks with a simple vm_allocate (),
which creates non-executable memory. So if an executable stack is
required, the stack has to be vm_protect'ed to enable execution, not
the other way around. As the comment suggest, it would've been better
to use vm_map () with the desired protection directly.
Message-ID: <20240323115322.69075-2-bugaevc@gmail.com>
|
|
|
|
|
|
|
|
| |
struct bottomhalf.mdmstate is of type error_t (*)(int *state).
Fixes -Wincompatible-pointer-types, which is a hard error by default
in GCC 14.
Message-ID: <20240323115322.69075-1-bugaevc@gmail.com>
|
|
|
|
| |
Message-ID: <20240312220842.79072-1-etienne.brateau@gmail.com>
|
|
|
|
| |
Message-ID: <20240312220311.76709-1-etienne.brateau@gmail.com>
|
|
|
|
|
| |
We are fine with only using xattr on filesystems that don't have the
i_translator inode field.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This allow to reduce the dependencies, only xkbcommon (keyboard support
only) is required instead of the whole x11 library + lex + yacc.
This replacement allow to reduce the code size, now features are handled
by xkbcommon itself.
The functionnalites remain the sames (actions are reimplemented
but in the code directly as it’s impossible to add custom actions).
The custom xkb data files are removed as we can now directly use the
standard ones from xkeyboard-config.
The configuration to launch the console keyboard modules changed to now
directly configure the model+layout+variat+options directly.
Tested by compiling with and without xkbcommon.
Tested X11 (ran i3 correctly).
Composing is still working.
Message-ID: <20240309234838.31923-1-etienne.brateau@gmail.com>
|
|
|
|
| |
Message-ID: <20240309003840.586490-1-etienne.brateau@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
block/char devices or directories
The perl test suite has a test where it reads all the block or char devices
under /dev without following the translators. Then it compares it against a
list of devices that read the translated nodes stat info.
The patch changes how the the device files are created initially so that the stat information
is identical and makes the Hurd environment appear more similar to other operating
systems.
Message-ID: <Zef__LrgPLXp9WHG@jupiter.tail36e24.ts.net>
|
|
|
|
| |
Using vmstats allows to get up to 16T.
|
|
|
|
|
|
|
|
|
|
| |
Replaces experimental option --x-xattr-translator-records
with --no-xattr-translator-records to allow rolling back to
previous behaviour.
NB:
- Legacy records still work with either setting.
- Adding a new record removes a legacy one.
|
| |
|
|
|
|
|
|
|
| |
Update argument types for sprint_frac_value to reflect how big they
actually are so that GCC doesn't think it needs a larger buffer than
necessary.
Message-ID: <ZeS1i5u_OziWpApt@jupiter.tail36e24.ts.net>
|
|
|
|
|
|
|
| |
Userland might load BPF programs with unknown instructions, we currently
don't pre-check against that. In such a case, we shouldn't make netdde
completely abort, and rather just return 0 like e.g. in the division by
zero case.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Currently, if we do:
$ ls /dev/cd0/
The computer seems to get stuck, caused by the divide by 0 in the
rumpdisk server in device_get_status. I noticed that if we have no disk in the
cdrom device, we can still open it but block and media size will be 0
and the message "cd0 dos partition I/O error" will be printed to the
console. To avoid this problem, we check the block size and throw an error
when it is 0. This also works correctly when a disk actually exists.
This should help fix the perl and likely the vim test suites that are
currently failing in https://buildd.debian.org/.
Message-ID: <Zd_8XjcHcbNIp5NM@mars.tail36e24.ts.net>
|
|
|
|
| |
Message-ID: <20240216182630.5770-2-flaviocruz@gmail.com>
|
| |
|
|
|
|
|
|
| |
In case the image was built through a tarball, /servers/socket/1 might
exist but not actually have been configured as pflocal translator. So
better check that we do have a translator there, and fix it otherwise.
|