]> sourceware.org Git - newlib-cygwin.git/log
newlib-cygwin.git
19 months agoCygwin: regex: regexec: allow to evaluate full collating symbols topic/musl-regex github/topic/musl-regex
Corinna Vinschen [Thu, 9 Mar 2023 10:27:12 +0000 (11:27 +0100)]
Cygwin: regex: regexec: allow to evaluate full collating symbols

...rather than just single unicode codepoints.  Don't add the
mechanics yet since regcomp doesn't compile collating symbols yet.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
19 months agoCygwin: next_unicode_mbs: return full char prefix from multibyte
Corinna Vinschen [Thu, 9 Mar 2023 10:10:53 +0000 (11:10 +0100)]
Cygwin: next_unicode_mbs: return full char prefix from multibyte

Convert multibyte string to wint_t string and return the length
of the multibyte prefix constituting a full unicode char, taking
collating elements into account.  Also return the resulting wint_t
string.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
19 months agoCygwin: wcitombs: like wcstombs, just for wint_t
Corinna Vinschen [Thu, 9 Mar 2023 10:07:36 +0000 (11:07 +0100)]
Cygwin: wcitombs: like wcstombs, just for wint_t

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
19 months agoCygwin: regex: fix type and use macro to define equivalence class marking
Corinna Vinschen [Thu, 9 Mar 2023 10:06:44 +0000 (11:06 +0100)]
Cygwin: regex: fix type and use macro to define equivalence class marking

tre_ctype_t needs to be able to keep the equivalence marking bit.
Define the bit as macro.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
19 months agoCygwin: regex: fix type of tre_char_t to wint_t
Corinna Vinschen [Sat, 4 Mar 2023 08:51:20 +0000 (09:51 +0100)]
Cygwin: regex: fix type of tre_char_t to wint_t

...and call mbrtowi instead of mbtowc in regexec, too.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
19 months agoCygwin: regex: implement equivalence classes
Corinna Vinschen [Fri, 3 Mar 2023 21:09:10 +0000 (22:09 +0100)]
Cygwin: regex: implement equivalence classes

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
19 months agoCygwin: regex: replace BSD version with MUSL version
Corinna Vinschen [Wed, 1 Mar 2023 20:21:49 +0000 (21:21 +0100)]
Cygwin: regex: replace BSD version with MUSL version

add a few Cygwin-specifc changes

TODO: Add equivalence classes and collating symbols

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
19 months agoconfigury: define HAVE_REGEX_FILES
Corinna Vinschen [Wed, 1 Mar 2023 20:18:58 +0000 (21:18 +0100)]
configury: define HAVE_REGEX_FILES

Allow to specify if the regex files in newlib/libc/posix are built
or not.  Cygein is about to switch to MUSL regex, and the BSD regex
files collide with the definitions in MUSL's regex.h.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
19 months agoCygwin: doc: Update postinstall/preremove scripts
Jon Turney [Thu, 2 Mar 2023 21:33:32 +0000 (21:33 +0000)]
Cygwin: doc: Update postinstall/preremove scripts

setup >=2.925 indicates to postinstall and preremove scripts the Start
Menu suffix to use via the CYGWIN_START_MENU_SUFFIX env var.

It also indicates, via the CYGWIN_SETUP_OPTIONS env var, if the option
to disable Start Menu shortcut creation is supplied.

Update the Cygwin documentation postinstall and preremove scripts to
take these env vars into consideration.

19 months agoCygwin: Fix type mismatch on sys/cpuset.h
Mark Geisert [Tue, 14 Mar 2023 08:56:01 +0000 (01:56 -0700)]
Cygwin: Fix type mismatch on sys/cpuset.h

Addresses https://cygwin.com/pipermail/cygwin/2023-March/253220.html

Take the opportunity to follow FreeBSD's and Linux's lead in recasting
macro inline code as calls to static inline functions.  This allows the
macros to be type-safe.  In addition, added a lower bound check to the
functions that use a cpu number to avoid a potential buffer underrun on
a bad argument.  h/t to Corinna for the advice on recasting.

Fixes: 362b98b49af5 ("Cygwin: Implement CPU_SET(3) macros")
19 months agolibgloss/epiphany: Fix move instruction in crt0.S
Sebastian Huber [Wed, 8 Mar 2023 13:07:07 +0000 (14:07 +0100)]
libgloss/epiphany: Fix move instruction in crt0.S

This patch relates to bug report:

https://sourceware.org/bugzilla/show_bug.cgi?id=30212

19 months agoCygwin: ctty: Remove old 'kludge' code.
Takashi Yano [Sun, 5 Mar 2023 09:17:39 +0000 (18:17 +0900)]
Cygwin: ctty: Remove old 'kludge' code.

Remove old 'kludge' code which does not seem necessary anymore. The
comment of the 'kludge' is as follows.

  * syscalls.cc (setsid): On second thought, in the spirit of keeping
    things kludgy, set ctty to -2 here as a special flag, and...
    (open): ...only eschew setting O_NOCTTY when that case is detected.

Fixes: c38a2d837303
Signed-off-by: Takashi Yano <takashi.yano@nifty.ne.jp>
19 months agoCygwin: ctty: Replace ctty constant with more descriptive macros.
Takashi Yano [Sun, 5 Mar 2023 10:02:13 +0000 (19:02 +0900)]
Cygwin: ctty: Replace ctty constant with more descriptive macros.

This patch replaces ctty constants with more descriptive macros
(CTTY_UNINITIALIZED and CTTY_RELEASED) rather than -1 and -2 as
well as checking sign with CTTY_IS_VALID().

Fixes: 3b7df69aaa57 (Cygwin: ctty: Add comments for the special values: -1 and -2.)
Suggested-by: Corinna Vinschen <corinna@vinschen.de>
Signed-off-by: Takashi Yano <takashi.yano@nifty.ne.jp>
19 months agoCygwin: console: Suppress unnecessary open_shared_console() calls.
Takashi Yano [Mon, 6 Mar 2023 15:18:04 +0000 (00:18 +0900)]
Cygwin: console: Suppress unnecessary open_shared_console() calls.

Signed-off-by: Takashi Yano <takashi.yano@nifty.ne.jp>
19 months agoCygwin: ctty: Add missing fixup_after_{exec,fork}() call.
Takashi Yano [Mon, 6 Mar 2023 15:13:55 +0000 (00:13 +0900)]
Cygwin: ctty: Add missing fixup_after_{exec,fork}() call.

Previously, fixup_after_{exec,fork}() calls for CTTY were missing.
This patch fixes that.

Signed-off-by: Takashi Yano <takashi.yano@nifty.ne.jp>
20 months agoCygwin: is_unicode_equiv: fix comment
Corinna Vinschen [Fri, 3 Mar 2023 17:15:52 +0000 (18:15 +0100)]
Cygwin: is_unicode_equiv: fix comment

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: glob: fix conversion from UTF-32 to multibyte
Corinna Vinschen [Fri, 3 Mar 2023 10:32:31 +0000 (11:32 +0100)]
Cygwin: glob: fix conversion from UTF-32 to multibyte

The conversion function g_Ctoc missed to drop the flag
values from the wint_t value.  That wasn't noticable with
the original version because it used a 64 bit Char type
and the flags were in the upper 32 bit region.  So the
flag values were silently dropped when wcrtomb was called.
After converting Char to wint_t, we have to do drop the
flags explicitely.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoarm: Restrict processor mode change when in hypervisor mode
Srinath Parvathaneni [Fri, 3 Mar 2023 13:12:18 +0000 (13:12 +0000)]
arm: Restrict processor mode change when in hypervisor mode

If a CPU implements EL2 as its highest exception level then programs
using newlib may start in hypervisor mode.  In that state it is not
trivial to switch into the various EL1 modes to configure the
individual exception stacks, so do not try.

20 months agoarm: Fix the SP used in setting stack limit for standalone application.
Srinath Parvathaneni [Fri, 3 Mar 2023 12:45:40 +0000 (12:45 +0000)]
arm: Fix the SP used in setting stack limit for standalone application.

Move the instruction that saves SP before the mode check so that
applications that start in USER mode correctly set the stack limit.

20 months agoCygwin: define CHARCLASS_NAME_MAX
Corinna Vinschen [Wed, 1 Mar 2023 20:20:26 +0000 (21:20 +0100)]
Cygwin: define CHARCLASS_NAME_MAX

CHARCLASS_NAME_MAX isn't defined yet, accidentally.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: add collating symbols support to release message
Corinna Vinschen [Wed, 1 Mar 2023 10:49:52 +0000 (11:49 +0100)]
Cygwin: add collating symbols support to release message

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: fnmatch: support collating symbols in [. .] brackets
Corinna Vinschen [Wed, 1 Mar 2023 09:54:00 +0000 (10:54 +0100)]
Cygwin: fnmatch: support collating symbols in [. .] brackets

This requires quite a few changes in how fnmatch operates.
It always operates on wint_t strings now, just like regex and glob,
and it always keeps a pointer on the character inside the string,
rather than operating on a single character.

As a result, just drop the ifdef's for Cygwin.  The code is
non-portable now anyway...

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: mbsnrtowci: like mbsnrtowcs, just for wint_t
Corinna Vinschen [Wed, 1 Mar 2023 09:44:52 +0000 (10:44 +0100)]
Cygwin: mbsnrtowci: like mbsnrtowcs, just for wint_t

Deviation from standard: If the input is broken, the output will be
broken.  I. e., we just copy the current byte over into the wint_t
destination and try to pick up on the next byte.  This is in line
with the way fnmatch works.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: wcichr: add wint_t replacement for wcschr
Corinna Vinschen [Wed, 1 Mar 2023 09:36:55 +0000 (10:36 +0100)]
Cygwin: wcichr: add wint_t replacement for wcschr

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: add wcipcpy and wcipncpy helper functions
Corinna Vinschen [Wed, 1 Mar 2023 09:36:09 +0000 (10:36 +0100)]
Cygwin: add wcipcpy and wcipncpy helper functions

wint_t replacements for wcpcpy and wcpncpy

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: wcitoascii: move to wchar.h as inline function
Corinna Vinschen [Wed, 1 Mar 2023 09:34:41 +0000 (10:34 +0100)]
Cygwin: wcitoascii: move to wchar.h as inline function

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: fnmatch: drop static variable
Corinna Vinschen [Tue, 28 Feb 2023 15:45:52 +0000 (16:45 +0100)]
Cygwin: fnmatch: drop static variable

fnmatch calls fnmatch1 with a static mbstate_t.  This breaks
calling fnmatch from multiple threads.  Fix it by folding
fnmatch1 into fnmatch and moving all mbstates to local variables.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: __wscollate_range_cmp: fix incorrect comment
Corinna Vinschen [Tue, 28 Feb 2023 11:10:40 +0000 (12:10 +0100)]
Cygwin: __wscollate_range_cmp: fix incorrect comment

The comment that the first arg must be the pattern was added
during development, before it turned out that __wscollate_range_cmp
can be implemented in an order independent way.

Better explain why this function uses pointers to strings.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agonano-mallocr: Prevent NULL pointer de-reference in free_list
Henrik Nilsson via Newlib [Fri, 17 Feb 2023 05:56:49 +0000 (06:56 +0100)]
nano-mallocr: Prevent NULL pointer de-reference in free_list

The existing code checked if there was a chunk in free_list and
that the tail was not the next chunk.

The check if there is a chunk is not needed since it's already
known but the case of a single chunk in free_list needs to be
handled differently.

20 months agoCygwin: fetch-lc-def-codesets-from-linux: fix locale name handling
Corinna Vinschen [Sun, 26 Feb 2023 19:14:54 +0000 (20:14 +0100)]
Cygwin: fetch-lc-def-codesets-from-linux: fix locale name handling

As the former call to `locale -av' has the unwanted side effect
to shorten the locale name to <= 15 chars, don't use it.  Use
`locale -a' instead and fetch the codeset from another call to
`locale' for each locale.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: locale: fix devanagari modifier
Corinna Vinschen [Sun, 26 Feb 2023 16:17:33 +0000 (17:17 +0100)]
Cygwin: locale: fix devanagari modifier

Effectively revert commit 57bac33359db.  The fact that the
devanagari modifier was called devanagar (missing the trailing 'i')
is a result of `locale -av' shortening the locale name to a maximum
of 15 characters.

D'oh.  I guess we need a better way to do this...

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: introduce /proc/codesets and /proc/locales
Corinna Vinschen [Sun, 26 Feb 2023 16:04:03 +0000 (17:04 +0100)]
Cygwin: introduce /proc/codesets and /proc/locales

So far locale(1) had to have knowledge how to construct, thus
duplicating the effort how Cygwin handles locale strings.

Move locale list and codeset list generation into Cygwin by
providing /proc/codesets and /proc/locales files.  /proc/locales
does not list aliases, those are still handled in locale(1).

locale(1) opens the files and ueses that info for printing,
like any other application can do now.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: fetch-lc-def-codesets-from-linux: speed up
Corinna Vinschen [Sat, 25 Feb 2023 19:15:53 +0000 (20:15 +0100)]
Cygwin: fetch-lc-def-codesets-from-linux: speed up

Drop shell read loop in favor of performing the locale output
evaluation inside a single awk invocation.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: locale(1): redefine rule for adding a @euro locale
Corinna Vinschen [Sat, 25 Feb 2023 18:43:08 +0000 (19:43 +0100)]
Cygwin: locale(1): redefine rule for adding a @euro locale

The @euro locale is only useful, if the locale uses the EUR currency
and the codeset of the base locale is ISO-8859-1, or the locale is
el_GR.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: locale: Set default charset from Linux locale -> codeset mapping
Corinna Vinschen [Sat, 25 Feb 2023 15:11:54 +0000 (16:11 +0100)]
Cygwin: locale: Set default charset from Linux locale -> codeset mapping

Generate lc_def_codeset.h header containing the default mapping from
locale to codeset on Linux.  Use this mapping in __set_charset_from_locale
in the first place.

For every locale not covered by this table, just map Windows codepages
to equivalent codesets used on Linux/Unix, getting rid of LCIDs entirely.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: locale: new script creating linux default codeset mapping
Corinna Vinschen [Sat, 25 Feb 2023 15:06:34 +0000 (16:06 +0100)]
Cygwin: locale: new script creating linux default codeset mapping

New script creating a mapping table from locale to default codeset
for this locale.  We use that in Cygwin now to generate the own
default codeset mapping based on Linux locale names.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: locale: fix devanagar modifier
Corinna Vinschen [Sat, 25 Feb 2023 14:09:12 +0000 (15:09 +0100)]
Cygwin: locale: fix devanagar modifier

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoctype_cp.h/ctype_iso.h: clean whitespace
Corinna Vinschen [Sat, 25 Feb 2023 12:23:20 +0000 (13:23 +0100)]
ctype_cp.h/ctype_iso.h: clean whitespace

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: fully support KOI8-T codeset
Corinna Vinschen [Sat, 25 Feb 2023 12:19:27 +0000 (13:19 +0100)]
Cygwin: fully support KOI8-T codeset

Commit 89eb4bce152f was pretty half-hearted, missing
the codepage character type tables and wctomb/mbtowc
mappings.

Fixes: 89eb4bce152f ("Cygwin: support KOI8-T codeset")
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: locale(1): fix typo
Corinna Vinschen [Sat, 25 Feb 2023 12:20:05 +0000 (13:20 +0100)]
Cygwin: locale(1): fix typo

Windows locales need a dash instead of an underscore.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: dsp: Fix SNDCTL_DSP_{POST,SYNC} ioctl() behaviour.
Takashi Yano [Sat, 25 Feb 2023 01:28:34 +0000 (10:28 +0900)]
Cygwin: dsp: Fix SNDCTL_DSP_{POST,SYNC} ioctl() behaviour.

Previously, SNDCTL_DSP_POST and SNDCTL_DSP_SYNC were implemented
wrongly. Due to this issue, module-oss of pulseaudio generates
choppy sound when SNDCTL_DSP_POST is called. This patch fixes that.

Signed-off-by: Takashi Yano <takashi.yano@nifty.ne.jp>
20 months agoCygwin: convert Windows locale handling from LCID to ISO5646 strings
Corinna Vinschen [Fri, 24 Feb 2023 15:37:44 +0000 (16:37 +0100)]
Cygwin: convert Windows locale handling from LCID to ISO5646 strings

Since Windows Vista, locale handling is converted from using numeric
locale identifiers (LCID) to using ISO5646 locale strings.  In the
meantime Windows introduced new locales which don't even have a LCID
attached.  Those were unusable in Cygwin because locale information
for these locales required to call the new locale functions taking
a locale string.

Convert Cygwin to drop LCIDs and use Windows ISO5646 locales instead.

The last place using LCIDs is the __set_charset_from_locale function.
Checking numerically is easier and uslay faster than checking strings.
However, this function is clearly a TODO

20 months agoCygwin: support KOI8-T codeset
Corinna Vinschen [Fri, 24 Feb 2023 15:07:26 +0000 (16:07 +0100)]
Cygwin: support KOI8-T codeset

Used on Linux as default codeset for Tajik. There's no matching
Windows codepage, so fake it as CP103.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: locale(1): drop using LCID, use Windows locale names
Corinna Vinschen [Wed, 22 Feb 2023 23:22:56 +0000 (00:22 +0100)]
Cygwin: locale(1): drop using LCID, use Windows locale names

LCIDs are deprecated since Windows Vista.  Worse, lots of new locales
have been added in the meantime which have no LCID attached.  They
are only available by locale name.

As first step, rearrange the locale(1) tool to use Windows locale
names, rather than LCIDs, so we can now enumerate *all* locales
available in more recent Windows versions.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoFix libgloss/newlib build to conditionally use top include dir
Jeff Johnston [Thu, 9 Feb 2023 21:59:31 +0000 (16:59 -0500)]
Fix libgloss/newlib build to conditionally use top include dir

- conditionally use -idirafter option for arm

20 months agoRISC-V: Use the new libm code if possible
Hau Hsu [Wed, 22 Feb 2023 01:59:07 +0000 (09:59 +0800)]
RISC-V: Use the new libm code if possible

Set  __OBSOLETE_MATH_DEFAULT to 0 if 'd' extension is supported (i.e.
__riscv_flen == 64).

Base on the comment for  __OBSOLETE_MATH_DEFAULT:

> ... it assumes that the toolchain has ISO C99 support (hexfloat
> literals, standard fenv semantics), the target has IEEE-754 conforming
> binary32 float and binary64 double (not mixed endian) representation,
> standard SNaN representation, double and single precision arithmetics
> has similar latency and it has no legacy SVID matherr support, only
> POSIX errno and fenv exception based error handling.

Signed-off-by: Hau Hsu <hau.hsu@sifive.com>
20 months agoCygwin: __wscollate_range_cmp: workaround wcscoll's case-insensitivity
Corinna Vinschen [Wed, 22 Feb 2023 11:20:32 +0000 (12:20 +0100)]
Cygwin: __wscollate_range_cmp: workaround wcscoll's case-insensitivity

Most locales using latin characters ignore case while sorting.
This is what wcscoll does (correctly so).  However, there's an
internal order of collating sequences compared to the base
character, which is case-sensitive, at least in GLibc.

There's no way to express this in Windows, because CompareString
and LCMapString *always* use case-insensitivity in those locales,
even if none of the *IGNORECASE sorting flags are used.

We want to follow glibc's behaviour more closely, so we add an
extra check for the case and make sure upper and lower cased
letters don't comapre as identical.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: glob: perform ignore_case_with_glob on input
Corinna Vinschen [Wed, 22 Feb 2023 09:47:54 +0000 (10:47 +0100)]
Cygwin: glob: perform ignore_case_with_glob on input

Rather than converting single chars on the fly to lowercase
in case ignore_case_with_glob is set, perform the conversion
on the entire input (pattern and filenames).

20 months agoCygwin: glob: perform correct utf-32 -> multibyte conversion
Corinna Vinschen [Wed, 22 Feb 2023 09:03:03 +0000 (10:03 +0100)]
Cygwin: glob: perform correct utf-32 -> multibyte conversion

g_Ctoc, converting the UTF-32 filenames to multibyte, still
used UTF-16 to  multibyte conversion.  Introduce a wirtomb
helper and fix that.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: glob: fix includes
Corinna Vinschen [Wed, 22 Feb 2023 09:00:10 +0000 (10:00 +0100)]
Cygwin: glob: fix includes

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: linux-locale-helpers: helper tools to generate locale data from Linux
Corinna Vinschen [Mon, 20 Feb 2023 22:00:04 +0000 (23:00 +0100)]
Cygwin: linux-locale-helpers: helper tools to generate locale data from Linux

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: glob: implement collating symbol support
Corinna Vinschen [Mon, 20 Feb 2023 21:50:17 +0000 (22:50 +0100)]
Cygwin: glob: implement collating symbol support

Allow the [.<sym>.] expression

This requires a string comparision rather than a character
comparison.  Introduce and use __wscollate_range_cmp.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: glob: convert internal character datatype to wint_t
Corinna Vinschen [Mon, 20 Feb 2023 21:47:17 +0000 (22:47 +0100)]
Cygwin: glob: convert internal character datatype to wint_t

uint_fast64_t doesn't allow easy string handling, so convert
the internal "Char" type to wint_t.  Given that UTF-32 only
needs 21 bits, we're well off with 28 usable character bits.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: nlsfuncs.cc: introduce collating elements and helper functions
Corinna Vinschen [Mon, 20 Feb 2023 21:38:41 +0000 (22:38 +0100)]
Cygwin: nlsfuncs.cc: introduce collating elements and helper functions

lc_collelem.h: autogenerated table of collating element, taken
               from glibc

is_unicode_coll_elem: Check if a UTF-32 string is a collating element
next_unicode_char: return length of prefix from a string constituting
                   a complete character in the current locale, taking
                   collating elements into acocunt.

20 months agoCygwin: add more UTF-32 helper functions
Corinna Vinschen [Mon, 20 Feb 2023 21:29:37 +0000 (22:29 +0100)]
Cygwin: add more UTF-32 helper functions

wcintowcs: convert UTF-16 to UTF-32 string
wcilen: return number of characters in a UTF-32 string
wcincmp: compare two fixed-size UTF-32 strings

Used in followup patches introducing collating symbols

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: glob: sort in current locale's collating order
Corinna Vinschen [Mon, 20 Feb 2023 21:24:06 +0000 (22:24 +0100)]
Cygwin: glob: sort in current locale's collating order

Follow glibc here.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agonewlib/libc/{ctype, string}/*.t: Unicode 15 character width and property tables
Brian Inglis [Fri, 17 Feb 2023 20:56:24 +0000 (13:56 -0700)]
newlib/libc/{ctype, string}/*.t: Unicode 15 character width and property tables

20 months agonewlib/libc/ctype/mkcaseconv: fix POSIX shell invalid == comparison
Brian Inglis [Fri, 17 Feb 2023 20:56:23 +0000 (13:56 -0700)]
newlib/libc/ctype/mkcaseconv: fix POSIX shell invalid == comparison

20 months agoCygwin: convert __collate_range_cmp to __wcollate_range_cmp
Corinna Vinschen [Sun, 19 Feb 2023 13:23:53 +0000 (14:23 +0100)]
Cygwin: convert __collate_range_cmp to __wcollate_range_cmp

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=179721

After FreeBSD eventually picked up the bugreport from within
only 5 years, rename __collate_range_cmp to __wcollate_range_cmp
as suggested all along, and make it type safe (wint_t instead of
wchar_t for hopefully obvious reasons...)

While at it, drop __collate_load_error and fix the checks for
it in glob and fnmatch.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: is_unicode_equiv: fix normalization
Corinna Vinschen [Sat, 18 Feb 2023 22:14:11 +0000 (23:14 +0100)]
Cygwin: is_unicode_equiv: fix normalization

Change normalization to form KD and make room for longer
decomposed sequences.

20 months agoCygwin: is_unicode_equiv: fix comment
Corinna Vinschen [Thu, 16 Feb 2023 19:52:20 +0000 (20:52 +0100)]
Cygwin: is_unicode_equiv: fix comment

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: dsp: Fix SNDCTL_DSP_GET[IO]SPACE before read()/write().
Takashi Yano [Tue, 14 Feb 2023 13:55:10 +0000 (22:55 +0900)]
Cygwin: dsp: Fix SNDCTL_DSP_GET[IO]SPACE before read()/write().

Even with the commit 3a4c740f59c0, SNDCTL_DSP_GET[IO]SPACE ioctl()
does not return the fragment set by SNDCTL_DSP_SETFRAGMENT if it
is issued before read()/write(). This patch fixes the issue.

Fixes: 3a4c740f59c0 ("Cygwin: dsp: Implement SNDCTL_DSP_SETFRAGMENT ioctl().")
Signed-off-by: Takashi Yano <takashi.yano@nifty.ne.jp>
20 months agoadd glob/fnmatch equivalence class support to release notes
Corinna Vinschen [Wed, 15 Feb 2023 21:37:32 +0000 (22:37 +0100)]
add glob/fnmatch equivalence class support to release notes

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: glob: handle equivalence class expressions
Corinna Vinschen [Wed, 15 Feb 2023 21:34:46 +0000 (22:34 +0100)]
Cygwin: glob: handle equivalence class expressions

Handle [=x=] expressions in range brackets.  Use the new
is_unicode_equiv() function to perform the check.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: fnmatch: handle equivalence class expressions
Corinna Vinschen [Wed, 15 Feb 2023 21:31:49 +0000 (22:31 +0100)]
Cygwin: fnmatch: handle equivalence class expressions

Handle [=x=] expressions in range brackets.  Use the new
is_unicode_equiv() function to perform the check.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: is_unicode_equiv: implement Unicode equivalence class check
Corinna Vinschen [Wed, 15 Feb 2023 21:00:39 +0000 (22:00 +0100)]
Cygwin: is_unicode_equiv: implement Unicode equivalence class check

is_unicode_equiv compares two UTF-32 values and returns 1 if
both are member of the same Unicode equivalence class, 0 otherwise.

Note that this function only works with precomposed characters
per Unicode normalization form C.  It doesn't handle decomposed
characters, just like its counterpart in glibc.  I.e., equivalence
class comparison using decomposed chars won't work.  Example:

  fnmatch("[=n=]", "ñ") == 0
  fnmatch("[=ñ=]", "n") == 0

but

  fnmatch("[=n=]", "n\x0303") == 1
  fnmatch("[=n\x0303=]", "n") == 1
  fnmatch("[=n\x0303=]", "n\x0303") == 1

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: Makefile.am: fix rule to create version from git describe
Corinna Vinschen [Wed, 15 Feb 2023 14:04:16 +0000 (15:04 +0100)]
Cygwin: Makefile.am: fix rule to create version from git describe

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: add glob/fnmatch named class support to release notes
Corinna Vinschen [Wed, 15 Feb 2023 13:22:26 +0000 (14:22 +0100)]
Cygwin: add glob/fnmatch named class support to release notes

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: glob: handle named character classes
Corinna Vinschen [Wed, 15 Feb 2023 13:11:45 +0000 (14:11 +0100)]
Cygwin: glob: handle named character classes

Handle [:<character-class>:] expressions in range brackets.

TODO: Collating symbols [.<collsym>'.] and Equivalence class
expressions [=<equiv-class>=] are recognized but skipped as if
they are not present at all.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: fnmatch: handle named character classes
Corinna Vinschen [Tue, 14 Feb 2023 19:22:54 +0000 (20:22 +0100)]
Cygwin: fnmatch: handle named character classes

Handle [:<character-class>:] expressions in range brackets.

TODO: Collating symbols [.<collsym>'.] and Equivalence class
expressions [=<equiv-class>=] are recognized but skipped as if
they are not present at all.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: mbrtowi: fix return type
Corinna Vinschen [Tue, 14 Feb 2023 19:18:42 +0000 (20:18 +0100)]
Cygwin: mbrtowi: fix return type

bad typo: change wint_t to size_t

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: dumper: also link with libzstd, as libbfd may require it
Jon Turney [Tue, 14 Feb 2023 13:52:39 +0000 (13:52 +0000)]
Cygwin: dumper: also link with libzstd, as libbfd may require it

Also allow that linkage to be dynamic, as libzstd-devel doesn't
currently provide a static library.

20 months agoCygwin: regex: convert wchar_t to wint_t
Corinna Vinschen [Tue, 14 Feb 2023 12:02:15 +0000 (13:02 +0100)]
Cygwin: regex: convert wchar_t to wint_t

- call mbrtowi instead of mbrtowc
- drop Cygwin-only surrogate handling from wgetnext and xmbrtowc since
  it's encapsulated in mbrtowi.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: glob: convert wchar_t to wint_t
Corinna Vinschen [Tue, 14 Feb 2023 11:48:03 +0000 (12:48 +0100)]
Cygwin: glob: convert wchar_t to wint_t

...thus handling all Unicode values sanely.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: fnmatch: convert wchar_t to wint_t
Corinna Vinschen [Tue, 14 Feb 2023 11:47:54 +0000 (12:47 +0100)]
Cygwin: fnmatch: convert wchar_t to wint_t

...thus handling all Unicode values sanely.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: __collate_range_cmp: handle Unicode values >= 0x10000
Corinna Vinschen [Tue, 14 Feb 2023 11:22:36 +0000 (12:22 +0100)]
Cygwin: __collate_range_cmp: handle Unicode values >= 0x10000

So far the input to __collate_range_cmp was handled as a wchar_t.
Change that to handle it as wint_t holding a UTF-32 value and
add creating surrogate pairs for the call to wcscoll.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: mbrtowi: define replacement for mbrtowc, returning UTF-32 value
Corinna Vinschen [Tue, 14 Feb 2023 11:20:20 +0000 (12:20 +0100)]
Cygwin: mbrtowi: define replacement for mbrtowc, returning UTF-32 value

Given how UTF-16 isn't capable to hold all Unicode chars in a single
wchar_t, we need a function returning a wint_t value representing
a UTF-32 value for comparison functions.  Fortunately the important
wide character functions like towupper/towlower, isw<class>, iswctype,
etc, already take wint_t values and newlib handles them as UTF-32.

If only we had switched wchar_t to 32 bit way back when... sigh.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: socket.h: define missing IPTOS_LOWCOST/IPTOS_MINCOST
Corinna Vinschen [Sun, 12 Feb 2023 20:42:26 +0000 (21:42 +0100)]
Cygwin: socket.h: define missing IPTOS_LOWCOST/IPTOS_MINCOST

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: cygcheck: fix default info selector evaluation
Corinna Vinschen [Sat, 11 Feb 2023 11:58:13 +0000 (12:58 +0100)]
Cygwin: cygcheck: fix default info selector evaluation

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: cygcheck: fix dependency search
Corinna Vinschen [Sat, 11 Feb 2023 11:53:34 +0000 (12:53 +0100)]
Cygwin: cygcheck: fix dependency search

Spaces are filtered out by PathMatchSpecA so they can't
be used as pattern anchors.  Overwrite all spaces with
commas and fix the search expresion accordingly.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: get_posix_access: Make mode_t parameter mandatory
Corinna Vinschen [Thu, 9 Feb 2023 20:55:18 +0000 (21:55 +0100)]
Cygwin: get_posix_access: Make mode_t parameter mandatory

Avoid the mistake fixed in the preceeding commit by passing
the mode_t argument by reference.  This also affects a couple
other functions calling get_posix_access in turn.

Fixes: bc444e5aa4ca ("Reapply POSIX ACL changes.")
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: chmod: don't drop default ACEs from directory ACLs
Corinna Vinschen [Thu, 9 Feb 2023 20:47:15 +0000 (21:47 +0100)]
Cygwin: chmod: don't drop default ACEs from directory ACLs

commit bc444e5aa4ca introduced a call to get_posix_access()
with a NULL pointer for the mode_t parameter because the value
is not needed later on... entirely ignoring the fact that the
mode_t bits are checked for the object being a directory.

In turn, the get_posix_access() call never checked for default
ACEs and returned only the standard ACEs.  Thus, every chmod call
on a directory dropped the default ACEs from its permissions, as
well as the default NULL deny-ACE used to store specific bits.
It got also impossible to set the sgid bit on directories.

Fixes: bc444e5aa4ca ("Reapply POSIX ACL changes.")
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: mkdir: use correct default permissions filtered by umask
Corinna Vinschen [Thu, 9 Feb 2023 20:25:03 +0000 (21:25 +0100)]
Cygwin: mkdir: use correct default permissions filtered by umask

Older coreutils created directories with mode bits filtered through
umask.  Newer coreutils creates directories with full permissions,
0777 by default.

This new coreutils behaviour uncovered the fact that default ACEs for
newly created directories were not filtered by umask starting with
commit bc444e5aa4ca.

Fix it by applying umask on the default ACEs.

Fixes: bc444e5aa4ca ("Reapply POSIX ACL change.")
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: cygcheck: improve OS output
Corinna Vinschen [Thu, 9 Feb 2023 13:41:12 +0000 (14:41 +0100)]
Cygwin: cygcheck: improve OS output

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: cygcheck: add dependency output
Corinna Vinschen [Wed, 8 Feb 2023 20:05:18 +0000 (21:05 +0100)]
Cygwin: cygcheck: add dependency output

-e --requires   search packages depending on packages given as PATTERN
-e --build-reqs search packages with build dependency matching PATTERN

-i --depends    print dependencies
-i --build-deps print build dependencies (if available)

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: cygcheck: print categories in --info output
Corinna Vinschen [Wed, 8 Feb 2023 19:43:15 +0000 (20:43 +0100)]
Cygwin: cygcheck: print categories in --info output

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: cygcheck: collect build-depends info
Corinna Vinschen [Tue, 7 Feb 2023 21:49:38 +0000 (22:49 +0100)]
Cygwin: cygcheck: collect build-depends info

TODO: implement options to print all deps, all build-deps,
all packages depending on packages matching the search string
and so on.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agoCygwin: cygcheck: add latest product codes
Corinna Vinschen [Tue, 7 Feb 2023 21:19:33 +0000 (22:19 +0100)]
Cygwin: cygcheck: add latest product codes

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agosetlocale: create LC_ALL string when changing locale
Corinna Vinschen [Mon, 6 Feb 2023 10:27:44 +0000 (11:27 +0100)]
setlocale: create LC_ALL string when changing locale

This patch is for the sake of gnulib.

gnulib implements some form of a thread-safe setlocale variant
called setlocale_null_r, which is supposed to return the locale
strings in a thread-safe manner.  This only succeeds if the system's
setlocale already handles this thread-safe, otherwise gnulib adds
some locking on its own.

Newlib's setlocale always writes the global string array holding the
LC_ALL value anew on each invocation of setlocale(LC_ALL, NULL).
Since that doesn't allow to call setlocale(LC_ALL, NULL) in a
thread-safe manner, so locking in gnulib is required.

And here's the problem...

The lock is decorated as dllexport when building for Cygwin.  This
collides with the default behaviour of ld to export all symbols.
If it finds one decorated symbol, it will only export this symbol
to the DLL import lib.

Change setlocale so that it writes the global string array
holding the LC_ALL value at the time the locale gets changed.
On setlocale(LC_ALL, NULL), just return the pointer to the
global LC_ALL string array, just as in GLibc.  The burden of
doing so is negligibly for all targets, but adds thread-safety
for gnulib's setlocal_null_r() function, and gnulib can drop
the lock entirely when building for Cygwin.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 months agolibc: arm: Implement setjmp GCC backwards compatibility.
Victor L. Do Nascimento [Fri, 3 Feb 2023 11:15:26 +0000 (11:15 +0000)]
libc: arm: Implement setjmp GCC backwards compatibility.

When compiling Newlib for arm targets with GCC 12.1 onward, the
passing of architecture extension information to the assembler is
automatic, making the use of .fpu and .arch_extension directives
in assembly files redundant.

With older versions of GCC, however, these directives must be
hard-coded into the `arm/setjmp.S' file to allow the assembly of
instructions concerning the storage and subsequent reloading of the
floating point registers to/from the jump buffer, respectively.

This patch conditionally adds the `.fpu vfpxd' and `.arch_extension
mve' directives based on compile-time preprocessor macros concerning
GCC version and target architectural features, such that both the
assembly and linking of setjmp.S succeeds for older versions of
Newlib.

21 months agodumper: avoid linker problem when `libbfd` depends on `libsframe`
Johannes Schindelin [Wed, 1 Feb 2023 14:08:16 +0000 (15:08 +0100)]
dumper: avoid linker problem when `libbfd` depends on `libsframe`

A recent binutils version introduced `libsframe` and made it a
dependency of `libbfd`. This caused a linker problem in the MSYS2
project, and once Cygwin upgrades to that binutils version it would
cause the same problems there.

Let's preemptively detect the presence of `libsframe` and if detected,
link to it in addition to `libbfd`.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
21 months agoCygwin: dsp: Implement SNDCTL_DSP_SETFRAGMENT ioctl().
Takashi Yano [Sat, 28 Jan 2023 04:07:32 +0000 (13:07 +0900)]
Cygwin: dsp: Implement SNDCTL_DSP_SETFRAGMENT ioctl().

Previously, SNDCTL_DSP_SETFRAGMENT was just a fake. In this patch,
it has been implemented to allow latency control in some apps.

Reviewed-by: Corinna Vinschen <corinna@vinschen.de>
Signed-off-by: Takashi Yano <takashi.yano@nifty.ne.jp>
21 months agoCygwin: cygcheck: lower setup.ini expiration time to 3 hours
Corinna Vinschen [Sun, 29 Jan 2023 20:32:25 +0000 (21:32 +0100)]
Cygwin: cygcheck: lower setup.ini expiration time to 3 hours

...as is default for dnf

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
21 months agoCygwin: cygcheck: find_url: fix error handling
Corinna Vinschen [Sun, 29 Jan 2023 19:35:45 +0000 (20:35 +0100)]
Cygwin: cygcheck: find_url: fix error handling

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
21 months agoCygwin: add new cygcheck capabilities to release notes
Corinna Vinschen [Sun, 29 Jan 2023 17:40:14 +0000 (18:40 +0100)]
Cygwin: add new cygcheck capabilities to release notes

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
21 months agoCygwin: cygcheck: improve documentation
Corinna Vinschen [Sun, 29 Jan 2023 16:52:13 +0000 (17:52 +0100)]
Cygwin: cygcheck: improve documentation

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
21 months agoCygwin: cygcheck: simplify output when fetching setup.ini
Corinna Vinschen [Sun, 29 Jan 2023 16:51:42 +0000 (17:51 +0100)]
Cygwin: cygcheck: simplify output when fetching setup.ini

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
21 months agoCygwin: cygcheck: add human readable package size output
Corinna Vinschen [Sun, 29 Jan 2023 16:21:28 +0000 (17:21 +0100)]
Cygwin: cygcheck: add human readable package size output

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
21 months agoCygwin: cygcheck: package info / available package search, take 2
Corinna Vinschen [Sun, 29 Jan 2023 13:13:25 +0000 (14:13 +0100)]
Cygwin: cygcheck: package info / available package search, take 2

- if the user has no perms to write to /etc/setup, don't try
  to fetch user homedir from Cygwin (crashes galore).  Use
  LOCALAPPDATA path instead.
- info is more rpm like
- print info of installed package
- added info selectors --inst, --curr, --prev, --test
- add installation date

TODO:

- Human-readable filesize
- url and license needs to be added to setup.ini yet
-

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
21 months agoCygwin: cygcheck: package info / available package search, take 1
Corinna Vinschen [Sat, 28 Jan 2023 13:59:39 +0000 (14:59 +0100)]
Cygwin: cygcheck: package info / available package search, take 1

cygcheck -i == dnf info <pattern...>
cygcheck -e == dnf search <pattern...>

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This page took 0.075015 seconds and 5 git commands to generate.