generate-proxy produces unpredictable method order in generated classes

Description

Problem

Using clojure.core/proxy to generate proxies for Java classes produces unpredictable method ordering in the generated class files.
This is a problem for repeatable builds (when doing AOT).

Context

Specifically, I'm running Clojure inside Docker, and I'd like my application image layer to be as small as those produced by Java developers (using Meta-inf classpaths and a lib directory). Anyway, to get this working properly so that all dependencies (including those compiled as part of AOT) are on a separate layer, I need the output of compiling my applications' dependencies' proxies to be the same each time I run the build. This reduces build time, image push time, image pull time and container scheduling time.

Some linux maintainers have also noted this (and other) compilation cases that can cause different class file output in their quest to make reproducible builds.

Example code that exhibits the problem (you'll need to run it a few times to see the issue).

https://github.com/kipz/predictable-proxies

Cause: In proxies, unsorted maps of methods are used in several places that affect the bytecode order of the emitted proxy.

Approach: In all places during proxy generation where an unordered map keyed by method are used, instead use a map sorted by a vector of method name, parameter type class names, and return type name.

Author: Ambrose Bonnaire-Sergeant

Patch: clj-1973-7.patch

Screened by: fogus

Environment

OSX, OpenJDK 8

Attachments

7
  • 25 Jan 2022, 06:36 PM
  • 19 Sep 2021, 09:32 PM
  • 04 Jul 2016, 09:15 PM
  • 04 Jul 2016, 07:14 PM
  • 04 Jul 2016, 07:06 PM
  • 04 Jul 2016, 05:24 PM
  • 01 Jul 2016, 10:19 PM

Activity

Show:

Alex Miller February 2, 2022 at 9:54 PM

Released in 1.11.0-beta1

Rich Hickey February 2, 2022 at 6:54 PM

I’m ok'ing this, but note that reproducible builds are not a feature we are committing to in Clojure

Alex Miller January 27, 2022 at 7:04 PM

Right-o - most of these colls have filtered out the bridge methods but mb definitely has them and seems best to use the same comparator for all. Thanks!

Ambrose Bonnaire-Sergeant January 26, 2022 at 8:38 PM
Edited

Alex Miller January 25, 2022 at 7:06 PM

-8 removes the inclusion of return type, which is not needed, attribution retained

Fixed

Details

Assignee

Reporter

Approval

Ok

Patch

Code and Test

Priority

Affects versions

Fix versions

Created July 1, 2016 at 10:00 PM
Updated February 2, 2022 at 9:54 PM
Resolved February 2, 2022 at 9:54 PM

Flag notifications