all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#47921] [PATCH] build: Fix elf-dynamic-info-soname.
@ 2021-04-20 19:44 Dion Mendel
  2021-04-21  2:46 ` Dion Mendel
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Dion Mendel @ 2021-04-20 19:44 UTC (permalink / raw)
  To: 47921

* guix/build/gremlin.scm (elf-dynamic-info-soname): Return the value of
  the dynamic-entry instead of the dynamic-entry record itself.
---
 guix/build/gremlin.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/guix/build/gremlin.scm b/guix/build/gremlin.scm
index e8ea66dfb3..4a31c3cfaf 100644
--- a/guix/build/gremlin.scm
+++ b/guix/build/gremlin.scm
@@ -215,7 +215,10 @@ string table if the type is a string."
     (#f #f)
     ((? elf-segment? dynamic)
      (let ((entries (dynamic-entries elf dynamic)))
-       (%elf-dynamic-info (find (matching-entry DT_SONAME) entries)
+       (%elf-dynamic-info (or (and=> (find (matching-entry DT_SONAME)
+                                           entries)
+                                     dynamic-entry-value)
+                              #f)
                           (filter-map (lambda (entry)
                                         (and (= (dynamic-entry-type entry)
                                                 DT_NEEDED)
-- 
2.31.0




^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [bug#47921] [PATCH] build: Fix elf-dynamic-info-soname.
  2021-04-20 19:44 [bug#47921] [PATCH] build: Fix elf-dynamic-info-soname Dion Mendel
@ 2021-04-21  2:46 ` Dion Mendel
  2021-04-21 11:49 ` Maxime Devos
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 9+ messages in thread
From: Dion Mendel @ 2021-04-21  2:46 UTC (permalink / raw)
  To: 47921

[-- Attachment #1: Type: text/plain, Size: 285 bytes --]

Oops, forgot to refactor.  Replacement patch attached.

Rationale:

The elf-dynamic-info-soname function is currently implemented but 
unused.  The current implementation does not work as it omits unwrapping 
the dynamic-entry record.  This patch makes the function work as 
intended.

[-- Attachment #2: 0001-build-Fix-elf-dynamic-info-soname.patch --]
[-- Type: text/x-diff, Size: 1168 bytes --]

From b15d9d708900f6713e5f40afdce66f3bb443e36b Mon Sep 17 00:00:00 2001
From: Dion Mendel <guix@dm9.info>
Date: Wed, 21 Apr 2021 10:36:32 +0800
Subject: [PATCH] build: Fix elf-dynamic-info-soname.

* guix/build/gremlin.scm (elf-dynamic-info-soname): Return the value of
  the dynamic-entry instead of the dynamic-entry record.
---
 guix/build/gremlin.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/guix/build/gremlin.scm b/guix/build/gremlin.scm
index e8ea66dfb3..4710502426 100644
--- a/guix/build/gremlin.scm
+++ b/guix/build/gremlin.scm
@@ -215,7 +215,9 @@ string table if the type is a string."
     (#f #f)
     ((? elf-segment? dynamic)
      (let ((entries (dynamic-entries elf dynamic)))
-       (%elf-dynamic-info (find (matching-entry DT_SONAME) entries)
+       (%elf-dynamic-info (and=> (find (matching-entry DT_SONAME)
+                                        entries)
+                                  dynamic-entry-value)
                           (filter-map (lambda (entry)
                                         (and (= (dynamic-entry-type entry)
                                                 DT_NEEDED)
-- 
2.31.0


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [bug#47921] [PATCH] build: Fix elf-dynamic-info-soname.
  2021-04-20 19:44 [bug#47921] [PATCH] build: Fix elf-dynamic-info-soname Dion Mendel
  2021-04-21  2:46 ` Dion Mendel
@ 2021-04-21 11:49 ` Maxime Devos
  2021-04-21 15:46   ` Dion Mendel
  2021-04-22  2:55 ` [bug#47921] retitle Dion Mendel
  2021-04-22  3:26 ` [bug#47921] Include correct commit message Dion Mendel
  3 siblings, 1 reply; 9+ messages in thread
From: Maxime Devos @ 2021-04-21 11:49 UTC (permalink / raw)
  To: Dion Mendel, 47921

[-- Attachment #1: Type: text/plain, Size: 859 bytes --]

Dion Mendel schreef op wo 21-04-2021 om 03:44 [+0800]:
> * guix/build/gremlin.scm (elf-dynamic-info-soname): Return the value of
>   the dynamic-entry instead of the dynamic-entry record itself.

1. IIUC, this change would cause a world-rebuild, so this patch would have
   to applied on core-updates.  The subject line should have been
   [PATCH core-updates]: etcetera.
2. How did you test this patch?
3. What does this patch fix?
4. elf-dynamic-info-soname is a record accessor.  Did you mean elf-dynamic-info?
5. According to the docstring (core-updates, c9a61dff8242612ae8275829a5ee31ff45ff08b1):

  "Return dynamic-link information for ELF as an <elf-dynamic-info> object, or
#f if ELF lacks dynamic-link information."

  So this patch actually _introduces_ a bug.  Or you need to modify the docstring
  as well.

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [bug#47921] [PATCH] build: Fix elf-dynamic-info-soname.
  2021-04-21 11:49 ` Maxime Devos
@ 2021-04-21 15:46   ` Dion Mendel
  2021-04-21 18:33     ` Maxime Devos
  0 siblings, 1 reply; 9+ messages in thread
From: Dion Mendel @ 2021-04-21 15:46 UTC (permalink / raw)
  To: 47921

Thanks for the follow up.

>1. IIUC, this change would cause a world-rebuild, so this patch would 
>have to applied on core-updates.  The subject line should have been
>[PATCH core-updates]: etcetera.

Are you sure?  This patch will modify guix.

   guix graph --type=reverse-package guix

Only shows a few packages to be rebuilt.  I am new to guix so I may be 
wrong about this.

>2. How did you test this patch?

Tested in the repl.

Current behaviour:

    (elf-dynamic-info-soname
      (call-with-input-file "/path/to/libz.so.1.2.11"
                            (compose elf-dynamic-info parse-elf
                                     get-bytevector-all)))
    => #<<dynamic-entry> type: 14 value: "libz.so.1" offset: 5764>

There is no way to extract the value as dynamic-entry is private to the 
module.

After the patch:

    (elf-dynamic-info-soname
      (call-with-input-file "/path/to/libz.so.1.2.11"
                            (compose elf-dynamic-info parse-elf
                                     get-bytevector-all)))
    => "libz.so.1"

>3. What does this patch fix?

Module (guix build gremlin) exports several functions to extract 
information from the dynamic section of an elf file.

elf-dynamic-info-soname is one of these functions.  It is not called 
anywhere in guix.  I would like to use it for packaging, but it is 
currently non functioning.

>4. elf-dynamic-info-soname is a record accessor.  Did you mean 
>elf-dynamic-info?

No, I do not mean elf-dynamic-info.

elf-dynamic-info-soname is a record accessor which is currently broken 
because it doesn't unwrap an internal structure, namely <dynamic-entry>.  
All the other accessors unwrap this internal structure.

This patch brings this accessor into line with the others.

>5. According to the docstring (core-updates, c9a61dff8242612ae8275829a5ee31ff45ff08b1):
>
>  "Return dynamic-link information for ELF as an <elf-dynamic-info> object, or
>#f if ELF lacks dynamic-link information."
>
>  So this patch actually _introduces_ a bug.  Or you need to modify the docstring
>  as well.

No.  This patch does not affect elf-dynamic-info.  It fixes one of its 
accessors.  Nothing else is affected.




^ permalink raw reply	[flat|nested] 9+ messages in thread

* [bug#47921] [PATCH] build: Fix elf-dynamic-info-soname.
  2021-04-21 15:46   ` Dion Mendel
@ 2021-04-21 18:33     ` Maxime Devos
  2021-04-22  3:13       ` Dion Mendel
  0 siblings, 1 reply; 9+ messages in thread
From: Maxime Devos @ 2021-04-21 18:33 UTC (permalink / raw)
  To: Dion Mendel, 47921

[-- Attachment #1: Type: text/plain, Size: 5004 bytes --]

Dion Mendel schreef op wo 21-04-2021 om 23:46 [+0800]:
> Thanks for the follow up.
> 
> > 1. IIUC, this change would cause a world-rebuild, so this patch would 
> > have to applied on core-updates.  The subject line should have been
> > [PATCH core-updates]: etcetera.
> 
> Are you sure?  This patch will modify guix.
> 
>    guix graph --type=reverse-package guix
>
> Only shows a few packages to be rebuilt.  I am new to guix so I may be 
> wrong about this.

If this patch modified something in, say, guix/scripts or gnu/packages,
targetting "master" should be perfectly fine.  But this patch modifies
something under guix/build.  Modules under guix/build can be used from
the build environment, that is, from within the compilation process of
a package.  By modifying guix/build/gremlin.scm, a widely-used module
in package definitions (used indirectly via gnu-build-system IIRC),
practically all packages would be rebuilt.

Unless I'm severely mistaken, you can see this for yourself by:

0. start from a checkout of guix *without* your patch
1. # you probably have its dependencies already, but let's make sure
   ./pre-inst-env guix build hello
2. apply your patch to your local checkout of guix
3. make
4. ./pre-inst-env guix build hello
   # This will probably rebuild GCC, binutils, etc.!

> 2. How did you test this patch?
> 
> Tested in the repl.
> 
> Current behaviour:
> 
>     (elf-dynamic-info-soname
>       (call-with-input-file "/path/to/libz.so.1.2.11"
>                             (compose elf-dynamic-info parse-elf
>                                      get-bytevector-all)))
>     => #<<dynamic-entry> type: 14 value: "libz.so.1" offset: 5764>
> 
> There is no way to extract the value as dynamic-entry is private to the 
> module.
> 
> After the patch:
> 
>     (elf-dynamic-info-soname
>       (call-with-input-file "/path/to/libz.so.1.2.11"
>                             (compose elf-dynamic-info parse-elf
>                                      get-bytevector-all)))
>     => "libz.so.1"

So you didn't try to build any package with this patch?

I would recommend to make sure this patch doesn't break any packages.
While you can't test all packages (unless you have a *really big* build
farm), I would at least suggest running "./pre-inst-env guix build hello".
If that takes too long to complete, don't worry, just interrupt it and let
us now you couldn't test it completely.

To make sure this new functionality does not break in the future, please
write an unit test (in tests/gremlin.scm).

> > 3. What does this patch fix?
> 
> Module (guix build gremlin) exports several functions to extract 
> information from the dynamic section of an elf file.
> 
> elf-dynamic-info-soname is one of these functions.  It is not called 
> anywhere in guix.  I would like to use it for packaging, but it is 
> currently non functioning.

Your patch doesn't modify elf-dynamic-info-soname.  It modifies elf-dynamic-info.

> > 4. elf-dynamic-info-soname is a record accessor.  Did you mean 
> > elf-dynamic-info?

In case I wasn't clear, I was referring to the commit message.  In the commit
message, you say you modified elf-dynamic-info-soname, but you actually modified
elf-dynamic-info.
 
> No, I do not mean elf-dynamic-info.
See two comments above.

> elf-dynamic-info-soname is a record accessor which is currently broken 
Record accessors are correct by construction.  Perhaps you meant
that the "soname" field is initialised incorrectly by elf-dynamic-info?

> because it doesn't unwrap an internal structure, namely <dynamic-entry>.  
> All the other accessors unwrap this internal structure.
I think you can predict my response about accessors here (-:.

I'll interpret this as ‘in all other fields, the internal structure is unwrapped’.
That's a good point!  Your patch seems good to me, but the commit message doesn't
and it has a lack of testing.

> This patch brings this accessor into line with the others.

You didn't modify the elf-dynamic-info-soname, you modified elf-dynamic-info.
See comments above.

> > 5. According to the docstring (core-updates, c9a61dff8242612ae8275829a5ee31ff45ff08b1):
> > 
> >  "Return dynamic-link information for ELF as an <elf-dynamic-info> object, or
> >  #f if ELF lacks dynamic-link information."
> > 
> >  So this patch actually _introduces_ a bug.  Or you need to modify the docstring
> >  as well.

On second thought, the (revised) patch actually seems correct, and my comment here
doesn't make much sense.

> No.  This patch does not affect elf-dynamic-info.  It fixes one of its 
> accessors.

You modified elf-dynamic-info, so this patch does affect it.
elf-dynamic-info is a procedure, so it cannot have any accessors (unless you play
weird tricks with Guile's undocumented ‘applicable structs’).  The record is
<elf-dynamic-info>. <elf-dynamic-info> != elf-dynamic-info.

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [bug#47921] retitle
  2021-04-20 19:44 [bug#47921] [PATCH] build: Fix elf-dynamic-info-soname Dion Mendel
  2021-04-21  2:46 ` Dion Mendel
  2021-04-21 11:49 ` Maxime Devos
@ 2021-04-22  2:55 ` Dion Mendel
  2021-04-22  3:26 ` [bug#47921] Include correct commit message Dion Mendel
  3 siblings, 0 replies; 9+ messages in thread
From: Dion Mendel @ 2021-04-22  2:55 UTC (permalink / raw)
  To: 47921

retitle 47921 [PATCH core-updates] build: Fix elf-dynamic-info-soname.




^ permalink raw reply	[flat|nested] 9+ messages in thread

* [bug#47921] [PATCH] build: Fix elf-dynamic-info-soname.
  2021-04-21 18:33     ` Maxime Devos
@ 2021-04-22  3:13       ` Dion Mendel
  2021-04-22  8:20         ` bug#47921: " Ludovic Courtès
  0 siblings, 1 reply; 9+ messages in thread
From: Dion Mendel @ 2021-04-22  3:13 UTC (permalink / raw)
  To: 47921

[-- Attachment #1: Type: text/plain, Size: 530 bytes --]

Thanks for your explanations.  It's cleared up my understanding.

I've tried to retitled to target core-updates, but I'm not sure if it 
applied.

I've updated the patch to include a unit test.

I am currently testing by rebuilding as you suggest.

   ./pre-inst-env guix build hello

Yes this is building the world so I will report back when it completes.

>The record is <elf-dynamic-info>. <elf-dynamic-info> != elf-dynamic-info.

Thank you.  Yes I was confused regarding this.  I've updated the commit 
changelog accordingly.

[-- Attachment #2: 0001-guix-build-gremlin.scm-elf-dynamic-info-Correctly-se.patch --]
[-- Type: text/x-diff, Size: 2031 bytes --]

From bfc69ea726e0f5c1955e629e92af377ffb90c2c5 Mon Sep 17 00:00:00 2001
From: Dion Mendel <guix@dm9.info>
Date: Thu, 22 Apr 2021 10:32:35 +0800
Subject: [PATCH] * guix/build/gremlin.scm (elf-dynamic-info): Correctly set
 the value of   soname in <elf-dynamic-info>.

---
 guix/build/gremlin.scm |  4 +++-
 tests/gremlin.scm      | 18 ++++++++++++++++++
 2 files changed, 21 insertions(+), 1 deletion(-)

diff --git a/guix/build/gremlin.scm b/guix/build/gremlin.scm
index e8ea66dfb3..4710502426 100644
--- a/guix/build/gremlin.scm
+++ b/guix/build/gremlin.scm
@@ -215,7 +215,9 @@ string table if the type is a string."
     (#f #f)
     ((? elf-segment? dynamic)
      (let ((entries (dynamic-entries elf dynamic)))
-       (%elf-dynamic-info (find (matching-entry DT_SONAME) entries)
+       (%elf-dynamic-info (and=> (find (matching-entry DT_SONAME)
+                                        entries)
+                                  dynamic-entry-value)
                           (filter-map (lambda (entry)
                                         (and (= (dynamic-entry-type entry)
                                                 DT_NEEDED)
diff --git a/tests/gremlin.scm b/tests/gremlin.scm
index b0bb7a8e49..50ad0d70f5 100644
--- a/tests/gremlin.scm
+++ b/tests/gremlin.scm
@@ -96,4 +96,22 @@
                 (close-pipe pipe)
                 str)))))))
 
+(unless c-compiler
+  (test-skip 1))
+(test-equal "elf-dynamic-info-soname"
+  "libfoo.so.2"
+  (call-with-temporary-directory
+   (lambda (directory)
+     (with-directory-excursion directory
+       (call-with-output-file "t.c"
+         (lambda (port)
+           (display "// empty file" port)))
+       (invoke c-compiler "t.c"
+               "-shared" "-Wl,-soname,libfoo.so.2")
+       (let* ((dyninfo (elf-dynamic-info
+                       (parse-elf (call-with-input-file "a.out"
+                                    get-bytevector-all))))
+              (soname  (elf-dynamic-info-soname dyninfo)))
+	 soname)))))
+
 (test-end "gremlin")
-- 
2.31.0


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [bug#47921] Include correct commit message
  2021-04-20 19:44 [bug#47921] [PATCH] build: Fix elf-dynamic-info-soname Dion Mendel
                   ` (2 preceding siblings ...)
  2021-04-22  2:55 ` [bug#47921] retitle Dion Mendel
@ 2021-04-22  3:26 ` Dion Mendel
  3 siblings, 0 replies; 9+ messages in thread
From: Dion Mendel @ 2021-04-22  3:26 UTC (permalink / raw)
  To: 47921

[-- Attachment #1: Type: text/plain, Size: 27 bytes --]

Correct changelog message.

[-- Attachment #2: 0001-build-Fix-elf-dynamic-info-soname.patch --]
[-- Type: text/x-diff, Size: 2064 bytes --]

From c9df762924ac28bc7cab6c7c1f9acda0db378f7e Mon Sep 17 00:00:00 2001
From: Dion Mendel <guix@dm9.info>
Date: Thu, 22 Apr 2021 11:21:35 +0800
Subject: [PATCH] build: Fix elf-dynamic-info-soname.

* guix/build/gremlin.scm (elf-dynamic-info): Correctly set the value of soname in <elf-dynamic-info>.
---
 guix/build/gremlin.scm |  4 +++-
 tests/gremlin.scm      | 18 ++++++++++++++++++
 2 files changed, 21 insertions(+), 1 deletion(-)

diff --git a/guix/build/gremlin.scm b/guix/build/gremlin.scm
index e8ea66dfb3..4710502426 100644
--- a/guix/build/gremlin.scm
+++ b/guix/build/gremlin.scm
@@ -215,7 +215,9 @@ string table if the type is a string."
     (#f #f)
     ((? elf-segment? dynamic)
      (let ((entries (dynamic-entries elf dynamic)))
-       (%elf-dynamic-info (find (matching-entry DT_SONAME) entries)
+       (%elf-dynamic-info (and=> (find (matching-entry DT_SONAME)
+                                        entries)
+                                  dynamic-entry-value)
                           (filter-map (lambda (entry)
                                         (and (= (dynamic-entry-type entry)
                                                 DT_NEEDED)
diff --git a/tests/gremlin.scm b/tests/gremlin.scm
index b0bb7a8e49..50ad0d70f5 100644
--- a/tests/gremlin.scm
+++ b/tests/gremlin.scm
@@ -96,4 +96,22 @@
                 (close-pipe pipe)
                 str)))))))
 
+(unless c-compiler
+  (test-skip 1))
+(test-equal "elf-dynamic-info-soname"
+  "libfoo.so.2"
+  (call-with-temporary-directory
+   (lambda (directory)
+     (with-directory-excursion directory
+       (call-with-output-file "t.c"
+         (lambda (port)
+           (display "// empty file" port)))
+       (invoke c-compiler "t.c"
+               "-shared" "-Wl,-soname,libfoo.so.2")
+       (let* ((dyninfo (elf-dynamic-info
+                       (parse-elf (call-with-input-file "a.out"
+                                    get-bytevector-all))))
+              (soname  (elf-dynamic-info-soname dyninfo)))
+	 soname)))))
+
 (test-end "gremlin")
-- 
2.31.0


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* bug#47921: [PATCH] build: Fix elf-dynamic-info-soname.
  2021-04-22  3:13       ` Dion Mendel
@ 2021-04-22  8:20         ` Ludovic Courtès
  0 siblings, 0 replies; 9+ messages in thread
From: Ludovic Courtès @ 2021-04-22  8:20 UTC (permalink / raw)
  To: Dion Mendel; +Cc: 47921-done

Hi Dion,

Dion Mendel <guix@dm9.info> skribis:

>>From bfc69ea726e0f5c1955e629e92af377ffb90c2c5 Mon Sep 17 00:00:00 2001
> From: Dion Mendel <guix@dm9.info>
> Date: Thu, 22 Apr 2021 10:32:35 +0800
> Subject: [PATCH] * guix/build/gremlin.scm (elf-dynamic-info): Correctly set
>  the value of   soname in <elf-dynamic-info>.
>
> ---
>  guix/build/gremlin.scm |  4 +++-
>  tests/gremlin.scm      | 18 ++++++++++++++++++
>  2 files changed, 21 insertions(+), 1 deletion(-)

Awesome.  I tweaked the commit message and applied it.

Thank you, and thanks Maxime for the review!

Ludo’.




^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2021-04-22  8:21 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-20 19:44 [bug#47921] [PATCH] build: Fix elf-dynamic-info-soname Dion Mendel
2021-04-21  2:46 ` Dion Mendel
2021-04-21 11:49 ` Maxime Devos
2021-04-21 15:46   ` Dion Mendel
2021-04-21 18:33     ` Maxime Devos
2021-04-22  3:13       ` Dion Mendel
2021-04-22  8:20         ` bug#47921: " Ludovic Courtès
2021-04-22  2:55 ` [bug#47921] retitle Dion Mendel
2021-04-22  3:26 ` [bug#47921] Include correct commit message Dion Mendel

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.