]> sourceware.org Git - libabigail.git/commitdiff
Bug 31646: Fix type suppression tactics for webkit2gtk3
authorDodji Seketeli <dodji@redhat.com>
Mon, 15 Apr 2024 08:16:21 +0000 (10:16 +0200)
committerDodji Seketeli <dodji@redhat.com>
Tue, 16 Apr 2024 15:46:19 +0000 (17:46 +0200)
By default, using abidw --abidiff on the binary
/usr/lib64/libwebkit2gtk-4.0.so.37 on the ppc64le platform takes more
than 50GB of RAM and ooms on my system.  That is why a number of
suppression specifications have been put in place in the
default.abignore file that is installed by default on the system.
With that suppression specification however, abidw --abidiff hits an
assert and crashes.

That is because the suppression specification rule below is too eager
and thus removes parameters from some function's signature, in the
final internal representation:

    [suppress_type]
      soname_regexp = libwebkit2?gtk-.*\\.so.*
      name_regexp = (^std::.*|WebCore::.*|WebKit::.*)
      drop = true

An example of function signature that got changed (in the IR) because
of this suppression specification is:

This function signature:

    WebKitAuthenticationScheme
    webkit_authentication_request_get_scheme(WebKitAuthenticationRequest*)

becomes (after applying the suppression specification above):

    void
    webkit_authentication_request_get_scheme()

Woops.  That is not good.

To address that problem, this patch changes that suppression
specification to make libabigail transform those types into opaque
types.  An opaque struct, class or enum is essentially a
declaration-only type of the same kind and name.

So the suppression specification above becomes:

    [suppress_type]
      # Drop all standard c++ types on the floor like before.
      soname_regexp = libwebkit2?gtk-.*\\.so.*
      name_regexp = ^std::.*
      drop = true

    [suppress_type]
      # Transform all C++ types in the WebCore and WebKit namespaces into
      # opaque types.  These are essentially internal types of libwebkit2
      # anyway.  This greatly reduces the size of the in-memory working set.
      label = libabigail::OPAQUE_TYPE_LABEL
      soname_regexp = libwebkit2?gtk-.*\\.so.*
      name_regexp = (WebCore::.*|WebKit::.*)
      drop = true

Notice the introduction of the new special label
"libabigail::OPAQUE_TYPE_LABEL".  This new special label is what makes
the suppression engine of libabigail transform a type (that matches
that suppression specification) into an opaque type, rather than
dropping it on the floor.

The patch then adapts the code of the suppression engine to detect
this special label for the purpose of transforming types into opaque
types.  The patch normalizes the use of the term "opaque type" instead
of "private type" that was used previously in the code.

The patch fixes a bug in the code of get_opaque_version_of_type that
prevents this function from working on types with no location
information.

While working on this, I have noticed that the abipkgdiff has a bug
that was making it ignore suppression specifications provided via the
--suppression option.  The patch fixes that.

I have noticed that abipkgdiff --self-check completely ignores all
suppression specifications provided either via --suppression or
indirectly via devel packages.  The patch fixes that.

Last but not least, fedabipkgdiff --self-compare completely ignores
suppression specifications too!  The patch fixes that as well.

With all those fixes, the system now takes around 7GB of RAM and ~ 30
minutes to complete the analysis of the webkit2gtk3 package, using a
non-optimized libabigail build.

The command I use is:

    $ time tools/fedabipkgdiff --debug --self-compare --abipkgdiff build/tools/abipkgdiff --suppressions default.abignore -a --from fc39 webkit2gtk3

    [...]

    [DEBUG] Result from run_abipkgdiff: 0, in: 0:29:00.088735
    [DEBUG] Result from self_compare_rpms_from_distro: 0, in: 0:29:20.721748

    real 29m20,846s
    user 29m4,561s
    sys         2m41,611s
    $

The culprit package was webkit2gtk3-2.40.1-1.fc36.ppc64le.rpm.

To reproduce the issue on that package, I do:

    $ time ~/git/libabigail/rhbz2273891/build/tools/abipkgdiff --self-check --suppr ~/git/libabigail/rhbz2273891/default.abignore --d1 webkit2gtk3-debuginfo-2.40.1-1.fc36.ppc64le.rpm --devel1 webkit2gtk3-devel-2.40.1-1.fc36.ppc64le.rpm webkit2gtk3-2.40.1-1.fc36.ppc64le.rpm

    ==== SELF CHECK SUCCEEDED for 'libwebkit2gtk-4.0.so.37.63.2' ====
    ==== SELF CHECK SUCCEEDED for 'WebKitWebDriver' ====
    ==== SELF CHECK SUCCEEDED for 'WebKitNetworkProcess' ====
    ==== SELF CHECK SUCCEEDED for 'WebKitWebProcess' ====

    real 8m25,895s
    user 8m46,433s
    sys         0m15,683s
    $

* default.abignore: Split the libwebkit2gtk suppression
specification for types whose names match the regexp
^std::.*|WebCore::.*|WebKit::.* into two.  One that drops type
with names being ^std::.* and another one that turns type being
WebCore::.*|WebKit::.* into opaque types.
* doc/manuals/libabigail-concepts.rst: Add documentation for the
new special label libabigail::OPAQUE_TYPE_LABEL that transforms
types matching a [suppress_type] into opaque types.
* include/abg-suppression.h (is_opaque_type_suppr_spec): Renamed
is_private_type_suppr_spec into this.
(get_opaque_types_suppr_spec_label): Renamed
get_private_types_suppr_spec_label.
* src/abg-comparison.cc (diff::is_suppressed): Adjust.
* src/abg-dwarf-reader.cc (type_is_suppressed): Adjust. Change the
name of the type_is_private parameter into type_is_opaque.
(get_opaque_version_of_type): Do not return early if the type has
no associated location.  What was I thinking.
(build_ir_node_from_die): For enums, struct and classes adjust
call to type_is_suppressed.
* src/abg-suppression.cc (type_suppression::suppresses_diff):
Adjust to using is_opaque_type_suppr_spec and
get_opaque_version_of_type in lieu of is_private_type_suppr_spec
and get_private_types_suppr_spec_label.
(get_opaque_types_suppr_spec_label): Rename
get_private_types_suppr_spec_label into this.  Also, rename the
name of the special label that specifies opaque types from
"Artificial private types suppression specification" to
"libabigail::OPAQUE_TYPE_LABEL".
(is_opaque_type_suppr_spec): Rename is_private_type_suppr_spec
into this.
(is_type_suppressed): Rename the "type_is_private" parameter into
"type_is_opaque".
* src/abg-tools-utils.cc (handle_file_entry): Adjust to using
get_opaque_types_suppr_spec_label rather than
get_private_types_suppr_spec_label.
* tools/abipkgdiff.cc (compare): Use the supprs variable where all
the suppression specifications got accumulated, not just the
priv_types_supprs1.
(compare_to_self): Add a suppression specifications variable for
private types.  Add those private types specs to the user-provided
ones.
* tools/fedabipkgdiff (abipkgdiff): In the self comparison mode,
take into account devel packages and suppression specifications.
Pass those to the abipkgdiff tool's invocation.
* tests/data/test-diff-suppr/PR31646/test-PR31646-result-[1-3].txt:
New reference test output files.
* tests/data/test-diff-suppr/PR31646/test-PR31646-v{0,1}.cc:
Source code of binary inputs below.
* tests/data/test-diff-suppr/PR31646/test-PR31646-v{0,1}.o: Binary
input files.
* tests/data/test-diff-suppr/PR31646/test-PR31646.2.abignore:
Suppression specification file.
* tests/data/test-diff-suppr/PR31646/test-PR31646.abignore:
Likewise.
* tests/data/Makefile.am: Add the new test material above to
source distribution.
* tests/test-diff-suppr.cc (in_out_specs): Add the new test input
to this harness.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
20 files changed:
default.abignore
doc/manuals/libabigail-concepts.rst
include/abg-suppression.h
src/abg-comparison.cc
src/abg-dwarf-reader.cc
src/abg-suppression.cc
src/abg-tools-utils.cc
tests/data/Makefile.am
tests/data/test-diff-suppr/PR31646/test-PR31646-result-1.txt [new file with mode: 0644]
tests/data/test-diff-suppr/PR31646/test-PR31646-result-2.txt [new file with mode: 0644]
tests/data/test-diff-suppr/PR31646/test-PR31646-result-3.txt [new file with mode: 0644]
tests/data/test-diff-suppr/PR31646/test-PR31646-v0.cc [new file with mode: 0644]
tests/data/test-diff-suppr/PR31646/test-PR31646-v0.o [new file with mode: 0644]
tests/data/test-diff-suppr/PR31646/test-PR31646-v1.cc [new file with mode: 0644]
tests/data/test-diff-suppr/PR31646/test-PR31646-v1.o [new file with mode: 0644]
tests/data/test-diff-suppr/PR31646/test-PR31646.2.abignore [new file with mode: 0644]
tests/data/test-diff-suppr/PR31646/test-PR31646.abignore [new file with mode: 0644]
tests/test-diff-suppr.cc
tools/abipkgdiff.cc
tools/fedabipkgdiff

index 2df7f515bed8567f4f7e49b8a1c5ec114be07a42..a963d5b3c4976be1a7141a1c35bb8098242a93f4 100644 (file)
 
 [suppress_type]
   soname_regexp = libwebkit2?gtk-.*\\.so.*
-  name_regexp = (^std::.*|WebCore::.*|WebKit::.*)
+  name_regexp = ^std::.*
+  drop = true
+
+[suppress_type]
+# Transform all C++ types in the WebCore and WebKit namespaces into
+# opaque types.  These are essentially internal types of libwebkit2
+# anyway.  This greatly reduces the size of the in-memory working set.
+  label = libabigail::OPAQUE_TYPE_LABEL
+  soname_regexp = libwebkit2?gtk-.*\\.so.*
+  name_regexp = (^WebCore::.*|^WebKit::.*)
+  drop = true
+
+[suppress_type]
+# All structs that don't start with either WebKit* or _WebKit are
+# considered internal types and so are transform into opaque types.
+# This helps to reduce the size of the in-memory working set further.
+  label = libabigail::OPAQUE_TYPE_LABEL
+  soname_regexp = libwebkit2?gtk-.*\\.so.*
+  type_kind = struct
+  name_not_regexp = ^_?WebKit.*
   drop = true
 
 #######################################################
index 7b73aaa890a3d55429e85c1d45b097aed40a9141..27ac8178f5496ee7d193bc603b04bc1663264042 100644 (file)
@@ -242,7 +242,8 @@ The potential properties of this sections are listed below:
 
  Define a label for the section.  A label is just an informative
  string that might be used by the tool to refer to a type suppression
- in error messages.
+ in error messages.  There can also be some special label names that
+ make the suppression system behave a certain way.
 
 
 * ``soname_regexp``
@@ -390,8 +391,17 @@ The potential properties of this sections are listed below:
  ABI being analyzed.  This property makes its enclosing suppression
  specification to be applied in the :ref:`early suppression
  specification mode <early_suppression_mode_label>`.  The net effect
- is that it potentially reduces the memory used to represent the ABI
- being analyzed.
+ is that it potentially reduces the amount of memory used to represent
+ the ABI being analyzed.
+
+ Please note that for ``struct``, ``class`` or``enum`` types matching
+ a suppression specification with this property having a value set to
+ "yes" (or to "true"), if the specification also has a ``label``
+ property with a value set to ``libabigail::OPAQUE_TYPE_LABEL``, then
+ the type is transformed into an opaque type, rather than being just
+ dropped on the floor.  That also reduces the amount of memory used to
+ represent the ABI being analyzed, but with potentially less
+ disruption in the resulting ABI representation.
 
  Please note that for this property to be effective, the enclosing
  suppression specification must have at least one of the following
@@ -665,10 +675,22 @@ changes, unless the ``has_size_changes`` property is set to ``yes``.
 
    ``label`` ``=`` <some-value>
 
- Define a label for the section.  A label is just an informative
- string that might be used by a tool to refer to a type suppression in
- error messages.
-
+ Define a label for the section.  In general, a label is just an
+ informative string that might be used by a tool to refer to a type
+ suppression in error messages.
+
+ Note however that there are some special label values that can
+ trigger a special kind of behavior.  Below are those special label
+ values:
+
+   * ``libabigail::OPAQUE_TYPE_LABEL``: A struct, class or enum type
+     that matches a ``[suppress_type]`` section with this label
+     property value is going to be replaced by an opaque type of the
+     same kind.  Note that an opaque type is essentially a
+     declaration-only type, thus with no member.  Also note that for a
+     ``[suppress_type]`` section with this label to trigger the
+     transformation of a type into an opaque type, the section must
+     have the ``drop`` property value set to ``yes|true``.
 
 * ``name``
 
index dd0870bc5e6ccd5a18cbceb20ae0ac75b7607429..500a96a83baf4c289074001995ee0410c2425ebb 100644 (file)
@@ -949,13 +949,13 @@ suppression_matches_soname_or_filename(const string& soname,
                                       const suppression_base& suppr);
 
 const char*
-get_private_types_suppr_spec_label();
+get_opaque_types_suppr_spec_label();
 
 bool
-is_private_type_suppr_spec(const type_suppression&);
+is_opaque_type_suppr_spec(const type_suppression&);
 
 bool
-is_private_type_suppr_spec(const suppression_sptr& s);
+is_opaque_type_suppr_spec(const suppression_sptr& s);
 
 bool
 suppression_can_match(const fe_iface&,
index 062988687d14be6d5f3bfd27db39d5c84fea6d8f..c9df2f0d06c403b933571271fc5f0c5f17c47a5e 100644 (file)
@@ -2620,7 +2620,7 @@ diff::is_suppressed(bool &is_private_type) const
     if (d->suppresses_diff(this))
       {
        do_suppress = true;
-       if (is_private_type_suppr_spec(d))
+       if (is_opaque_type_suppr_spec(d))
          is_private_type = true;
        break;
       }
index 5d5353ea0789e0f5d0d64f81b7d4ad391a939f13..07596933a32758c9b5d78bb7a90097e4b62c4a26 100644 (file)
@@ -15259,9 +15259,9 @@ variable_is_suppressed(const reader&            rdr,
 ///
 /// @param type_die the DIE that designates the type to consider.
 ///
-/// @param type_is_private out parameter.  If this function returns
+/// @param type_is_opaque out parameter.  If this function returns
 /// true (the type @p type_die is suppressed) and if the type was
-/// suppressed because it's private then this parameter is set to
+/// suppressed because it's opaque then this parameter is set to
 /// true.
 ///
 /// @return true iff the type designated by the DIE @p type_die, in
@@ -15271,7 +15271,7 @@ static bool
 type_is_suppressed(const reader& rdr,
                   const scope_decl* scope,
                   Dwarf_Die *type_die,
-                  bool &type_is_private)
+                  bool &type_is_opaque)
 {
   if (type_die == 0
       || (dwarf_tag(type_die) != DW_TAG_enumeration_type
@@ -15288,7 +15288,7 @@ type_is_suppressed(const reader& rdr,
   return suppr::is_type_suppressed(rdr,
                                   qualified_name,
                                   type_location,
-                                  type_is_private,
+                                  type_is_opaque,
                                   /*require_drop_property=*/true);
 }
 
@@ -15310,8 +15310,8 @@ type_is_suppressed(const reader& rdr,
                   const scope_decl* scope,
                   Dwarf_Die *type_die)
 {
-  bool type_is_private = false;
-  return type_is_suppressed(rdr, scope, type_die, type_is_private);
+  bool type_is_opaque = false;
+  return type_is_suppressed(rdr, scope, type_die, type_is_opaque);
 }
 
 /// Get the opaque version of a type that was suppressed because it's
@@ -15355,8 +15355,6 @@ get_opaque_version_of_type(reader       &rdr,
   string type_name, linkage_name;
   location type_location;
   die_loc_and_name(rdr, type_die, type_location, type_name, linkage_name);
-  if (!type_location)
-    return result;
 
   string qualified_name = build_qualified_name(scope, type_name);
 
@@ -15874,10 +15872,10 @@ build_ir_node_from_die(reader&        rdr,
 
     case DW_TAG_enumeration_type:
       {
-       bool type_is_private = false;
+       bool type_is_opaque = false;
        bool type_suppressed =
-         type_is_suppressed(rdr, scope, die, type_is_private);
-       if (type_suppressed && type_is_private)
+         type_is_suppressed(rdr, scope, die, type_is_opaque);
+       if (type_suppressed && type_is_opaque)
          {
            // The type is suppressed because it's private.  If other
            // non-suppressed and declaration-only instances of this
@@ -15906,11 +15904,11 @@ build_ir_node_from_die(reader&        rdr,
     case DW_TAG_class_type:
     case DW_TAG_structure_type:
       {
-       bool type_is_private = false;
+       bool type_is_opaque = false;
        bool type_suppressed=
-         type_is_suppressed(rdr, scope, die, type_is_private);
+         type_is_suppressed(rdr, scope, die, type_is_opaque);
 
-       if (type_suppressed && type_is_private)
+       if (type_suppressed && type_is_opaque)
          {
            // The type is suppressed because it's private.  If other
            // non-suppressed and declaration-only instances of this
index 7c7a43050d84b47845f85b8aa44e2f0beb27278a..aba4da1463887541e125595e1dc1330f05c00c70 100644 (file)
@@ -926,7 +926,7 @@ type_suppression::suppresses_diff(const diff* diff) const
       // public -- depending on, e.g, if the typedef is defined in a
       // public header or not.  So if we are in the context of a
       // private type suppression let's *NOT* peel typedefs away.
-      if (!is_private_type_suppr_spec(*this))
+      if (!is_opaque_type_suppr_spec(*this))
        {
          ft = peel_typedef_type(ft);
          st = peel_typedef_type(st);
@@ -1346,7 +1346,7 @@ suppression_matches_type_location(const type_suppression& s,
                // the declaration.  If we reach this place, it
                // means the class has no definition at this point.
                ABG_ASSERT(!cl->get_definition_of_declaration());
-             if (s.get_label() == get_private_types_suppr_spec_label())
+             if (s.get_label() == get_opaque_types_suppr_spec_label())
                // So this looks like what really amounts to an
                // opaque type.  So it's not defined in the public
                // headers.  So we want to filter it out.
@@ -4910,12 +4910,12 @@ suppression_matches_soname_or_filename(const string& soname,
 /// specification that is auto-generated by libabigail to suppress
 /// change reports about types that are not defined in public headers.
 const char*
-get_private_types_suppr_spec_label()
+get_opaque_types_suppr_spec_label()
 {
-  static const char *PRIVATE_TYPES_SUPPR_SPEC_NAME =
-    "Artificial private types suppression specification";
+  static const char *OPAQUE_TYPES_SUPPR_SPEC_NAME =
+    "libabigail::OPAQUE_TYPE_LABEL";
 
-  return PRIVATE_TYPES_SUPPR_SPEC_NAME;
+  return OPAQUE_TYPES_SUPPR_SPEC_NAME;
 }
 
 /// Test if a type suppression specification represents a private type
@@ -4926,8 +4926,8 @@ get_private_types_suppr_spec_label()
 ///
 /// @return true iff @p s is a private type suppr spec.
 bool
-is_private_type_suppr_spec(const type_suppression& s)
-{return s.get_label() == get_private_types_suppr_spec_label();}
+is_opaque_type_suppr_spec(const type_suppression& s)
+{return s.get_label() == get_opaque_types_suppr_spec_label();}
 
 /// Test if a type suppression specification represents a private type
 /// suppression automatically generated by libabigail from the user
@@ -4937,11 +4937,11 @@ is_private_type_suppr_spec(const type_suppression& s)
 ///
 /// @return true iff @p s is a private type suppr spec.
 bool
-is_private_type_suppr_spec(const suppression_sptr& s)
+is_opaque_type_suppr_spec(const suppression_sptr& s)
 {
   type_suppression_sptr type_suppr = is_type_suppression(s);
   return (type_suppr
-         && type_suppr->get_label() == get_private_types_suppr_spec_label());
+         && type_suppr->get_label() == get_opaque_types_suppr_spec_label());
 }
 // </file_suppression stuff>
 
@@ -5275,9 +5275,9 @@ is_variable_suppressed(const fe_iface&    fe,
 ///
 /// @param type_location the source location of the type.
 ///
-/// @param type_is_private output parameter.  This is set to true if
+/// @param type_is_opaque output parameter.  This is set to true if
 /// the type was matched by one suppression specification, and if the
-/// suppression was for private types.
+/// suppression was for opaque types.
 ///
 /// @param require_drop_property if true, this type requires the
 /// suppression specification to contain the "drop" property to match
@@ -5289,7 +5289,7 @@ bool
 is_type_suppressed(const fe_iface&     fe,
                   const string&        type_name,
                   const location&      type_location,
-                  bool&                type_is_private,
+                  bool&                type_is_opaque,
                   bool         require_drop_property)
 {
   for (auto i : fe.suppressions())
@@ -5301,14 +5301,14 @@ is_type_suppressed(const fe_iface&      fe,
                                                      type_name,
                                                      type_location))
          {
-           if (is_private_type_suppr_spec(*suppr))
-             type_is_private = true;
+           if (is_opaque_type_suppr_spec(*suppr))
+             type_is_opaque = true;
 
            return true;
          }
       }
 
-  type_is_private = false;
+  type_is_opaque = false;
   return false;
 }
 
index 2115113bebfb76d73b490a29d407336754499951..33a1e8af9083d62bd242055befcbe5953f19854d 100644 (file)
@@ -2003,7 +2003,7 @@ handle_file_entry(const string& file_path,
 {
   if (!suppr)
     {
-      suppr.reset(new type_suppression(get_private_types_suppr_spec_label(),
+      suppr.reset(new type_suppression(get_opaque_types_suppr_spec_label(),
                                       /*type_name_regexp=*/"",
                                       /*type_name=*/""));
 
index 8b33644bb8b616c41987de51fedfb35df44957ff..2ec0bb96f1ac0e0cbc183fa852449d31f822ffc4 100644 (file)
@@ -2033,6 +2033,15 @@ test-diff-suppr/test-has-data-member-inserted-at-3-v0.c \
 test-diff-suppr/test-has-data-member-inserted-at-3-v0.o \
 test-diff-suppr/test-has-data-member-inserted-at-3-v1.c \
 test-diff-suppr/test-has-data-member-inserted-at-3-v1.o \
+test-diff-suppr/PR31646/test-PR31646.2.abignore \
+test-diff-suppr/PR31646/test-PR31646.abignore \
+test-diff-suppr/PR31646/test-PR31646-result-1.txt \
+test-diff-suppr/PR31646/test-PR31646-result-2.txt \
+test-diff-suppr/PR31646/test-PR31646-result-3.txt \
+test-diff-suppr/PR31646/test-PR31646-v0.cc \
+test-diff-suppr/PR31646/test-PR31646-v0.o \
+test-diff-suppr/PR31646/test-PR31646-v1.cc \
+test-diff-suppr/PR31646/test-PR31646-v1.o \
 \
 test-lookup-syms/test0.cc              \
 test-lookup-syms/test0.o               \
diff --git a/tests/data/test-diff-suppr/PR31646/test-PR31646-result-1.txt b/tests/data/test-diff-suppr/PR31646/test-PR31646-result-1.txt
new file mode 100644 (file)
index 0000000..a221625
--- /dev/null
@@ -0,0 +1,21 @@
+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 opaque* fun(type&)' at test-PR31646-v0.cc:15:1 has some indirect sub-type changes:
+    return type changed:
+      entity changed from 'opaque*' to 'void'
+      type size changed from 64 to 0 (in bits)
+    parameter 1 of type 'type&' has sub-type changes:
+      in referenced type 'struct type' at test-PR31646-v1.cc:8:1:
+        type size hasn't changed
+        1 data member change:
+          type of 'opaque* m1' changed:
+            in pointed to type 'struct opaque' at test-PR31646-v1.cc:1:1:
+              type size changed from 64 to 96 (in bits)
+              1 data member insertion:
+                'char m_inserted', at offset 32 (in bits) at test-PR31646-v1.cc:4:1
+              1 data member change:
+                'int m1' offset changed from 32 to 64 (in bits) (by +32 bits)
+
diff --git a/tests/data/test-diff-suppr/PR31646/test-PR31646-result-2.txt b/tests/data/test-diff-suppr/PR31646/test-PR31646-result-2.txt
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/tests/data/test-diff-suppr/PR31646/test-PR31646-result-3.txt b/tests/data/test-diff-suppr/PR31646/test-PR31646-result-3.txt
new file mode 100644 (file)
index 0000000..2433dcd
--- /dev/null
@@ -0,0 +1,10 @@
+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 opaque* fun(type&)' at test-PR31646-v0.cc:15:1 has some indirect sub-type changes:
+    return type changed:
+      entity changed from 'opaque*' to 'void'
+      type size changed from 64 to 0 (in bits)
+
diff --git a/tests/data/test-diff-suppr/PR31646/test-PR31646-v0.cc b/tests/data/test-diff-suppr/PR31646/test-PR31646-v0.cc
new file mode 100644 (file)
index 0000000..53cc6ad
--- /dev/null
@@ -0,0 +1,17 @@
+struct opaque
+{
+  int m0;
+  int m1;
+};
+
+struct type
+{
+  int m0;
+  opaque* m1;
+  int m2;
+};
+
+opaque*
+fun(type&)
+{
+}
diff --git a/tests/data/test-diff-suppr/PR31646/test-PR31646-v0.o b/tests/data/test-diff-suppr/PR31646/test-PR31646-v0.o
new file mode 100644 (file)
index 0000000..31766f7
Binary files /dev/null and b/tests/data/test-diff-suppr/PR31646/test-PR31646-v0.o differ
diff --git a/tests/data/test-diff-suppr/PR31646/test-PR31646-v1.cc b/tests/data/test-diff-suppr/PR31646/test-PR31646-v1.cc
new file mode 100644 (file)
index 0000000..2573356
--- /dev/null
@@ -0,0 +1,18 @@
+struct opaque
+{
+  int m0;
+  char m_inserted;
+  int m1;
+};
+
+struct type
+{
+  int m0;
+  opaque* m1;
+  int m2;
+};
+
+void
+fun(type&)
+{
+}
diff --git a/tests/data/test-diff-suppr/PR31646/test-PR31646-v1.o b/tests/data/test-diff-suppr/PR31646/test-PR31646-v1.o
new file mode 100644 (file)
index 0000000..d12f31f
Binary files /dev/null and b/tests/data/test-diff-suppr/PR31646/test-PR31646-v1.o differ
diff --git a/tests/data/test-diff-suppr/PR31646/test-PR31646.2.abignore b/tests/data/test-diff-suppr/PR31646/test-PR31646.2.abignore
new file mode 100644 (file)
index 0000000..44ba7ba
--- /dev/null
@@ -0,0 +1,4 @@
+[suppress_type]
+ label = libabigail::OPAQUE_TYPE_LABEL
+ name = opaque
+ drop = yes
\ No newline at end of file
diff --git a/tests/data/test-diff-suppr/PR31646/test-PR31646.abignore b/tests/data/test-diff-suppr/PR31646/test-PR31646.abignore
new file mode 100644 (file)
index 0000000..81c00a7
--- /dev/null
@@ -0,0 +1,3 @@
+[suppress_type]
+ name = opaque
+ drop = yes
\ No newline at end of file
index 119be55b732febd2f04ca531d553d97a63084f54..297bfb0bf10095cd5ae79dd0a1795e1e8ecce5b7 100644 (file)
@@ -2396,6 +2396,36 @@ InOutSpec in_out_specs[] =
     "data/test-diff-suppr/test-has-strict-flexible-array-data-member-conversion-report-2.txt",
     "output/test-diff-suppr/test-has-strict-flexible-array-data-member-conversion-report-2.txt",
   },
+  {
+    "data/test-diff-suppr/PR31646/test-PR31646-v0.o",
+    "data/test-diff-suppr/PR31646/test-PR31646-v1.o",
+    "",
+    "",
+    "",
+    "--no-default-suppression ",
+    "data/test-diff-suppr/PR31646/test-PR31646-result-1.txt",
+    "output/test-diff-suppr/PR31646/test-PR31646-result-1.txt",
+  },
+  {
+    "data/test-diff-suppr/PR31646/test-PR31646-v0.o",
+    "data/test-diff-suppr/PR31646/test-PR31646-v1.o",
+    "",
+    "",
+    "data/test-diff-suppr/PR31646/test-PR31646.abignore",
+    "--no-default-suppression ",
+    "data/test-diff-suppr/PR31646/test-PR31646-result-2.txt",
+    "output/test-diff-suppr/PR31646/test-PR31646-result-2.txt",
+  },
+  {
+    "data/test-diff-suppr/PR31646/test-PR31646-v0.o",
+    "data/test-diff-suppr/PR31646/test-PR31646-v1.o",
+    "",
+    "",
+    "data/test-diff-suppr/PR31646/test-PR31646.2.abignore",
+    "--no-default-suppression ",
+    "data/test-diff-suppr/PR31646/test-PR31646-result-3.txt",
+    "output/test-diff-suppr/PR31646/test-PR31646-result-3.txt",
+  },
   // This should be the last entry
   {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
 };
index 3a6010750c87f3f94b7e1da3922657acc41df818..ed9efc9b1516344d986219cfed225f0f1805e86a 100644 (file)
@@ -1483,7 +1483,7 @@ compare(const elf_file&           elf1,
                                   opts.show_all_types);
     ABG_ASSERT(reader);
 
-    reader->add_suppressions(priv_types_supprs1);
+    reader->add_suppressions(supprs);
     set_generic_options(*reader, opts);
 
     corpus1 = reader->read_corpus(c1_status);
@@ -1664,6 +1664,9 @@ compare(const elf_file&           elf1,
 ///
 /// @param debug_dir the debug directory of the ELF file.
 ///
+/// @param priv_types_supprs type suppression specification that
+/// suppress private types.
+///
 /// @param opts the options passed the user.
 ///
 /// @param env the environment to use for the comparison.
@@ -1681,6 +1684,7 @@ compare(const elf_file&           elf1,
 static abidiff_status
 compare_to_self(const elf_file&                elf,
                const string&                   debug_dir,
+               const suppressions_type&        priv_types_supprs,
                const options&                  opts,
                abigail::ir::environment&       env,
                corpus_diff_sptr&               diff,
@@ -1707,6 +1711,14 @@ compare_to_self(const elf_file&          elf,
       << elf.path
       << " ...\n";
 
+  ctxt.reset(new diff_context);
+  set_diff_context_from_opts(ctxt, opts);
+  suppressions_type& supprs = ctxt->suppressions();
+
+  // Add the opaque type suppressions set to the set of suppressions.
+  for (auto& suppr : priv_types_supprs)
+    supprs.push_back(suppr);
+
   corpus_sptr corp;
   abigail::elf_based_reader_sptr reader;
   {
@@ -1726,6 +1738,7 @@ compare_to_self(const elf_file&           elf,
                                   opts.show_all_types);
     ABG_ASSERT(reader);
 
+    reader->add_suppressions(supprs);
     corp = reader->read_corpus(c_status);
 
     if (!(c_status & abigail::fe_iface::STATUS_OK))
@@ -2291,6 +2304,7 @@ public:
       abigail::fe_iface::STATUS_UNKNOWN;
 
     status |= compare_to_self(args->elf1, args->debug_dir1,
+                             args->private_types_suppr1,
                              args->opts, env, diff, ctxt, out,
                              &detailed_status);
 
@@ -2915,7 +2929,7 @@ compare_prepared_userspace_packages(package& first_package,
       if (iter != second_package.path_elf_file_sptr_map().end()
          && (iter->second->type == abigail::elf::ELF_TYPE_DSO
              || iter->second->type == abigail::elf::ELF_TYPE_EXEC
-              || iter->second->type == abigail::elf::ELF_TYPE_PI_EXEC
+             || iter->second->type == abigail::elf::ELF_TYPE_PI_EXEC
              || iter->second->type == abigail::elf::ELF_TYPE_RELOCATABLE))
        {
          if (iter->second->type != abigail::elf::ELF_TYPE_RELOCATABLE)
@@ -3069,7 +3083,6 @@ self_compare_prepared_userspace_package(package&  pkg,
       pkg.debug_info_packages().front()->extracted_dir_path() +
       relative_debug_path;
 
-  suppressions_type supprs;
   for (map<string, elf_file_sptr>::iterator it =
         pkg.path_elf_file_sptr_map().begin();
        it != pkg.path_elf_file_sptr_map().end();
@@ -3078,7 +3091,7 @@ self_compare_prepared_userspace_package(package&  pkg,
       if (it != pkg.path_elf_file_sptr_map().end()
          && (it->second->type == abigail::elf::ELF_TYPE_DSO
              || it->second->type == abigail::elf::ELF_TYPE_EXEC
-              || it->second->type == abigail::elf::ELF_TYPE_PI_EXEC
+             || it->second->type == abigail::elf::ELF_TYPE_PI_EXEC
              || it->second->type == abigail::elf::ELF_TYPE_RELOCATABLE))
        {
          if (it->second->type != abigail::elf::ELF_TYPE_RELOCATABLE)
@@ -3086,10 +3099,12 @@ self_compare_prepared_userspace_package(package&        pkg,
              compare_args_sptr args
                (new compare_args(*it->second,
                                  debug_dir,
-                                 supprs,
+                                 create_private_types_suppressions
+                                 (pkg, opts),
                                  *it->second,
                                  debug_dir,
-                                 supprs,
+                                 create_private_types_suppressions
+                                 (pkg, opts),
                                  opts));
              self_compare_task_sptr t(new self_compare_task(args));
              self_compare_tasks.push_back(t);
index ca94a3f9725bc01e822c86c2ae7733c47b876e1c..de494d174a7340ac9e35907ebdee9131125cf93f 100755 (executable)
@@ -1155,7 +1155,9 @@ def abipkgdiff(cmp_half1, cmp_half2):
             abipkgdiff_tool,
             '--dso-only' if global_config.dso_only else '',
             '--self-check',
+            suppressions,
             debuginfo_pkg1,
+            devel_pkg1,
             cmp_half1.subject.downloaded_file,
         ]
     else:
This page took 0.12075 seconds and 5 git commands to generate.