416bfabe6fbbc05389a8ca7a7cfaa83cc2ecceec
[openafs.git] / src / libadmin / vos / vsprocs.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <stdio.h>
11 #include <sys/types.h>
12 #include <sys/stat.h>
13 #ifdef  AFS_AIX_ENV
14 #include <sys/statfs.h>
15 #endif
16 #ifdef AFS_NT40_ENV
17 #include <fcntl.h>
18 #include <winsock2.h>
19 #else
20 #include <sys/file.h>
21 #include <netinet/in.h>
22 #endif
23 #include <lock.h>
24 #include <afs/voldefs.h>
25 #include <rx/xdr.h>
26 #include <rx/rx.h>
27 #include <afs/vlserver.h>
28 #include <afs/nfs.h>
29 #include <afs/auth.h>
30 #include <afs/cellconfig.h>
31 #include <afs/keys.h>
32 #include <ubik.h>
33 #include <afs/afsint.h>
34 #include <afs/volser.h>
35 #include <afs/volint.h>
36 #include "../../volser/lockdata.h"
37 #include "../../vlserver/vlclient.h"
38 #include <afs/com_err.h>
39 #include <rx/rxkad.h>
40 #include <afs/kautils.h>
41 #include <afs/cmd.h>
42 #include <errno.h>
43 #include <afs/afs_Admin.h>
44 #include "../adminutil/afs_AdminInternal.h"
45
46 #define CLOCKSKEW   2           /* not really skew, but resolution */
47
48 extern int ubik_Call();
49 extern int ubik_Call_New();
50
51
52 extern int UV_NukeVolume(afs_cell_handle_p cellHandle,
53                          struct rx_connection *server, unsigned int partition,
54                          unsigned int volumeId, afs_status_p st);
55
56 extern int UV_CreateVolume(afs_cell_handle_p cellHandle,
57                            struct rx_connection *server,
58                            unsigned int partition, const char *volumeName,
59                            unsigned int quota, unsigned int *volumeId,
60                            afs_status_p st);
61
62 extern int UV_DeleteVolume(afs_cell_handle_p cellHandle,
63                            struct rx_connection *server,
64                            unsigned int partition, unsigned int volumeId,
65                            afs_status_p st);
66
67 extern int UV_MoveVolume(afs_cell_handle_p cellHandle, afs_int32 afromvol,
68                          afs_int32 afromserver, afs_int32 afrompart,
69                          afs_int32 atoserver, afs_int32 atopart,
70                          afs_status_p st);
71
72 extern int UV_BackupVolume(afs_cell_handle_p cellHandle, afs_int32 aserver,
73                            afs_int32 apart, afs_int32 avolid,
74                            afs_status_p st);
75
76 extern int UV_ReleaseVolume(afs_cell_handle_p cellHandle, afs_int32 afromvol,
77                             afs_int32 afromserver, afs_int32 afrompart,
78                             int forceflag, afs_status_p st);
79
80 extern int UV_DumpVolume(afs_cell_handle_p cellHandle, afs_int32 afromvol,
81                          afs_int32 afromserver, afs_int32 afrompart,
82                          afs_int32 fromdate, const char *filename,
83                          afs_status_p st);
84
85 extern int UV_RestoreVolume(afs_cell_handle_p cellHandle, afs_int32 toserver,
86                             afs_int32 topart, afs_int32 tovolid,
87                             const char *tovolname, int flags,
88                             const char *dumpFile, afs_status_p st);
89
90 extern int UV_AddSite(afs_cell_handle_p cellHandle, afs_int32 server,
91                       afs_int32 part, afs_int32 volid, afs_status_p st);
92
93 extern int UV_RemoveSite(afs_cell_handle_p cellHandle, afs_int32 server,
94                          afs_int32 part, afs_int32 volid, afs_status_p st);
95
96 extern int UV_ListPartitions(struct rx_connection *server,
97                              struct partList *ptrPartList, afs_int32 * cntp,
98                              afs_status_p st);
99
100 extern int UV_XListVolumes(struct rx_connection *server, afs_int32 a_partID,
101                            int a_all, struct volintXInfo **a_resultPP,
102                            afs_int32 * a_numEntsInResultP, afs_status_p st);
103
104 extern int UV_XListOneVolume(struct rx_connection *server, afs_int32 a_partID,
105                              afs_int32 a_volID,
106                              struct volintXInfo **a_resultPP,
107                              afs_status_p st);
108
109 extern int UV_SyncVldb(afs_cell_handle_p cellHandle,
110                        struct rx_connection *server, afs_int32 apart,
111                        int flags, int force, afs_status_p st);
112
113 extern int CheckVldb(afs_cell_handle_p cellHandle, struct nvldbentry *entry,
114                      afs_int32 * modified, afs_status_p st);
115
116 extern int UV_SyncServer(afs_cell_handle_p cellHandle,
117                          struct rx_connection *server, afs_int32 apart,
118                          int flags, afs_status_p st);
119
120
121 extern int UV_VolserStatus(struct rx_connection *server,
122                            transDebugInfo ** rpntr, afs_int32 * rcount,
123                            afs_status_p st);
124
125 extern int UV_VolumeZap(afs_cell_handle_p cellHandle,
126                         struct rx_connection *serverHandle,
127                         unsigned int partition, unsigned int volumeId,
128                         afs_status_p st);
129
130 extern int UV_SetVolume(struct rx_connection *server, afs_int32 partition,
131                         afs_int32 volid, afs_int32 transflag,
132                         afs_int32 setflag, unsigned int sleep,
133                         afs_status_p st);
134
135 extern int UV_RenameVolume(afs_cell_handle_p cellHandle,
136                            struct nvldbentry *entry, const char *newname,
137                            afs_status_p st);