Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI Ubuntu versions #492

Merged
merged 11 commits into from
Apr 2, 2025
Merged

Update CI Ubuntu versions #492

merged 11 commits into from
Apr 2, 2025

Conversation

swebb2066
Copy link
Contributor

This PR moves CI actions off Ubuntu 20 which soon will not be supported

@swebb2066
Copy link
Contributor Author

The src/main/abi-symbols/abi.dump produced from g++ 9.4 contains

                          '14545351' => {
                                          'Header' => 'propertysetter.h',
                                          'Line' => '62',
                                          'Memb' => {
                                                      '0' => {
                                                               'access' => 'protected',
                                                               'name' => 'obj',
                                                               'offset' => '0',
                                                               'type' => '648233'
                                                             }
                                                    },
                                          'Name' => 'log4cxx::config::PropertySetter',
                                          'NameSpace' => 'log4cxx::config',
                                          'Size' => '16',
                                          'Type' => 'Class'
                                       },
and
                          '648233' => {
                                        'BaseType' => '565797',
                                        'Header' => 'object.h',
                                        'Line' => '114',
                                        'Name' => 'log4cxx::helpers::ObjectPtr',
                                        'NameSpace' => 'log4cxx::helpers',
                                        'Size' => '16',
                                        'Type' => 'Typedef'
                                      },

The new-abi.dump produced from g++ 9.5 contains

                          '4837555' => {
                                         'Header' => 'propertysetter.h',
                                         'Line' => '62',
                                         'Memb' => {
                                                     '0' => {
                                                              'access' => 'protected',
                                                              'name' => 'obj',
                                                              'offset' => '0',
                                                              'type' => '455809'
                                                            }
                                                   },
                                         'Name' => 'log4cxx::config::PropertySetter',
                                         'NameSpace' => 'log4cxx::config',
                                         'Size' => '16',
                                         'Type' => 'Class'
                                       },
and
                          '455809' => {
                                        'BaseType' => '390060',
                                        'Header' => 'object.h',
                                        'Line' => '114',
                                        'Name' => 'log4cxx::helpers::ObjectPtr',
                                        'NameSpace' => 'log4cxx::helpers',
                                        'Type' => 'Typedef'
                                      },

@rm5248
Copy link
Contributor

rm5248 commented Mar 29, 2025

Are we getting a false positive with the ABI check? I can take a look at it later.

@swebb2066
Copy link
Contributor Author

Compiling this branch with g++ 11.4.0 produces a new-abi.dump containing (for example):

                            '18461936' => {
                                            'Class' => '11845076',
                                            'Header' => 'hierarchy.h',
                                            'MnglName' => '_ZN7log4cxx9Hierarchy18ensureIsConfiguredESt8functionIFvvEE',
                                            'Param' => {
                                                         '0' => {
                                                                  'name' => 'this',
                                                                  'type' => '18474272'
                                                                },
                                                         '1' => {
                                                                  'name' => 'configurator',
                                                                  'type' => '2274699'
                                                                }
                                                       },
                                            'Reg' => {
                                                       '1' => 'rsi'
                                                     },
                                            'Return' => '1',
                                            'ShortName' => 'ensureIsConfigured',
                                            'Source' => 'hierarchy.cpp',
                                            'SourceLine' => '302',
                                            'Virt' => 1,
                                            'VirtPos' => '6'
                                          },

Compiling the rel/v1.2.0 branch with g++ 11.4.0 produces a new-abi.dump containing:

                            '18603406' => {
                                            'Class' => '11930657',
                                            'Header' => 'hierarchy.h',
                                            'MnglName' => '_ZN7log4cxx9Hierarchy18ensureIsConfiguredESt8functionIFvvEE',
                                            'Param' => {
                                                         '0' => {
                                                                  'name' => 'this',
                                                                  'type' => '18615999'
                                                                },
                                                         '1' => {
                                                                  'name' => 'configurator',
                                                                  'type' => '2331741'
                                                                }
                                                       },
                                            'Reg' => {
                                                       '0' => 'rbx',
                                                       '1' => 'rbp'
                                                     },
                                            'Return' => '1',
                                            'ShortName' => 'ensureIsConfigured',
                                            'Source' => 'hierarchy.cpp',
                                            'SourceLine' => '310',
                                            'Virt' => 1,
                                            'VirtPos' => '6'
                                          },

@rm5248
Copy link
Contributor

rm5248 commented Mar 30, 2025

What compiler did you generate the new ABI dump file with?

Taking a look at the compat report, the problems that it's showing are real problems with the ABI, but I'm pretty sure they're false positives, although it does depend on what compiler is being used.

Testing with g++ 10.2, I get only 5 problems that all appear to be false positives:

  • It thinks RootLogger() constructor changed, which the signature did not
  • it thinks Transcoder::decode() changed, but it did not
  • It thinks that the obj field in PropertySetter changed from 16 bytes to 0 bytes

It seems that ubuntu 20 is using g++9.3, which uses C++14 by default. g++ versions 11 and above use C++17 by default.

Some of the errors(e.g. The parameter pool1 became passed in r12 register instead of rbp.) might be due to the different C++ standard being used, although if the name mangling is the same I would expect the calling convention to be the same. It is possible to version symbols with gcc though, so there could be an invisible "works with C++ version X" version being added to the symbol.

I'm pretty sure the ABI check for C++ is only useful if the same C++ standard is used between all of the checks, which is why the abi-check build is only on a specific version of ubuntu(and not latest). From the ABI compliance checker page:

The ABI dump can be used to create a snapshot of a library ABI in the particular environment and then compare it with any other state of the ABI changed due to changes in the environment (compiler version, external libraries, etc.) or changes in the library API (header files).

This would imply to me that the change in compiler version and libstdc++ version are enough to make the ABI check fail; we're concerned with the last part(changes in the library API).

@swebb2066
Copy link
Contributor Author

What compiler did you generate the new ABI dump file with?

I used g++ 11.4.0 to generate the new ABI dump file using the rel/v1.2.0 source code, i.e. the same version used to build this branch. This was to ensure a change in compiler version was not the issue.

Using gdb to disassemble a call to log4cxx::Hierarcchy::ensureIsConfigured in rel/v1.2.0 and this branch shows the same registers (rsi, rdi) are used.

So the problem is abi-dumper.pl not correctly processing the output of eu-readelf for recent g++ versions.

@ppkarwasz
Copy link
Contributor

Is there a way to make the abi.dump in this repository more easily comparable using diff? Sorting the entries by MnglName should help, right?

@swebb2066
Copy link
Contributor Author

Is there a way to make the abi.dump in this repository more easily comparable using diff? Sorting the entries by MnglName should help, right?

No, it is full of magic numbers, which change with every build.

The abi-compliance-checker perl project produces a html summary of the differences which is available from a Github link under Run actions/upload-artifact step in the abi-check Github action log.

@swebb2066 swebb2066 merged commit debb826 into master Apr 2, 2025
32 checks passed
@swebb2066 swebb2066 deleted the move_from_unbuntu_20 branch April 2, 2025 01:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants