2010-10-19 14:23:51 +00:00
|
|
|
/*
|
2011-07-19 18:32:58 +00:00
|
|
|
* virfile.h: safer file handling
|
2010-10-19 14:23:51 +00:00
|
|
|
*
|
2011-07-19 18:17:22 +00:00
|
|
|
* Copyright (C) 2010-2011 Red Hat, Inc.
|
2010-10-19 14:23:51 +00:00
|
|
|
* Copyright (C) 2010 IBM Corporation
|
|
|
|
* Copyright (C) 2010 Stefan Berger
|
|
|
|
* Copyright (C) 2010 Eric Blake
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2010-10-19 14:23:51 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __VIR_FILES_H_
|
|
|
|
# define __VIR_FILES_H_
|
|
|
|
|
2010-11-17 02:13:29 +00:00
|
|
|
# include <stdio.h>
|
2010-10-19 14:23:51 +00:00
|
|
|
|
|
|
|
# include "internal.h"
|
|
|
|
|
2012-06-07 13:16:50 +00:00
|
|
|
typedef enum virFileCloseFlags {
|
|
|
|
VIR_FILE_CLOSE_PRESERVE_ERRNO = 1 << 0,
|
|
|
|
VIR_FILE_CLOSE_IGNORE_EBADF = 1 << 1,
|
|
|
|
VIR_FILE_CLOSE_DONT_LOG = 1 << 2,
|
|
|
|
} virFileCloseFlags;
|
2010-10-19 14:23:51 +00:00
|
|
|
|
2010-11-17 02:13:29 +00:00
|
|
|
/* Don't call these directly - use the macros below */
|
2012-06-07 13:16:50 +00:00
|
|
|
int virFileClose(int *fdptr, virFileCloseFlags flags)
|
2012-05-30 13:54:18 +00:00
|
|
|
ATTRIBUTE_RETURN_CHECK;
|
2011-07-19 18:32:58 +00:00
|
|
|
int virFileFclose(FILE **file, bool preserve_errno) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
FILE *virFileFdopen(int *fdptr, const char *mode) ATTRIBUTE_RETURN_CHECK;
|
2010-10-19 14:23:51 +00:00
|
|
|
|
|
|
|
/* For use on normal paths; caller must check return value,
|
maint: reject raw close, popen in 'make syntax-check'
commit f1fe9671e was supposed to make sure we use files.h
macros to avoid double close, but it didn't work.
Meanwhile, virCommand is vastly superior to system(), fork(),
and popen() (also to virExec, but we haven't completed that
conversion), so enforce that, too.
* cfg.mk (sc_prohibit_close): Fix typo that excluded close, and
add pclose.
(sc_prohibit_fork_wrappers): New rule, for fork, system, and popen.
* .x-sc_prohibit_close: More exemptions.
* .x-sc_prohibit_fork_wrappers: New file.
* Makefile.am (syntax_check_exceptions): Ship new file.
* src/datatypes.c (virReleaseConnect): Tweak comment to avoid
false positive.
* src/util/files.h (VIR_CLOSE): Likewise.
2011-01-27 22:16:14 +00:00
|
|
|
and failure sets errno per close. */
|
2012-06-07 13:16:50 +00:00
|
|
|
# define VIR_CLOSE(FD) virFileClose(&(FD), 0)
|
2011-07-19 18:32:58 +00:00
|
|
|
# define VIR_FCLOSE(FILE) virFileFclose(&(FILE), false)
|
2010-11-17 02:13:29 +00:00
|
|
|
|
|
|
|
/* Wrapper around fdopen that consumes fd on success. */
|
2011-07-19 18:32:58 +00:00
|
|
|
# define VIR_FDOPEN(FD, MODE) virFileFdopen(&(FD), MODE)
|
2010-10-19 14:23:51 +00:00
|
|
|
|
|
|
|
/* For use on cleanup paths; errno is unaffected by close,
|
|
|
|
and no return value to worry about. */
|
2012-06-07 13:16:50 +00:00
|
|
|
# define VIR_FORCE_CLOSE(FD) \
|
|
|
|
ignore_value(virFileClose(&(FD), VIR_FILE_CLOSE_PRESERVE_ERRNO))
|
2011-07-19 18:32:58 +00:00
|
|
|
# define VIR_FORCE_FCLOSE(FILE) ignore_value(virFileFclose(&(FILE), true))
|
2010-10-19 14:23:51 +00:00
|
|
|
|
2012-05-30 13:54:18 +00:00
|
|
|
/* Similar VIR_FORCE_CLOSE() but ignores EBADF errors since they are expected
|
|
|
|
* during mass close after fork(). */
|
2012-06-07 13:16:50 +00:00
|
|
|
# define VIR_MASS_CLOSE(FD) \
|
|
|
|
ignore_value(virFileClose(&(FD), \
|
|
|
|
VIR_FILE_CLOSE_PRESERVE_ERRNO | \
|
|
|
|
VIR_FILE_CLOSE_IGNORE_EBADF))
|
|
|
|
|
|
|
|
# define VIR_LOG_CLOSE(FD) \
|
|
|
|
ignore_value(virFileClose(&(FD), \
|
|
|
|
VIR_FILE_CLOSE_PRESERVE_ERRNO | \
|
|
|
|
VIR_FILE_CLOSE_DONT_LOG))
|
2012-05-30 13:54:18 +00:00
|
|
|
|
2012-02-06 13:40:48 +00:00
|
|
|
/* Opaque type for managing a wrapper around a fd. */
|
|
|
|
struct _virFileWrapperFd;
|
2011-07-11 21:26:33 +00:00
|
|
|
|
2012-02-06 13:40:48 +00:00
|
|
|
typedef struct _virFileWrapperFd virFileWrapperFd;
|
|
|
|
typedef virFileWrapperFd *virFileWrapperFdPtr;
|
2011-07-11 21:26:33 +00:00
|
|
|
|
|
|
|
int virFileDirectFdFlag(void);
|
|
|
|
|
2012-02-20 03:21:00 +00:00
|
|
|
enum virFileWrapperFdFlags {
|
2012-02-06 13:40:48 +00:00
|
|
|
VIR_FILE_WRAPPER_BYPASS_CACHE = (1 << 0),
|
|
|
|
VIR_FILE_WRAPPER_NON_BLOCKING = (1 << 1),
|
2012-02-20 03:21:00 +00:00
|
|
|
};
|
2012-02-06 13:40:48 +00:00
|
|
|
|
|
|
|
virFileWrapperFdPtr virFileWrapperFdNew(int *fd,
|
|
|
|
const char *name,
|
|
|
|
unsigned int flags)
|
2011-07-11 21:26:33 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
2012-02-06 13:40:48 +00:00
|
|
|
int virFileWrapperFdClose(virFileWrapperFdPtr dfd);
|
2011-07-11 21:26:33 +00:00
|
|
|
|
2012-02-06 13:40:48 +00:00
|
|
|
void virFileWrapperFdFree(virFileWrapperFdPtr dfd);
|
2011-07-11 21:26:33 +00:00
|
|
|
|
2011-07-06 16:06:58 +00:00
|
|
|
int virFileLock(int fd, bool shared, off_t start, off_t len);
|
|
|
|
int virFileUnlock(int fd, off_t start, off_t len);
|
|
|
|
|
2011-10-13 10:17:12 +00:00
|
|
|
typedef int (*virFileRewriteFunc)(int fd, void *opaque);
|
|
|
|
int virFileRewrite(const char *path,
|
|
|
|
mode_t mode,
|
|
|
|
virFileRewriteFunc rewrite,
|
|
|
|
void *opaque);
|
|
|
|
|
2012-01-11 09:58:59 +00:00
|
|
|
int virFileTouch(const char *path, mode_t mode);
|
|
|
|
|
2012-04-27 13:50:22 +00:00
|
|
|
int virFileUpdatePerm(const char *path,
|
|
|
|
mode_t mode_remove,
|
|
|
|
mode_t mode_add);
|
|
|
|
|
2012-07-03 14:06:27 +00:00
|
|
|
int virFileLoopDeviceAssociate(const char *file,
|
|
|
|
char **dev);
|
|
|
|
|
2010-10-19 14:23:51 +00:00
|
|
|
#endif /* __VIR_FILES_H */
|