2 * Copyright (C) 2009-2010 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 #define STREQ(a,b) (strcmp((a),(b)) == 0)
23 #define STRCASEEQ(a,b) (strcasecmp((a),(b)) == 0)
24 #define STRNEQ(a,b) (strcmp((a),(b)) != 0)
25 #define STRCASENEQ(a,b) (strcasecmp((a),(b)) != 0)
26 #define STREQLEN(a,b,n) (strncmp((a),(b),(n)) == 0)
27 #define STRCASEEQLEN(a,b,n) (strncasecmp((a),(b),(n)) == 0)
28 #define STRNEQLEN(a,b,n) (strncmp((a),(b),(n)) != 0)
29 #define STRCASENEQLEN(a,b,n) (strncasecmp((a),(b),(n)) != 0)
30 #define STRPREFIX(a,b) (strncmp((a),(b),strlen((b))) == 0)
34 #define _(str) dgettext(PACKAGE, (str))
35 #define N_(str) dgettext(PACKAGE, (str))
41 #define TMP_TEMPLATE_ON_STACK(var) \
42 const char *ttos_tmpdir = guestfs_tmpdir (); \
43 char var[strlen (ttos_tmpdir) + 32]; \
44 sprintf (var, "%s/libguestfsXXXXXX", ttos_tmpdir) \
46 #define UNIX_PATH_MAX 108
49 #define MAX(a,b) ((a)>(b)?(a):(b))
53 #define xdr_uint32_t xdr_u_int32_t
56 /* Network configuration of the appliance. Note these addresses are
57 * only meaningful within the context of the running appliance. QEMU
58 * translates network connections to these magic addresses into
59 * userspace calls on the host (eg. connect(2)). qemu-doc has a nice
60 * diagram which is also useful to refer to.
62 * NETWORK: The network.
64 * ROUTER: The address of the "host", ie. this library.
66 * [Note: If you change NETWORK and ROUTER then you also have to
67 * change the network configuration in appliance/init].
69 * GUESTFWD_ADDR, GUESTFWD_PORT: The guestfwd feature of qemu
70 * magically connects this pseudo-address to the guestfwd channel. In
71 * typical Linux configurations of libguestfs, guestfwd is not
72 * actually used any more.
74 #define NETWORK "169.254.0.0/16"
75 #define ROUTER "169.254.2.2"
77 /* GuestFS handle and connection. */
78 enum state { CONFIG, LAUNCHING, READY, BUSY, NO_HANDLE };
82 struct guestfs_h *next; /* Linked list of open handles. */
84 /* State: see the state machine diagram in the man page guestfs(3). */
87 int fd[2]; /* Stdin/stdout of qemu. */
88 int sock; /* Daemon communications socket. */
89 pid_t pid; /* Qemu PID. */
90 pid_t recoverypid; /* Recovery process PID. */
92 struct timeval launch_t; /* The time that we called guestfs_launch. */
94 char *tmpdir; /* Temporary directory containing socket. */
96 char *qemu_help, *qemu_version; /* Output of qemu -help, qemu -version. */
98 char **cmdline; /* Qemu command line. */
108 char *path; /* Path to kernel, initrd. */
109 char *qemu; /* Qemu binary. */
110 char *append; /* Append to kernel command line. */
112 int memsize; /* Size of RAM (megabytes). */
114 int selinux; /* selinux enabled? */
117 int last_errnum; /* errno, or 0 if there was no errno */
120 guestfs_abort_cb abort_cb;
121 guestfs_error_handler_cb error_cb;
122 void * error_cb_data;
123 guestfs_log_message_cb log_message_cb;
124 void * log_message_cb_data;
125 guestfs_subprocess_quit_cb subprocess_quit_cb;
126 void * subprocess_quit_cb_data;
127 guestfs_launch_done_cb launch_done_cb;
128 void * launch_done_cb_data;
129 guestfs_close_cb close_cb;
130 void * close_cb_data;
131 guestfs_progress_cb progress_cb;
132 void * progress_cb_data;
136 /* Information gathered by inspect_os. Must be freed by calling
137 * guestfs___free_inspect_info.
139 struct inspect_fs *fses;
142 /* Private data area. */
143 struct hash_table *pda;
146 /* Per-filesystem data stored for inspect_os. */
147 enum inspect_fs_content {
148 FS_CONTENT_UNKNOWN = 0,
149 FS_CONTENT_LINUX_ROOT,
150 FS_CONTENT_WINDOWS_ROOT,
151 FS_CONTENT_LINUX_BOOT,
152 FS_CONTENT_LINUX_USR,
153 FS_CONTENT_LINUX_USR_LOCAL,
154 FS_CONTENT_LINUX_VAR,
157 enum inspect_os_type {
163 enum inspect_os_distro {
164 OS_DISTRO_UNKNOWN = 0,
167 OS_DISTRO_REDHAT_BASED,
182 enum inspect_fs_content content;
183 enum inspect_os_type type;
184 enum inspect_os_distro distro;
189 char *windows_systemroot;
190 struct inspect_fstab_entry *fstab;
194 struct inspect_fstab_entry {
199 struct guestfs_message_header;
200 struct guestfs_message_error;
202 extern void guestfs_error (guestfs_h *g, const char *fs, ...)
203 __attribute__((format (printf,2,3)));
204 extern void guestfs_error_errno (guestfs_h *g, int errnum, const char *fs, ...)
205 __attribute__((format (printf,3,4)));
206 extern void guestfs_perrorf (guestfs_h *g, const char *fs, ...)
207 __attribute__((format (printf,2,3)));
208 extern void *guestfs_safe_realloc (guestfs_h *g, void *ptr, int nbytes);
209 extern char *guestfs_safe_strdup (guestfs_h *g, const char *str);
210 extern char *guestfs_safe_strndup (guestfs_h *g, const char *str, size_t n);
211 extern void *guestfs_safe_memdup (guestfs_h *g, void *ptr, size_t size);
212 extern void guestfs___print_timestamped_argv (guestfs_h *g, const char *argv[]);
213 extern void guestfs___print_timestamped_message (guestfs_h *g, const char *fs, ...);
214 extern void guestfs___free_inspect_info (guestfs_h *g);
215 extern int guestfs___set_busy (guestfs_h *g);
216 extern int guestfs___end_busy (guestfs_h *g);
217 extern int guestfs___send (guestfs_h *g, int proc_nr, xdrproc_t xdrp, char *args);
218 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);
219 extern int guestfs___send_file (guestfs_h *g, const char *filename);
220 extern int guestfs___recv_file (guestfs_h *g, const char *filename);
221 extern int guestfs___send_to_daemon (guestfs_h *g, const void *v_buf, size_t n);
222 extern int guestfs___recv_from_daemon (guestfs_h *g, uint32_t *size_rtn, void **buf_rtn);
223 extern int guestfs___accept_from_daemon (guestfs_h *g);
224 extern int guestfs___build_appliance (guestfs_h *g, char **kernel, char **initrd, char **appliance);
225 extern void guestfs___print_BufferIn (FILE *out, const char *buf, size_t buf_size);
227 #define error(g,...) guestfs_error_errno((g),0,__VA_ARGS__)
228 #define perrorf guestfs_perrorf
229 #define safe_calloc guestfs_safe_calloc
230 #define safe_malloc guestfs_safe_malloc
231 #define safe_realloc guestfs_safe_realloc
232 #define safe_strdup guestfs_safe_strdup
233 #define safe_strndup guestfs_safe_strndup
234 #define safe_memdup guestfs_safe_memdup
236 #endif /* GUESTFS_INTERNAL_H_ */