Imported Upstream version 3.1.0
[debian/amanda] / ndmp-src / ndmos_glib.c
1 /*
2  * Copyright (c) 1998,2001
3  *      Traakan, Inc., Los Altos, CA
4  *      All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice unmodified, this list of conditions, and the following
11  *    disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28
29 /*
30  * Project:  NDMJOB
31  * Ident:    $Id: $
32  *
33  * Description:
34  *      This contains the O/S (Operating System) specific
35  *      portions of NDMJOBLIB for the Linux platform.
36  *
37  *      This file is #include'd by ndmos.c when
38  *      selected by #ifdef's of NDMOS_ID.
39  *
40  *      There are four major portions:
41  *      1) Misc support routines: password check, local info, etc
42  *      2) Non-blocking I/O support routines
43  *      3) Tape interfacs ndmos_tape_xxx()
44  *      4) OS Specific NDMP request dispatcher which intercepts
45  *         requests implemented here, such as SCSI operations
46  *         and system configuration queries.
47  */
48
49
50
51
52 /*
53  * #include "ndmagents.h" already done in ndmos.c
54  * Additional #include's, not needed in ndmos_linux.h, yet needed here.
55  */
56 #include <sys/utsname.h>
57
58
59
60 /*
61  * Select common code fragments from ndmos_common.c
62  */
63 #define NDMOS_COMMON_SYNC_CONFIG_INFO   /* from config file (ndmjob.conf) */
64 #define NDMOS_COMMON_OK_NAME_PASSWORD
65 #define NDMOS_COMMON_MD5
66 #define NDMOS_COMMON_NONBLOCKING_IO_SUPPORT
67 #define NDMOS_COMMON_TAPE_INTERFACE     /* uses tape simulator */
68 #define NDMOS_COMMON_SCSI_INTERFACE     /* stub-out */
69 #define NDMOS_COMMON_DISPATCH_REQUEST   /* no-op */
70
71
72 #include "ndmos_common.c"