[ITA] mhash

2021-11-10 Thread Jason Pyeron
Sigh… some old and crusty files…. - x86 - 0.9.9.9-2 (source) from 2015-02-18 22:18 does not work... I pushed the fixed mhash https://cygwin.com/git-cygwin-packages/?p=git/cygwin-packages/playground.git;a=commitdiff;h=8e7f3a747287f0263bcd1316dedf7ea974914077

Re: Another pipe-related problem?

2021-11-10 Thread Andrey Repin via Cygwin
Greetings, Henry S. Thompson! >> ... >> The main change was that we stopped using Win32 Overlapped I/O >> (https://docs.microsoft.com/en-us/windows/win32/sync/synchronization-and-overlapped-input-and-output) >> and switched to using the NT API. As a result, pipe I/O became much >> more

Re: [PATCH 0/2] Fix a bad case of absolute path handling

2021-11-10 Thread Ken Brown
On 11/10/2021 3:32 PM, corinna-cyg...@cygwin.com wrote: From: Corinna Vinschen As I told Takashi in PM, I will try to more often send patches to the cygwin-patches ML before pushing them, so there's a chance to chime in. LGTM. This patch series is supposed to address the `rm -rf' problem

Re: Could rm remove files and folders with colon in their name?

2021-11-10 Thread Corinna Vinschen via Cygwin
On Nov 10 21:24, Mario Emmenlauer wrote: > On 10.11.21 14:49, Corinna Vinschen via Cygwin wrote: > > On Nov 10 10:45, Mario Emmenlauer wrote: > >> Could 'rm' support removing files and folders that have a colon ':' in > >> their name? I.e. I would like that 'rm -fr' would remove a full directory >

[PATCH 2/2] Cygwin: introduce isabspath_strict macro

2021-11-10 Thread corinna-cygwin
From: Corinna Vinschen isabspath handles a path "X:", without trailing slas or backslash, as absolute path. This breaks some scenarios with relative paths starting with "X:". For instance, fstatat will mishandle a call with valid dirfd and "c:" as path. The reason is that gen_full_path_at()

[PATCH 0/2] Fix a bad case of absolute path handling

2021-11-10 Thread corinna-cygwin
From: Corinna Vinschen As I told Takashi in PM, I will try to more often send patches to the cygwin-patches ML before pushing them, so there's a chance to chime in. This patch series is supposed to address the `rm -rf' problem reported in

[PATCH 1/2] Cygwin: drop unused isabspath_u and iswabspath macros

2021-11-10 Thread corinna-cygwin
From: Corinna Vinschen Signed-off-by: Corinna Vinschen --- winsup/cygwin/winsup.h | 12 1 file changed, 12 deletions(-) diff --git a/winsup/cygwin/winsup.h b/winsup/cygwin/winsup.h index abdef35261ca..f6fea6313d56 100644 --- a/winsup/cygwin/winsup.h +++ b/winsup/cygwin/winsup.h

Re: New pipe code means a gold star is merited

2021-11-10 Thread Ken Brown via Cygwin
On 11/10/2021 1:45 PM, Henry S. Thompson via Cygwin wrote: for Ken Brown and Takashi Yano, don't you think? Even though we made XEmacs unusable?!? :) But seriously, it was a joint effort among the two of us and Corinna. Thanks. Ken -- Problem reports: https://cygwin.com/problems.html

Re: Could rm remove files and folders with colon in their name?

2021-11-10 Thread Mario Emmenlauer
On 10.11.21 14:49, Corinna Vinschen via Cygwin wrote: > On Nov 10 10:45, Mario Emmenlauer wrote: >> Could 'rm' support removing files and folders that have a colon ':' in >> their name? I.e. I would like that 'rm -fr' would remove a full directory >> tree, including such folders. Currently it will

Re: Could rm remove files and folders with colon in their name?

2021-11-10 Thread Mario Emmenlauer
Hi Brian, On 10.11.21 17:35, Brian Inglis wrote: > On 2021-11-10 02:45, Mario Emmenlauer wrote: >> PS: These folders are created when I use the Cygwin-based build system >> for ICU (see >>

[ANNOUNCEMENT] Updated: mintty 3.5.2

2021-11-10 Thread Thomas Wolff
I have uploaded mintty 3.5.2 with the following changes: Unicode and Emoji data   * Unicode 14.0 update. Terminal features   * Fix (revert back) DECSDM (DECSET 80) Sixel Display mode (#1127, xterm 369).   * Sound file playing OSC 440 (#1122).   * DECPS tone playing support (#1122).   * Fixed

Updated: mintty 3.5.2

2021-11-10 Thread Thomas Wolff
I have uploaded mintty 3.5.2 with the following changes: Unicode and Emoji data   * Unicode 14.0 update. Terminal features   * Fix (revert back) DECSDM (DECSET 80) Sixel Display mode (#1127, xterm 369).   * Sound file playing OSC 440 (#1122).   * DECPS tone playing support (#1122).   * Fixed

New pipe code means a gold star is merited

2021-11-10 Thread Henry S. Thompson via Cygwin
for Ken Brown and Takashi Yano, don't you think? ht -- Henry S. Thompson, School of Informatics, University of Edinburgh 10 Crichton Street, Edinburgh EH8 9AB, SCOTLAND -- (44) 131 650-4440 Fax: (44) 131 650-4587, e-mail: h...@inf.ed.ac.uk URL:

Re: Another pipe-related problem?

2021-11-10 Thread Henry S. Thompson via Cygwin
Ken Brown writes: > ... > The main change was that we stopped using Win32 Overlapped I/O > (https://docs.microsoft.com/en-us/windows/win32/sync/synchronization-and-overlapped-input-and-output) > and switched to using the NT API. As a result, pipe I/O became much > more efficient. It wouldn't

RE: [cygwin] Re: Problem with ssh(d)

2021-11-10 Thread Jason Pyeron
> -Original Message- > From: Bill Stewart > Sent: Wednesday, November 10, 2021 10:44 AM > > On Wed, Nov 10, 2021 at 8:28 AM Strasser, Dominik (DI SW ICS ICV) wrote: > > I know that this is the standard installation. But we absolutely need > > passwordless login. So this was the

RE: playground procedures and docs

2021-11-10 Thread Jason Pyeron
> -Original Message- > From: Jason Pyeron > Sent: Wednesday, November 10, 2021 12:57 PM > > > Sent: Wednesday, November 10, 2021 11:25 AM > > That is why it is a good idea to checkout your repo on a playground > > branch, then force push your repo to: > > > >

Re: Another pipe-related problem?

2021-11-10 Thread Ken Brown via Cygwin
On 11/10/2021 12:23 PM, Henry S. Thompson wrote: Ken Brown via Cygwin writes: On 11/9/2021 9:53 PM, Ken Brown via Cygwin wrote: Back to the drawing board. It finally occurred to me to stop looking for a bug in fhandler_pipe::raw_read and instead see if something is in fact repeatedly

playground procedures and docs

2021-11-10 Thread Jason Pyeron
> Sent: Wednesday, November 10, 2021 11:25 AM > That is why it is a good idea to checkout your repo on a playground > branch, then force push your repo to: > > ssh://cyg...@cygwin.com/git/cygwin-packages/playground > > and post the jobs.cgi, run, and log links. I could not seem to find

Re: Another pipe-related problem?

2021-11-10 Thread Henry S. Thompson via Cygwin
Ken Brown via Cygwin writes: > On 11/9/2021 9:53 PM, Ken Brown via Cygwin wrote: >> Back to the drawing board. > > It finally occurred to me to stop looking for a bug in > fhandler_pipe::raw_read and instead see if something is in fact > repeatedly writing to the pipe, so that

Re: Could rm remove files and folders with colon in their name?

2021-11-10 Thread Brian Inglis
On 2021-11-10 02:45, Mario Emmenlauer wrote: Dear All, I've searched if this topic has come up before but could not find it. Could 'rm' support removing files and folders that have a colon ':' in their name? I.e. I would like that 'rm -fr' would remove a full directory tree, including such

Re: [ITP] aide 0.17.3

2021-11-10 Thread Brian Inglis
On 2021-11-10 05:33, Jason Pyeron wrote: On Sunday, October 31, 2021 10:37 AM, Jason Pyeron wrote: On Sunday, October 31, 2021 8:48 AM, Jon Turney wrote: On 29/09/2021 15:27, Jason Pyeron wrote: On Friday, July 30, 2021 10:34 AM, Jason Pyeron wrote: AIDE - Advanced Intrusion Detection

Re: Problem with ssh(d)

2021-11-10 Thread Bill Stewart
On Wed, Nov 10, 2021 at 8:28 AM Strasser, Dominik (DI SW ICS ICV) wrote: I know that this is the standard installation. But we absolutely need > passwordless login. So this was the workaround we found. > The number of groups differs when sshd is run as local system, and when > authorized_keys

Console output broken in version 3.3.x under native ninja

2021-11-10 Thread Bresalier, Rob (Nokia - US/Murray Hill) via Cygwin
Hi: This worked fine with Cygwin 3.2.0 but is broken starting with Cygwin 3.3.0, hence I think it is a Cygwin bug and not a ninja bug. When running Cygwin applications under Windows native 'ninja.exe' build tool (not the Cygwin packaged one) then the stdout is not emitted to the console

Re: Problem with ssh(d)

2021-11-10 Thread Strasser, Dominik (DI SW ICS ICV)
Hi Bill, On 10.11.2021 16:10, Bill Stewart wrote: On Wed, Nov 10, 2021 at 7:52 AM Strasser, Dominik (DI SW ICS ICV) wrote: We are in an AD environment. AD holds the needed data for ssh(d) to work. I can log into cygwin using ssh. But if I have a key stored .ssh/authorized_keys

RE: [cygwin] Problem with ssh(d)

2021-11-10 Thread Jason Pyeron
> -Original Message- > From: Strasser, Dominik (DI SW ICS ICV) > Sent: Wednesday, November 10, 2021 9:50 AM > > Hi all, > I am facing the following problem with my sshd installation. > > We are in an AD environment. AD holds the needed data for ssh(d) to > work. I can log into cygwin

Problem with ssh(d)

2021-11-10 Thread Strasser, Dominik (DI SW ICS ICV)
Hi all, I am facing the following problem with my sshd installation. We are in an AD environment. AD holds the needed data for ssh(d) to work. I can log into cygwin using ssh. But if I have a key stored .ssh/authorized_keys for passwordless login, the groups my user is in differs from the one

Re: Could rm remove files and folders with colon in their name?

2021-11-10 Thread Andrey Repin via Cygwin
Greetings, Mario Emmenlauer! > Dear All, > I've searched if this topic has come up before but could not find it. > Could 'rm' support removing files and folders that have a colon ':' in > their name? I.e. I would like that 'rm -fr' would remove a full directory > tree, including such folders.

Re: Another pipe-related problem?

2021-11-10 Thread Ken Brown via Cygwin
On 11/9/2021 9:53 PM, Ken Brown via Cygwin wrote: Back to the drawing board. It finally occurred to me to stop looking for a bug in fhandler_pipe::raw_read and instead see if something is in fact repeatedly writing to the pipe, so that drain_signal_event_pipe never finishes. Putting a

Re: Could rm remove files and folders with colon in their name?

2021-11-10 Thread Corinna Vinschen via Cygwin
On Nov 10 10:45, Mario Emmenlauer wrote: > > Dear All, > > I've searched if this topic has come up before but could not find it. > > Could 'rm' support removing files and folders that have a colon ':' in > their name? I.e. I would like that 'rm -fr' would remove a full directory > tree,

RE: [ITP] aide 0.17.3

2021-11-10 Thread Jason Pyeron
> -Original Message- > From: Jason Pyeron > Sent: Sunday, October 31, 2021 10:37 AM > > > -Original Message- > > From: Jon Turney > > Sent: Sunday, October 31, 2021 8:48 AM > > > > On 29/09/2021 15:27, Jason Pyeron wrote: > > >> -Original Message- > > >> From: Jason Pyeron

Re: [ITA] lua-crypto-0.3.2p4

2021-11-10 Thread Lemures Lemniscati via Cygwin-apps
On Tue, 9 Nov 2021 19:17:29 +0100, Marco Atzeri via Cygwin-apps > On 07.11.2021 13:07, Lemures Lemniscati via Cygwin-apps wrote: > > On Sun, 07 Nov 2021 20:46:25 +0900, Lemures Lemniscati > >> On Sat, 23 Oct 2021 19:44:25 +0200, Achim Gratz > >>> > > > > > Hi, > > > > ITA for lua-crypto-0.3.2p4,

Re: [PATCH] Cygwin: pipe: Handle WAIT_CANCELED when waiting read_mtx.

2021-11-10 Thread Corinna Vinschen
On Nov 10 17:23, Takashi Yano wrote: > - Add missing handling for WAIT_CANCELED in cygwait() for read_mtx > in raw_read(). > --- > winsup/cygwin/fhandler_pipe.cc | 10 +- > 1 file changed, 9 insertions(+), 1 deletion(-) > > diff --git a/winsup/cygwin/fhandler_pipe.cc

Could rm remove files and folders with colon in their name?

2021-11-10 Thread Mario Emmenlauer
Dear All, I've searched if this topic has come up before but could not find it. Could 'rm' support removing files and folders that have a colon ':' in their name? I.e. I would like that 'rm -fr' would remove a full directory tree, including such folders. Currently it will correctly remove

[PATCH] Cygwin: pipe: Handle WAIT_CANCELED when waiting read_mtx.

2021-11-10 Thread Takashi Yano
- Add missing handling for WAIT_CANCELED in cygwait() for read_mtx in raw_read(). --- winsup/cygwin/fhandler_pipe.cc | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/winsup/cygwin/fhandler_pipe.cc b/winsup/cygwin/fhandler_pipe.cc index bc06d157c..13731437e 100644