diff options
author | Richard Jones <rjones@redhat.com> | 2009-04-20 15:13:34 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-04-20 15:13:34 +0100 |
commit | 11350529fee2dbbcfda333bbe10d72f023dc2109 (patch) | |
tree | 756f65a8b8eef4389f9cf3a8dca1f41aa4aced25 /daemon/daemon.h | |
parent | feb188d27787c595f12507ce5bff5431c4932523 (diff) | |
download | libguestfs-11350529fee2dbbcfda333bbe10d72f023dc2109.tar.gz libguestfs-11350529fee2dbbcfda333bbe10d72f023dc2109.tar.xz libguestfs-11350529fee2dbbcfda333bbe10d72f023dc2109.zip |
Various fixes to the daemon:
- make sure SIGPIPE doesn't kill us
- warn not to use macros in FileIn functions
- add shell_quote function
Diffstat (limited to 'daemon/daemon.h')
-rw-r--r-- | daemon/daemon.h | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/daemon/daemon.h b/daemon/daemon.h index bd14b121..3f51056a 100644 --- a/daemon/daemon.h +++ b/daemon/daemon.h @@ -44,6 +44,8 @@ extern int command (char **stdoutput, char **stderror, const char *name, ...); extern int commandv (char **stdoutput, char **stderror, char * const* const argv); +extern int shell_quote (char *out, int len, const char *in); + extern int verbose; /*-- in proto.c --*/ @@ -90,7 +92,9 @@ extern void send_file_end (int cancel); /* only call this if there is a FileOut parameter */ extern void reply (xdrproc_t xdrp, char *ret); -/* Helper for functions that need a root filesystem mounted. */ +/* Helper for functions that need a root filesystem mounted. + * NB. Cannot be used for FileIn functions. + */ #define NEED_ROOT(errcode) \ do { \ if (!root_mounted) { \ @@ -100,7 +104,9 @@ extern void reply (xdrproc_t xdrp, char *ret); } \ while (0) -/* Helper for functions that need an argument ("path") that is absolute. */ +/* Helper for functions that need an argument ("path") that is absolute. + * NB. Cannot be used for FileIn functions. + */ #define ABS_PATH(path,errcode) \ do { \ if ((path)[0] != '/') { \ @@ -109,7 +115,9 @@ extern void reply (xdrproc_t xdrp, char *ret); } \ } while (0) -/* Helper for functions that need an argument ("path") that is a device. */ +/* Helper for functions that need an argument ("path") that is a device. + * NB. Cannot be used for FileIn functions. + */ #define IS_DEVICE(path,errcode) \ do { \ struct stat statbuf; \ @@ -125,6 +133,7 @@ extern void reply (xdrproc_t xdrp, char *ret); /* Helper for functions which need either an absolute path in the * mounted filesystem, OR a /dev/ device which exists. + * NB. Cannot be used for FileIn functions. */ #define NEED_ROOT_OR_IS_DEVICE(path,errcode) \ do { \ @@ -147,7 +156,9 @@ extern void reply (xdrproc_t xdrp, char *ret); #define CHROOT_OUT \ do { int old_errno = errno; chroot ("."); errno = old_errno; } while (0) -/* Marks functions which are not implemented. */ +/* Marks functions which are not implemented. + * NB. Cannot be used for FileIn functions. + */ #define XXX_NOT_IMPL(errcode) \ do { \ reply_with_error ("%s: function not implemented", __func__); \ |