1 /* libguestfs - the guestfsd daemon
2 * Copyright (C) 2009 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 along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #ifndef GUESTFSD_DAEMON_H
20 #define GUESTFSD_DAEMON_H
26 #include <rpc/types.h>
29 #include "../src/guestfs_protocol.h"
31 /*-- in guestfsd.c --*/
34 extern const char *sysroot;
35 extern int sysroot_len;
37 extern char *sysroot_path (const char *path);
39 extern int xwrite (int sock, const void *buf, size_t len);
40 extern int xread (int sock, void *buf, size_t len);
42 extern int add_string (char ***argv, int *size, int *alloc, const char *str);
43 extern int count_strings (char * const* const argv);
44 extern void sort_strings (char **argv, int len);
45 extern void free_strings (char **argv);
46 extern void free_stringslen (char **argv, int len);
48 extern int command (char **stdoutput, char **stderror, const char *name, ...);
49 extern int commandr (char **stdoutput, char **stderror, const char *name, ...);
50 extern int commandv (char **stdoutput, char **stderror,
51 char * const* const argv);
52 extern int commandrv (char **stdoutput, char **stderror,
53 char * const* const argv);
55 extern char **split_lines (char *str);
57 extern int device_name_translation (char *device, const char *func);
59 extern void udev_settle (void);
61 /* This just stops gcc from giving a warning about our custom
62 * printf formatters %Q and %R. See HACKING file for more
66 asprintf_nowarn (char **strp, const char *fmt, ...)
72 r = vasprintf (strp, fmt, args);
77 /*-- in names.c (auto-generated) --*/
78 extern const char *function_names[];
85 extern int root_mounted;
87 /*-- in stubs.c (auto-generated) --*/
88 extern void dispatch_incoming_message (XDR *);
89 extern guestfs_int_lvm_pv_list *parse_command_line_pvs (void);
90 extern guestfs_int_lvm_vg_list *parse_command_line_vgs (void);
91 extern guestfs_int_lvm_lv_list *parse_command_line_lvs (void);
94 extern void main_loop (int sock);
96 /* ordinary daemon functions use these to indicate errors */
97 extern void reply_with_error (const char *fs, ...)
98 __attribute__((format (printf,1,2)));
99 extern void reply_with_perror (const char *fs, ...)
100 __attribute__((format (printf,1,2)));
102 /* daemon functions that receive files (FileIn) should call
103 * receive_file for each FileIn parameter.
105 typedef int (*receive_cb) (void *opaque, const void *buf, int len);
106 extern int receive_file (receive_cb cb, void *opaque);
108 /* daemon functions that receive files (FileIn) can call this
109 * to cancel incoming transfers (eg. if there is a local error),
110 * but they MUST then call reply_with_error or reply_with_perror.
112 extern void cancel_receive (void);
114 /* daemon functions that return files (FileOut) should call
115 * reply, then send_file_* for each FileOut parameter.
116 * Note max write size if GUESTFS_MAX_CHUNK_SIZE.
118 extern int send_file_write (const void *buf, int len);
119 extern void send_file_end (int cancel);
121 /* only call this if there is a FileOut parameter */
122 extern void reply (xdrproc_t xdrp, char *ret);
124 /* Helper for functions that need a root filesystem mounted.
125 * NB. Cannot be used for FileIn functions.
127 #define NEED_ROOT(fail_stmt) \
129 if (!root_mounted) { \
130 reply_with_error ("%s: you must call 'mount' first to mount the root filesystem", __func__); \
136 /* Helper for functions that need an argument ("path") that is absolute.
137 * NB. Cannot be used for FileIn functions.
139 #define ABS_PATH(path,fail_stmt) \
141 if ((path)[0] != '/') { \
142 reply_with_error ("%s: path must start with a / character", __func__); \
147 /* All functions that need an argument that is a device or partition name
148 * must call this macro. It checks that the device exists and does
149 * device name translation (described in the guestfs(3) manpage).
150 * Note that the "path" argument may be modified.
152 * NB. Cannot be used for FileIn functions.
154 #define RESOLVE_DEVICE(path,fail_stmt) \
156 if (strncmp ((path), "/dev/", 5) != 0) { \
157 reply_with_error ("%s: %s: expecting a device name", __func__, (path)); \
160 if (device_name_translation ((path), __func__) == -1) \
164 /* Helper for functions which need either an absolute path in the
165 * mounted filesystem, OR a /dev/ device which exists.
167 * NB. Cannot be used for FileIn functions.
169 * NB #2: Functions which mix filenames and device paths should be
170 * avoided, and existing functions should be deprecated. This is
171 * because we intend in future to make device parameters a distinct
172 * type from filenames.
174 #define REQUIRE_ROOT_OR_RESOLVE_DEVICE(path,fail_stmt) \
176 if (strncmp ((path), "/dev/", 5) == 0) \
177 RESOLVE_DEVICE ((path), fail_stmt); \
179 NEED_ROOT (fail_stmt); \
180 ABS_PATH ((path),fail_stmt); \
185 * (1) You must match CHROOT_IN and CHROOT_OUT even along error paths.
186 * (2) You must not change directory! cwd must always be "/", otherwise
187 * we can't escape our own chroot.
188 * (3) All paths specified must be absolute.
189 * (4) Neither macro affects errno.
193 int __old_errno = errno; \
194 if (chroot (sysroot) == -1) \
195 perror ("CHROOT_IN: sysroot"); \
196 errno = __old_errno; \
200 int __old_errno = errno; \
201 if (chroot (".") == -1) \
202 perror ("CHROOT_OUT: ."); \
203 errno = __old_errno; \
206 /* Marks functions which are not implemented.
207 * NB. Cannot be used for FileIn functions.
209 #define XXX_NOT_IMPL(errcode) \
211 reply_with_error ("%s: function not implemented", __func__); \
216 #ifndef __attribute__
217 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8)
218 # define __attribute__(x) /* empty */
222 #ifndef ATTRIBUTE_UNUSED
223 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
226 #endif /* GUESTFSD_DAEMON_H */