Home | History | Annotate | Line # | Download | only in restore
extern.h revision 1.12
      1  1.12  xtraeme /*	$NetBSD: extern.h,v 1.12 2005/02/17 15:00:33 xtraeme Exp $	*/
      2   1.4      cgd 
      3   1.1      cgd /*-
      4   1.2  mycroft  * Copyright (c) 1992, 1993
      5   1.2  mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1      cgd  *
      7   1.1      cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1      cgd  * modification, are permitted provided that the following conditions
      9   1.1      cgd  * are met:
     10   1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1      cgd  *    documentation and/or other materials provided with the distribution.
     15   1.9      agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1      cgd  *    may be used to endorse or promote products derived from this software
     17   1.1      cgd  *    without specific prior written permission.
     18   1.1      cgd  *
     19   1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1      cgd  * SUCH DAMAGE.
     30   1.1      cgd  *
     31   1.4      cgd  *	@(#)extern.h	8.2 (Berkeley) 1/7/94
     32   1.1      cgd  */
     33   1.1      cgd 
     34  1.12  xtraeme struct entry	*addentry(char *, ino_t, int);
     35  1.12  xtraeme long		 addfile(char *, ino_t, int);
     36  1.12  xtraeme int		 addwhiteout(char *);
     37  1.12  xtraeme void		 badentry(struct entry *, char *);
     38  1.12  xtraeme void	 	 canon(char *, char *);
     39  1.12  xtraeme void		 checkrestore(void);
     40  1.12  xtraeme void 		 cleanup(void);
     41  1.12  xtraeme void		 closemt(void);
     42  1.12  xtraeme void		 createfiles(void);
     43  1.12  xtraeme void		 createleaves(char *);
     44  1.12  xtraeme void		 createlinks(void);
     45  1.12  xtraeme long		 deletefile(char *, ino_t, int);
     46  1.12  xtraeme void		 deleteino(ino_t);
     47  1.12  xtraeme void		 delwhiteout(struct entry *);
     48  1.10    enami const struct digest_desc *
     49  1.12  xtraeme 		 digest_lookup(const char *);
     50  1.12  xtraeme ino_t		 dirlookup(const char *);
     51  1.12  xtraeme void		 dumpsymtable(char *, int32_t);
     52  1.12  xtraeme void	 	 extractdirs(int);
     53  1.12  xtraeme int		 extractfile(char *);
     54  1.12  xtraeme void		 findunreflinks(void);
     55  1.12  xtraeme char		*flagvalues(struct entry *);
     56  1.12  xtraeme void		 freeentry(struct entry *);
     57  1.12  xtraeme void		 freename(char *);
     58  1.12  xtraeme int	 	 genliteraldir(char *, ino_t);
     59  1.12  xtraeme char		*gentempname(struct entry *);
     60  1.12  xtraeme void		 getfile(void (*)(char *, long), void (*)(char *, long));
     61  1.12  xtraeme void		 getvol(int);
     62  1.12  xtraeme void		 initsymtable(char *);
     63  1.12  xtraeme int	 	 inodetype(ino_t);
     64  1.12  xtraeme int		 linkit(char *, char *, int);
     65  1.12  xtraeme struct entry	*lookupino(ino_t);
     66  1.12  xtraeme struct entry	*lookupname(char *);
     67  1.12  xtraeme long		 listfile(char *, ino_t, int);
     68  1.12  xtraeme ino_t		 lowerbnd(ino_t);
     69  1.12  xtraeme void		 mktempname(struct entry *);
     70  1.12  xtraeme void		 moveentry(struct entry *, char *);
     71  1.12  xtraeme void		 msg(const char *, ...)
     72   1.7       is      __attribute__((__format__(__printf__,1,2)));
     73  1.12  xtraeme char		*myname(struct entry *);
     74  1.12  xtraeme void		 newnode(struct entry *);
     75  1.12  xtraeme void		 newtapebuf(long);
     76  1.12  xtraeme long		 nodeupdates(char *, ino_t, int);
     77  1.12  xtraeme void	 	 onintr(int);
     78  1.12  xtraeme void		 panic(const char *, ...)
     79   1.7       is      __attribute__((__format__(__printf__,1,2)));
     80  1.12  xtraeme void		 pathcheck(char *);
     81  1.12  xtraeme struct direct	*pathsearch(const char *);
     82  1.12  xtraeme void		 printdumpinfo(void);
     83  1.12  xtraeme void		 removeleaf(struct entry *);
     84  1.12  xtraeme void		 removenode(struct entry *);
     85  1.12  xtraeme void		 removeoldleaves(void);
     86  1.12  xtraeme void		 removeoldnodes(void);
     87  1.12  xtraeme void		 renameit(char *, char *);
     88  1.12  xtraeme int		 reply(char *);
     89  1.12  xtraeme RST_DIR		*rst_opendir(const char *);
     90  1.12  xtraeme struct direct	*rst_readdir(RST_DIR *);
     91  1.12  xtraeme void		 rst_closedir(RST_DIR *);
     92  1.12  xtraeme void	 	 runcmdshell(void);
     93  1.12  xtraeme char		*savename(char *);
     94  1.12  xtraeme void	 	 setdirmodes(int);
     95  1.12  xtraeme void		 setinput(char *);
     96  1.12  xtraeme void		 setup(void);
     97  1.12  xtraeme void	 	 skipdirs(void);
     98  1.12  xtraeme void		 skipfile(void);
     99  1.12  xtraeme void		 skipmaps(void);
    100  1.12  xtraeme void		 swabst(u_char *, u_char *);
    101  1.12  xtraeme void	 	 treescan(char *, ino_t, long (*)(char *, ino_t, int));
    102  1.12  xtraeme ino_t		 upperbnd(ino_t);
    103  1.12  xtraeme long		 verifyfile(char *, ino_t, int);
    104  1.12  xtraeme void		 writemtree(const char *, const char *, const uid_t,
    105  1.12  xtraeme 				const gid_t, const mode_t, const u_long);
    106  1.12  xtraeme void		 xtrnull(char *, long);
    107   1.2  mycroft 
    108   1.2  mycroft /* From ../dump/dumprmt.c */
    109  1.12  xtraeme void		rmtclose(void);
    110  1.12  xtraeme int		rmthost(char *);
    111  1.12  xtraeme int		rmtioctl(int, int);
    112  1.12  xtraeme int		rmtopen(char *, int);
    113  1.12  xtraeme int		rmtread(char *, int);
    114  1.12  xtraeme int		rmtseek(int, int);
    115