1 /*	$NetBSD: misc.h,v 1.1.1.1 2015/07/08 15:37:48 christos Exp $	*/
2 
3 /*****************************************************************
4 **
5 **	@(#) misc.h  (c) 2005 - 2007  Holger Zuleger  hznet.de
6 **
7 **	Copyright (c) 2005 - 2007, Holger Zuleger HZnet. All rights reserved.
8 **
9 **	This software is open source.
10 **
11 **	Redistribution and use in source and binary forms, with or without
12 **	modification, are permitted provided that the following conditions
13 **	are met:
14 **
15 **	Redistributions of source code must retain the above copyright notice,
16 **	this list of conditions and the following disclaimer.
17 **
18 **	Redistributions in binary form must reproduce the above copyright notice,
19 **	this list of conditions and the following disclaimer in the documentation
20 **	and/or other materials provided with the distribution.
21 **
22 **	Neither the name of Holger Zuleger HZnet nor the names of its contributors may
23 **	be used to endorse or promote products derived from this software without
24 **	specific prior written permission.
25 **
26 **	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 **	"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 **	TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 **	PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
30 **	LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 **	CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 **	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 **	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 **	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 **	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 **	POSSIBILITY OF SUCH DAMAGE.
37 **
38 *****************************************************************/
39 #ifndef MISC_H
40 # define MISC_H
41 # include <sys/types.h>
42 # include <stdarg.h>
43 # include <stdio.h>
44 # include "zconf.h"
45 
46 # define min(a, b)	((a) < (b) ? (a) : (b))
47 # define max(a, b)	((a) > (b) ? (a) : (b))
48 
49 extern	const	char	*getnameappendix (const char *progname, const char *basename);
50 extern	const	char	*getdefconfname (const char *view);
51 extern	int	fileexist (const char *name);
52 extern	size_t	filesize (const char *name);
53 extern	int	file_age (const char *fname);
54 extern	int	touch (const char *fname, time_t sec);
55 extern	int	linkfile (const char *fromfile, const char *tofile);
56 //extern	int	copyfile (const char *fromfile, const char *tofile);
57 extern	int	copyfile (const char *fromfile, const char *tofile, const char *dnskeyfile);
58 extern	int	copyzonefile (const char *fromfile, const char *tofile, const char *dnskeyfile);
59 extern	int	cmpfile (const char *file1, const char *file2);
60 extern	char	*str_delspace (char *s);
61 #if 1
62 extern	char	*domain_canonicdup (const char *s);
63 #else
64 extern	char	*str_tolowerdup (const char *s);
65 #endif
66 extern	int	in_strarr (const char *str, char *const arr[], int cnt);
67 extern	const	char	*splitpath (char *path, size_t  size, const char *filename);
68 extern	char	*pathname (char *name, size_t size, const char *path, const char *file, const char *ext);
69 extern	char	*time2str (time_t sec, int precision);
70 extern	char	*time2isostr (time_t sec, int precision);
71 extern	time_t	timestr2time (const char *timestr);
72 extern	int	is_keyfilename (const char *name);
73 extern	int	is_directory (const char *name);
74 extern	time_t	file_mtime (const char *fname);
75 extern	int	is_exec_ok (const char *prog);
76 extern	char	*age2str (time_t sec);
77 extern	time_t	stop_timer (time_t start);
78 extern	time_t	start_timer (void);
79 extern	void    error (char *fmt, ...);
80 extern	void    fatal (char *fmt, ...);
81 extern	void    logmesg (char *fmt, ...);
82 extern	void	verbmesg (int verblvl, const zconf_t *conf, char *fmt, ...);
83 extern	void	logflush (void);
84 extern	int	gensalt (char *salt, size_t saltsize, int saltbits, unsigned int seed);
85 extern	char	*str_untaint (char *str);
86 extern	char	*str_chop (char *str, char c);
87 extern	int	is_dotfilename (const char *name);
88 extern	void	parseurl (char *url, char **proto, char **host, char **port, char **para);
89 #endif
90