2 * Copyright (C) 2009-2011 Red Hat Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library 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 GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 #ifndef GUESTFS_INTERNAL_H_
20 #define GUESTFS_INTERNAL_H_
22 #include <rpc/types.h>
27 #define STREQ(a,b) (strcmp((a),(b)) == 0)
28 #define STRCASEEQ(a,b) (strcasecmp((a),(b)) == 0)
29 #define STRNEQ(a,b) (strcmp((a),(b)) != 0)
30 #define STRCASENEQ(a,b) (strcasecmp((a),(b)) != 0)
31 #define STREQLEN(a,b,n) (strncmp((a),(b),(n)) == 0)
32 #define STRCASEEQLEN(a,b,n) (strncasecmp((a),(b),(n)) == 0)
33 #define STRNEQLEN(a,b,n) (strncmp((a),(b),(n)) != 0)
34 #define STRCASENEQLEN(a,b,n) (strncasecmp((a),(b),(n)) != 0)
35 #define STRPREFIX(a,b) (strncmp((a),(b),strlen((b))) == 0)
39 #define _(str) dgettext(PACKAGE, (str))
40 #define N_(str) dgettext(PACKAGE, (str))
48 /* NB: The 'name' parameter is a literal identifier, NOT a string! */
49 #define TRACE0(name) DTRACE_PROBE(guestfs, name)
50 #define TRACE1(name, arg1) \
51 DTRACE_PROBE(guestfs, name, (arg1))
52 #define TRACE2(name, arg1, arg2) \
53 DTRACE_PROBE(guestfs, name, (arg1), (arg2))
54 #define TRACE3(name, arg1, arg2, arg3) \
55 DTRACE_PROBE(guestfs, name, (arg1), (arg2), (arg3))
56 #define TRACE4(name, arg1, arg2, arg3, arg4) \
57 DTRACE_PROBE(guestfs, name, (arg1), (arg2), (arg3), (arg4))
60 #define TRACE1(name, arg1)
61 #define TRACE2(name, arg1, arg2)
62 #define TRACE3(name, arg1, arg2, arg3)
63 #define TRACE4(name, arg1, arg2, arg3, arg4)
66 #define TMP_TEMPLATE_ON_STACK(var) \
67 const char *ttos_tmpdir = guestfs_tmpdir (); \
68 char var[strlen (ttos_tmpdir) + 32]; \
69 sprintf (var, "%s/libguestfsXXXXXX", ttos_tmpdir) \
71 #define UNIX_PATH_MAX 108
74 #define MAX(a,b) ((a)>(b)?(a):(b))
78 #define xdr_uint32_t xdr_u_int32_t
81 /* Some limits on what the inspection code will read, for safety. */
83 /* Small text configuration files.
85 * The upper limit is for general files that we grep or download. The
86 * largest such file is probably "txtsetup.sif" from Windows CDs
87 * (~500K). This number has to be larger than any legitimate file and
88 * smaller than the protocol message size.
90 * The lower limit is for files parsed by Augeas on the daemon side,
91 * where Augeas is running in reduced memory and can potentially
92 * create a lot of metadata so we really need to be careful about
95 #define MAX_SMALL_FILE_SIZE (2 * 1000 * 1000)
96 #define MAX_AUGEAS_FILE_SIZE (100 * 1000)
98 /* Maximum Windows Registry hive that we will download to /tmp. Some
99 * registries can be legitimately very large.
101 #define MAX_REGISTRY_SIZE (100 * 1000 * 1000)
103 /* Maximum RPM or dpkg database we will download to /tmp. RPM
104 * 'Packages' database can get very large: 70 MB is roughly the
105 * standard size for a new Fedora install, and after lots of package
106 * installation/removal I have seen well over 100 MB databases.
108 #define MAX_PKG_DB_SIZE (300 * 1000 * 1000)
110 /* Maximum size of Windows explorer.exe. 2.6MB on Windows 7. */
111 #define MAX_WINDOWS_EXPLORER_SIZE (4 * 1000 * 1000)
113 /* Network configuration of the appliance. Note these addresses are
114 * only meaningful within the context of the running appliance. QEMU
115 * translates network connections to these magic addresses into
116 * userspace calls on the host (eg. connect(2)). qemu-doc has a nice
117 * diagram which is also useful to refer to.
119 * NETWORK: The network.
121 * ROUTER: The address of the "host", ie. this library.
123 * [Note: If you change NETWORK and ROUTER then you also have to
124 * change the network configuration in appliance/init].
126 * GUESTFWD_ADDR, GUESTFWD_PORT: The guestfwd feature of qemu
127 * magically connects this pseudo-address to the guestfwd channel. In
128 * typical Linux configurations of libguestfs, guestfwd is not
129 * actually used any more.
131 #define NETWORK "169.254.0.0/16"
132 #define ROUTER "169.254.2.2"
134 /* GuestFS handle and connection. */
135 enum state { CONFIG, LAUNCHING, READY, BUSY, NO_HANDLE };
138 enum attach_method { ATTACH_METHOD_APPLIANCE = 0, ATTACH_METHOD_UNIX };
142 uint64_t event_bitmask;
143 guestfs_event_callback cb;
146 /* opaque2 is not exposed through the API, but is used internally to
147 * emulate the old-style callback API.
154 struct guestfs_h *next; /* Linked list of open handles. */
156 /* State: see the state machine diagram in the man page guestfs(3). */
159 int fd[2]; /* Stdin/stdout of qemu. */
160 int sock; /* Daemon communications socket. */
161 pid_t pid; /* Qemu PID. */
162 pid_t recoverypid; /* Recovery process PID. */
164 struct timeval launch_t; /* The time that we called guestfs_launch. */
166 char *tmpdir; /* Temporary directory containing socket. */
168 char *qemu_help, *qemu_version; /* Output of qemu -help, qemu -version. */
170 char **cmdline; /* Qemu command line. */
180 char *path; /* Path to kernel, initrd. */
181 char *qemu; /* Qemu binary. */
182 char *append; /* Append to kernel command line. */
184 enum attach_method attach_method;
185 char *attach_method_arg;
187 int memsize; /* Size of RAM (megabytes). */
189 int selinux; /* selinux enabled? */
191 int pgroup; /* Create process group for children? */
193 int smp; /* If > 1, -smp flag passed to qemu. */
196 int last_errnum; /* errno, or 0 if there was no errno */
199 guestfs_abort_cb abort_cb;
200 guestfs_error_handler_cb error_cb;
201 void * error_cb_data;
204 struct event *events;
209 /* Information gathered by inspect_os. Must be freed by calling
210 * guestfs___free_inspect_info.
212 struct inspect_fs *fses;
215 /* Private data area. */
216 struct hash_table *pda;
217 struct pda_entry *pda_next;
219 /* Used by src/actions.c:trace_* functions. */
224 /* User cancelled transfer. Not signal-atomic, but it doesn't
225 * matter for this case because we only care if it is != 0.
230 /* Per-filesystem data stored for inspect_os. */
231 enum inspect_fs_content {
232 FS_CONTENT_UNKNOWN = 0,
233 FS_CONTENT_LINUX_ROOT,
234 FS_CONTENT_WINDOWS_ROOT,
235 FS_CONTENT_WINDOWS_VOLUME_WITH_APPS,
236 FS_CONTENT_WINDOWS_VOLUME,
237 FS_CONTENT_LINUX_BOOT,
238 FS_CONTENT_LINUX_USR,
239 FS_CONTENT_LINUX_USR_LOCAL,
240 FS_CONTENT_LINUX_VAR,
241 FS_CONTENT_FREEBSD_ROOT,
242 FS_CONTENT_NETBSD_ROOT,
243 FS_CONTENT_INSTALLER,
246 enum inspect_os_format {
247 OS_FORMAT_UNKNOWN = 0,
250 /* in future: supplemental disks */
253 enum inspect_os_type {
261 enum inspect_os_distro {
262 OS_DISTRO_UNKNOWN = 0,
265 OS_DISTRO_REDHAT_BASED,
273 OS_DISTRO_LINUX_MINT,
277 OS_DISTRO_SCIENTIFIC_LINUX,
283 enum inspect_os_package_format {
284 OS_PACKAGE_FORMAT_UNKNOWN = 0,
285 OS_PACKAGE_FORMAT_RPM,
286 OS_PACKAGE_FORMAT_DEB,
287 OS_PACKAGE_FORMAT_PACMAN,
288 OS_PACKAGE_FORMAT_EBUILD,
289 OS_PACKAGE_FORMAT_PISI,
290 OS_PACKAGE_FORMAT_PKGSRC,
293 enum inspect_os_package_management {
294 OS_PACKAGE_MANAGEMENT_UNKNOWN = 0,
295 OS_PACKAGE_MANAGEMENT_YUM,
296 OS_PACKAGE_MANAGEMENT_UP2DATE,
297 OS_PACKAGE_MANAGEMENT_APT,
298 OS_PACKAGE_MANAGEMENT_PACMAN,
299 OS_PACKAGE_MANAGEMENT_PORTAGE,
300 OS_PACKAGE_MANAGEMENT_PISI,
301 OS_PACKAGE_MANAGEMENT_URPMI,
302 OS_PACKAGE_MANAGEMENT_ZYPPER,
310 enum inspect_fs_content content;
311 enum inspect_os_type type;
312 enum inspect_os_distro distro;
313 enum inspect_os_package_format package_format;
314 enum inspect_os_package_management package_management;
316 char *product_variant;
321 char *windows_systemroot;
322 char *windows_current_control_set;
323 char **drive_mappings;
324 enum inspect_os_format format;
327 int is_multipart_disk;
328 struct inspect_fstab_entry *fstab;
332 struct inspect_fstab_entry {
337 struct guestfs_message_header;
338 struct guestfs_message_error;
339 struct guestfs_progress;
341 extern void guestfs_error (guestfs_h *g, const char *fs, ...)
342 __attribute__((format (printf,2,3)));
343 extern void guestfs_error_errno (guestfs_h *g, int errnum, const char *fs, ...)
344 __attribute__((format (printf,3,4)));
345 extern void guestfs_perrorf (guestfs_h *g, const char *fs, ...)
346 __attribute__((format (printf,2,3)));
347 extern void *guestfs_safe_realloc (guestfs_h *g, void *ptr, int nbytes);
348 extern char *guestfs_safe_strdup (guestfs_h *g, const char *str);
349 extern char *guestfs_safe_strndup (guestfs_h *g, const char *str, size_t n);
350 extern void *guestfs_safe_memdup (guestfs_h *g, void *ptr, size_t size);
351 extern char *guestfs_safe_asprintf (guestfs_h *g, const char *fs, ...)
352 __attribute__((format (printf,2,3)));
353 extern void guestfs___warning (guestfs_h *g, const char *fs, ...)
354 __attribute__((format (printf,2,3)));
355 extern void guestfs___debug (guestfs_h *g, const char *fs, ...)
356 __attribute__((format (printf,2,3)));
357 extern void guestfs___trace (guestfs_h *g, const char *fs, ...)
358 __attribute__((format (printf,2,3)));
359 extern const char *guestfs___persistent_tmpdir (void);
360 extern void guestfs___print_timestamped_message (guestfs_h *g, const char *fs, ...);
361 extern void guestfs___free_inspect_info (guestfs_h *g);
362 extern int guestfs___set_busy (guestfs_h *g);
363 extern int guestfs___end_busy (guestfs_h *g);
364 extern int guestfs___send (guestfs_h *g, int proc_nr, uint64_t progress_hint, uint64_t optargs_bitmask, xdrproc_t xdrp, char *args);
365 extern int guestfs___recv (guestfs_h *g, const char *fn, struct guestfs_message_header *hdr, struct guestfs_message_error *err, xdrproc_t xdrp, char *ret);
366 extern int guestfs___recv_discard (guestfs_h *g, const char *fn);
367 extern int guestfs___send_file (guestfs_h *g, const char *filename);
368 extern int guestfs___recv_file (guestfs_h *g, const char *filename);
369 extern int guestfs___send_to_daemon (guestfs_h *g, const void *v_buf, size_t n);
370 extern int guestfs___recv_from_daemon (guestfs_h *g, uint32_t *size_rtn, void **buf_rtn);
371 extern int guestfs___accept_from_daemon (guestfs_h *g);
372 extern void guestfs___progress_message_callback (guestfs_h *g, const struct guestfs_progress *message);
373 extern int guestfs___build_appliance (guestfs_h *g, char **kernel, char **initrd, char **appliance);
374 extern void guestfs___launch_send_progress (guestfs_h *g, int perdozen);
375 extern void guestfs___print_BufferIn (FILE *out, const char *buf, size_t buf_size);
376 extern void guestfs___print_BufferOut (FILE *out, const char *buf, size_t buf_size);
377 extern int guestfs___match (guestfs_h *g, const char *str, const pcre *re);
378 extern char *guestfs___match1 (guestfs_h *g, const char *str, const pcre *re);
379 extern int guestfs___match2 (guestfs_h *g, const char *str, const pcre *re, char **ret1, char **ret2);
380 extern int guestfs___match3 (guestfs_h *g, const char *str, const pcre *re, char **ret1, char **ret2, char **ret3);
381 extern int guestfs___feature_available (guestfs_h *g, const char *feature);
382 extern void guestfs___free_string_list (char **);
383 extern size_t guestfs___checkpoint_cmdline (guestfs_h *g);
384 extern void guestfs___rollback_cmdline (guestfs_h *g, size_t pos);
385 extern void guestfs___call_callbacks_void (guestfs_h *g, uint64_t event);
386 extern void guestfs___call_callbacks_message (guestfs_h *g, uint64_t event, const char *buf, size_t buf_len);
387 extern void guestfs___call_callbacks_array (guestfs_h *g, uint64_t event, const uint64_t *array, size_t array_len);
388 extern int guestfs___is_file_nocase (guestfs_h *g, const char *);
389 extern int guestfs___is_dir_nocase (guestfs_h *g, const char *);
390 #if defined(HAVE_HIVEX)
391 extern int guestfs___check_for_filesystem_on (guestfs_h *g, const char *device, int is_block, int is_partnum);
392 extern char *guestfs___download_to_tmp (guestfs_h *g, struct inspect_fs *fs, const char *filename, const char *basename, int64_t max_size);
393 extern char *guestfs___case_sensitive_path_silently (guestfs_h *g, const char *);
394 extern struct inspect_fs *guestfs___search_for_root (guestfs_h *g, const char *root);
395 extern int guestfs___parse_unsigned_int (guestfs_h *g, const char *str);
396 extern int guestfs___parse_unsigned_int_ignore_trailing (guestfs_h *g, const char *str);
397 extern int guestfs___parse_major_minor (guestfs_h *g, struct inspect_fs *fs);
398 extern char *guestfs___first_line_of_file (guestfs_h *g, const char *filename);
399 extern int guestfs___first_egrep_of_file (guestfs_h *g, const char *filename, const char *eregex, int iflag, char **ret);
400 typedef int (*guestfs___db_dump_callback) (guestfs_h *g, const unsigned char *key, size_t keylen, const unsigned char *value, size_t valuelen, void *opaque);
401 extern int guestfs___read_db_dump (guestfs_h *g, const char *dumpfile, void *opaque, guestfs___db_dump_callback callback);
402 extern int guestfs___check_installer_root (guestfs_h *g, struct inspect_fs *fs);
403 extern int guestfs___check_linux_root (guestfs_h *g, struct inspect_fs *fs);
404 extern int guestfs___check_freebsd_root (guestfs_h *g, struct inspect_fs *fs);
405 extern int guestfs___check_netbsd_root (guestfs_h *g, struct inspect_fs *fs);
406 extern int guestfs___has_windows_systemroot (guestfs_h *g);
407 extern int guestfs___check_windows_root (guestfs_h *g, struct inspect_fs *fs);
410 #define error(g,...) guestfs_error_errno((g),0,__VA_ARGS__)
411 #define perrorf guestfs_perrorf
412 #define warning(g,...) guestfs___warning((g),__VA_ARGS__)
413 #define debug(g,...) \
414 do { if ((g)->verbose) guestfs___debug ((g),__VA_ARGS__); } while (0)
415 #define safe_calloc guestfs_safe_calloc
416 #define safe_malloc guestfs_safe_malloc
417 #define safe_realloc guestfs_safe_realloc
418 #define safe_strdup guestfs_safe_strdup
419 #define safe_strndup guestfs_safe_strndup
420 #define safe_memdup guestfs_safe_memdup
421 #define safe_asprintf guestfs_safe_asprintf
422 #define match guestfs___match
423 #define match1 guestfs___match1
424 #define match2 guestfs___match2
425 #define match3 guestfs___match3
427 #endif /* GUESTFS_INTERNAL_H_ */