summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--version.h2
-rw-r--r--win32/win32.c35
3 files changed, 45 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index c802e17c0e..1a213d717c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Sat Feb 21 13:48:11 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * win32/win32.c (different_device_p): compare by volume serial
+ numbers, not by path names. [ruby-core:68162] [Bug #10865]
+
+Sat Feb 21 13:48:11 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * win32/win32.c (wrename): return EXDEV if moving a directory to
+ another drive, since MoveFileExW does not set proper error code.
+ [ruby-core:68162] [Bug #10865]
+
Sat Feb 21 12:46:51 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* win32/file.c (rb_file_expand_path_internal): neither the drive
diff --git a/version.h b/version.h
index 26b0942411..efa4d2bd3f 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.2.0"
#define RUBY_RELEASE_DATE "2015-02-21"
-#define RUBY_PATCHLEVEL 72
+#define RUBY_PATCHLEVEL 73
#define RUBY_RELEASE_YEAR 2015
#define RUBY_RELEASE_MONTH 2
diff --git a/win32/win32.c b/win32/win32.c
index 34d42b0ded..b7d7e32935 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -4701,6 +4701,31 @@ rb_w32_getenv(const char *name)
return w32_getenv(name, CP_ACP);
}
+/* License: Ruby's */
+static DWORD
+get_volume_serial_number(const WCHAR *path)
+{
+ const DWORD share_mode = FILE_SHARE_READ | FILE_SHARE_WRITE;
+ const DWORD creation = OPEN_EXISTING;
+ const DWORD flags = FILE_FLAG_BACKUP_SEMANTICS;
+ BY_HANDLE_FILE_INFORMATION st = {0};
+ HANDLE h = CreateFileW(path, 0, share_mode, NULL, creation, flags, NULL);
+ BOOL ret;
+
+ if (h == INVALID_HANDLE_VALUE) return 0;
+ ret = GetFileInformationByHandle(h, &st);
+ CloseHandle(h);
+ if (!ret) return 0;
+ return st.dwVolumeSerialNumber;
+}
+
+/* License: Ruby's */
+static int
+different_device_p(const WCHAR *oldpath, const WCHAR *newpath)
+{
+ return get_volume_serial_number(oldpath) != get_volume_serial_number(newpath);
+}
+
/* License: Artistic or GPL */
static int
wrename(const WCHAR *oldpath, const WCHAR *newpath)
@@ -4724,8 +4749,14 @@ wrename(const WCHAR *oldpath, const WCHAR *newpath)
if (!MoveFileExW(oldpath, newpath, MOVEFILE_REPLACE_EXISTING | MOVEFILE_COPY_ALLOWED))
res = -1;
- if (res)
- errno = map_errno(GetLastError());
+ if (res) {
+ DWORD e = GetLastError();
+ if ((e == ERROR_ACCESS_DENIED) && (oldatts & FILE_ATTRIBUTE_DIRECTORY) &&
+ different_device_p(oldpath, newpath))
+ errno = EXDEV;
+ else
+ errno = map_errno(e);
+ }
else
SetFileAttributesW(newpath, oldatts);
});