]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid crashes on MS-Windows starting 64-bit .NET executables
authorSaulius Menkevičius <saulius.menkevicius@gmail.com>
Sun, 9 Jul 2017 18:16:17 +0000 (21:16 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 9 Jul 2017 18:16:17 +0000 (21:16 +0300)
* src/w32proc.c (w32_executable_type): Don't assume that the
import directory in a DLL will always be non-NULL.  (Bug#27527)

Copyright-paperwork-exempt: yes

src/w32proc.c

index 0aa248a6f7bfaa73c5216c23339086f342ea5490..76af55f99851ff7db7dece67c6ecad20fd9f6590 100644 (file)
@@ -1622,38 +1622,43 @@ w32_executable_type (char * filename,
               /* Look for Cygwin DLL in the DLL import list. */
               IMAGE_DATA_DIRECTORY import_dir =
                 data_dir[IMAGE_DIRECTORY_ENTRY_IMPORT];
-              IMAGE_IMPORT_DESCRIPTOR * imports =
-               RVA_TO_PTR (import_dir.VirtualAddress,
-                           rva_to_section (import_dir.VirtualAddress,
-                                           nt_header),
-                           executable);
 
-              for ( ; imports->Name; imports++)
-                {
-                 IMAGE_SECTION_HEADER * section =
-                   rva_to_section (imports->Name, nt_header);
-                  char * dllname = RVA_TO_PTR (imports->Name, section,
-                                               executable);
-
-                  /* The exact name of the Cygwin DLL has changed with
-                     various releases, but hopefully this will be
-                     reasonably future-proof.  */
-                  if (strncmp (dllname, "cygwin", 6) == 0)
-                    {
-                      *is_cygnus_app = TRUE;
-                      break;
-                    }
-                 else if (strncmp (dllname, "msys-", 5) == 0)
+             /* Import directory can be missing in .NET DLLs.  */
+             if (import_dir.VirtualAddress != 0)
+               {
+                 IMAGE_IMPORT_DESCRIPTOR * imports =
+                   RVA_TO_PTR (import_dir.VirtualAddress,
+                               rva_to_section (import_dir.VirtualAddress,
+                                               nt_header),
+                               executable);
+
+                 for ( ; imports->Name; imports++)
                    {
-                     /* This catches both MSYS 1.x and MSYS2
-                        executables (the DLL name is msys-1.0.dll and
-                        msys-2.0.dll, respectively).  There doesn't
-                        seem to be a reason to distinguish between
-                        the two, for now.  */
-                     *is_msys_app = TRUE;
-                     break;
+                     IMAGE_SECTION_HEADER * section =
+                       rva_to_section (imports->Name, nt_header);
+                     char * dllname = RVA_TO_PTR (imports->Name, section,
+                                                  executable);
+
+                     /* The exact name of the Cygwin DLL has changed with
+                        various releases, but hopefully this will be
+                        reasonably future-proof.  */
+                     if (strncmp (dllname, "cygwin", 6) == 0)
+                       {
+                         *is_cygnus_app = TRUE;
+                         break;
+                       }
+                     else if (strncmp (dllname, "msys-", 5) == 0)
+                       {
+                         /* This catches both MSYS 1.x and MSYS2
+                            executables (the DLL name is msys-1.0.dll and
+                            msys-2.0.dll, respectively).  There doesn't
+                            seem to be a reason to distinguish between
+                            the two, for now.  */
+                         *is_msys_app = TRUE;
+                         break;
+                       }
                    }
-                }
+               }
             }
        }
     }