public inbox for libabigail@sourceware.org
 help / color / mirror / Atom feed
From: "dor.askayo at gmail dot com" <sourceware-bugzilla@sourceware.org>
To: libabigail@sourceware.org
Subject: [Bug default/28225] New: abidiff: false-positive ABI change detected in enum
Date: Fri, 13 Aug 2021 10:46:02 +0000	[thread overview]
Message-ID: <bug-28225-9487@http.sourceware.org/bugzilla/> (raw)

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

            Bug ID: 28225
           Summary: abidiff: false-positive ABI change detected in enum
           Product: libabigail
           Version: unspecified
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: default
          Assignee: dodji at redhat dot com
          Reporter: dor.askayo at gmail dot com
                CC: libabigail at sourceware dot org
  Target Milestone: ---

Created attachment 13616
  --> https://sourceware.org/bugzilla/attachment.cgi?id=13616&action=edit
Minimal reproducer

abidiff detects a change in the order of enum values whose value is explicitly
set as harmful, even though their values remain the same and no other enum
value is affected by this change.

As far as I know, both ABI and API remains identical in such a case:

$ diff -U5 test-v0/test.h test-v1/test.h 
--- test-v0/test.h      2021-08-13 13:38:16.331805249 +0300
+++ test-v1/test.h      2021-08-13 13:06:09.380240513 +0300
@@ -1,4 +1,4 @@
 enum values {
-       ENUM_VALUE1 = 1,
        ENUM_VALUE2 = 2,
+       ENUM_VALUE1 = 1,
 };

A minimal reproducer is attached:

$ gcc -g -Wall -shared -Wl,--build-id=none -o libtest-v0.so test-v0/test.c
$ gcc -g -Wall -shared -Wl,--build-id=none -o libtest-v1.so test-v1/test.c
$ abidiff --headers-dir1 test-v0 --headers-dir2 test-v1 libtest-v0.so
libtest-v1.so 
Functions changes summary: 0 Removed, 1 Changed, 0 Added function
Variables changes summary: 0 Removed, 0 Changed, 0 Added variable

1 function with some indirect sub-type change:

  [C] 'function int foo(values)' at test.c:3:1 has some indirect sub-type
changes:
    parameter 1 of type 'enum values' has sub-type changes:
      type size hasn't changed

The issue was originally identified here:
https://gitlab.com/freedesktop-sdk/freedesktop-sdk/-/merge_requests/5380#note_629314574

-- 
You are receiving this mail because:
You are on the CC list for the bug.

                 reply	other threads:[~2021-08-13 10:46 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-28225-9487@http.sourceware.org/bugzilla/ \
    --to=sourceware-bugzilla@sourceware.org \
    --cc=libabigail@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).