file: Restrict to regular files (RHBZ#582484).
[libguestfs.git] / tools / virt-win-reg
1 #!/usr/bin/perl -w
2 # virt-win-reg
3 # Copyright (C) 2010 Red Hat Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 use warnings;
20 use strict;
21
22 use Sys::Guestfs;
23 use Sys::Guestfs::Lib qw(open_guest get_partitions resolve_windows_path
24   inspect_all_partitions inspect_partition
25   inspect_operating_systems mount_operating_system);
26 use Win::Hivex;
27 use Win::Hivex::Regedit qw(reg_import reg_export);
28
29 use Pod::Usage;
30 use Getopt::Long;
31 use File::Temp qw/tempdir/;
32 use Locale::TextDomain 'libguestfs';
33
34 =encoding utf8
35
36 =head1 NAME
37
38 virt-win-reg - Export and merge Windows Registry entries from a Windows guest
39
40 =head1 SYNOPSIS
41
42  virt-win-reg domname 'HKLM\Path\To\Subkey'
43
44  virt-win-reg domname 'HKLM\Path\To\Subkey' name
45
46  virt-win-reg domname 'HKLM\Path\To\Subkey' @
47
48  virt-win-reg --merge domname [input.reg ...]
49
50  virt-win-reg [--options] disk.img ... # instead of domname
51
52 =head1 WARNING
53
54 You must I<not> use C<virt-win-reg> with the C<--merge> option on live
55 virtual machines.  If you do this, you I<will> get irreversible disk
56 corruption in the VM.  C<virt-win-reg> tries to stop you from doing
57 this, but doesn't catch all cases.
58
59 Modifying the Windows Registry is an inherently risky operation.  The format
60 is deliberately obscure and undocumented, and Registry changes
61 can leave the system unbootable.  Therefore when using the C<--merge>
62 option, make sure you have a reliable backup first.
63
64 =head1 DESCRIPTION
65
66 This program can export and merge Windows Registry entries from a
67 Windows guest.
68
69 The first parameter is the libvirt guest name or the raw disk image of
70 a Windows guest.
71
72 If C<--merge> is I<not> specified, then the chosen registry
73 key is displayed/exported (recursively).  For example:
74
75  $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft'
76
77 You can also display single values from within registry keys,
78 for example:
79
80  $ cvkey='HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion'
81  $ virt-win-reg Windows7 $cvkey ProductName
82  Windows 7 Enterprise
83
84 With C<--merge>, you can merge a textual regedit file into
85 the Windows Registry:
86
87  $ virt-win-reg --merge Windows7 changes.reg
88
89 =head2 SUPPORTED SYSTEMS
90
91 The program currently supports Windows NT-derived guests starting with
92 Windows XP through to at least Windows 7.
93
94 Registry support is done for C<HKEY_LOCAL_MACHINE\SAM>,
95 C<HKEY_LOCAL_MACHINE\SECURITY>, C<HKEY_LOCAL_MACHINE\SOFTWARE>,
96 C<HKEY_LOCAL_MACHINE\SYSTEM> and C<HKEY_USERS\.DEFAULT>.
97
98 You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and
99 C<HKU> for C<HKEY_USERS>.
100
101 C<HKEY_USERS\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at
102 this time.
103
104 =head2 NOTE
105
106 This program is only meant for simple access to the registry.  If you
107 want to do complicated things with the registry, we suggest you
108 download the Registry hive files from the guest using L<libguestfs(3)>
109 or L<guestfish(1)> and access them locally, eg. using L<hivex(3)>,
110 L<hivexsh(1)> or L<hivexregedit(1)>.
111
112 =head2 ENCODING
113
114 C<virt-win-reg> expects that regedit files have already been reencoded
115 in the local encoding.  Usually on Linux hosts, this means UTF-8 with
116 Unix-style line endings.  Since Windows regedit files are often in
117 UTF-16LE with Windows-style line endings, you may need to reencode the
118 whole file before or after processing.
119
120 To reencode a file from Windows format to Linux (before processing it
121 with the C<--merge> option), you would do something like this:
122
123  iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg
124
125 To go in the opposite direction, after exporting and before sending
126 the file to a Windows user, do something like this:
127
128  unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg
129
130 For more information about encoding, see L<Win::Hivex::Regedit(3)>.
131
132 If you are unsure about the current encoding, use the L<file(1)>
133 command.  Recent versions of Windows regedit.exe produce a UTF-16LE
134 file with Windows-style (CRLF) line endings, like this:
135
136  $ file software.reg
137  software.reg: Little-endian UTF-16 Unicode text, with very long lines,
138  with CRLF line terminators
139
140 This file would need conversion before you could C<--merge> it.
141
142 =head2 SHELL QUOTING
143
144 Be careful when passing parameters containing C<\> (backslash) in the
145 shell.  Usually you will have to use 'single quotes' or double
146 backslashes (but not both) to protect them from the shell.
147
148 Paths and value names are case-insensitive.
149
150 =head2 CurrentControlSet etc.
151
152 Registry keys like C<CurrentControlSet> don't really exist in the
153 Windows Registry at the level of the hive file, and therefore you
154 cannot modify these.
155
156 C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In
157 some circumstances it might refer to another control set.  The way
158 to find out is to look at the C<HKLM\SYSTEM\Select> key:
159
160  # virt-win-reg WindowsGuest 'HKLM\SYSTEM\Select'
161  [HKEY_LOCAL_MACHINE\SYSTEM\Select]
162  "Current"=dword:00000001
163  "Default"=dword:00000001
164  "Failed"=dword:00000000
165  "LastKnownGood"=dword:00000002
166
167 "Default" is the one which Windows will choose when it boots.
168
169 Similarly, other C<Current...> keys in the path may need to
170 be replaced.
171
172 =head1 OPTIONS
173
174 =over 4
175
176 =cut
177
178 my $help;
179
180 =item B<--help>
181
182 Display brief help.
183
184 =cut
185
186 my $version;
187
188 =item B<--version>
189
190 Display version number and exit.
191
192 =cut
193
194 my $debug;
195
196 =item B<--debug>
197
198 Enable debugging messages.
199
200 =cut
201
202 my $uri;
203
204 =item B<--connect URI> | B<-c URI>
205
206 If using libvirt, connect to the given I<URI>.  If omitted, then we
207 connect to the default libvirt hypervisor.
208
209 If you specify guest block devices directly, then libvirt is not used
210 at all.
211
212 =cut
213
214 my $merge;
215
216 =item B<--merge>
217
218 In merge mode, this merges a textual regedit file into the Windows
219 Registry of the virtual machine.  If this flag is I<not> given then
220 virt-win-reg displays or exports Registry entries instead.
221
222 Note that C<--merge> is I<unsafe> to use on live virtual machines, and
223 will result in disk corruption.  However exporting (without this flag)
224 is always safe.
225
226 =cut
227
228 my $encoding;
229
230 =item B<--encoding> UTF-16LE|ASCII
231
232 When merging (only), you may need to specify the encoding for strings
233 to be used in the hive file.  This is explained in detail in
234 L<Win::Hivex::Regedit(3)/ENCODING STRINGS>.
235
236 The default is to use UTF-16LE, which should work with recent versions
237 of Windows.
238
239 =back
240
241 =cut
242
243 GetOptions ("help|?" => \$help,
244             "version" => \$version,
245             "connect|c=s" => \$uri,
246             "debug|d" => \$debug,
247             "merge" => \$merge,
248             "encoding=s" => \$encoding,
249     ) or pod2usage (2);
250 pod2usage (1) if $help;
251 if ($version) {
252     my $g = Sys::Guestfs->new ();
253     my %h = $g->version ();
254     print "$h{major}.$h{minor}.$h{release}$h{extra}\n";
255     exit
256 }
257
258 # virt-win-reg only takes a single disk image ...
259 die __"no libvirt domain name or disk image given\n" if @ARGV == 0;
260 my $domname_or_image = shift @ARGV;
261
262 warn "launching libguestfs ..." if $debug;
263
264 my @lib_args = ([$domname_or_image]);
265 push @lib_args, address => $uri if $uri;
266 push @lib_args, rw => 1 if $merge;
267 my $g = open_guest (@lib_args);
268 $g->launch ();
269
270 warn "inspecting guest ..." if $debug;
271
272 # List of possible filesystems.
273 my @partitions = get_partitions ($g);
274
275 # Now query each one to build up a picture of what's in it.
276 my %fses =
277     inspect_all_partitions ($g, \@partitions,
278       use_windows_registry => 0);
279
280 my $oses = inspect_operating_systems ($g, \%fses);
281
282 my @roots = keys %$oses;
283 die __"multiboot operating systems are not supported by virt-win-reg" if @roots > 1;
284 my $root_dev = $roots[0];
285
286 my $os = $oses->{$root_dev};
287 my $ro = $merge ? 0 : 1;
288 mount_operating_system ($g, $os, $ro);
289
290 # Create a working directory to store the downloaded registry files.
291 my $tmpdir = tempdir (CLEANUP => 1);
292
293 # Only used when merging to map downloaded hive names to hive handles.
294 my %hives;
295
296 if (!$merge) {                  # Export mode.
297     die __"expecting 1 or 2 more parameters, subkey path and optionally the value to export\n"
298         if @ARGV < 1 || @ARGV > 2;
299
300     my $path = shift @ARGV;
301     my $name = shift @ARGV; # or undef
302
303     # Map this to the hive name.  This function dies on failure.
304     my ($hivename, $prefix);
305     ($hivename, $path, $prefix) = map_path_to_hive ($path);
306
307     # Download the chosen hive.
308     download_hive ($hivename);
309
310     # Open it.
311     my $h = Win::Hivex->open ("$tmpdir/$hivename", debug => $debug);
312
313     unless ($name) {
314         # Export it.
315         warn "exporting $path from $hivename with prefix $prefix ..." if $debug;
316         reg_export ($h, $path, \*STDOUT, prefix => $prefix);
317     } else {
318         # Export a single key using hivexget.
319         my @args = ("hivexget", "$tmpdir/$hivename", $path, $name);
320         warn "running ", join (" ", @args), " ..." if $debug;
321         system (@args) == 0 or die "hivexget failed: $?"
322     }
323 }
324 else {                          # Import mode.
325     if (@ARGV == 0) {
326         reg_import (\*STDIN, \&import_mapper, encoding => $encoding);
327     } else {
328         foreach (@ARGV) {
329             open my $fh, $_ or die "open: $_: $!";
330             reg_import ($fh, \&import_mapper, encoding => $encoding);
331         }
332     }
333
334     # Now we've done importing, commit all the hive handles and
335     # close them all.
336     $_->commit (undef) foreach values %hives;
337     %hives = ();
338
339     # Look in the tmpdir for all the hive files which have been
340     # downloaded / modified by the import mapper, and upload
341     # each one.
342     opendir my $dh, $tmpdir or die "$tmpdir: $!";
343     foreach (readdir $dh) {
344         unless (/^\./) {
345             upload_hive ($_)
346         }
347     }
348
349     # Sync everything.
350     $g->umount_all ();
351     $g->sync ();
352 }
353
354 exit 0;
355
356 # map function passed to reg_import.
357 sub import_mapper
358 {
359     local $_ = shift;
360
361     my ($hivename, $path, $prefix) = map_path_to_hive ($_);
362
363     # Need to download this hive?
364     unless (-f "$tmpdir/$hivename") {
365         download_hive ($hivename);
366
367         my $h = Win::Hivex->open ("$tmpdir/$hivename",
368                                   write => 1, debug => $debug);
369         $hives{$hivename} = $h;
370     }
371
372     return ($hives{$hivename}, $path);
373 }
374
375 # Given a path, map that to the name of the hive and the true path
376 # within that hive.
377 sub map_path_to_hive
378 {
379     local $_ = shift;
380     my ($hivename, $prefix);
381
382     if (/^\\?(?:HKEY_LOCAL_MACHINE|HKLM)\\SAM(\\.*)?$/i) {
383         $hivename = "sam";
384         $_ = defined $1 ? $1 : "\\";
385         $prefix = "HKEY_LOCAL_MACHINE\\SAM";
386     }
387     elsif (/^\\?(?:HKEY_LOCAL_MACHINE|HKLM)\\SECURITY(\\.*)?$/i) {
388         $hivename = "security";
389         $_ = defined $1 ? $1 : "\\";
390         $prefix = "HKEY_LOCAL_MACHINE\\SECURITY";
391     }
392     elsif (/^\\?(?:HKEY_LOCAL_MACHINE|HKLM)\\SOFTWARE(\\.*)?$/i) {
393         $hivename = "software";
394         $_ = defined $1 ? $1 : "\\";
395         $prefix = "HKEY_LOCAL_MACHINE\\SOFTWARE";
396     }
397     elsif (/^\\?(?:HKEY_LOCAL_MACHINE|HKLM)\\SYSTEM(\\.*)?$/i) {
398         $hivename = "system";
399         $_ = defined $1 ? $1 : "\\";
400         $prefix = "HKEY_LOCAL_MACHINE\\SYSTEM";
401     }
402     elsif (/^\\?(?:HKEY_USERS|HKU)\\.DEFAULT(\\.*)?$/i) {
403         $hivename = "default";
404         $_ = defined $1 ? $1 : "\\";
405         $prefix = "HKEY_LOCAL_MACHINE\\.DEFAULT";
406     }
407     else {
408         die __x("virt-win-reg: {p}: not a supported Windows Registry path\n",
409                 p => $_)
410     }
411
412     return ($hivename, $_, $prefix);
413 }
414
415 # Download a named hive file.  Die on failure.
416 sub download_hive
417 {
418     local $_;
419     my $hivename = shift;
420
421     my $systemroot = $os->{root}->{systemroot} || "/windows";
422     my $winfile_before = "$systemroot/system32/config/$hivename";
423     my $winfile;
424     eval { $winfile = $g->case_sensitive_path ($winfile_before); };
425     if ($@) {
426         die __x("virt-win-reg: {p}: file not found in guest: {err}\n",
427                 p => $winfile_before, err => $@);
428     }
429
430     warn "downloading $winfile ..." if $debug;
431     eval { $g->download ($winfile, "$tmpdir/$hivename"); };
432     if ($@) {
433         die __x("virt-win-reg: {p}: could not download registry file: {err}\n",
434                 p => $winfile, err => $@);
435     }
436 }
437
438 # Upload a named hive file.  Die on failure.
439 sub upload_hive
440 {
441     local $_;
442     my $hivename = shift;
443
444     my $systemroot = $os->{root}->{systemroot} || "/windows";
445     my $winfile_before = "$systemroot/system32/config/$hivename";
446     my $winfile;
447     eval { $winfile = $g->case_sensitive_path ($winfile_before); };
448     if ($@) {
449         die __x("virt-win-reg: {p}: file not found in guest: {err}\n",
450                 p => $winfile_before, err => $@);
451     }
452
453     warn "uploading $winfile ..." if $debug;
454     eval { $g->upload ("$tmpdir/$hivename", $winfile); };
455     if ($@) {
456         die __x("virt-win-reg: {p}: could not upload registry file: {err}\n",
457                 p => $winfile, err => $@);
458     }
459 }
460
461 =head1 SEE ALSO
462
463 L<hivex(3)>,
464 L<hivexsh(1)>,
465 L<hivexregedit(1)>,
466 L<guestfs(3)>,
467 L<guestfish(1)>,
468 L<virt-cat(1)>,
469 L<Sys::Guestfs(3)>,
470 L<Sys::Guestfs::Lib(3)>,
471 L<Win::Hivex(3)>,
472 L<Win::Hivex::Regedit(3)>,
473 L<Sys::Virt(3)>,
474 L<http://libguestfs.org/>.
475
476 =head1 BUGS
477
478 When reporting bugs, please enable debugging and capture the
479 I<complete> output:
480
481  export LIBGUESTFS_DEBUG=1
482  virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1
483
484 Attach /tmp/virt-win-reg.log to a new bug report at
485 L<https://bugzilla.redhat.com/>
486
487 =head1 AUTHOR
488
489 Richard W.M. Jones L<http://people.redhat.com/~rjones/>
490
491 =head1 COPYRIGHT
492
493 Copyright (C) 2010 Red Hat Inc.
494
495 This program is free software; you can redistribute it and/or modify
496 it under the terms of the GNU General Public License as published by
497 the Free Software Foundation; either version 2 of the License, or
498 (at your option) any later version.
499
500 This program is distributed in the hope that it will be useful,
501 but WITHOUT ANY WARRANTY; without even the implied warranty of
502 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
503 GNU General Public License for more details.
504
505 You should have received a copy of the GNU General Public License
506 along with this program; if not, write to the Free Software
507 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.