daemon error handling: Define a new function reply_with_perror_errno.
[libguestfs.git] / daemon / daemon.h
1 /* libguestfs - the guestfsd daemon
2  * Copyright (C) 2009 Red Hat Inc.
3  *
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.
8  *
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.
13  *
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.
17  */
18
19 #ifndef GUESTFSD_DAEMON_H
20 #define GUESTFSD_DAEMON_H
21
22 #include <stdio.h>
23 #include <stdarg.h>
24 #include <errno.h>
25 #include <unistd.h>
26
27 #include <rpc/types.h>
28 #include <rpc/xdr.h>
29
30 #include "../src/guestfs_protocol.h"
31
32 /*-- in guestfsd.c --*/
33 extern int verbose;
34
35 extern const char *sysroot;
36 extern int sysroot_len;
37
38 extern char *sysroot_path (const char *path);
39
40 extern int xwrite (int sock, const void *buf, size_t len)
41   __attribute__((__warn_unused_result__));
42 extern int xread (int sock, void *buf, size_t len)
43   __attribute__((__warn_unused_result__));
44
45 extern int add_string (char ***argv, int *size, int *alloc, const char *str);
46 extern int count_strings (char *const *argv);
47 extern void sort_strings (char **argv, int len);
48 extern void free_strings (char **argv);
49 extern void free_stringslen (char **argv, int len);
50
51 #define command(out,err,name,...) commandf((out),(err),0,(name),__VA_ARGS__)
52 #define commandr(out,err,name,...) commandrf((out),(err),0,(name),__VA_ARGS__)
53 #define commandv(out,err,argv) commandvf((out),(err),0,(argv))
54 #define commandrv(out,err,argv) commandrvf((out),(err),0,(argv))
55
56 #define COMMAND_FLAG_FOLD_STDOUT_ON_STDERR 1
57
58 extern int commandf (char **stdoutput, char **stderror, int flags,
59                      const char *name, ...);
60 extern int commandrf (char **stdoutput, char **stderror, int flags,
61                       const char *name, ...);
62 extern int commandvf (char **stdoutput, char **stderror, int flags,
63                       char const *const *argv);
64 extern int commandrvf (char **stdoutput, char **stderror, int flags,
65                        char const* const *argv);
66
67 extern char **split_lines (char *str);
68
69 extern int device_name_translation (char *device, const char *func);
70
71 extern void udev_settle (void);
72
73 /* This just stops gcc from giving a warning about our custom
74  * printf formatters %Q and %R.  See HACKING file for more
75  * info about these.
76  */
77 static inline int
78 asprintf_nowarn (char **strp, const char *fmt, ...)
79 {
80   int r;
81   va_list args;
82
83   va_start (args, fmt);
84   r = vasprintf (strp, fmt, args);
85   va_end (args);
86   return r;
87 }
88
89 /*-- in names.c (auto-generated) --*/
90 extern const char *function_names[];
91
92 /*-- in proto.c --*/
93 extern int proc_nr;
94 extern int serial;
95
96 /*-- in mount.c --*/
97 extern int root_mounted;
98
99 /*-- in stubs.c (auto-generated) --*/
100 extern void dispatch_incoming_message (XDR *);
101 extern guestfs_int_lvm_pv_list *parse_command_line_pvs (void);
102 extern guestfs_int_lvm_vg_list *parse_command_line_vgs (void);
103 extern guestfs_int_lvm_lv_list *parse_command_line_lvs (void);
104
105 /*-- in optgroups.c (auto-generated) --*/
106 struct optgroup {
107   const char *group;            /* Name of the optional group. */
108   int (*available) (void);      /* Function to test availability. */
109 };
110 extern struct optgroup optgroups[];
111
112 /*-- in sync.c --*/
113 /* Use this as a replacement for sync(2). */
114 extern int sync_disks (void);
115
116 /*-- in proto.c --*/
117 extern void main_loop (int sock) __attribute__((noreturn));
118
119 /* ordinary daemon functions use these to indicate errors */
120 extern void reply_with_error (const char *fs, ...)
121   __attribute__((format (printf,1,2)));
122 extern void reply_with_perror_errno (int err, const char *fs, ...)
123   __attribute__((format (printf,2,3)));
124 #define reply_with_perror(...) reply_with_perror_errno(errno, __VA_ARGS__)
125
126 /* daemon functions that receive files (FileIn) should call
127  * receive_file for each FileIn parameter.
128  */
129 typedef int (*receive_cb) (void *opaque, const void *buf, int len);
130 extern int receive_file (receive_cb cb, void *opaque);
131
132 /* daemon functions that receive files (FileIn) can call this
133  * to cancel incoming transfers (eg. if there is a local error),
134  * but they MUST then call reply_with_*.
135  */
136 extern void cancel_receive (void);
137
138 /* daemon functions that return files (FileOut) should call
139  * reply, then send_file_* for each FileOut parameter.
140  * Note max write size if GUESTFS_MAX_CHUNK_SIZE.
141  */
142 extern int send_file_write (const void *buf, int len);
143 extern int send_file_end (int cancel);
144
145 /* only call this if there is a FileOut parameter */
146 extern void reply (xdrproc_t xdrp, char *ret);
147
148 /* Helper for functions that need a root filesystem mounted.
149  * NB. Cannot be used for FileIn functions.
150  */
151 #define NEED_ROOT(fail_stmt)                                            \
152   do {                                                                  \
153     if (!root_mounted) {                                                \
154       reply_with_error ("%s: you must call 'mount' first to mount the root filesystem", __func__); \
155       fail_stmt;                                                        \
156     }                                                                   \
157   }                                                                     \
158   while (0)
159
160 /* Helper for functions that need an argument ("path") that is absolute.
161  * NB. Cannot be used for FileIn functions.
162  */
163 #define ABS_PATH(path,fail_stmt)                                        \
164   do {                                                                  \
165     if ((path)[0] != '/') {                                             \
166       reply_with_error ("%s: path must start with a / character", __func__); \
167       fail_stmt;                                                        \
168     }                                                                   \
169   } while (0)
170
171 /* All functions that need an argument that is a device or partition name
172  * must call this macro.  It checks that the device exists and does
173  * device name translation (described in the guestfs(3) manpage).
174  * Note that the "path" argument may be modified.
175  *
176  * NB. Cannot be used for FileIn functions.
177  */
178 #define RESOLVE_DEVICE(path,fail_stmt)                                  \
179   do {                                                                  \
180     if (STRNEQLEN ((path), "/dev/", 5)) {                               \
181       reply_with_error ("%s: %s: expecting a device name", __func__, (path)); \
182       fail_stmt;                                                        \
183     }                                                                   \
184     if (device_name_translation ((path), __func__) == -1)               \
185       fail_stmt;                                                        \
186   } while (0)
187
188 /* Helper for functions which need either an absolute path in the
189  * mounted filesystem, OR a /dev/ device which exists.
190  *
191  * NB. Cannot be used for FileIn functions.
192  *
193  * NB #2: Functions which mix filenames and device paths should be
194  * avoided, and existing functions should be deprecated.  This is
195  * because we intend in future to make device parameters a distinct
196  * type from filenames.
197  */
198 #define REQUIRE_ROOT_OR_RESOLVE_DEVICE(path,fail_stmt)                  \
199   do {                                                                  \
200     if (STREQLEN ((path), "/dev/", 5))                                  \
201       RESOLVE_DEVICE ((path), fail_stmt);                               \
202     else {                                                              \
203       NEED_ROOT (fail_stmt);                                            \
204       ABS_PATH ((path),fail_stmt);                                      \
205     }                                                                   \
206   } while (0)
207
208 /* NB:
209  * (1) You must match CHROOT_IN and CHROOT_OUT even along error paths.
210  * (2) You must not change directory!  cwd must always be "/", otherwise
211  *     we can't escape our own chroot.
212  * (3) All paths specified must be absolute.
213  * (4) Neither macro affects errno.
214  */
215 #define CHROOT_IN                               \
216   do {                                          \
217     int __old_errno = errno;                    \
218     if (chroot (sysroot) == -1)                 \
219       perror ("CHROOT_IN: sysroot");            \
220     errno = __old_errno;                        \
221   } while (0)
222 #define CHROOT_OUT                              \
223   do {                                          \
224     int __old_errno = errno;                    \
225     if (chroot (".") == -1)                     \
226       perror ("CHROOT_OUT: .");                 \
227     errno = __old_errno;                        \
228   } while (0)
229
230 /* Marks functions which are not implemented.
231  * NB. Cannot be used for FileIn functions.
232  */
233 #define XXX_NOT_IMPL(errcode)                                           \
234   do {                                                                  \
235     reply_with_error ("%s: function not implemented", __func__);        \
236     return (errcode);                                                   \
237   }                                                                     \
238   while (0)
239
240 /* Marks functions which are not available.
241  * NB. Cannot be used for FileIn functions.
242  */
243 #define NOT_AVAILABLE(errcode)                                          \
244   do {                                                                  \
245     reply_with_error ("%s: function not available", __func__);          \
246     return (errcode);                                                   \
247   }                                                                     \
248   while (0)
249
250 #ifndef __attribute__
251 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8)
252 #  define __attribute__(x) /* empty */
253 # endif
254 #endif
255
256 #ifndef ATTRIBUTE_UNUSED
257 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
258 #endif
259
260 #define STREQ(a,b) (strcmp((a),(b)) == 0)
261 #define STRCASEEQ(a,b) (strcasecmp((a),(b)) == 0)
262 #define STRNEQ(a,b) (strcmp((a),(b)) != 0)
263 #define STRCASENEQ(a,b) (strcasecmp((a),(b)) != 0)
264 #define STREQLEN(a,b,n) (strncmp((a),(b),(n)) == 0)
265 #define STRCASEEQLEN(a,b,n) (strncasecmp((a),(b),(n)) == 0)
266 #define STRNEQLEN(a,b,n) (strncmp((a),(b),(n)) != 0)
267 #define STRCASENEQLEN(a,b,n) (strncasecmp((a),(b),(n)) != 0)
268 #define STRPREFIX(a,b) (strncmp((a),(b),strlen((b))) == 0)
269
270 #endif /* GUESTFSD_DAEMON_H */