Bug 271791 - sed: substitute start/end of line broken with N
Summary: sed: substitute start/end of line broken with N
Status: Closed FIXED
Alias: None
Product: Base System
Classification: Unclassified
Component: bin (show other bugs)
Version: CURRENT
Hardware: Any Any
: --- Affects Many People
Assignee: Mark Johnston
URL: https://github.com/openbsd/src/commit...
Keywords:
Depends on:
Blocks:
 
Reported: 2023-06-02 20:51 UTC by Mohamed Akram
Modified: 2025-01-14 14:46 UTC (History)
4 users (show)

See Also:
markj: mfc-stable14?
markj: mfc-stable13?


Attachments
fix (1.14 KB, patch)
2024-08-30 03:58 UTC, Mohamed Akram
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Mohamed Akram 2023-06-02 20:51:12 UTC
To reproduce:

printf '%s\n' hello '' world | sed -n -e 's/^//' -e '$!N' -e P -e D

Expected output:

hello

world

Actual output:

hello
h
world
Comment 1 Li-Wen Hsu freebsd_committer freebsd_triage 2023-06-02 21:31:36 UTC
This is reproducible on -current.

The output of GNU sed:

$ printf '%s\n' hello '' world | gsed -n -e 's/^//' -e '$!N' -e P -e D
hello

world
Comment 2 Mohamed Akram 2024-08-12 17:39:54 UTC
Note that this issue also happens on OpenBSD 7.5, but not on NetBSD 10.0.
Comment 3 Mohamed Akram 2024-08-17 05:07:41 UTC
The issue was introduced with a patch from OpenBSD - https://svnweb.freebsd.org/base?view=revision&revision=299211

I've submitted a patch to OpenBSD to fix the issue there, and the same can be brought here - https://marc.info/?l=openbsd-tech&m=172381888706699&w=2
Comment 4 Mohamed Akram 2024-08-30 03:58:25 UTC
Created attachment 253175 [details]
fix
Comment 6 Mohamed Akram 2024-09-10 18:26:53 UTC
Could someone please merge this fix and the one in bug #271817? These fixes are already in OpenBSD and NetBSD, respectively. Thanks.
Comment 7 commit-hook freebsd_committer freebsd_triage 2024-12-23 19:14:54 UTC
A commit in branch main references this bug:

URL: https://cgit.FreeBSD.org/src/commit/?id=5982237f1e5a30b6b7d67b307b4d3685b00718bf

commit 5982237f1e5a30b6b7d67b307b4d3685b00718bf
Author:     Mohamed Akram <mohd.akram@outlook.com>
AuthorDate: 2024-12-23 19:06:09 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2024-12-23 19:07:14 +0000

    sed: Fix handling of an empty pattern space

    Add a regression test.

    PR:             271791
    Obtained from:  OpenBSD (1.38 millert)
    MFC after:      2 weeks

 usr.bin/sed/process.c          | 10 ++++------
 usr.bin/sed/tests/sed2_test.sh | 14 ++++++++++++++
 2 files changed, 18 insertions(+), 6 deletions(-)
Comment 8 commit-hook freebsd_committer freebsd_triage 2025-01-14 14:44:23 UTC
A commit in branch stable/14 references this bug:

URL: https://cgit.FreeBSD.org/src/commit/?id=2c1c6bd7d5dbddd953587c1f003e6164749e087b

commit 2c1c6bd7d5dbddd953587c1f003e6164749e087b
Author:     Mohamed Akram <mohd.akram@outlook.com>
AuthorDate: 2024-12-23 19:06:09 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2025-01-14 14:14:24 +0000

    sed: Fix handling of an empty pattern space

    Add a regression test.

    PR:             271791
    Obtained from:  OpenBSD (1.38 millert)
    MFC after:      2 weeks

    (cherry picked from commit 5982237f1e5a30b6b7d67b307b4d3685b00718bf)

 usr.bin/sed/process.c          | 10 ++++------
 usr.bin/sed/tests/sed2_test.sh | 14 ++++++++++++++
 2 files changed, 18 insertions(+), 6 deletions(-)
Comment 9 commit-hook freebsd_committer freebsd_triage 2025-01-14 14:44:29 UTC
A commit in branch stable/13 references this bug:

URL: https://cgit.FreeBSD.org/src/commit/?id=91af1b8001d34a1563d861f1da81deaa121adca8

commit 91af1b8001d34a1563d861f1da81deaa121adca8
Author:     Mohamed Akram <mohd.akram@outlook.com>
AuthorDate: 2024-12-23 19:06:09 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2025-01-14 14:43:05 +0000

    sed: Fix handling of an empty pattern space

    Add a regression test.

    PR:             271791
    Obtained from:  OpenBSD (1.38 millert)
    MFC after:      2 weeks

    (cherry picked from commit 5982237f1e5a30b6b7d67b307b4d3685b00718bf)

 usr.bin/sed/process.c          | 10 ++++------
 usr.bin/sed/tests/sed2_test.sh | 14 ++++++++++++++
 2 files changed, 18 insertions(+), 6 deletions(-)
Comment 10 Mark Johnston freebsd_committer freebsd_triage 2025-01-14 14:46:29 UTC
Thank you for the report.