All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] libelf: drop pointless uses of __FUNCTION__
@ 2016-09-07  7:59 Jan Beulich
  2016-09-07 13:52 ` Ian Jackson
  2016-09-07 14:03 ` Jan Beulich
  0 siblings, 2 replies; 3+ messages in thread
From: Jan Beulich @ 2016-09-07  7:59 UTC (permalink / raw)
  To: xen-devel
  Cc: Stefano Stabellini, Wei Liu, George Dunlap, Andrew Cooper,
	Ian Jackson, Tim Deegan

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

Non-debugging message text should be (and is in the cases here, albeit
often only with the addition of an ELF: prefix) distinguishable without
also logging function names.

In the messages touched at once use %#x (or variants thereof) in favor
of 0x%x.
---
v2: Add a missing ELF: prefix. Further disambiguate note related
    messages. Also take care of one instance of __func__.

--- a/xen/common/libelf/libelf-dominfo.c
+++ b/xen/common/libelf/libelf-dominfo.c
@@ -131,8 +131,7 @@ elf_errorstatus elf_xen_parse_note(struc
     if ( (type >= sizeof(note_desc) / sizeof(note_desc[0])) ||
          (note_desc[type].name == NULL) )
     {
-        elf_msg(elf, "%s: unknown xen elf note (0x%x)\n",
-                __FUNCTION__, type);
+        elf_msg(elf, "ELF: note: unknown (%#x)\n", type);
         return 0;
     }
 
@@ -142,16 +141,14 @@ elf_errorstatus elf_xen_parse_note(struc
         if (str == NULL)
             /* elf_strval will mark elf broken if it fails so no need to log */
             return 0;
-        elf_msg(elf, "%s: %s = \"%s\"\n", __FUNCTION__,
-                note_desc[type].name, str);
+        elf_msg(elf, "ELF: note: %s = \"%s\"\n", note_desc[type].name, str);
         parms->elf_notes[type].type = XEN_ENT_STR;
         parms->elf_notes[type].data.str = str;
     }
     else
     {
         val = elf_note_numeric(elf, note);
-        elf_msg(elf, "%s: %s = 0x%" PRIx64 "\n", __FUNCTION__,
-                note_desc[type].name, val);
+        elf_msg(elf, "ELF: note: %s = %#" PRIx64 "\n", note_desc[type].name, val);
         parms->elf_notes[type].type = XEN_ENT_LONG;
         parms->elf_notes[type].data.num = val;
     }
@@ -310,7 +307,7 @@ elf_errorstatus elf_xen_parse_guest_info
             }
             name[len] = STAR(h);
         }
-        elf_msg(elf, "%s: %s=\"%s\"\n", __FUNCTION__, name, value);
+        elf_msg(elf, "ELF: %s=\"%s\"\n", name, value);
 
         /* strings */
         if ( !strcmp(name, "LOADER") )
@@ -363,9 +360,8 @@ static elf_errorstatus elf_xen_note_chec
         unsigned machine = elf_uval(elf, elf->ehdr, e_machine);
         if ( (machine == EM_386) || (machine == EM_X86_64) )
         {
-            elf_err(elf, "%s: ERROR: Not a Xen-ELF image: "
-                    "No ELF notes or '__xen_guest' section found.\n",
-                    __FUNCTION__);
+            elf_err(elf, "ERROR: Not a Xen-ELF image: "
+                    "No ELF notes or '__xen_guest' section found\n");
             return -1;
         }
         return 0;
@@ -373,7 +369,7 @@ static elf_errorstatus elf_xen_note_chec
 
     if ( elf_uval(elf, elf->ehdr, e_machine) == EM_ARM )
     {
-         elf_msg(elf, "%s: Not bothering with notes on ARM\n", __FUNCTION__);
+         elf_msg(elf, "ELF: Not bothering with notes on ARM\n");
          return 0;
     }
 
@@ -383,9 +379,10 @@ static elf_errorstatus elf_xen_note_chec
          ((strlen(parms->guest_os) == 0) ||
           strncmp(parms->guest_os, "linux", 5)) )
     {
-        elf_err(elf, "%s: ERROR: Will only load images built for the generic "
-                "loader or Linux images (Not '%.*s' and '%.*s')\n",
-                __FUNCTION__, (int)sizeof(parms->loader), parms->loader,
+        elf_err(elf,
+                "ERROR: Will only load images built for the generic loader or Linux images"
+                " (Not '%.*s' and '%.*s')\n",
+                (int)sizeof(parms->loader), parms->loader,
                 (int)sizeof(parms->guest_os), parms->guest_os);
         return -1;
     }
@@ -393,8 +390,8 @@ static elf_errorstatus elf_xen_note_chec
     if ( (strlen(parms->xen_ver) == 0) ||
          strncmp(parms->xen_ver, "xen-3.0", 7) )
     {
-        elf_err(elf, "%s: ERROR: Xen will only load images built "
-                "for Xen v3.0 (Not '%.*s')\n", __FUNCTION__,
+        elf_err(elf, "ERROR: Xen will only load images built for Xen v3.0 "
+                "(Not '%.*s')\n",
                 (int)sizeof(parms->xen_ver), parms->xen_ver);
         return -1;
     }
@@ -409,8 +406,7 @@ static elf_errorstatus elf_xen_addr_calc
     if ( (parms->elf_paddr_offset != UNSET_ADDR) &&
          (parms->virt_base == UNSET_ADDR) )
     {
-        elf_err(elf, "%s: ERROR: ELF_PADDR_OFFSET set, VIRT_BASE unset\n",
-                __FUNCTION__);
+        elf_err(elf, "ERROR: ELF_PADDR_OFFSET set, VIRT_BASE unset\n");
         return -1;
     }
 
@@ -418,8 +414,8 @@ static elf_errorstatus elf_xen_addr_calc
     if ( parms->virt_base == UNSET_ADDR )
     {
         parms->virt_base = 0;
-        elf_msg(elf, "%s: VIRT_BASE unset, using 0x%" PRIx64 "\n",
-                __FUNCTION__, parms->virt_base);
+        elf_msg(elf, "ELF: VIRT_BASE unset, using %#" PRIx64 "\n",
+                parms->virt_base);
     }
 
     /*
@@ -437,8 +433,8 @@ static elf_errorstatus elf_xen_addr_calc
             parms->elf_paddr_offset = 0;
         else
             parms->elf_paddr_offset = parms->virt_base;
-        elf_msg(elf, "%s: ELF_PADDR_OFFSET unset, using 0x%" PRIx64 "\n",
-                __FUNCTION__, parms->elf_paddr_offset);
+        elf_msg(elf, "ELF_PADDR_OFFSET unset, using %#" PRIx64 "\n",
+                parms->elf_paddr_offset);
     }
 
     virt_offset = parms->virt_base - parms->elf_paddr_offset;
@@ -455,7 +451,7 @@ static elf_errorstatus elf_xen_addr_calc
             parms->virt_kend = elf->bsd_symtab_pend + virt_offset;
     }
 
-    elf_msg(elf, "%s: addresses:\n", __FUNCTION__);
+    elf_msg(elf, "ELF: addresses:\n");
     elf_msg(elf, "    virt_base        = 0x%" PRIx64 "\n", parms->virt_base);
     elf_msg(elf, "    elf_paddr_offset = 0x%" PRIx64 "\n", parms->elf_paddr_offset);
     elf_msg(elf, "    virt_offset      = 0x%" PRIx64 "\n", virt_offset);
@@ -469,8 +465,7 @@ static elf_errorstatus elf_xen_addr_calc
          (parms->virt_entry > parms->virt_kend) ||
          (parms->virt_base > parms->virt_kstart) )
     {
-        elf_err(elf, "%s: ERROR: ELF start or entries are out of bounds.\n",
-                __FUNCTION__);
+        elf_err(elf, "ERROR: ELF start or entries are out of bounds\n");
         return -1;
     }
 
@@ -478,8 +473,7 @@ static elf_errorstatus elf_xen_addr_calc
          (parms->p2m_base >= parms->virt_kstart) &&
          (parms->p2m_base < parms->virt_kend) )
     {
-        elf_err(elf, "%s: ERROR: P->M table base is out of bounds.\n",
-                __FUNCTION__);
+        elf_err(elf, "ERROR: P->M table base is out of bounds\n");
         return -1;
     }
 
@@ -561,7 +555,7 @@ elf_errorstatus elf_xen_parse(struct elf
                 return -1;
 
             if ( xen_elfnotes == 0 && more_notes > 0 )
-                elf_msg(elf, "%s: using notes from SHT_NOTE section\n", __FUNCTION__);
+                elf_msg(elf, "ELF: using notes from SHT_NOTE section\n");
 
             xen_elfnotes += more_notes;
         }
@@ -579,7 +573,7 @@ elf_errorstatus elf_xen_parse(struct elf
             parms->guest_info = elf_section_start(elf, shdr);
             parms->elf_note_start = ELF_INVALID_PTRVAL;
             parms->elf_note_end   = ELF_INVALID_PTRVAL;
-            elf_msg(elf, "%s: __xen_guest: \"%s\"\n", __FUNCTION__,
+            elf_msg(elf, "ELF: __xen_guest: \"%s\"\n",
                     elf_strfmt(elf, parms->guest_info));
             elf_xen_parse_guest_info(elf, parms);
         }
--- a/xen/common/libelf/libelf-loader.c
+++ b/xen/common/libelf/libelf-loader.c
@@ -33,7 +33,7 @@ elf_errorstatus elf_init(struct elf_bina
 
     if ( !elf_is_elfbinary(image_input, size) )
     {
-        elf_err(elf, "%s: not an ELF binary\n", __FUNCTION__);
+        elf_err(elf, "ELF: not an ELF binary\n");
         return -1;
     }
 
@@ -51,8 +51,8 @@ elf_errorstatus elf_init(struct elf_bina
         elf_uval(elf, elf->ehdr, e_phentsize) * elf_phdr_count(elf);
     if ( offset > elf->size )
     {
-        elf_err(elf, "%s: phdr overflow (off %" PRIx64 " > size %lx)\n",
-                __FUNCTION__, offset, (unsigned long)elf->size);
+        elf_err(elf, "ELF: phdr overflow (off %" PRIx64 " > size %lx)\n",
+                offset, (unsigned long)elf->size);
         return -1;
     }
 
@@ -61,8 +61,8 @@ elf_errorstatus elf_init(struct elf_bina
         elf_uval(elf, elf->ehdr, e_shentsize) * elf_shdr_count(elf);
     if ( offset > elf->size )
     {
-        elf_err(elf, "%s: shdr overflow (off %" PRIx64 " > size %lx)\n",
-                __FUNCTION__, offset, (unsigned long)elf->size);
+        elf_err(elf, "ELF: shdr overflow (off %" PRIx64 " > size %lx)\n",
+                offset, (unsigned long)elf->size);
         return -1;
     }
 
@@ -430,8 +430,8 @@ void elf_parse_binary(struct elf_binary
             continue;
         paddr = elf_uval(elf, phdr, p_paddr);
         memsz = elf_uval(elf, phdr, p_memsz);
-        elf_msg(elf, "%s: phdr: paddr=0x%" PRIx64
-                " memsz=0x%" PRIx64 "\n", __FUNCTION__, paddr, memsz);
+        elf_msg(elf, "ELF: phdr: paddr=%#" PRIx64 " memsz=%#" PRIx64 "\n",
+                paddr, memsz);
         if ( low > paddr )
             low = paddr;
         if ( high < paddr + memsz )
@@ -439,8 +439,8 @@ void elf_parse_binary(struct elf_binary
     }
     elf->pstart = low;
     elf->pend = high;
-    elf_msg(elf, "%s: memory: 0x%" PRIx64 " -> 0x%" PRIx64 "\n",
-            __FUNCTION__, elf->pstart, elf->pend);
+    elf_msg(elf, "ELF: memory: %#" PRIx64 " -> %#" PRIx64 "\n",
+            elf->pstart, elf->pend);
 }
 
 elf_errorstatus elf_load_binary(struct elf_binary *elf)
@@ -483,8 +483,9 @@ elf_errorstatus elf_load_binary(struct e
         }
         remain_allow_copy -= memsz;
 
-        elf_msg(elf, "%s: phdr %" PRIu64 " at 0x%"ELF_PRPTRVAL" -> 0x%"ELF_PRPTRVAL"\n",
-                __func__, i, dest, (elf_ptrval)(dest + filesz));
+        elf_msg(elf,
+                "ELF: phdr %" PRIu64 " at %#"ELF_PRPTRVAL" -> %#"ELF_PRPTRVAL"\n",
+                i, dest, (elf_ptrval)(dest + filesz));
         if ( elf_load_image(elf, dest, ELF_IMAGE_BASE(elf) + offset, filesz, memsz) != 0 )
             return -1;
     }


[-- Attachment #2: libelf-drop-__FUNCTION__.patch --]
[-- Type: text/plain, Size: 10346 bytes --]

libelf: drop pointless uses of __FUNCTION__

Non-debugging message text should be (and is in the cases here, albeit
often only with the addition of an ELF: prefix) distinguishable without
also logging function names.

In the messages touched at once use %#x (or variants thereof) in favor
of 0x%x.
---
v2: Add a missing ELF: prefix. Further disambiguate note related
    messages. Also take care of one instance of __func__.

--- a/xen/common/libelf/libelf-dominfo.c
+++ b/xen/common/libelf/libelf-dominfo.c
@@ -131,8 +131,7 @@ elf_errorstatus elf_xen_parse_note(struc
     if ( (type >= sizeof(note_desc) / sizeof(note_desc[0])) ||
          (note_desc[type].name == NULL) )
     {
-        elf_msg(elf, "%s: unknown xen elf note (0x%x)\n",
-                __FUNCTION__, type);
+        elf_msg(elf, "ELF: note: unknown (%#x)\n", type);
         return 0;
     }
 
@@ -142,16 +141,14 @@ elf_errorstatus elf_xen_parse_note(struc
         if (str == NULL)
             /* elf_strval will mark elf broken if it fails so no need to log */
             return 0;
-        elf_msg(elf, "%s: %s = \"%s\"\n", __FUNCTION__,
-                note_desc[type].name, str);
+        elf_msg(elf, "ELF: note: %s = \"%s\"\n", note_desc[type].name, str);
         parms->elf_notes[type].type = XEN_ENT_STR;
         parms->elf_notes[type].data.str = str;
     }
     else
     {
         val = elf_note_numeric(elf, note);
-        elf_msg(elf, "%s: %s = 0x%" PRIx64 "\n", __FUNCTION__,
-                note_desc[type].name, val);
+        elf_msg(elf, "ELF: note: %s = %#" PRIx64 "\n", note_desc[type].name, val);
         parms->elf_notes[type].type = XEN_ENT_LONG;
         parms->elf_notes[type].data.num = val;
     }
@@ -310,7 +307,7 @@ elf_errorstatus elf_xen_parse_guest_info
             }
             name[len] = STAR(h);
         }
-        elf_msg(elf, "%s: %s=\"%s\"\n", __FUNCTION__, name, value);
+        elf_msg(elf, "ELF: %s=\"%s\"\n", name, value);
 
         /* strings */
         if ( !strcmp(name, "LOADER") )
@@ -363,9 +360,8 @@ static elf_errorstatus elf_xen_note_chec
         unsigned machine = elf_uval(elf, elf->ehdr, e_machine);
         if ( (machine == EM_386) || (machine == EM_X86_64) )
         {
-            elf_err(elf, "%s: ERROR: Not a Xen-ELF image: "
-                    "No ELF notes or '__xen_guest' section found.\n",
-                    __FUNCTION__);
+            elf_err(elf, "ERROR: Not a Xen-ELF image: "
+                    "No ELF notes or '__xen_guest' section found\n");
             return -1;
         }
         return 0;
@@ -373,7 +369,7 @@ static elf_errorstatus elf_xen_note_chec
 
     if ( elf_uval(elf, elf->ehdr, e_machine) == EM_ARM )
     {
-         elf_msg(elf, "%s: Not bothering with notes on ARM\n", __FUNCTION__);
+         elf_msg(elf, "ELF: Not bothering with notes on ARM\n");
          return 0;
     }
 
@@ -383,9 +379,10 @@ static elf_errorstatus elf_xen_note_chec
          ((strlen(parms->guest_os) == 0) ||
           strncmp(parms->guest_os, "linux", 5)) )
     {
-        elf_err(elf, "%s: ERROR: Will only load images built for the generic "
-                "loader or Linux images (Not '%.*s' and '%.*s')\n",
-                __FUNCTION__, (int)sizeof(parms->loader), parms->loader,
+        elf_err(elf,
+                "ERROR: Will only load images built for the generic loader or Linux images"
+                " (Not '%.*s' and '%.*s')\n",
+                (int)sizeof(parms->loader), parms->loader,
                 (int)sizeof(parms->guest_os), parms->guest_os);
         return -1;
     }
@@ -393,8 +390,8 @@ static elf_errorstatus elf_xen_note_chec
     if ( (strlen(parms->xen_ver) == 0) ||
          strncmp(parms->xen_ver, "xen-3.0", 7) )
     {
-        elf_err(elf, "%s: ERROR: Xen will only load images built "
-                "for Xen v3.0 (Not '%.*s')\n", __FUNCTION__,
+        elf_err(elf, "ERROR: Xen will only load images built for Xen v3.0 "
+                "(Not '%.*s')\n",
                 (int)sizeof(parms->xen_ver), parms->xen_ver);
         return -1;
     }
@@ -409,8 +406,7 @@ static elf_errorstatus elf_xen_addr_calc
     if ( (parms->elf_paddr_offset != UNSET_ADDR) &&
          (parms->virt_base == UNSET_ADDR) )
     {
-        elf_err(elf, "%s: ERROR: ELF_PADDR_OFFSET set, VIRT_BASE unset\n",
-                __FUNCTION__);
+        elf_err(elf, "ERROR: ELF_PADDR_OFFSET set, VIRT_BASE unset\n");
         return -1;
     }
 
@@ -418,8 +414,8 @@ static elf_errorstatus elf_xen_addr_calc
     if ( parms->virt_base == UNSET_ADDR )
     {
         parms->virt_base = 0;
-        elf_msg(elf, "%s: VIRT_BASE unset, using 0x%" PRIx64 "\n",
-                __FUNCTION__, parms->virt_base);
+        elf_msg(elf, "ELF: VIRT_BASE unset, using %#" PRIx64 "\n",
+                parms->virt_base);
     }
 
     /*
@@ -437,8 +433,8 @@ static elf_errorstatus elf_xen_addr_calc
             parms->elf_paddr_offset = 0;
         else
             parms->elf_paddr_offset = parms->virt_base;
-        elf_msg(elf, "%s: ELF_PADDR_OFFSET unset, using 0x%" PRIx64 "\n",
-                __FUNCTION__, parms->elf_paddr_offset);
+        elf_msg(elf, "ELF_PADDR_OFFSET unset, using %#" PRIx64 "\n",
+                parms->elf_paddr_offset);
     }
 
     virt_offset = parms->virt_base - parms->elf_paddr_offset;
@@ -455,7 +451,7 @@ static elf_errorstatus elf_xen_addr_calc
             parms->virt_kend = elf->bsd_symtab_pend + virt_offset;
     }
 
-    elf_msg(elf, "%s: addresses:\n", __FUNCTION__);
+    elf_msg(elf, "ELF: addresses:\n");
     elf_msg(elf, "    virt_base        = 0x%" PRIx64 "\n", parms->virt_base);
     elf_msg(elf, "    elf_paddr_offset = 0x%" PRIx64 "\n", parms->elf_paddr_offset);
     elf_msg(elf, "    virt_offset      = 0x%" PRIx64 "\n", virt_offset);
@@ -469,8 +465,7 @@ static elf_errorstatus elf_xen_addr_calc
          (parms->virt_entry > parms->virt_kend) ||
          (parms->virt_base > parms->virt_kstart) )
     {
-        elf_err(elf, "%s: ERROR: ELF start or entries are out of bounds.\n",
-                __FUNCTION__);
+        elf_err(elf, "ERROR: ELF start or entries are out of bounds\n");
         return -1;
     }
 
@@ -478,8 +473,7 @@ static elf_errorstatus elf_xen_addr_calc
          (parms->p2m_base >= parms->virt_kstart) &&
          (parms->p2m_base < parms->virt_kend) )
     {
-        elf_err(elf, "%s: ERROR: P->M table base is out of bounds.\n",
-                __FUNCTION__);
+        elf_err(elf, "ERROR: P->M table base is out of bounds\n");
         return -1;
     }
 
@@ -561,7 +555,7 @@ elf_errorstatus elf_xen_parse(struct elf
                 return -1;
 
             if ( xen_elfnotes == 0 && more_notes > 0 )
-                elf_msg(elf, "%s: using notes from SHT_NOTE section\n", __FUNCTION__);
+                elf_msg(elf, "ELF: using notes from SHT_NOTE section\n");
 
             xen_elfnotes += more_notes;
         }
@@ -579,7 +573,7 @@ elf_errorstatus elf_xen_parse(struct elf
             parms->guest_info = elf_section_start(elf, shdr);
             parms->elf_note_start = ELF_INVALID_PTRVAL;
             parms->elf_note_end   = ELF_INVALID_PTRVAL;
-            elf_msg(elf, "%s: __xen_guest: \"%s\"\n", __FUNCTION__,
+            elf_msg(elf, "ELF: __xen_guest: \"%s\"\n",
                     elf_strfmt(elf, parms->guest_info));
             elf_xen_parse_guest_info(elf, parms);
         }
--- a/xen/common/libelf/libelf-loader.c
+++ b/xen/common/libelf/libelf-loader.c
@@ -33,7 +33,7 @@ elf_errorstatus elf_init(struct elf_bina
 
     if ( !elf_is_elfbinary(image_input, size) )
     {
-        elf_err(elf, "%s: not an ELF binary\n", __FUNCTION__);
+        elf_err(elf, "ELF: not an ELF binary\n");
         return -1;
     }
 
@@ -51,8 +51,8 @@ elf_errorstatus elf_init(struct elf_bina
         elf_uval(elf, elf->ehdr, e_phentsize) * elf_phdr_count(elf);
     if ( offset > elf->size )
     {
-        elf_err(elf, "%s: phdr overflow (off %" PRIx64 " > size %lx)\n",
-                __FUNCTION__, offset, (unsigned long)elf->size);
+        elf_err(elf, "ELF: phdr overflow (off %" PRIx64 " > size %lx)\n",
+                offset, (unsigned long)elf->size);
         return -1;
     }
 
@@ -61,8 +61,8 @@ elf_errorstatus elf_init(struct elf_bina
         elf_uval(elf, elf->ehdr, e_shentsize) * elf_shdr_count(elf);
     if ( offset > elf->size )
     {
-        elf_err(elf, "%s: shdr overflow (off %" PRIx64 " > size %lx)\n",
-                __FUNCTION__, offset, (unsigned long)elf->size);
+        elf_err(elf, "ELF: shdr overflow (off %" PRIx64 " > size %lx)\n",
+                offset, (unsigned long)elf->size);
         return -1;
     }
 
@@ -430,8 +430,8 @@ void elf_parse_binary(struct elf_binary
             continue;
         paddr = elf_uval(elf, phdr, p_paddr);
         memsz = elf_uval(elf, phdr, p_memsz);
-        elf_msg(elf, "%s: phdr: paddr=0x%" PRIx64
-                " memsz=0x%" PRIx64 "\n", __FUNCTION__, paddr, memsz);
+        elf_msg(elf, "ELF: phdr: paddr=%#" PRIx64 " memsz=%#" PRIx64 "\n",
+                paddr, memsz);
         if ( low > paddr )
             low = paddr;
         if ( high < paddr + memsz )
@@ -439,8 +439,8 @@ void elf_parse_binary(struct elf_binary
     }
     elf->pstart = low;
     elf->pend = high;
-    elf_msg(elf, "%s: memory: 0x%" PRIx64 " -> 0x%" PRIx64 "\n",
-            __FUNCTION__, elf->pstart, elf->pend);
+    elf_msg(elf, "ELF: memory: %#" PRIx64 " -> %#" PRIx64 "\n",
+            elf->pstart, elf->pend);
 }
 
 elf_errorstatus elf_load_binary(struct elf_binary *elf)
@@ -483,8 +483,9 @@ elf_errorstatus elf_load_binary(struct e
         }
         remain_allow_copy -= memsz;
 
-        elf_msg(elf, "%s: phdr %" PRIu64 " at 0x%"ELF_PRPTRVAL" -> 0x%"ELF_PRPTRVAL"\n",
-                __func__, i, dest, (elf_ptrval)(dest + filesz));
+        elf_msg(elf,
+                "ELF: phdr %" PRIu64 " at %#"ELF_PRPTRVAL" -> %#"ELF_PRPTRVAL"\n",
+                i, dest, (elf_ptrval)(dest + filesz));
         if ( elf_load_image(elf, dest, ELF_IMAGE_BASE(elf) + offset, filesz, memsz) != 0 )
             return -1;
     }

[-- Attachment #3: Type: text/plain, Size: 127 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

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

* Re: [PATCH v2] libelf: drop pointless uses of __FUNCTION__
  2016-09-07  7:59 [PATCH v2] libelf: drop pointless uses of __FUNCTION__ Jan Beulich
@ 2016-09-07 13:52 ` Ian Jackson
  2016-09-07 14:03 ` Jan Beulich
  1 sibling, 0 replies; 3+ messages in thread
From: Ian Jackson @ 2016-09-07 13:52 UTC (permalink / raw)
  To: Jan Beulich
  Cc: Stefano Stabellini, Wei Liu, George Dunlap, Andrew Cooper,
	Tim Deegan, xen-devel

Jan Beulich writes ("[PATCH v2] libelf: drop pointless uses of __FUNCTION__"):
> Non-debugging message text should be (and is in the cases here, albeit
> often only with the addition of an ELF: prefix) distinguishable without
> also logging function names.
> 
> In the messages touched at once use %#x (or variants thereof) in favor
> of 0x%x.
> ---
> v2: Add a missing ELF: prefix. Further disambiguate note related
>     messages. Also take care of one instance of __func__.

Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>

Thanks,
Ian.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

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

* Re: [PATCH v2] libelf: drop pointless uses of __FUNCTION__
  2016-09-07  7:59 [PATCH v2] libelf: drop pointless uses of __FUNCTION__ Jan Beulich
  2016-09-07 13:52 ` Ian Jackson
@ 2016-09-07 14:03 ` Jan Beulich
  1 sibling, 0 replies; 3+ messages in thread
From: Jan Beulich @ 2016-09-07 14:03 UTC (permalink / raw)
  To: xen-devel
  Cc: Stefano Stabellini, Wei Liu, George Dunlap, Andrew Cooper,
	Ian Jackson, Tim Deegan

>>> On 07.09.16 at 09:59, <JBeulich@suse.com> wrote:
> Non-debugging message text should be (and is in the cases here, albeit
> often only with the addition of an ELF: prefix) distinguishable without
> also logging function names.
> 
> In the messages touched at once use %#x (or variants thereof) in favor
> of 0x%x.

(Obviously)
Signed-off-by: Jan Beulich <jbeulich@suse.com>

> ---
> v2: Add a missing ELF: prefix. Further disambiguate note related
>     messages. Also take care of one instance of __func__.
> 
> --- a/xen/common/libelf/libelf-dominfo.c
> +++ b/xen/common/libelf/libelf-dominfo.c
> @@ -131,8 +131,7 @@ elf_errorstatus elf_xen_parse_note(struc
>      if ( (type >= sizeof(note_desc) / sizeof(note_desc[0])) ||
>           (note_desc[type].name == NULL) )
>      {
> -        elf_msg(elf, "%s: unknown xen elf note (0x%x)\n",
> -                __FUNCTION__, type);
> +        elf_msg(elf, "ELF: note: unknown (%#x)\n", type);
>          return 0;
>      }
>  
> @@ -142,16 +141,14 @@ elf_errorstatus elf_xen_parse_note(struc
>          if (str == NULL)
>              /* elf_strval will mark elf broken if it fails so no need to 
> log */
>              return 0;
> -        elf_msg(elf, "%s: %s = \"%s\"\n", __FUNCTION__,
> -                note_desc[type].name, str);
> +        elf_msg(elf, "ELF: note: %s = \"%s\"\n", note_desc[type].name, 
> str);
>          parms->elf_notes[type].type = XEN_ENT_STR;
>          parms->elf_notes[type].data.str = str;
>      }
>      else
>      {
>          val = elf_note_numeric(elf, note);
> -        elf_msg(elf, "%s: %s = 0x%" PRIx64 "\n", __FUNCTION__,
> -                note_desc[type].name, val);
> +        elf_msg(elf, "ELF: note: %s = %#" PRIx64 "\n", 
> note_desc[type].name, val);
>          parms->elf_notes[type].type = XEN_ENT_LONG;
>          parms->elf_notes[type].data.num = val;
>      }
> @@ -310,7 +307,7 @@ elf_errorstatus elf_xen_parse_guest_info
>              }
>              name[len] = STAR(h);
>          }
> -        elf_msg(elf, "%s: %s=\"%s\"\n", __FUNCTION__, name, value);
> +        elf_msg(elf, "ELF: %s=\"%s\"\n", name, value);
>  
>          /* strings */
>          if ( !strcmp(name, "LOADER") )
> @@ -363,9 +360,8 @@ static elf_errorstatus elf_xen_note_chec
>          unsigned machine = elf_uval(elf, elf->ehdr, e_machine);
>          if ( (machine == EM_386) || (machine == EM_X86_64) )
>          {
> -            elf_err(elf, "%s: ERROR: Not a Xen-ELF image: "
> -                    "No ELF notes or '__xen_guest' section found.\n",
> -                    __FUNCTION__);
> +            elf_err(elf, "ERROR: Not a Xen-ELF image: "
> +                    "No ELF notes or '__xen_guest' section found\n");
>              return -1;
>          }
>          return 0;
> @@ -373,7 +369,7 @@ static elf_errorstatus elf_xen_note_chec
>  
>      if ( elf_uval(elf, elf->ehdr, e_machine) == EM_ARM )
>      {
> -         elf_msg(elf, "%s: Not bothering with notes on ARM\n", 
> __FUNCTION__);
> +         elf_msg(elf, "ELF: Not bothering with notes on ARM\n");
>           return 0;
>      }
>  
> @@ -383,9 +379,10 @@ static elf_errorstatus elf_xen_note_chec
>           ((strlen(parms->guest_os) == 0) ||
>            strncmp(parms->guest_os, "linux", 5)) )
>      {
> -        elf_err(elf, "%s: ERROR: Will only load images built for the generic 
> "
> -                "loader or Linux images (Not '%.*s' and '%.*s')\n",
> -                __FUNCTION__, (int)sizeof(parms->loader), parms->loader,
> +        elf_err(elf,
> +                "ERROR: Will only load images built for the generic loader 
> or Linux images"
> +                " (Not '%.*s' and '%.*s')\n",
> +                (int)sizeof(parms->loader), parms->loader,
>                  (int)sizeof(parms->guest_os), parms->guest_os);
>          return -1;
>      }
> @@ -393,8 +390,8 @@ static elf_errorstatus elf_xen_note_chec
>      if ( (strlen(parms->xen_ver) == 0) ||
>           strncmp(parms->xen_ver, "xen-3.0", 7) )
>      {
> -        elf_err(elf, "%s: ERROR: Xen will only load images built "
> -                "for Xen v3.0 (Not '%.*s')\n", __FUNCTION__,
> +        elf_err(elf, "ERROR: Xen will only load images built for Xen v3.0 "
> +                "(Not '%.*s')\n",
>                  (int)sizeof(parms->xen_ver), parms->xen_ver);
>          return -1;
>      }
> @@ -409,8 +406,7 @@ static elf_errorstatus elf_xen_addr_calc
>      if ( (parms->elf_paddr_offset != UNSET_ADDR) &&
>           (parms->virt_base == UNSET_ADDR) )
>      {
> -        elf_err(elf, "%s: ERROR: ELF_PADDR_OFFSET set, VIRT_BASE unset\n",
> -                __FUNCTION__);
> +        elf_err(elf, "ERROR: ELF_PADDR_OFFSET set, VIRT_BASE unset\n");
>          return -1;
>      }
>  
> @@ -418,8 +414,8 @@ static elf_errorstatus elf_xen_addr_calc
>      if ( parms->virt_base == UNSET_ADDR )
>      {
>          parms->virt_base = 0;
> -        elf_msg(elf, "%s: VIRT_BASE unset, using 0x%" PRIx64 "\n",
> -                __FUNCTION__, parms->virt_base);
> +        elf_msg(elf, "ELF: VIRT_BASE unset, using %#" PRIx64 "\n",
> +                parms->virt_base);
>      }
>  
>      /*
> @@ -437,8 +433,8 @@ static elf_errorstatus elf_xen_addr_calc
>              parms->elf_paddr_offset = 0;
>          else
>              parms->elf_paddr_offset = parms->virt_base;
> -        elf_msg(elf, "%s: ELF_PADDR_OFFSET unset, using 0x%" PRIx64 "\n",
> -                __FUNCTION__, parms->elf_paddr_offset);
> +        elf_msg(elf, "ELF_PADDR_OFFSET unset, using %#" PRIx64 "\n",
> +                parms->elf_paddr_offset);
>      }
>  
>      virt_offset = parms->virt_base - parms->elf_paddr_offset;
> @@ -455,7 +451,7 @@ static elf_errorstatus elf_xen_addr_calc
>              parms->virt_kend = elf->bsd_symtab_pend + virt_offset;
>      }
>  
> -    elf_msg(elf, "%s: addresses:\n", __FUNCTION__);
> +    elf_msg(elf, "ELF: addresses:\n");
>      elf_msg(elf, "    virt_base        = 0x%" PRIx64 "\n", parms->virt_base);
>      elf_msg(elf, "    elf_paddr_offset = 0x%" PRIx64 "\n", 
> parms->elf_paddr_offset);
>      elf_msg(elf, "    virt_offset      = 0x%" PRIx64 "\n", virt_offset);
> @@ -469,8 +465,7 @@ static elf_errorstatus elf_xen_addr_calc
>           (parms->virt_entry > parms->virt_kend) ||
>           (parms->virt_base > parms->virt_kstart) )
>      {
> -        elf_err(elf, "%s: ERROR: ELF start or entries are out of bounds.\n",
> -                __FUNCTION__);
> +        elf_err(elf, "ERROR: ELF start or entries are out of bounds\n");
>          return -1;
>      }
>  
> @@ -478,8 +473,7 @@ static elf_errorstatus elf_xen_addr_calc
>           (parms->p2m_base >= parms->virt_kstart) &&
>           (parms->p2m_base < parms->virt_kend) )
>      {
> -        elf_err(elf, "%s: ERROR: P->M table base is out of bounds.\n",
> -                __FUNCTION__);
> +        elf_err(elf, "ERROR: P->M table base is out of bounds\n");
>          return -1;
>      }
>  
> @@ -561,7 +555,7 @@ elf_errorstatus elf_xen_parse(struct elf
>                  return -1;
>  
>              if ( xen_elfnotes == 0 && more_notes > 0 )
> -                elf_msg(elf, "%s: using notes from SHT_NOTE section\n", 
> __FUNCTION__);
> +                elf_msg(elf, "ELF: using notes from SHT_NOTE section\n");
>  
>              xen_elfnotes += more_notes;
>          }
> @@ -579,7 +573,7 @@ elf_errorstatus elf_xen_parse(struct elf
>              parms->guest_info = elf_section_start(elf, shdr);
>              parms->elf_note_start = ELF_INVALID_PTRVAL;
>              parms->elf_note_end   = ELF_INVALID_PTRVAL;
> -            elf_msg(elf, "%s: __xen_guest: \"%s\"\n", __FUNCTION__,
> +            elf_msg(elf, "ELF: __xen_guest: \"%s\"\n",
>                      elf_strfmt(elf, parms->guest_info));
>              elf_xen_parse_guest_info(elf, parms);
>          }
> --- a/xen/common/libelf/libelf-loader.c
> +++ b/xen/common/libelf/libelf-loader.c
> @@ -33,7 +33,7 @@ elf_errorstatus elf_init(struct elf_bina
>  
>      if ( !elf_is_elfbinary(image_input, size) )
>      {
> -        elf_err(elf, "%s: not an ELF binary\n", __FUNCTION__);
> +        elf_err(elf, "ELF: not an ELF binary\n");
>          return -1;
>      }
>  
> @@ -51,8 +51,8 @@ elf_errorstatus elf_init(struct elf_bina
>          elf_uval(elf, elf->ehdr, e_phentsize) * elf_phdr_count(elf);
>      if ( offset > elf->size )
>      {
> -        elf_err(elf, "%s: phdr overflow (off %" PRIx64 " > size %lx)\n",
> -                __FUNCTION__, offset, (unsigned long)elf->size);
> +        elf_err(elf, "ELF: phdr overflow (off %" PRIx64 " > size %lx)\n",
> +                offset, (unsigned long)elf->size);
>          return -1;
>      }
>  
> @@ -61,8 +61,8 @@ elf_errorstatus elf_init(struct elf_bina
>          elf_uval(elf, elf->ehdr, e_shentsize) * elf_shdr_count(elf);
>      if ( offset > elf->size )
>      {
> -        elf_err(elf, "%s: shdr overflow (off %" PRIx64 " > size %lx)\n",
> -                __FUNCTION__, offset, (unsigned long)elf->size);
> +        elf_err(elf, "ELF: shdr overflow (off %" PRIx64 " > size %lx)\n",
> +                offset, (unsigned long)elf->size);
>          return -1;
>      }
>  
> @@ -430,8 +430,8 @@ void elf_parse_binary(struct elf_binary
>              continue;
>          paddr = elf_uval(elf, phdr, p_paddr);
>          memsz = elf_uval(elf, phdr, p_memsz);
> -        elf_msg(elf, "%s: phdr: paddr=0x%" PRIx64
> -                " memsz=0x%" PRIx64 "\n", __FUNCTION__, paddr, memsz);
> +        elf_msg(elf, "ELF: phdr: paddr=%#" PRIx64 " memsz=%#" PRIx64 "\n",
> +                paddr, memsz);
>          if ( low > paddr )
>              low = paddr;
>          if ( high < paddr + memsz )
> @@ -439,8 +439,8 @@ void elf_parse_binary(struct elf_binary
>      }
>      elf->pstart = low;
>      elf->pend = high;
> -    elf_msg(elf, "%s: memory: 0x%" PRIx64 " -> 0x%" PRIx64 "\n",
> -            __FUNCTION__, elf->pstart, elf->pend);
> +    elf_msg(elf, "ELF: memory: %#" PRIx64 " -> %#" PRIx64 "\n",
> +            elf->pstart, elf->pend);
>  }
>  
>  elf_errorstatus elf_load_binary(struct elf_binary *elf)
> @@ -483,8 +483,9 @@ elf_errorstatus elf_load_binary(struct e
>          }
>          remain_allow_copy -= memsz;
>  
> -        elf_msg(elf, "%s: phdr %" PRIu64 " at 0x%"ELF_PRPTRVAL" -> 
> 0x%"ELF_PRPTRVAL"\n",
> -                __func__, i, dest, (elf_ptrval)(dest + filesz));
> +        elf_msg(elf,
> +                "ELF: phdr %" PRIu64 " at %#"ELF_PRPTRVAL" -> 
> %#"ELF_PRPTRVAL"\n",
> +                i, dest, (elf_ptrval)(dest + filesz));
>          if ( elf_load_image(elf, dest, ELF_IMAGE_BASE(elf) + offset, 
> filesz, memsz) != 0 )
>              return -1;
>      }



_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

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

end of thread, other threads:[~2016-09-07 14:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-07  7:59 [PATCH v2] libelf: drop pointless uses of __FUNCTION__ Jan Beulich
2016-09-07 13:52 ` Ian Jackson
2016-09-07 14:03 ` Jan Beulich

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.