virfile.h 2.4 KB
Newer Older
1
/*
E
Eric Blake 已提交
2
 * virfile.h: safer file handling
3
 *
E
Eric Blake 已提交
4
 * Copyright (C) 2010-2011 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
 * 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
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 */


#ifndef __VIR_FILES_H_
# define __VIR_FILES_H_

29
# include <stdio.h>
30 31 32 33 34

# include "internal.h"
# include "ignore-value.h"


35
/* Don't call these directly - use the macros below */
E
Eric Blake 已提交
36 37 38
int virFileClose(int *fdptr, bool preserve_errno) ATTRIBUTE_RETURN_CHECK;
int virFileFclose(FILE **file, bool preserve_errno) ATTRIBUTE_RETURN_CHECK;
FILE *virFileFdopen(int *fdptr, const char *mode) ATTRIBUTE_RETURN_CHECK;
39 40

/* For use on normal paths; caller must check return value,
41
   and failure sets errno per close. */
E
Eric Blake 已提交
42 43
# define VIR_CLOSE(FD) virFileClose(&(FD), false)
# define VIR_FCLOSE(FILE) virFileFclose(&(FILE), false)
44 45

/* Wrapper around fdopen that consumes fd on success. */
E
Eric Blake 已提交
46
# define VIR_FDOPEN(FD, MODE) virFileFdopen(&(FD), MODE)
47 48 49

/* For use on cleanup paths; errno is unaffected by close,
   and no return value to worry about. */
E
Eric Blake 已提交
50 51
# define VIR_FORCE_CLOSE(FD) ignore_value(virFileClose(&(FD), true))
# define VIR_FORCE_FCLOSE(FILE) ignore_value(virFileFclose(&(FILE), true))
52

53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
/* Opaque type for managing a wrapper around an O_DIRECT fd.  */
struct _virFileDirectFd;

typedef struct _virFileDirectFd virFileDirectFd;
typedef virFileDirectFd *virFileDirectFdPtr;

int virFileDirectFdFlag(void);

virFileDirectFdPtr virFileDirectFdNew(int *fd, const char *name)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_RETURN_CHECK;

int virFileDirectFdClose(virFileDirectFdPtr dfd);

void virFileDirectFdFree(virFileDirectFdPtr dfd);

68 69 70
int virFileLock(int fd, bool shared, off_t start, off_t len);
int virFileUnlock(int fd, off_t start, off_t len);

71
#endif /* __VIR_FILES_H */