source: trunk/include/sh_dbIO.h@ 551

Last change on this file since 551 was 543, checked in by katerina, 6 years ago

Fix for ticket #434 (option to init for alternative root fs).

File size: 2.4 KB
RevLine 
[481]1/* SAMHAIN file system integrity testing */
2/* Copyright (C) 2015 Rainer Wichmann */
3/* */
4/* This program is free software; you can redistribute it */
5/* and/or modify */
6/* it under the terms of the GNU General Public License as */
7/* published by */
8/* the Free Software Foundation; either version 2 of the License, or */
9/* (at your option) any later version. */
10/* */
11/* This program is distributed in the hope that it will be useful, */
12/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
13/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
14/* GNU General Public License for more details. */
15/* */
16/* You should have received a copy of the GNU General Public License */
17/* along with this program; if not, write to the Free Software */
18/* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21#ifndef SH_DBIO_H
22#define SH_DBIO_H
23
24
25
26/* Read one line, trim newline. Return char count, or -1 on error or eof.
27 */
28int sh_dbIO_getline (FILE * fd, char * line, const size_t sizeofline);
29
30/* Read given database file for listing
31 */
32int sh_dbIO_list_db (const char * db_file);
33
34/* Write single record to database
35 */
36void sh_dbIO_data_write (file_type * buf, char * fileHash);
37
38/* Write whole default database
39 */
40int sh_dbIO_writeout_update ();
41
42/* write database to given path
43 */
44int sh_dbIO_writeout_to_path(const char * path);
45
46/* write database to stdout
47 */
48int sh_dbIO_writeout_stdout (const char * str);
49
50/* version string for database
51 */
52int sh_dbIO_version_string(const char * str);
53
54/* Load a delta database
55 */
56int sh_dbIO_load_delta();
57
58int sh_dbIO_list_binary (const char * c);
59int sh_dbIO_list_filter (const char * c);
60
[543]61/* alternative rootfs */
62
63int sh_dbIO_init_rootfs (const char * rootfs);
64size_t sh_dbIO_get_rootfs_len();
65char * sh_dbIO_rootfs_prepend(char * path);
66char * sh_dbIO_rootfs_strip(char * path);
67char * sh_dbIO_rootfs_strip_link(char * path);
68
[481]69#endif
Note: See TracBrowser for help on using the repository browser.