Blame SOURCES/elfutils-0.176-xlate-note.patch

c27982
commit 28b5f578ae772bb2404c3847e4e22ad1c407af54
c27982
Author: Mark Wielaard <mark@klomp.org>
c27982
Date:   Tue Apr 30 13:00:17 2019 +0200
c27982
c27982
    libelf: If xlate can only convert the ELF note header, just do that.
c27982
    
c27982
    When we started parsing new style ELF_T_NHDR8 notes we added extra
c27982
    checks on alignment and padding. When those failed we would stop
c27982
    converting and just return the rest of the ELF Note unconverted.
c27982
    In the case were we just had enough data for just the ELF Note header
c27982
    and the destionation and source weren't the same we would then
c27982
    accidentially throw away the Note header conversion we just did.
c27982
    
c27982
    Fix that by indicating we did correctly convert just the header.
c27982
    
c27982
    Adds testcase that compares parsing ELF notes with gelf_getnote
c27982
    and parsing the raw data by hand using elf32_xlatetom using just
c27982
    the Note header and ignoring the (raw) note data.
c27982
    
c27982
    Signed-off-by: Mark Wielaard <mark@klomp.org>
c27982
c27982
diff --git a/libelf/note_xlate.h b/libelf/note_xlate.h
c27982
index bc9950f..7e2784b 100644
c27982
--- a/libelf/note_xlate.h
c27982
+++ b/libelf/note_xlate.h
c27982
@@ -47,13 +47,25 @@ elf_cvt_note (void *dest, const void *src, size_t len, int encode,
c27982
       note_len += n->n_namesz;
c27982
       note_len = nhdr8 ? NOTE_ALIGN8 (note_len) : NOTE_ALIGN4 (note_len);
c27982
       if (note_len > len || note_len < sizeof *n)
c27982
-	break;
c27982
+	{
c27982
+	  /* Header was translated, nothing else.  */
c27982
+	  len -= sizeof *n;
c27982
+	  src += sizeof *n;
c27982
+	  dest += sizeof *n;
c27982
+	  break;
c27982
+	}
c27982
 
c27982
       /* data as a whole needs to be aligned.  */
c27982
       note_len += n->n_descsz;
c27982
       note_len = nhdr8 ? NOTE_ALIGN8 (note_len) : NOTE_ALIGN4 (note_len);
c27982
       if (note_len > len || note_len < sizeof *n)
c27982
-	break;
c27982
+	{
c27982
+	  /* Header was translated, nothing else.  */
c27982
+	  len -= sizeof *n;
c27982
+	  src += sizeof *n;
c27982
+	  dest += sizeof *n;
c27982
+	  break;
c27982
+	}
c27982
 
c27982
       /* Copy or skip the note data.  */
c27982
       size_t note_data_len = note_len - sizeof *n;
c27982
diff --git a/tests/Makefile.am b/tests/Makefile.am
c27982
index 1b0c7d3..498c1db 100644
c27982
--- a/tests/Makefile.am
c27982
+++ b/tests/Makefile.am
c27982
@@ -60,7 +60,7 @@ check_PROGRAMS = arextract arsymtest newfile saridx scnnames sectiondump \
c27982
 		  fillfile dwarf_default_lower_bound dwarf-die-addr-die \
c27982
 		  get-units-invalid get-units-split attr-integrate-skel \
c27982
 		  all-dwarf-ranges unit-info next_cfi \
c27982
-		  elfcopy addsections
c27982
+		  elfcopy addsections xlate_notes
c27982
 
c27982
 asm_TESTS = asm-tst1 asm-tst2 asm-tst3 asm-tst4 asm-tst5 \
c27982
 	    asm-tst6 asm-tst7 asm-tst8 asm-tst9
c27982
@@ -159,7 +159,7 @@ TESTS = run-arextract.sh run-arsymtest.sh run-ar.sh newfile test-nlist \
c27982
 	run-next-cfi.sh run-next-cfi-self.sh \
c27982
 	run-copyadd-sections.sh run-copymany-sections.sh \
c27982
 	run-typeiter-many.sh run-strip-test-many.sh \
c27982
-	run-strip-version.sh
c27982
+	run-strip-version.sh run-xlate-note.sh
c27982
 
c27982
 if !BIARCH
c27982
 export ELFUTILS_DISABLE_BIARCH = 1
c27982
@@ -423,7 +423,8 @@ EXTRA_DIST = run-arextract.sh run-arsymtest.sh run-ar.sh \
c27982
 	     testfile-debug-rel-ppc64-g.o.bz2 \
c27982
 	     testfile-debug-rel-ppc64-z.o.bz2 \
c27982
 	     testfile-debug-rel-ppc64.o.bz2 \
c27982
-	     run-strip-version.sh testfile-version.bz2
c27982
+	     run-strip-version.sh testfile-version.bz2 \
c27982
+	     run-xlate-note.sh
c27982
 
c27982
 if USE_VALGRIND
c27982
 valgrind_cmd='valgrind -q --leak-check=full --error-exitcode=1'
c27982
@@ -593,6 +594,7 @@ unit_info_LDADD = $(libdw)
c27982
 next_cfi_LDADD = $(libelf) $(libdw)
c27982
 elfcopy_LDADD = $(libelf)
c27982
 addsections_LDADD = $(libelf)
c27982
+xlate_notes_LDADD = $(libelf)
c27982
 
c27982
 # We want to test the libelf header against the system elf.h header.
c27982
 # Don't include any -I CPPFLAGS. Except when we install our own elf.h.
c27982
diff --git a/tests/run-xlate-note.sh b/tests/run-xlate-note.sh
c27982
new file mode 100755
c27982
index 0000000..a907418
c27982
--- /dev/null
c27982
+++ b/tests/run-xlate-note.sh
c27982
@@ -0,0 +1,93 @@
c27982
+# Copyright (C) 2019 Red Hat, Inc.
c27982
+# This file is part of elfutils.
c27982
+#
c27982
+# This file is free software; you can redistribute it and/or modify
c27982
+# it under the terms of the GNU General Public License as published by
c27982
+# the Free Software Foundation; either version 3 of the License, or
c27982
+# (at your option) any later version.
c27982
+#
c27982
+# elfutils is distributed in the hope that it will be useful, but
c27982
+# WITHOUT ANY WARRANTY; without even the implied warranty of
c27982
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
c27982
+# GNU General Public License for more details.
c27982
+#
c27982
+# You should have received a copy of the GNU General Public License
c27982
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
c27982
+
c27982
+. $srcdir/test-subr.sh
c27982
+
c27982
+testfiles testfileppc32
c27982
+testrun_compare ${abs_top_builddir}/tests/xlate_notes testfileppc32 << EOF
c27982
+Notes in section 2:
c27982
+type: 1,1, namesz: 4,4, descsz: 16,16
c27982
+Notes in section 3:
c27982
+type: 3,3, namesz: 4,4, descsz: 20,20
c27982
+EOF
c27982
+
c27982
+testfiles testfileppc64
c27982
+testrun_compare ${abs_top_builddir}/tests/xlate_notes testfileppc64 << EOF
c27982
+Notes in section 2:
c27982
+type: 1,1, namesz: 4,4, descsz: 16,16
c27982
+Notes in section 3:
c27982
+type: 3,3, namesz: 4,4, descsz: 20,20
c27982
+EOF
c27982
+
c27982
+testfiles testfiles390
c27982
+testrun_compare ${abs_top_builddir}/tests/xlate_notes testfiles390 << EOF
c27982
+Notes in section 2:
c27982
+type: 1,1, namesz: 4,4, descsz: 16,16
c27982
+Notes in section 3:
c27982
+type: 3,3, namesz: 4,4, descsz: 20,20
c27982
+EOF
c27982
+
c27982
+testfiles testfiles390x
c27982
+testrun_compare ${abs_top_builddir}/tests/xlate_notes testfiles390x << EOF
c27982
+Notes in section 2:
c27982
+type: 1,1, namesz: 4,4, descsz: 16,16
c27982
+Notes in section 3:
c27982
+type: 3,3, namesz: 4,4, descsz: 20,20
c27982
+EOF
c27982
+
c27982
+testfiles testfileaarch64
c27982
+testrun_compare ${abs_top_builddir}/tests/xlate_notes testfileaarch64 << EOF
c27982
+Notes in section 2:
c27982
+type: 1,1, namesz: 4,4, descsz: 16,16
c27982
+Notes in section 3:
c27982
+type: 3,3, namesz: 4,4, descsz: 20,20
c27982
+EOF
c27982
+
c27982
+testfiles testfilearm
c27982
+testrun_compare ${abs_top_builddir}/tests/xlate_notes testfilearm << EOF
c27982
+Notes in section 2:
c27982
+type: 1,1, namesz: 4,4, descsz: 16,16
c27982
+Notes in section 3:
c27982
+type: 3,3, namesz: 4,4, descsz: 20,20
c27982
+EOF
c27982
+
c27982
+testfiles testfile_gnu_props.32be.o
c27982
+testrun_compare ${abs_top_builddir}/tests/xlate_notes testfile_gnu_props.32be.o << EOF
c27982
+Notes in section 4:
c27982
+type: 5,5, namesz: 4,4, descsz: 12,12
c27982
+type: 5,5, namesz: 4,4, descsz: 8,8
c27982
+EOF
c27982
+
c27982
+testfiles testfile_gnu_props.32le.o
c27982
+testrun_compare ${abs_top_builddir}/tests/xlate_notes testfile_gnu_props.32le.o << EOF
c27982
+Notes in section 4:
c27982
+type: 5,5, namesz: 4,4, descsz: 12,12
c27982
+type: 5,5, namesz: 4,4, descsz: 8,8
c27982
+EOF
c27982
+
c27982
+testfiles testfile_gnu_props.64be.o
c27982
+testrun_compare ${abs_top_builddir}/tests/xlate_notes testfile_gnu_props.64be.o << EOF
c27982
+Notes in section 4:
c27982
+type: 5,5, namesz: 4,4, descsz: 16,16
c27982
+type: 5,5, namesz: 4,4, descsz: 8,8
c27982
+EOF
c27982
+
c27982
+testfiles testfile_gnu_props.64le.o
c27982
+testrun_compare ${abs_top_builddir}/tests/xlate_notes testfile_gnu_props.64le.o << EOF
c27982
+Notes in section 4:
c27982
+type: 5,5, namesz: 4,4, descsz: 16,16
c27982
+type: 5,5, namesz: 4,4, descsz: 8,8
c27982
+EOF
c27982
diff --git a/tests/xlate_notes.c b/tests/xlate_notes.c
c27982
new file mode 100644
c27982
index 0000000..90a4ae2
c27982
--- /dev/null
c27982
+++ b/tests/xlate_notes.c
c27982
@@ -0,0 +1,157 @@
c27982
+/* Test program for extracting ELF Note headers and getting whole notes.
c27982
+   Copyright (C) 2019 Red Hat, Inc.
c27982
+   This file is part of elfutils.
c27982
+
c27982
+   This file is free software; you can redistribute it and/or modify
c27982
+   it under the terms of the GNU General Public License as published by
c27982
+   the Free Software Foundation; either version 3 of the License, or
c27982
+   (at your option) any later version.
c27982
+
c27982
+   elfutils is distributed in the hope that it will be useful, but
c27982
+   WITHOUT ANY WARRANTY; without even the implied warranty of
c27982
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
c27982
+   GNU General Public License for more details.
c27982
+
c27982
+   You should have received a copy of the GNU General Public License
c27982
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
c27982
+
c27982
+#ifdef HAVE_CONFIG_H
c27982
+# include <config.h>
c27982
+#endif
c27982
+
c27982
+#include <errno.h>
c27982
+#include <fcntl.h>
c27982
+#include <inttypes.h>
c27982
+#include <stdio.h>
c27982
+#include <stdlib.h>
c27982
+#include <string.h>
c27982
+#include <unistd.h>
c27982
+
c27982
+#include ELFUTILS_HEADER(elf)
c27982
+#include <gelf.h>
c27982
+
c27982
+int
c27982
+main (int argc, char *argv[])
c27982
+{
c27982
+  if (argc != 2)
c27982
+    {
c27982
+      printf ("No ELF file given as argument\n");
c27982
+      exit (1);
c27982
+    }
c27982
+
c27982
+  const char *fname = argv[1];
c27982
+
c27982
+  // Initialize libelf.
c27982
+  elf_version (EV_CURRENT);
c27982
+
c27982
+  /* Read the ELF from disk now.  */
c27982
+  int fd = open (fname, O_RDONLY);
c27982
+  if (fd == -1)
c27982
+    {
c27982
+      printf ("cannot open '%s': %s\n", fname, strerror (errno));
c27982
+      exit (1);
c27982
+    }
c27982
+
c27982
+  Elf *elf = elf_begin (fd, ELF_C_READ, NULL);
c27982
+  if (elf == NULL)
c27982
+    {
c27982
+      printf ("cannot create ELF descriptor: %s\n", elf_errmsg (-1));
c27982
+      exit (1);
c27982
+    }
c27982
+
c27982
+  GElf_Ehdr ehdr;
c27982
+  if (gelf_getehdr (elf, &ehdr) == NULL)
c27982
+    {
c27982
+      printf ("cannot get Ehdr: %s\n", elf_errmsg (-1));
c27982
+      exit (1);
c27982
+    }
c27982
+
c27982
+  /* Search for all SHT_NOTE sections.  */
c27982
+  Elf_Scn *scn = NULL;
c27982
+  while ((scn = elf_nextscn (elf, scn)) != NULL)
c27982
+    {
c27982
+      /* Get the header.  */
c27982
+      GElf_Shdr shdr;
c27982
+      if (gelf_getshdr (scn, &shdr) == NULL)
c27982
+	{
c27982
+	  printf ("couldn't get shdr: %s\n", elf_errmsg (-1));
c27982
+	  exit (1);
c27982
+	}
c27982
+
c27982
+      if (shdr.sh_type == SHT_NOTE)
c27982
+	{
c27982
+	  printf ("Notes in section %zd:\n", elf_ndxscn (scn));
c27982
+
c27982
+	  Elf_Data *raw = elf_rawdata (scn, NULL);
c27982
+	  if (raw == NULL)
c27982
+	    {
c27982
+	      printf ("couldn't get raw data: %s\n", elf_errmsg (-1));
c27982
+	      exit (1);
c27982
+	    }
c27982
+
c27982
+	  Elf_Data *data = elf_getdata (scn, NULL);
c27982
+	  if (data == NULL)
c27982
+	    {
c27982
+	      printf ("couldn't get data: %s\n", elf_errmsg (-1));
c27982
+	      exit (1);
c27982
+	    }
c27982
+
c27982
+	  size_t off = 0;
c27982
+	  size_t next;
c27982
+	  GElf_Nhdr nhdr;
c27982
+	  size_t n_off;
c27982
+	  size_t d_off;
c27982
+	  while ((next = gelf_getnote (data, off, &nhdr, &n_off, &d_off)) > 0)
c27982
+	    {
c27982
+	      /* Now just get the note header "raw" (don't
c27982
+		 copy/translate the note data). This only handles
c27982
+		 traditional GNU ELF Notes, so we still use the next
c27982
+		 from gelf_getnote (padding is different for new style
c27982
+		 ELF_T_NHDR8 notes).  */
c27982
+	      Elf32_Nhdr nh;
c27982
+	      Elf_Data src =
c27982
+                {
c27982
+                  .d_version = EV_CURRENT, .d_type = ELF_T_NHDR,
c27982
+		  .d_size = sizeof nh
c27982
+                };
c27982
+	      Elf_Data dst = src;
c27982
+	      src.d_buf = raw->d_buf + off;
c27982
+	      dst.d_buf = &nh;
c27982
+
c27982
+	      if (elf32_xlatetom (&dst, &src, ehdr.e_ident[EI_DATA]) == NULL)
c27982
+		{
c27982
+		  printf ("couldn't xlate note: %s\n", elf_errmsg (-1));
c27982
+		  exit (1);
c27982
+		}
c27982
+
c27982
+	      printf ("type: %" PRId32 ",%" PRId32
c27982
+		      ", namesz: %" PRId32 ",%" PRId32
c27982
+		      ", descsz: %" PRId32 ",%" PRId32 "\n",
c27982
+		      nhdr.n_type, nh.n_type,
c27982
+		      nhdr.n_namesz, nh.n_namesz,
c27982
+		      nhdr.n_descsz, nh.n_descsz);
c27982
+
c27982
+	      if (nhdr.n_type != nh.n_type
c27982
+		  || nhdr.n_namesz != nh.n_namesz
c27982
+		  || nhdr.n_descsz != nh.n_descsz)
c27982
+		{
c27982
+		  printf ("Nhdrs not equal!\n");
c27982
+		  exit (1);
c27982
+		}
c27982
+
c27982
+	      off = next;
c27982
+	    }
c27982
+	}
c27982
+
c27982
+    }
c27982
+
c27982
+  if (elf_end (elf) != 0)
c27982
+    {
c27982
+      printf ("failure in elf_end: %s\n", elf_errmsg (-1));
c27982
+      exit (1);
c27982
+    }
c27982
+
c27982
+  close (fd);
c27982
+
c27982
+  return 0;
c27982
+}
c27982
diff -ur elfutils-0.176.orig/tests/Makefile.in elfutils-0.176/tests/Makefile.in
c27982
--- elfutils-0.176.orig/tests/Makefile.in	2019-04-30 22:42:49.534655124 +0200
c27982
+++ elfutils-0.176/tests/Makefile.in	2019-04-30 22:46:30.046656790 +0200
c27982
@@ -131,8 +131,8 @@
c27982
 	get-units-invalid$(EXEEXT) get-units-split$(EXEEXT) \
c27982
 	attr-integrate-skel$(EXEEXT) all-dwarf-ranges$(EXEEXT) \
c27982
 	unit-info$(EXEEXT) next_cfi$(EXEEXT) elfcopy$(EXEEXT) \
c27982
-	addsections$(EXEEXT) $(am__EXEEXT_1) $(am__EXEEXT_2) \
c27982
-	$(am__EXEEXT_4)
c27982
+	addsections$(EXEEXT) xlate_notes$(EXEEXT) $(am__EXEEXT_1) \
c27982
+	$(am__EXEEXT_2) $(am__EXEEXT_4)
c27982
 @BIARCH_TRUE@am__append_5 = backtrace-child-biarch
c27982
 TESTS = run-arextract.sh run-arsymtest.sh run-ar.sh newfile$(EXEEXT) \
c27982
 	test-nlist$(EXEEXT) update1$(EXEEXT) update2$(EXEEXT) \
c27982
@@ -211,8 +211,8 @@
c27982
 	run-unit-info.sh run-reloc-bpf.sh run-next-cfi.sh \
c27982
 	run-next-cfi-self.sh run-copyadd-sections.sh \
c27982
 	run-copymany-sections.sh run-typeiter-many.sh \
c27982
-	run-strip-test-many.sh run-strip-version.sh $(am__EXEEXT_2) \
c27982
-	$(am__append_8) $(am__EXEEXT_5)
c27982
+	run-strip-test-many.sh run-strip-version.sh run-xlate-note.sh \
c27982
+	$(am__EXEEXT_2) $(am__append_8) $(am__EXEEXT_5)
c27982
 @STANDALONE_FALSE@am__append_6 = msg_tst system-elf-libelf-test
c27982
 @STANDALONE_FALSE@am__append_7 = msg_tst system-elf-libelf-test
c27982
 @LZMA_TRUE@am__append_8 = run-readelf-s.sh run-dwflsyms.sh
c27982
@@ -606,6 +606,9 @@
c27982
 vendorelf_SOURCES = vendorelf.c
c27982
 vendorelf_OBJECTS = vendorelf.$(OBJEXT)
c27982
 vendorelf_DEPENDENCIES = $(am__DEPENDENCIES_2)
c27982
+xlate_notes_SOURCES = xlate_notes.c
c27982
+xlate_notes_OBJECTS = xlate_notes.$(OBJEXT)
c27982
+xlate_notes_DEPENDENCIES = $(am__DEPENDENCIES_2)
c27982
 zstrptr_SOURCES = zstrptr.c
c27982
 zstrptr_OBJECTS = zstrptr.$(OBJEXT)
c27982
 zstrptr_DEPENDENCIES = $(am__DEPENDENCIES_2)
c27982
@@ -683,7 +686,7 @@
c27982
 	./$(DEPDIR)/update2.Po ./$(DEPDIR)/update3.Po \
c27982
 	./$(DEPDIR)/update4.Po ./$(DEPDIR)/varlocs.Po \
c27982
 	./$(DEPDIR)/vdsosyms.Po ./$(DEPDIR)/vendorelf.Po \
c27982
-	./$(DEPDIR)/zstrptr.Po
c27982
+	./$(DEPDIR)/xlate_notes.Po ./$(DEPDIR)/zstrptr.Po
c27982
 am__mv = mv -f
c27982
 AM_V_lt = $(am__v_lt_@AM_V@)
c27982
 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
c27982
@@ -726,7 +729,8 @@
c27982
 	showptable.c strptr.c system-elf-libelf-test.c \
c27982
 	test-elf_cntl_gelf_getshdr.c test-flag-nobits.c test-nlist.c \
c27982
 	typeiter.c typeiter2.c unit-info.c update1.c update2.c \
c27982
-	update3.c update4.c varlocs.c vdsosyms.c vendorelf.c zstrptr.c
c27982
+	update3.c update4.c varlocs.c vdsosyms.c vendorelf.c \
c27982
+	xlate_notes.c zstrptr.c
c27982
 DIST_SOURCES = addrcfi.c addrscopes.c addsections.c aggregate_size.c \
c27982
 	all-dwarf-ranges.c alldts.c allfcts.c allregs.c arextract.c \
c27982
 	arls.c arsymtest.c asm-tst1.c asm-tst2.c asm-tst3.c asm-tst4.c \
c27982
@@ -752,7 +756,8 @@
c27982
 	showptable.c strptr.c system-elf-libelf-test.c \
c27982
 	test-elf_cntl_gelf_getshdr.c test-flag-nobits.c test-nlist.c \
c27982
 	typeiter.c typeiter2.c unit-info.c update1.c update2.c \
c27982
-	update3.c update4.c varlocs.c vdsosyms.c vendorelf.c zstrptr.c
c27982
+	update3.c update4.c varlocs.c vdsosyms.c vendorelf.c \
c27982
+	xlate_notes.c zstrptr.c
c27982
 am__can_run_installinfo = \
c27982
   case $$AM_UPDATE_INFO_DIR in \
c27982
     n|no|NO) false;; \
c27982
@@ -1405,7 +1410,8 @@
c27982
 	     testfile-debug-rel-ppc64-g.o.bz2 \
c27982
 	     testfile-debug-rel-ppc64-z.o.bz2 \
c27982
 	     testfile-debug-rel-ppc64.o.bz2 \
c27982
-	     run-strip-version.sh testfile-version.bz2
c27982
+	     run-strip-version.sh testfile-version.bz2 \
c27982
+	     run-xlate-note.sh
c27982
 
c27982
 @USE_VALGRIND_TRUE@valgrind_cmd = 'valgrind -q --leak-check=full --error-exitcode=1'
c27982
 installed_TESTS_ENVIRONMENT = libdir=$(DESTDIR)$(libdir); \
c27982
@@ -1559,6 +1565,7 @@
c27982
 next_cfi_LDADD = $(libelf) $(libdw)
c27982
 elfcopy_LDADD = $(libelf)
c27982
 addsections_LDADD = $(libelf)
c27982
+xlate_notes_LDADD = $(libelf)
c27982
 
c27982
 # We want to test the libelf header against the system elf.h header.
c27982
 # Don't include any -I CPPFLAGS. Except when we install our own elf.h.
c27982
@@ -2011,6 +2018,10 @@
c27982
 	@rm -f vendorelf$(EXEEXT)
c27982
 	$(AM_V_CCLD)$(LINK) $(vendorelf_OBJECTS) $(vendorelf_LDADD) $(LIBS)
c27982
 
c27982
+xlate_notes$(EXEEXT): $(xlate_notes_OBJECTS) $(xlate_notes_DEPENDENCIES) $(EXTRA_xlate_notes_DEPENDENCIES) 
c27982
+	@rm -f xlate_notes$(EXEEXT)
c27982
+	$(AM_V_CCLD)$(LINK) $(xlate_notes_OBJECTS) $(xlate_notes_LDADD) $(LIBS)
c27982
+
c27982
 zstrptr$(EXEEXT): $(zstrptr_OBJECTS) $(zstrptr_DEPENDENCIES) $(EXTRA_zstrptr_DEPENDENCIES) 
c27982
 	@rm -f zstrptr$(EXEEXT)
c27982
 	$(AM_V_CCLD)$(LINK) $(zstrptr_OBJECTS) $(zstrptr_LDADD) $(LIBS)
c27982
@@ -2124,6 +2135,7 @@
c27982
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/varlocs.Po@am__quote@ # am--include-marker
c27982
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vdsosyms.Po@am__quote@ # am--include-marker
c27982
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vendorelf.Po@am__quote@ # am--include-marker
c27982
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xlate_notes.Po@am__quote@ # am--include-marker
c27982
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zstrptr.Po@am__quote@ # am--include-marker
c27982
 
c27982
 $(am__depfiles_remade):
c27982
@@ -3732,6 +3744,13 @@
c27982
 	--log-file $$b.log --trs-file $$b.trs \
c27982
 	$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
c27982
 	"$$tst" $(AM_TESTS_FD_REDIRECT)
c27982
+run-xlate-note.sh.log: run-xlate-note.sh
c27982
+	@p='run-xlate-note.sh'; \
c27982
+	b='run-xlate-note.sh'; \
c27982
+	$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
c27982
+	--log-file $$b.log --trs-file $$b.trs \
c27982
+	$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
c27982
+	"$$tst" $(AM_TESTS_FD_REDIRECT)
c27982
 msg_tst.log: msg_tst$(EXEEXT)
c27982
 	@p='msg_tst$(EXEEXT)'; \
c27982
 	b='msg_tst'; \
c27982
@@ -4027,6 +4046,7 @@
c27982
 	-rm -f ./$(DEPDIR)/varlocs.Po
c27982
 	-rm -f ./$(DEPDIR)/vdsosyms.Po
c27982
 	-rm -f ./$(DEPDIR)/vendorelf.Po
c27982
+	-rm -f ./$(DEPDIR)/xlate_notes.Po
c27982
 	-rm -f ./$(DEPDIR)/zstrptr.Po
c27982
 	-rm -f Makefile
c27982
 distclean-am: clean-am distclean-compile distclean-generic \
c27982
@@ -4176,6 +4196,7 @@
c27982
 	-rm -f ./$(DEPDIR)/varlocs.Po
c27982
 	-rm -f ./$(DEPDIR)/vdsosyms.Po
c27982
 	-rm -f ./$(DEPDIR)/vendorelf.Po
c27982
+	-rm -f ./$(DEPDIR)/xlate_notes.Po
c27982
 	-rm -f ./$(DEPDIR)/zstrptr.Po
c27982
 	-rm -f Makefile
c27982
 maintainer-clean-am: distclean-am maintainer-clean-generic