1 /* libguestfs - the guestfsd daemon
2 * Copyright (C) 2009-2011 Red Hat Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32 static int sync_win32 (void);
38 if (sync_disks () == -1) {
39 reply_with_perror ("sync");
46 /* Older versions of libguestfs used to issue separate 'umount_all'
47 * and 'sync' commands just before closing the handle. Since
48 * libguestfs 1.9.7 the library issues this 'internal_autosync'
49 * internal operation instead, allowing more control in the daemon.
52 do_internal_autosync (void)
64 /* This is a replacement for sync(2) which is called from
65 * this file and from other places in the daemon. It works
71 #if defined(HAVE_SYNC)
77 #error "no known sync() API"
87 n1 = GetLogicalDriveStrings (0, NULL);
91 TCHAR buffer[n1+2]; /* sic */
92 n2 = GetLogicalDriveStrings (n1, buffer);
98 /* The MSDN example code itself assumes that there is always one
99 * drive in the system. However we will be better than that and not
100 * make the assumption ...
106 /* Ignore removable drives. */
107 drive_type = GetDriveType (p);
108 if (drive_type == DRIVE_FIXED) {
109 /* To open the volume you have to specify the volume name, not
110 * the mount point. MSDN documents use of the constant 50
114 if (!GetVolumeNameForVolumeMountPoint (p, volname, 50))
117 drive = CreateFile (volname, GENERIC_READ|GENERIC_WRITE,
118 FILE_SHARE_READ|FILE_SHARE_WRITE,
119 NULL, OPEN_EXISTING, 0, 0);
120 if (drive == INVALID_HANDLE_VALUE)
124 /* This always fails in Wine:
125 * http://bugs.winehq.org/show_bug.cgi?id=14915
127 r = FlushFileBuffers (drive);
133 /* Skip to next \0 character. */