clamd/dazukoio.h
32fc1d7b
 #if HAVE_CONFIG_H
 #include "clamav-config.h"
 #endif
 
 #ifdef CLAMUKO
e3aaff8e
 /* Dazuko Interface. Interace with Dazuko for file access control.
    Written by John Ogness <jogness@antivir.de>
 
8d5e0ac0
    Copyright (c) 2002, 2003, 2004 H+BEDV Datentechnik GmbH
32fc1d7b
    All rights reserved.
e3aaff8e
 
32fc1d7b
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
e3aaff8e
 
32fc1d7b
    1. Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
e3aaff8e
 
32fc1d7b
    2. Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.
 
    3. Neither the name of Dazuko nor the names of its contributors may be used
    to endorse or promote products derived from this software without specific
    prior written permission.
 
    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
    LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.
 */
e3aaff8e
 
 #ifndef DAZUKOIO_H
 #define DAZUKOIO_H
 
32fc1d7b
 /* event types */
 #define	DAZUKO_ON_OPEN			1
 #define	DAZUKO_ON_CLOSE			2
 #define	DAZUKO_ON_EXEC 			4
 #define	DAZUKO_ON_CLOSE_MODIFIED	8
 #define	DAZUKO_ON_UNLINK		16
 #define	DAZUKO_ON_RMDIR			32
e3aaff8e
 
32fc1d7b
 struct dazuko_access
e3aaff8e
 {
32fc1d7b
 	int		deny;
 	int		event;
 	char		set_event;
 	int		flags;
 	char		set_flags;
 	int		mode;
 	char		set_mode;
 	int 		uid;
 	char		set_uid;
 	int		pid;
 	char		set_pid;
 	char		*filename;
 	char		set_filename;
 	unsigned long	file_size;
 	char		set_file_size;
 	int		file_uid;
 	char		set_file_uid;
 	int		file_gid;
 	char		set_file_gid;
 	int		file_mode;
 	char		set_file_mode;
 	int		file_device;
 	char		set_file_device;
e3aaff8e
 };
 
32fc1d7b
 struct dazuko_id;
 typedef struct dazuko_id dazuko_id_t;
 
 /* single-threaded API */
 int dazukoRegister(const char *groupName, const char *mode);
e3aaff8e
 int dazukoSetAccessMask(unsigned long accessMask);
 int dazukoAddIncludePath(const char *path);
 int dazukoAddExcludePath(const char *path);
 int dazukoRemoveAllPaths(void);
32fc1d7b
 int dazukoGetAccess(struct dazuko_access **acc);
 int dazukoReturnAccess(struct dazuko_access **acc);
e3aaff8e
 int dazukoUnregister(void);
 
32fc1d7b
 /* thread-safe API (as long as each thread has its own "dazuko_id_t") */
 int dazukoRegister_TS(dazuko_id_t **dazuko, const char *groupName, const char *mode);
 int dazukoSetAccessMask_TS(dazuko_id_t *dazuko, unsigned long accessMask);
 int dazukoAddIncludePath_TS(dazuko_id_t *dazuko, const char *path);
 int dazukoAddExcludePath_TS(dazuko_id_t *dazuko, const char *path);
 int dazukoRemoveAllPaths_TS(dazuko_id_t *dazuko);
 int dazukoGetAccess_TS(dazuko_id_t *dazuko, struct dazuko_access **acc);
 int dazukoReturnAccess_TS(dazuko_id_t *dazuko, struct dazuko_access **acc);
 int dazukoUnregister_TS(dazuko_id_t **dazuko);
 
e3aaff8e
 #endif
 #endif