bfd_set_input_error
authorPedro Alves <palves@redhat.com>
Wed, 4 Oct 2017 13:20:51 +0000 (14:20 +0100)
committerAlan Modra <amodra@gmail.com>
Thu, 5 Oct 2017 01:33:47 +0000 (12:03 +1030)
A downside to the 2017-10-04 PR22245 fix is that bfd_set_error can now
silently accept invalid errors if/when someone passes the a value of
the wrong enumeration type, which previously would be caught by the
-Wenum-conversion warning.

PR 22245
* bfd.c (bfd_set_error): Revert 2017-10-04 change.  Remove
ellipsis parameter.  Split out bfd_error_on_input code to..
(bfd_set_input_error): .. New function.
* archive.c (_bfd_write_archive_contents): Use bfd_set_input_error.
* vms-lib.c (_bfd_vms_lib_write_archive_contents): Likewise.
* bfd-in2.h: Regenerate.

bfd/ChangeLog
bfd/archive.c
bfd/bfd-in2.h
bfd/bfd.c
bfd/vms-lib.c

index c221cdb48b5a415a46840ade72cf8d10f1dcdea0..4e52880b880e63cf2ea4bbcd4a3fbcf7a1bc2057 100644 (file)
@@ -1,3 +1,13 @@
+2017-10-05  Pedro Alves  <palves@redhat.com>
+
+       PR 22245
+       * bfd.c (bfd_set_error): Revert 2017-10-04 change.  Remove
+       ellipsis parameter.  Split out bfd_error_on_input code to..
+       (bfd_set_input_error): .. New function.
+       * archive.c (_bfd_write_archive_contents): Use bfd_set_input_error.
+       * vms-lib.c (_bfd_vms_lib_write_archive_contents): Likewise.
+       * bfd-in2.h: Regenerate.
+
 2017-10-05  Alan Modra  <amodra@gmail.com>
 
        * elflink.c (elf_link_input_bfd): Correct ctor/dtor in init_array/
index 3ce3f9eb892ce8e28b51f66a09855f868d7b2d6a..1e8768564304a7d2d7c66abf5b92e88fdc0efeec 100644 (file)
@@ -2309,7 +2309,7 @@ _bfd_write_archive_contents (bfd *arch)
   return TRUE;
 
  input_err:
-  bfd_set_error (bfd_error_on_input, current, bfd_get_error ());
+  bfd_set_input_error (current, bfd_get_error ());
   return FALSE;
 }
 \f
index 62be566e7535611c2826811666843f02a485a51a..4ba05b10b6e82c8e38768273e8c1502a8819a1ec 100644 (file)
@@ -7054,7 +7054,9 @@ bfd_error_type;
 
 bfd_error_type bfd_get_error (void);
 
-void bfd_set_error (int error_tag, ...);
+void bfd_set_error (bfd_error_type error_tag);
+
+void bfd_set_input_error (bfd *input, bfd_error_type error_tag);
 
 const char *bfd_errmsg (bfd_error_type error_tag);
 
index 5da1a6fd53a7024bd037913d77e5ab603e4ef8fd..f21c97aa534cb38f627423ffd7c98ce0ea18b264 100644 (file)
--- a/bfd/bfd.c
+++ b/bfd/bfd.c
@@ -497,32 +497,47 @@ FUNCTION
        bfd_set_error
 
 SYNOPSIS
-       void bfd_set_error (int error_tag, ...);
+       void bfd_set_error (bfd_error_type error_tag);
 
 DESCRIPTION
        Set the BFD error condition to be @var{error_tag}.
-       If @var{error_tag} is bfd_error_on_input, then this function
-       takes two more parameters, the input bfd where the error
-       occurred, and the bfd_error_type error.
+
+       @var{error_tag} must not be bfd_error_on_input.  Use
+       bfd_set_input_error for input errors instead.
 */
 
 void
-bfd_set_error (int error_tag, ...)
+bfd_set_error (bfd_error_type error_tag)
 {
   bfd_error = error_tag;
-  if (error_tag == bfd_error_on_input)
-    {
-      /* This is an error that occurred during bfd_close when
-        writing an archive, but on one of the input files.  */
-      va_list ap;
-
-      va_start (ap, error_tag);
-      input_bfd = va_arg (ap, bfd *);
-      input_error = (bfd_error_type) va_arg (ap, int);
-      if (input_error >= bfd_error_on_input)
-       abort ();
-      va_end (ap);
-    }
+  if (bfd_error >= bfd_error_on_input)
+    abort ();
+}
+
+/*
+FUNCTION
+       bfd_set_input_error
+
+SYNOPSIS
+       void bfd_set_input_error (bfd *input, bfd_error_type error_tag);
+
+DESCRIPTION
+
+       Set the BFD error condition to be bfd_error_on_input.
+       @var{input} is the input bfd where the error occurred, and
+       @var{error_tag} the bfd_error_type error.
+*/
+
+void
+bfd_set_input_error (bfd *input, bfd_error_type error_tag)
+{
+  /* This is an error that occurred during bfd_close when writing an
+     archive, but on one of the input files.  */
+  bfd_error = bfd_error_on_input;
+  input_bfd = input;
+  input_error = error_tag;
+  if (input_error >= bfd_error_on_input)
+    abort ();
 }
 
 /*
index 7b1320de721b9812f162402159d231d4b5a757ed..27f07e13a9ba7e87066d05e4a7dcd2342f8cb060 100644 (file)
@@ -2305,7 +2305,7 @@ _bfd_vms_lib_write_archive_contents (bfd *arch)
   return TRUE;
 
  input_err:
-  bfd_set_error (bfd_error_on_input, current, bfd_get_error ());
+  bfd_set_input_error (current, bfd_get_error ());
   return FALSE;
 }