public inbox for elfutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Adapt debug info fstat check for windows
@ 2017-05-04 14:22 Ulf Hermann
  0 siblings, 0 replies; only message in thread
From: Ulf Hermann @ 2017-05-04 14:22 UTC (permalink / raw)
  To: elfutils-devel

On windows the resulting ino and dev entries are always 0, so the file
would always be discarded. We apply a heuristic instead: If the ctime,
mtime, mode and size of the two files are all equal then we consider
them to be the same. It's exceedingly unlikely to produce two different
files for which that holds by chance.

Signed-off-by: Ulf Hermann <ulf.hermann@qt.io>
---
 libdwfl/ChangeLog        | 5 +++++
 libdwfl/find-debuginfo.c | 9 +++++++++
 2 files changed, 14 insertions(+)

diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog
index ee550d0..517ba21 100644
--- a/libdwfl/ChangeLog
+++ b/libdwfl/ChangeLog
@@ -1,5 +1,10 @@
 2017-05-04  Ulf Hermann  <ulf.hermann@qt.io>
 
+	* find-debuginfo.c: On windows, check various extra parameters of
+	struct stat to determine if two files are the same.
+
+2017-05-04  Ulf Hermann  <ulf.hermann@qt.io>
+
 	* dwfl_build_id_find_elf.c: Don't assume unix file system conventions.
 	* find-debuginfo.c: Likewise.
 	* linux-kernel-modules.c: Likewise.
diff --git a/libdwfl/find-debuginfo.c b/libdwfl/find-debuginfo.c
index ac568d0..3a65eda 100644
--- a/libdwfl/find-debuginfo.c
+++ b/libdwfl/find-debuginfo.c
@@ -63,10 +63,19 @@ try_open (const struct stat *main_stat,
   if (fd < 0)
     free (fname);
   else if (fstat (fd, &st) == 0
+#if defined _WIN32 || defined __WIN32__
+	   /* On windows, st_ino and st_dev are not unique, so we apply a heuristic */
+	   && st.st_size == main_stat->st_size
+	   && st.st_mode == main_stat->st_mode
+	   && st.st_mtime == main_stat->st_mtime
+	   && st.st_ctime == main_stat->st_ctime
+#endif
 	   && st.st_ino == main_stat->st_ino
 	   && st.st_dev == main_stat->st_dev)
     {
       /* This is the main file by another name.  Don't look at it again.  */
+      /* This doesn't happen on windows as windows doesn't have proper links. However, on windows
+         st_ino and st_dev is always 0. */
       free (fname);
       close (fd);
       errno = ENOENT;
-- 
2.1.4

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-05-04 10:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-04 14:22 [PATCH] Adapt debug info fstat check for windows Ulf Hermann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).