272467bd3aee35af4b7293b00f3c73d87b86e05f
[dcpomatic.git] / src / lib / cross_windows.cc
1 /*
2     Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "cross.h"
22 #include "compose.hpp"
23 #include "log.h"
24 #include "dcpomatic_log.h"
25 #include "config.h"
26 #include "exceptions.h"
27 #include "dcpomatic_assert.h"
28 #include <dcp/raw_convert.h>
29 #include <glib.h>
30 extern "C" {
31 #include <libavformat/avio.h>
32 }
33 #include <boost/algorithm/string.hpp>
34 #include <boost/foreach.hpp>
35 #include <boost/dll/runtime_symbol_info.hpp>
36 #include <windows.h>
37 #include <winternl.h>
38 #include <winioctl.h>
39 #include <ntdddisk.h>
40 #include <setupapi.h>
41 #include <fileapi.h>
42 #undef DATADIR
43 #include <shlwapi.h>
44 #include <shellapi.h>
45 #include <fcntl.h>
46 #include <fstream>
47 #include <map>
48
49 #include "i18n.h"
50
51 using std::pair;
52 using std::list;
53 using std::ifstream;
54 using std::string;
55 using std::wstring;
56 using std::make_pair;
57 using std::vector;
58 using std::cerr;
59 using std::cout;
60 using std::runtime_error;
61 using std::map;
62 using boost::shared_ptr;
63 using boost::optional;
64
65 static std::vector<pair<HANDLE, string> > locked_volumes;
66
67 /** @param s Number of seconds to sleep for */
68 void
69 dcpomatic_sleep_seconds (int s)
70 {
71         Sleep (s * 1000);
72 }
73
74 void
75 dcpomatic_sleep_milliseconds (int ms)
76 {
77         Sleep (ms);
78 }
79
80 /** @return A string of CPU information (model name etc.) */
81 string
82 cpu_info ()
83 {
84         string info;
85
86         HKEY key;
87         if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, L"HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0", 0, KEY_READ, &key) != ERROR_SUCCESS) {
88                 return info;
89         }
90
91         DWORD type;
92         DWORD data;
93         if (RegQueryValueEx (key, L"ProcessorNameString", 0, &type, 0, &data) != ERROR_SUCCESS) {
94                 return info;
95         }
96
97         if (type != REG_SZ) {
98                 return info;
99         }
100
101         wstring value (data / sizeof (wchar_t), L'\0');
102         if (RegQueryValueEx (key, L"ProcessorNameString", 0, 0, reinterpret_cast<LPBYTE> (&value[0]), &data) != ERROR_SUCCESS) {
103                 RegCloseKey (key);
104                 return info;
105         }
106
107         info = string (value.begin(), value.end());
108
109         RegCloseKey (key);
110
111         return info;
112 }
113
114 void
115 run_ffprobe (boost::filesystem::path content, boost::filesystem::path out)
116 {
117         SECURITY_ATTRIBUTES security;
118         security.nLength = sizeof (security);
119         security.bInheritHandle = TRUE;
120         security.lpSecurityDescriptor = 0;
121
122         HANDLE child_stderr_read;
123         HANDLE child_stderr_write;
124         if (!CreatePipe (&child_stderr_read, &child_stderr_write, &security, 0)) {
125                 LOG_ERROR_NC ("ffprobe call failed (could not CreatePipe)");
126                 return;
127         }
128
129         wchar_t dir[512];
130         MultiByteToWideChar (CP_UTF8, 0, directory_containing_executable().string().c_str(), -1, dir, sizeof(dir));
131         SetCurrentDirectory (dir);
132
133         STARTUPINFO startup_info;
134         ZeroMemory (&startup_info, sizeof (startup_info));
135         startup_info.cb = sizeof (startup_info);
136         startup_info.hStdError = child_stderr_write;
137         startup_info.dwFlags |= STARTF_USESTDHANDLES;
138
139         wchar_t command[512];
140         wcscpy (command, L"ffprobe.exe \"");
141
142         wchar_t file[512];
143         MultiByteToWideChar (CP_UTF8, 0, content.string().c_str(), -1, file, sizeof(file));
144         wcscat (command, file);
145
146         wcscat (command, L"\"");
147
148         PROCESS_INFORMATION process_info;
149         ZeroMemory (&process_info, sizeof (process_info));
150         if (!CreateProcess (0, command, 0, 0, TRUE, CREATE_NO_WINDOW, 0, 0, &startup_info, &process_info)) {
151                 LOG_ERROR_NC (N_("ffprobe call failed (could not CreateProcess)"));
152                 return;
153         }
154
155         FILE* o = fopen_boost (out, "w");
156         if (!o) {
157                 LOG_ERROR_NC (N_("ffprobe call failed (could not create output file)"));
158                 return;
159         }
160
161         CloseHandle (child_stderr_write);
162
163         while (true) {
164                 char buffer[512];
165                 DWORD read;
166                 if (!ReadFile(child_stderr_read, buffer, sizeof(buffer), &read, 0) || read == 0) {
167                         break;
168                 }
169                 fwrite (buffer, read, 1, o);
170         }
171
172         fclose (o);
173
174         WaitForSingleObject (process_info.hProcess, INFINITE);
175         CloseHandle (process_info.hProcess);
176         CloseHandle (process_info.hThread);
177         CloseHandle (child_stderr_read);
178 }
179
180 list<pair<string, string> >
181 mount_info ()
182 {
183         list<pair<string, string> > m;
184         return m;
185 }
186
187
188 boost::filesystem::path
189 directory_containing_executable ()
190 {
191         return boost::dll::program_location().parent_path();
192 }
193
194
195 boost::filesystem::path
196 shared_path ()
197 {
198         return directory_containing_executable().parent_path();
199 }
200
201
202 boost::filesystem::path
203 xsd_path ()
204 {
205         return directory_containing_executable().parent_path() / "xsd";
206 }
207
208
209 boost::filesystem::path
210 openssl_path ()
211 {
212         return directory_containing_executable() / "openssl.exe";
213 }
214
215
216 #ifdef DCPOMATIC_DISK
217 boost::filesystem::path
218 disk_writer_path ()
219 {
220         return directory_containing_executable() / "dcpomatic2_disk_writer.exe";
221 }
222 #endif
223
224
225 /* Apparently there is no way to create an ofstream using a UTF-8
226    filename under Windows.  We are hence reduced to using fopen
227    with this wrapper.
228 */
229 FILE *
230 fopen_boost (boost::filesystem::path p, string t)
231 {
232         wstring w (t.begin(), t.end());
233         /* c_str() here should give a UTF-16 string */
234         return _wfopen (p.c_str(), w.c_str ());
235 }
236
237 int
238 dcpomatic_fseek (FILE* stream, int64_t offset, int whence)
239 {
240         return _fseeki64 (stream, offset, whence);
241 }
242
243 void
244 Waker::nudge ()
245 {
246         boost::mutex::scoped_lock lm (_mutex);
247         SetThreadExecutionState (ES_SYSTEM_REQUIRED);
248 }
249
250 Waker::Waker ()
251 {
252
253 }
254
255 Waker::~Waker ()
256 {
257
258 }
259
260
261 void
262 start_tool (string executable)
263 {
264         boost::filesystem::path batch = directory_containing_executable() / executable;
265
266         STARTUPINFO startup_info;
267         ZeroMemory (&startup_info, sizeof (startup_info));
268         startup_info.cb = sizeof (startup_info);
269
270         PROCESS_INFORMATION process_info;
271         ZeroMemory (&process_info, sizeof (process_info));
272
273         wchar_t cmd[512];
274         MultiByteToWideChar (CP_UTF8, 0, batch.string().c_str(), -1, cmd, sizeof(cmd));
275         CreateProcess (0, cmd, 0, 0, FALSE, 0, 0, 0, &startup_info, &process_info);
276 }
277
278
279 void
280 start_batch_converter ()
281 {
282         start_tool ("dcpomatic2_batch");
283 }
284
285
286 void
287 start_player ()
288 {
289         start_tool ("dcpomatic2_player");
290 }
291
292
293 uint64_t
294 thread_id ()
295 {
296         return (uint64_t) GetCurrentThreadId ();
297 }
298
299 static string
300 wchar_to_utf8 (wchar_t const * s)
301 {
302         int const length = (wcslen(s) + 1) * 2;
303         char* utf8 = new char[length];
304         WideCharToMultiByte (CP_UTF8, 0, s, -1, utf8, length, 0, 0);
305         string u (utf8);
306         delete[] utf8;
307         return u;
308 }
309
310 int
311 avio_open_boost (AVIOContext** s, boost::filesystem::path file, int flags)
312 {
313         return avio_open (s, wchar_to_utf8(file.c_str()).c_str(), flags);
314 }
315
316 void
317 maybe_open_console ()
318 {
319         if (Config::instance()->win32_console ()) {
320                 AllocConsole();
321
322                 HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
323                 int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
324                 FILE* hf_out = _fdopen(hCrt, "w");
325                 setvbuf(hf_out, NULL, _IONBF, 1);
326                 *stdout = *hf_out;
327
328                 HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
329                 hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
330                 FILE* hf_in = _fdopen(hCrt, "r");
331                 setvbuf(hf_in, NULL, _IONBF, 128);
332                 *stdin = *hf_in;
333         }
334 }
335
336 boost::filesystem::path
337 home_directory ()
338 {
339         return boost::filesystem::path(getenv("HOMEDRIVE")) / boost::filesystem::path(getenv("HOMEPATH"));
340 }
341
342 string
343 command_and_read (string)
344 {
345         return "";
346 }
347
348 /** @return true if this process is a 32-bit one running on a 64-bit-capable OS */
349 bool
350 running_32_on_64 ()
351 {
352         BOOL p;
353         IsWow64Process (GetCurrentProcess(), &p);
354         return p;
355 }
356
357 static optional<string>
358 get_friendly_name (HDEVINFO device_info, SP_DEVINFO_DATA* device_info_data)
359 {
360         wchar_t buffer[MAX_PATH];
361         ZeroMemory (&buffer, sizeof(buffer));
362         bool r = SetupDiGetDeviceRegistryPropertyW (
363                         device_info, device_info_data, SPDRP_FRIENDLYNAME, 0, reinterpret_cast<PBYTE>(buffer), sizeof(buffer), 0
364                         );
365         if (!r) {
366                 return optional<string>();
367         }
368         return wchar_to_utf8 (buffer);
369 }
370
371 static const GUID GUID_DEVICE_INTERFACE_DISK = {
372         0x53F56307L, 0xB6BF, 0x11D0, { 0x94, 0xF2, 0x00, 0xA0, 0xC9, 0x1E, 0xFB, 0x8B }
373 };
374
375 static optional<int>
376 get_device_number (HDEVINFO device_info, SP_DEVINFO_DATA* device_info_data)
377 {
378         /* Find the Windows path to the device */
379
380         SP_DEVICE_INTERFACE_DATA device_interface_data;
381         device_interface_data.cbSize = sizeof(SP_DEVICE_INTERFACE_DATA);
382
383         BOOL r = SetupDiEnumDeviceInterfaces (device_info, device_info_data, &GUID_DEVICE_INTERFACE_DISK, 0, &device_interface_data);
384         if (!r) {
385                 LOG_DISK("SetupDiEnumDeviceInterfaces failed (%1)", GetLastError());
386                 return optional<int>();
387         }
388
389         /* Find out how much space we need for our SP_DEVICE_INTERFACE_DETAIL_DATA_W */
390         DWORD size;
391         r = SetupDiGetDeviceInterfaceDetailW(device_info, &device_interface_data, 0, 0, &size, 0);
392         PSP_DEVICE_INTERFACE_DETAIL_DATA_W device_detail_data = static_cast<PSP_DEVICE_INTERFACE_DETAIL_DATA_W> (malloc(size));
393         if (!device_detail_data) {
394                 LOG_DISK_NC("malloc failed");
395                 return optional<int>();
396         }
397
398         device_detail_data->cbSize = sizeof(SP_DEVICE_INTERFACE_DETAIL_DATA_W);
399
400         /* And get the path */
401         r = SetupDiGetDeviceInterfaceDetailW (device_info, &device_interface_data, device_detail_data, size, &size, 0);
402         if (!r) {
403                 LOG_DISK_NC("SetupDiGetDeviceInterfaceDetailW failed");
404                 free (device_detail_data);
405                 return optional<int>();
406         }
407
408         /* Open it.  We would not be allowed GENERIC_READ access here but specifying 0 for
409            dwDesiredAccess allows us to query some metadata.
410         */
411         HANDLE device = CreateFileW (
412                         device_detail_data->DevicePath, 0,
413                         FILE_SHARE_READ | FILE_SHARE_WRITE, 0,
414                         OPEN_EXISTING, 0, 0
415                         );
416
417         free (device_detail_data);
418
419         if (device == INVALID_HANDLE_VALUE) {
420                 LOG_DISK("CreateFileW failed with %1", GetLastError());
421                 return optional<int>();
422         }
423
424         /* Get the device number */
425         STORAGE_DEVICE_NUMBER device_number;
426         r = DeviceIoControl (
427                         device, IOCTL_STORAGE_GET_DEVICE_NUMBER, 0, 0,
428                         &device_number, sizeof(device_number), &size, 0
429                         );
430
431         CloseHandle (device);
432
433         if (!r) {
434                 return optional<int>();
435         }
436
437         return device_number.DeviceNumber;
438 }
439
440 typedef map<int, vector<boost::filesystem::path> > MountPoints;
441
442 /** Take a volume path (with a trailing \) and add any disk numbers related to that volume
443  *  to @ref disks.
444  */
445 static void
446 add_volume_mount_points (wchar_t* volume, MountPoints& mount_points)
447 {
448         LOG_DISK("Looking at %1", wchar_to_utf8(volume));
449
450         wchar_t volume_path_names[512];
451         vector<boost::filesystem::path> mp;
452         DWORD returned;
453         if (GetVolumePathNamesForVolumeNameW(volume, volume_path_names, sizeof(volume_path_names) / sizeof(wchar_t), &returned)) {
454                 wchar_t* p = volume_path_names;
455                 while (*p != L'\0') {
456                         mp.push_back (wchar_to_utf8(p));
457                         LOG_DISK ("Found mount point %1", wchar_to_utf8(p));
458                         p += wcslen(p) + 1;
459                 }
460         }
461
462         /* Strip trailing \ */
463         size_t const len = wcslen (volume);
464         DCPOMATIC_ASSERT (len > 0);
465         volume[len - 1] = L'\0';
466
467         HANDLE handle = CreateFileW (
468                         volume, 0,
469                         FILE_SHARE_READ | FILE_SHARE_WRITE, 0,
470                         OPEN_EXISTING, 0, 0
471                         );
472
473         DCPOMATIC_ASSERT (handle != INVALID_HANDLE_VALUE);
474
475         VOLUME_DISK_EXTENTS extents;
476         DWORD size;
477         BOOL r = DeviceIoControl (handle, IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, 0, 0, &extents, sizeof(extents), &size, 0);
478         CloseHandle (handle);
479         if (!r) {
480                 return;
481         }
482         DCPOMATIC_ASSERT (extents.NumberOfDiskExtents == 1);
483
484         mount_points[extents.Extents[0].DiskNumber] = mp;
485 }
486
487 MountPoints
488 find_mount_points ()
489 {
490         MountPoints mount_points;
491
492         wchar_t volume_name[512];
493         HANDLE volume = FindFirstVolumeW (volume_name, sizeof(volume_name) / sizeof(wchar_t));
494         if (volume == INVALID_HANDLE_VALUE) {
495                 return MountPoints();
496         }
497
498         add_volume_mount_points (volume_name, mount_points);
499         while (true) {
500                 if (!FindNextVolumeW(volume, volume_name, sizeof(volume_name) / sizeof(wchar_t))) {
501                         break;
502                 }
503                 add_volume_mount_points (volume_name, mount_points);
504         }
505         FindVolumeClose (volume);
506
507         return mount_points;
508 }
509
510 vector<Drive>
511 Drive::get ()
512 {
513         vector<Drive> drives;
514
515         MountPoints mount_points = find_mount_points ();
516
517         /* Get a `device information set' containing information about all disks */
518         HDEVINFO device_info = SetupDiGetClassDevsA (&GUID_DEVICE_INTERFACE_DISK, 0, 0, DIGCF_PRESENT | DIGCF_DEVICEINTERFACE);
519         if (device_info == INVALID_HANDLE_VALUE) {
520                 LOG_DISK_NC ("SetupDiClassDevsA failed");
521                 return drives;
522         }
523
524         int i = 0;
525         while (true) {
526                 /* Find out about the next disk */
527                 SP_DEVINFO_DATA device_info_data;
528                 device_info_data.cbSize = sizeof(SP_DEVINFO_DATA);
529                 if (!SetupDiEnumDeviceInfo(device_info, i, &device_info_data)) {
530                         DWORD e = GetLastError();
531                         if (e != ERROR_NO_MORE_ITEMS) {
532                                 LOG_DISK ("SetupDiEnumDeviceInfo failed (%1)", GetLastError());
533                         }
534                         break;
535                 }
536                 ++i;
537
538                 optional<string> const friendly_name = get_friendly_name (device_info, &device_info_data);
539                 optional<int> device_number = get_device_number (device_info, &device_info_data);
540                 if (!device_number) {
541                         continue;
542                 }
543
544                 string const physical_drive = String::compose("\\\\.\\PHYSICALDRIVE%1", *device_number);
545
546                 HANDLE device = CreateFileA (
547                                 physical_drive.c_str(), 0,
548                                 FILE_SHARE_READ | FILE_SHARE_WRITE, 0,
549                                 OPEN_EXISTING, 0, 0
550                                 );
551
552                 if (device == INVALID_HANDLE_VALUE) {
553                         LOG_DISK_NC("Could not open PHYSICALDRIVE");
554                         continue;
555                 }
556
557                 DISK_GEOMETRY geom;
558                 DWORD returned;
559                 BOOL r = DeviceIoControl (
560                                 device, IOCTL_DISK_GET_DRIVE_GEOMETRY, 0, 0,
561                                 &geom, sizeof(geom), &returned, 0
562                                 );
563
564                 LOG_DISK("Having a look through %1 locked volumes", locked_volumes.size());
565                 bool locked = false;
566                 for (vector<pair<HANDLE, string> >::const_iterator i = locked_volumes.begin(); i != locked_volumes.end(); ++i) {
567                         if (i->second == physical_drive) {
568                                 locked = true;
569                         }
570                 }
571
572                 if (r) {
573                         uint64_t const disk_size = geom.Cylinders.QuadPart * geom.TracksPerCylinder * geom.SectorsPerTrack * geom.BytesPerSector;
574                         drives.push_back (Drive(physical_drive, locked ? vector<boost::filesystem::path>() : mount_points[*device_number], disk_size, friendly_name, optional<string>()));
575                         LOG_DISK("Added drive %1%2", drives.back().log_summary(), locked ? "(locked by us)" : "");
576                 }
577
578                 CloseHandle (device);
579         }
580
581         return drives;
582 }
583
584
585 bool
586 Drive::unmount ()
587 {
588         LOG_DISK("Unmounting %1 with %2 mount points", _device, _mount_points.size());
589         DCPOMATIC_ASSERT (_mount_points.size() == 1);
590         string const device_name = String::compose ("\\\\.\\%1", _mount_points.front());
591         string const truncated = device_name.substr (0, device_name.length() - 1);
592         //LOG_DISK("Actually opening %1", _device);
593         //HANDLE device = CreateFileA (_device.c_str(), (GENERIC_READ | GENERIC_WRITE), FILE_SHARE_READ | FILE_SHARE_WRITE, 0, OPEN_EXISTING, 0, 0);
594         LOG_DISK("Actually opening %1", truncated);
595         HANDLE device = CreateFileA (truncated.c_str(), (GENERIC_READ | GENERIC_WRITE), FILE_SHARE_READ | FILE_SHARE_WRITE, 0, OPEN_EXISTING, 0, 0);
596         if (device == INVALID_HANDLE_VALUE) {
597                 LOG_DISK("Could not open %1 for unmount (%2)", truncated, GetLastError());
598                 return false;
599         }
600         DWORD returned;
601         BOOL r = DeviceIoControl (device, FSCTL_LOCK_VOLUME, 0, 0, 0, 0, &returned, 0);
602         if (!r) {
603                 LOG_DISK("Unmount of %1 failed (%2)", truncated, GetLastError());
604                 return false;
605         }
606
607         LOG_DISK("Unmount of %1 succeeded", _device);
608         locked_volumes.push_back (make_pair(device, _device));
609
610         return true;
611 }
612
613
614 boost::filesystem::path
615 config_path ()
616 {
617         boost::filesystem::path p;
618         p /= g_get_user_config_dir ();
619         p /= "dcpomatic2";
620         return p;
621 }
622
623 void
624 disk_write_finished ()
625 {
626         for (vector<pair<HANDLE, string> >::const_iterator i = locked_volumes.begin(); i != locked_volumes.end(); ++i) {
627                 CloseHandle (i->first);
628         }
629 }
630
631