This file is indexed.

/usr/include/afs/budb.h is in libopenafs-dev 1.8.0~pre5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
/* Machine generated file -- Do NOT edit */

#ifndef	_RXGEN_BUDB_
#define	_RXGEN_BUDB_

#ifdef	KERNEL
/* The following 'ifndefs' are not a good solution to the vendor's omission of surrounding all system includes with 'ifndef's since it requires that this file is included after the system includes...*/
#include <afsconfig.h>
#include "afs/param.h"
#ifdef	UKERNEL
#include "afs/sysincludes.h"
#include "rx/xdr.h"
#include "rx/rx.h"
#else	/* UKERNEL */
#include "h/types.h"
#ifndef	SOCK_DGRAM  /* XXXXX */
#include "h/socket.h"
#endif
#ifndef	DTYPE_SOCKET  /* XXXXX */
#ifndef AFS_LINUX22_ENV
#include "h/file.h"
#endif
#endif
#ifndef	S_IFMT  /* XXXXX */
#include "h/stat.h"
#endif
#if defined (AFS_OBSD_ENV) && !defined (MLEN)
#include "sys/mbuf.h"
#endif
#ifndef	IPPROTO_UDP /* XXXXX */
#include "netinet/in.h"
#endif
#ifndef	DST_USA  /* XXXXX */
#include "h/time.h"
#endif
#ifndef	XDR_GETLONG /* XXXXX */
#ifdef AFS_LINUX22_ENV
#ifndef quad_t
#define quad_t __quad_t
#define u_quad_t __u_quad_t
#endif
#endif
#include "rx/xdr.h"
#endif /* XDR_GETLONG */
#endif   /* UKERNEL */
#include "afs/rxgen_consts.h"
#include "afs_osi.h"
#include "rx/rx.h"
#else	/* KERNEL */
#include <afs/param.h>
#include <afs/stds.h>
#include <sys/types.h>
#include <rx/xdr.h>
#include <rx/rx.h>
#include <afs/rxgen_consts.h>
#include <ubik.h>
#endif	/* KERNEL */

#ifdef AFS_NT40_ENV
#ifndef AFS_RXGEN_EXPORT
#define AFS_RXGEN_EXPORT __declspec(dllimport)
#endif /* AFS_RXGEN_EXPORT */
#else /* AFS_NT40_ENV */
#define AFS_RXGEN_EXPORT
#endif /* AFS_NT40_ENV */

#ifndef NEVERDATE
#define NEVERDATE 037777777777 /* a date that will never come */
#endif
#ifndef Date
#define Date afs_uint32
#endif
#define BUDB_MAJORVERSION 2
#ifndef dumpId
#define dumpId afs_uint32
#endif
#define TB_DUMPSCHEDULE 0
#define TB_VOLUMESET 1
#define TB_TAPEHOSTS 2
#define TB_NUM 3 /* no. of block types */
#define TB_MAX 6 /* unused items are spares */

struct budb_principal {
	char name[256];
	char instance[128];
	char cell[256];
};
typedef struct budb_principal budb_principal;
bool_t xdr_budb_principal(XDR *xdrs, budb_principal *objp);


struct budb_tapeSet {
	afs_int32 id;
	char tapeServer[32];
	char format[32];
	afs_int32 maxTapes;
	afs_int32 a;
	afs_int32 b;
};
typedef struct budb_tapeSet budb_tapeSet;
bool_t xdr_budb_tapeSet(XDR *xdrs, budb_tapeSet *objp);

#define budb_MakeTapeName(name,set,seq) sprintf (name, (set)->format, (set)->a*(seq) + (set)->b)

struct budb_dumpEntry {
	afs_uint32 id;
	afs_uint32 parent;
	afs_int32 level;
	afs_int32 flags;
	char volumeSetName[32];
	char dumpPath[256];
	char name[32];
	afs_uint32 created;
	afs_uint32 incTime;
	afs_int32 nVolumes;
	struct budb_tapeSet tapes;
	struct budb_principal dumper;
	afs_uint32 initialDumpID;
	afs_uint32 appendedDumpID;
};
typedef struct budb_dumpEntry budb_dumpEntry;
bool_t xdr_budb_dumpEntry(XDR *xdrs, budb_dumpEntry *objp);

#define BUDB_DUMP_INCOMPLETE (1<<0) /* some vols omitted due to errors */
#define BUDB_DUMP_TAPEERROR (1<<1) /* tape error during dump */
#define BUDB_DUMP_INPROGRESS (1<<2)
#define BUDB_DUMP_ABORTED (1<<3) /* aborted: prob. dump unavailable */
#define BUDB_DUMP_XBSA_NSS (1<<8) /* dump was done with a client    */
#define BUDB_DUMP_BUTA (1<<11) /* (used by ADSM buta) == 0x800 */
#define BUDB_DUMP_ADSM (1<<12) /* (used by XBSA/ADSM buta) == 0x1000 */

struct budb_tapeEntry {
	char name[32];
	afs_int32 flags;
	afs_uint32 written;
	afs_uint32 expires;
	afs_uint32 nMBytes;
	afs_uint32 nBytes;
	afs_int32 nFiles;
	afs_int32 nVolumes;
	afs_int32 seq;
	afs_int32 labelpos;
	afs_int32 useCount;
	afs_int32 useKBytes;
	afs_uint32 dump;
};
typedef struct budb_tapeEntry budb_tapeEntry;
bool_t xdr_budb_tapeEntry(XDR *xdrs, budb_tapeEntry *objp);

#define BUDB_TAPE_TAPEERROR (1<<0)
#define BUDB_TAPE_DELETED (1<<1)
#define BUDB_TAPE_BEINGWRITTEN (1<<2) /* writing in progress */
#define BUDB_TAPE_ABORTED (1<<3) /* aborted: tape probably garbaged */
#define BUDB_TAPE_STAGED (1<<4) /* not yet on permanent media */
#define BUDB_TAPE_WRITTEN (1<<5) /* tape writing finished: all OK */

struct budb_volumeEntry {
	char name[32];
	afs_int32 flags;
	afs_int32 id;
	char server[32];
	afs_int32 partition;
	afs_int32 tapeSeq;
	afs_int32 position;
	afs_uint32 clone;
	afs_uint32 incTime;
	afs_int32 startByte;
	afs_uint32 nBytes;
	afs_int32 seq;
	afs_uint32 dump;
	char tape[32];
};
typedef struct budb_volumeEntry budb_volumeEntry;
bool_t xdr_budb_volumeEntry(XDR *xdrs, budb_volumeEntry *objp);

#define BUDB_VOL_TAPEERROR (1<<0) /* tape problem during dump */
#define BUDB_VOL_FILEERROR (1<<1) /* voldump aborted during dump */
#define BUDB_VOL_BEINGWRITTEN (1<<2)
#define BUDB_VOL_FIRSTFRAG (1<<3) /* same as low bits of tape position */
#define BUDB_VOL_LASTFRAG (1<<4)
#define BUDB_VOL_ABORTED (1<<5) /* aborted: vol probably undumped */
#define BUDB_STATINDEX 17
#define BUDB_OP_NAMES (0x7)
#define BUDB_OP_STARTS (0x7<<3)
#define BUDB_OP_ENDS (0x7<<6)
#define BUDB_OP_TIMES (0x3<<9)
#define BUDB_OP_MISC (0xff<<16)
#define BUDB_OP_DUMPNAME (1<<0)
#define BUDB_OP_VOLUMENAME (2<<0)
#define BUDB_OP_TAPENAME (3<<0)
#define BUDB_OP_TAPESEQ (4<<0)
#define BUDB_OP_STARTTIME (1<<3)
#define BUDB_OP_RANGE (1<<6)
#define BUDB_OP_NPREVIOUS (2<<6)
#define BUDB_OP_NFOLLOWING (3<<6)
#define BUDB_OP_DUMPID (2<<3)
#define BUDB_OP_CLONETIME (1<<9) /* use clone time */
#define BUDB_OP_DUMPTIME (2<<9) /* use dump time (create?) */
#define BUDB_OP_INCTIME (3<<9) /* use inc time */
#define BUDB_OP_FIRSTFRAG (1<<16)
#define BUDB_MAX_RETURN_LIST 1000

typedef struct budb_volumeList {
	u_int budb_volumeList_len;
	budb_volumeEntry *budb_volumeList_val;
} budb_volumeList;
bool_t xdr_budb_volumeList(XDR *xdrs, budb_volumeList *objp);


typedef struct budb_dumpList {
	u_int budb_dumpList_len;
	budb_dumpEntry *budb_dumpList_val;
} budb_dumpList;
bool_t xdr_budb_dumpList(XDR *xdrs, budb_dumpList *objp);


typedef struct budb_tapeList {
	u_int budb_tapeList_len;
	budb_tapeEntry *budb_tapeList_val;
} budb_tapeList;
bool_t xdr_budb_tapeList(XDR *xdrs, budb_tapeList *objp);


typedef struct budb_dumpsList {
	u_int budb_dumpsList_len;
	afs_int32 *budb_dumpsList_val;
} budb_dumpsList;
bool_t xdr_budb_dumpsList(XDR *xdrs, budb_dumpsList *objp);


typedef struct charListT {
	u_int charListT_len;
	char *charListT_val;
} charListT;
bool_t xdr_charListT(XDR *xdrs, charListT *objp);

#define BUDB_TEXT_COMPLETE 1
#define SD_DBHEADER 1
#define SD_DUMP 2
#define SD_TAPE 3
#define SD_VOLUME 4
#define SD_TEXT_DUMPSCHEDULE 5
#define SD_TEXT_VOLUMESET 6
#define SD_TEXT_TAPEHOSTS 7
#define SD_END 8
#define BUDB_OP_DATES (0x01)
#define BUDB_OP_GROUPID (0x02)
#define BUDB_OP_APPDUMP (0x01)
#define BUDB_OP_DBDUMP (0x02)

struct DbHeader {
	afs_int32 dbversion;
	afs_int32 created;
	char cell[256];
	afs_uint32 lastDumpId;
	afs_uint32 lastInstanceId;
	afs_uint32 lastTapeId;
};
typedef struct DbHeader DbHeader;
bool_t xdr_DbHeader(XDR *xdrs, DbHeader *objp);


struct structDumpHeader {
	afs_int32 type;
	afs_int32 structversion;
	afs_int32 size;
};
typedef struct structDumpHeader structDumpHeader;
bool_t xdr_structDumpHeader(XDR *xdrs, structDumpHeader *objp);


extern int BUDB_AddVolume(
	/*IN */ struct rx_connection *z_conn,
	/*I/O*/ struct budb_volumeEntry * vol);

#ifndef KERNEL
extern int ubik_BUDB_AddVolume(
	struct ubik_client *aclient, afs_int32 aflags,
	/*I/O*/ struct budb_volumeEntry * vol);
#endif /* KERNEL */

extern afs_int32 SBUDB_AddVolume(
	/*IN */ struct rx_call *z_call,
	/*I/O*/ struct budb_volumeEntry * vol);

extern int BUDB_CreateDump(
	/*IN */ struct rx_connection *z_conn,
	/*I/O*/ struct budb_dumpEntry * dump);

#ifndef KERNEL
extern int ubik_BUDB_CreateDump(
	struct ubik_client *aclient, afs_int32 aflags,
	/*I/O*/ struct budb_dumpEntry * dump);
#endif /* KERNEL */

extern afs_int32 SBUDB_CreateDump(
	/*IN */ struct rx_call *z_call,
	/*I/O*/ struct budb_dumpEntry * dump);

extern int BUDB_DeleteDump(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_uint32 id,
	/*IN 0*/ afs_uint32 fromTime,
	/*IN 0*/ afs_uint32 toTime,
	/*I/O*/ budb_dumpsList * dumps);

#ifndef KERNEL
extern int ubik_BUDB_DeleteDump(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_uint32 id,
	/*IN 2*/ afs_uint32 fromTime,
	/*IN 2*/ afs_uint32 toTime,
	/*I/O*/ budb_dumpsList * dumps);
#endif /* KERNEL */

extern afs_int32 SBUDB_DeleteDump(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_uint32 id,
	/*IN 3*/ afs_uint32 fromTime,
	/*IN 3*/ afs_uint32 toTime,
	/*I/O*/ budb_dumpsList * dumps);

extern int BUDB_DeleteTape(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ struct budb_tapeEntry * tape);

#ifndef KERNEL
extern int ubik_BUDB_DeleteTape(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ struct budb_tapeEntry * tape);
#endif /* KERNEL */

extern afs_int32 SBUDB_DeleteTape(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ struct budb_tapeEntry * tape);

extern int BUDB_DeleteVDP(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ const char * dsname,
	/*IN 0*/ const char * dumpPath,
	/*IN 0*/ afs_int32 curDumpId);

#ifndef KERNEL
extern int ubik_BUDB_DeleteVDP(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ const char * dsname,
	/*IN 2*/ const char * dumpPath,
	/*IN 2*/ afs_int32 curDumpId);
#endif /* KERNEL */

extern afs_int32 SBUDB_DeleteVDP(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ char * dsname,
	/*IN 3*/ char * dumpPath,
	/*IN 3*/ afs_int32 curDumpId);

extern int BUDB_FindClone(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_int32 dumpID,
	/*IN 0*/ const char * volName,
	/*I/O*/ afs_int32 * clonetime);

#ifndef KERNEL
extern int ubik_BUDB_FindClone(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_int32 dumpID,
	/*IN 2*/ const char * volName,
	/*I/O*/ afs_int32 * clonetime);
#endif /* KERNEL */

extern afs_int32 SBUDB_FindClone(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_int32 dumpID,
	/*IN 3*/ char * volName,
	/*I/O*/ afs_int32 * clonetime);

extern int BUDB_FindDump(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ const char * volumeName,
	/*IN 0*/ afs_int32 beforeDate,
	/*I/O*/ struct budb_dumpEntry * deptr);

#ifndef KERNEL
extern int ubik_BUDB_FindDump(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ const char * volumeName,
	/*IN 2*/ afs_int32 beforeDate,
	/*I/O*/ struct budb_dumpEntry * deptr);
#endif /* KERNEL */

extern afs_int32 SBUDB_FindDump(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ char * volumeName,
	/*IN 3*/ afs_int32 beforeDate,
	/*I/O*/ struct budb_dumpEntry * deptr);

extern int BUDB_FindLatestDump(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ const char * vsname,
	/*IN 0*/ const char * dname,
	/*OUT*/ budb_dumpEntry * dumpentry);

#ifndef KERNEL
extern int ubik_BUDB_FindLatestDump(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ const char * vsname,
	/*IN 2*/ const char * dname,
	/*OUT*/ budb_dumpEntry * dumpentry);
#endif /* KERNEL */

extern afs_int32 SBUDB_FindLatestDump(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ char * vsname,
	/*IN 3*/ char * dname,
	/*OUT*/ budb_dumpEntry * dumpentry);

extern int BUDB_MakeDumpAppended(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_int32 appendedDumpID,
	/*IN 0*/ afs_int32 intialDumpID,
	/*IN 0*/ afs_int32 startTapeSeq);

#ifndef KERNEL
extern int ubik_BUDB_MakeDumpAppended(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_int32 appendedDumpID,
	/*IN 2*/ afs_int32 intialDumpID,
	/*IN 2*/ afs_int32 startTapeSeq);
#endif /* KERNEL */

extern afs_int32 SBUDB_MakeDumpAppended(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_int32 appendedDumpID,
	/*IN 3*/ afs_int32 intialDumpID,
	/*IN 3*/ afs_int32 startTapeSeq);

extern int BUDB_FindLastTape(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_int32 dumpID,
	/*OUT*/ struct budb_dumpEntry * dumpEntry,
	/*OUT*/ struct budb_tapeEntry * tapeEntry,
	/*OUT*/ struct budb_volumeEntry * volEntry);

#ifndef KERNEL
extern int ubik_BUDB_FindLastTape(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_int32 dumpID,
	/*OUT*/ struct budb_dumpEntry * dumpEntry,
	/*OUT*/ struct budb_tapeEntry * tapeEntry,
	/*OUT*/ struct budb_volumeEntry * volEntry);
#endif /* KERNEL */

extern afs_int32 SBUDB_FindLastTape(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_int32 dumpID,
	/*OUT*/ struct budb_dumpEntry * dumpEntry,
	/*OUT*/ struct budb_tapeEntry * tapeEntry,
	/*OUT*/ struct budb_volumeEntry * volEntry);

extern int BUDB_FinishDump(
	/*IN */ struct rx_connection *z_conn,
	/*I/O*/ struct budb_dumpEntry * dump);

#ifndef KERNEL
extern int ubik_BUDB_FinishDump(
	struct ubik_client *aclient, afs_int32 aflags,
	/*I/O*/ struct budb_dumpEntry * dump);
#endif /* KERNEL */

extern afs_int32 SBUDB_FinishDump(
	/*IN */ struct rx_call *z_call,
	/*I/O*/ struct budb_dumpEntry * dump);

extern int BUDB_FinishTape(
	/*IN */ struct rx_connection *z_conn,
	/*I/O*/ struct budb_tapeEntry * tape);

#ifndef KERNEL
extern int ubik_BUDB_FinishTape(
	struct ubik_client *aclient, afs_int32 aflags,
	/*I/O*/ struct budb_tapeEntry * tape);
#endif /* KERNEL */

extern afs_int32 SBUDB_FinishTape(
	/*IN */ struct rx_call *z_call,
	/*I/O*/ struct budb_tapeEntry * tape);

extern int BUDB_GetDumps(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_int32 majorVersion,
	/*IN 0*/ afs_int32 flags,
	/*IN 0*/ const char * name,
	/*IN 0*/ afs_int32 start,
	/*IN 0*/ afs_int32 end,
	/*IN 0*/ afs_int32 index,
	/*OUT*/ afs_int32 * nextIndex,
	/*OUT*/ afs_int32 * dbUpdate,
	/*I/O*/ budb_dumpList * dumps);

#ifndef KERNEL
extern int ubik_BUDB_GetDumps(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_int32 majorVersion,
	/*IN 2*/ afs_int32 flags,
	/*IN 2*/ const char * name,
	/*IN 2*/ afs_int32 start,
	/*IN 2*/ afs_int32 end,
	/*IN 2*/ afs_int32 index,
	/*OUT*/ afs_int32 * nextIndex,
	/*OUT*/ afs_int32 * dbUpdate,
	/*I/O*/ budb_dumpList * dumps);
#endif /* KERNEL */

extern afs_int32 SBUDB_GetDumps(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_int32 majorVersion,
	/*IN 3*/ afs_int32 flags,
	/*IN 3*/ char * name,
	/*IN 3*/ afs_int32 start,
	/*IN 3*/ afs_int32 end,
	/*IN 3*/ afs_int32 index,
	/*OUT*/ afs_int32 * nextIndex,
	/*OUT*/ afs_int32 * dbUpdate,
	/*I/O*/ budb_dumpList * dumps);

extern int BUDB_GetTapes(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_int32 majorVersion,
	/*IN 0*/ afs_int32 flags,
	/*IN 0*/ const char * name,
	/*IN 0*/ afs_int32 start,
	/*IN 0*/ afs_int32 end,
	/*IN 0*/ afs_int32 index,
	/*OUT*/ afs_int32 * nextIndex,
	/*OUT*/ afs_int32 * dbUpdate,
	/*I/O*/ struct budb_tapeList * tapes);

#ifndef KERNEL
extern int ubik_BUDB_GetTapes(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_int32 majorVersion,
	/*IN 2*/ afs_int32 flags,
	/*IN 2*/ const char * name,
	/*IN 2*/ afs_int32 start,
	/*IN 2*/ afs_int32 end,
	/*IN 2*/ afs_int32 index,
	/*OUT*/ afs_int32 * nextIndex,
	/*OUT*/ afs_int32 * dbUpdate,
	/*I/O*/ struct budb_tapeList * tapes);
#endif /* KERNEL */

extern afs_int32 SBUDB_GetTapes(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_int32 majorVersion,
	/*IN 3*/ afs_int32 flags,
	/*IN 3*/ char * name,
	/*IN 3*/ afs_int32 start,
	/*IN 3*/ afs_int32 end,
	/*IN 3*/ afs_int32 index,
	/*OUT*/ afs_int32 * nextIndex,
	/*OUT*/ afs_int32 * dbUpdate,
	/*I/O*/ struct budb_tapeList * tapes);

extern int BUDB_GetVolumes(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_int32 majorVersion,
	/*IN 0*/ afs_int32 flags,
	/*IN 0*/ const char * name,
	/*IN 0*/ afs_int32 start,
	/*IN 0*/ afs_int32 end,
	/*IN 0*/ afs_int32 index,
	/*OUT*/ afs_int32 * nextIndex,
	/*OUT*/ afs_int32 * dbUpdate,
	/*I/O*/ budb_volumeList * volumes);

#ifndef KERNEL
extern int ubik_BUDB_GetVolumes(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_int32 majorVersion,
	/*IN 2*/ afs_int32 flags,
	/*IN 2*/ const char * name,
	/*IN 2*/ afs_int32 start,
	/*IN 2*/ afs_int32 end,
	/*IN 2*/ afs_int32 index,
	/*OUT*/ afs_int32 * nextIndex,
	/*OUT*/ afs_int32 * dbUpdate,
	/*I/O*/ budb_volumeList * volumes);
#endif /* KERNEL */

extern afs_int32 SBUDB_GetVolumes(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_int32 majorVersion,
	/*IN 3*/ afs_int32 flags,
	/*IN 3*/ char * name,
	/*IN 3*/ afs_int32 start,
	/*IN 3*/ afs_int32 end,
	/*IN 3*/ afs_int32 index,
	/*OUT*/ afs_int32 * nextIndex,
	/*OUT*/ afs_int32 * dbUpdate,
	/*I/O*/ budb_volumeList * volumes);

extern int BUDB_UseTape(
	/*IN */ struct rx_connection *z_conn,
	/*I/O*/ struct budb_tapeEntry * tape,
	/*OUT*/ afs_int32 * new);

#ifndef KERNEL
extern int ubik_BUDB_UseTape(
	struct ubik_client *aclient, afs_int32 aflags,
	/*I/O*/ struct budb_tapeEntry * tape,
	/*OUT*/ afs_int32 * new);
#endif /* KERNEL */

extern afs_int32 SBUDB_UseTape(
	/*IN */ struct rx_call *z_call,
	/*I/O*/ struct budb_tapeEntry * tape,
	/*OUT*/ afs_int32 * new);

extern int BUDB_GetText(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_uint32 lockHandle,
	/*IN 0*/ afs_int32 textType,
	/*IN 0*/ afs_int32 maxLength,
	/*IN 0*/ afs_int32 offset,
	/*OUT*/ afs_int32 * nextOffset,
	/*OUT*/ charListT * charListPtr);

#ifndef KERNEL
extern int ubik_BUDB_GetText(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_uint32 lockHandle,
	/*IN 2*/ afs_int32 textType,
	/*IN 2*/ afs_int32 maxLength,
	/*IN 2*/ afs_int32 offset,
	/*OUT*/ afs_int32 * nextOffset,
	/*OUT*/ charListT * charListPtr);
#endif /* KERNEL */

extern afs_int32 SBUDB_GetText(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_uint32 lockHandle,
	/*IN 3*/ afs_int32 textType,
	/*IN 3*/ afs_int32 maxLength,
	/*IN 3*/ afs_int32 offset,
	/*OUT*/ afs_int32 * nextOffset,
	/*OUT*/ charListT * charListPtr);

extern int BUDB_GetTextVersion(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_int32 textType,
	/*OUT*/ afs_uint32 * tversion);

#ifndef KERNEL
extern int ubik_BUDB_GetTextVersion(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_int32 textType,
	/*OUT*/ afs_uint32 * tversion);
#endif /* KERNEL */

extern afs_int32 SBUDB_GetTextVersion(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_int32 textType,
	/*OUT*/ afs_uint32 * tversion);

extern int BUDB_SaveText(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_uint32 lockHandle,
	/*IN 0*/ afs_int32 textType,
	/*IN 0*/ afs_int32 offset,
	/*IN 0*/ afs_int32 flags,
	/*IN 0*/ charListT * charListPtr);

#ifndef KERNEL
extern int ubik_BUDB_SaveText(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_uint32 lockHandle,
	/*IN 2*/ afs_int32 textType,
	/*IN 2*/ afs_int32 offset,
	/*IN 2*/ afs_int32 flags,
	/*IN 2*/ charListT * charListPtr);
#endif /* KERNEL */

extern afs_int32 SBUDB_SaveText(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_uint32 lockHandle,
	/*IN 3*/ afs_int32 textType,
	/*IN 3*/ afs_int32 offset,
	/*IN 3*/ afs_int32 flags,
	/*IN 3*/ charListT * charListPtr);

extern int BUDB_FreeAllLocks(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_uint32 instanceId);

#ifndef KERNEL
extern int ubik_BUDB_FreeAllLocks(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_uint32 instanceId);
#endif /* KERNEL */

extern afs_int32 SBUDB_FreeAllLocks(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_uint32 instanceId);

extern int BUDB_FreeLock(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_uint32 lockHandle);

#ifndef KERNEL
extern int ubik_BUDB_FreeLock(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_uint32 lockHandle);
#endif /* KERNEL */

extern afs_int32 SBUDB_FreeLock(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_uint32 lockHandle);

extern int BUDB_GetInstanceId(
	/*IN */ struct rx_connection *z_conn,
	/*OUT*/ afs_uint32 * instanceId);

#ifndef KERNEL
extern int ubik_BUDB_GetInstanceId(
	struct ubik_client *aclient, afs_int32 aflags,
	/*OUT*/ afs_uint32 * instanceId);
#endif /* KERNEL */

extern afs_int32 SBUDB_GetInstanceId(
	/*IN */ struct rx_call *z_call,
	/*OUT*/ afs_uint32 * instanceId);

extern int BUDB_GetLock(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_uint32 instanceId,
	/*IN 0*/ afs_int32 lockName,
	/*IN 0*/ afs_int32 expiration,
	/*OUT*/ afs_uint32 * lockHandle);

#ifndef KERNEL
extern int ubik_BUDB_GetLock(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_uint32 instanceId,
	/*IN 2*/ afs_int32 lockName,
	/*IN 2*/ afs_int32 expiration,
	/*OUT*/ afs_uint32 * lockHandle);
#endif /* KERNEL */

extern afs_int32 SBUDB_GetLock(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_uint32 instanceId,
	/*IN 3*/ afs_int32 lockName,
	/*IN 3*/ afs_int32 expiration,
	/*OUT*/ afs_uint32 * lockHandle);

extern int BUDB_DbVerify(
	/*IN */ struct rx_connection *z_conn,
	/*OUT*/ afs_int32 * status,
	/*OUT*/ afs_int32 * orphans,
	/*OUT*/ afs_int32 * host);

#ifndef KERNEL
extern int ubik_BUDB_DbVerify(
	struct ubik_client *aclient, afs_int32 aflags,
	/*OUT*/ afs_int32 * status,
	/*OUT*/ afs_int32 * orphans,
	/*OUT*/ afs_int32 * host);
#endif /* KERNEL */

extern afs_int32 SBUDB_DbVerify(
	/*IN */ struct rx_call *z_call,
	/*OUT*/ afs_int32 * status,
	/*OUT*/ afs_int32 * orphans,
	/*OUT*/ afs_int32 * host);

extern int BUDB_DumpDB(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ int firstcall,
	/*IN 0*/ afs_int32 maxLength,
	/*OUT*/ charListT * charListPtr,
	/*OUT*/ afs_int32 * flags);

#ifndef KERNEL
extern int ubik_BUDB_DumpDB(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ int firstcall,
	/*IN 2*/ afs_int32 maxLength,
	/*OUT*/ charListT * charListPtr,
	/*OUT*/ afs_int32 * flags);
#endif /* KERNEL */

extern afs_int32 SBUDB_DumpDB(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ int firstcall,
	/*IN 3*/ afs_int32 maxLength,
	/*OUT*/ charListT * charListPtr,
	/*OUT*/ afs_int32 * flags);

extern int BUDB_RestoreDbHeader(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ struct DbHeader * header);

#ifndef KERNEL
extern int ubik_BUDB_RestoreDbHeader(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ struct DbHeader * header);
#endif /* KERNEL */

extern afs_int32 SBUDB_RestoreDbHeader(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ struct DbHeader * header);

extern int BUDB_T_GetVersion(
	/*IN */ struct rx_connection *z_conn,
	/*OUT*/ afs_int32 * majorVersion);

#ifndef KERNEL
extern int ubik_BUDB_T_GetVersion(
	struct ubik_client *aclient, afs_int32 aflags,
	/*OUT*/ afs_int32 * majorVersion);
#endif /* KERNEL */

extern afs_int32 SBUDB_T_GetVersion(
	/*IN */ struct rx_call *z_call,
	/*OUT*/ afs_int32 * majorVersion);

extern int BUDB_T_DumpHashTable(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_int32 type,
	/*IN 0*/ const char * filename);

#ifndef KERNEL
extern int ubik_BUDB_T_DumpHashTable(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_int32 type,
	/*IN 2*/ const char * filename);
#endif /* KERNEL */

extern afs_int32 SBUDB_T_DumpHashTable(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_int32 type,
	/*IN 3*/ char * filename);

extern int BUDB_T_DumpDatabase(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ const char * filename);

#ifndef KERNEL
extern int ubik_BUDB_T_DumpDatabase(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ const char * filename);
#endif /* KERNEL */

extern afs_int32 SBUDB_T_DumpDatabase(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ char * filename);

extern int BUDB_AddVolumes(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ struct budb_volumeList * vols);

#ifndef KERNEL
extern int ubik_BUDB_AddVolumes(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ struct budb_volumeList * vols);
#endif /* KERNEL */

extern afs_int32 SBUDB_AddVolumes(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ struct budb_volumeList * vols);

extern int BUDB_ListDumps(
	/*IN */ struct rx_connection *z_conn,
	/*IN 0*/ afs_int32 sflags,
	/*IN 0*/ const char * name,
	/*IN 0*/ afs_int32 group,
	/*IN 0*/ afs_uint32 fromTime,
	/*IN 0*/ afs_uint32 toTime,
	/*I/O*/ budb_dumpsList * dumps,
	/*I/O*/ budb_dumpsList * flags);

#ifndef KERNEL
extern int ubik_BUDB_ListDumps(
	struct ubik_client *aclient, afs_int32 aflags,
	/*IN 2*/ afs_int32 sflags,
	/*IN 2*/ const char * name,
	/*IN 2*/ afs_int32 group,
	/*IN 2*/ afs_uint32 fromTime,
	/*IN 2*/ afs_uint32 toTime,
	/*I/O*/ budb_dumpsList * dumps,
	/*I/O*/ budb_dumpsList * flags);
#endif /* KERNEL */

extern afs_int32 SBUDB_ListDumps(
	/*IN */ struct rx_call *z_call,
	/*IN 3*/ afs_int32 sflags,
	/*IN 3*/ char * name,
	/*IN 3*/ afs_int32 group,
	/*IN 3*/ afs_uint32 fromTime,
	/*IN 3*/ afs_uint32 toTime,
	/*I/O*/ budb_dumpsList * dumps,
	/*I/O*/ budb_dumpsList * flags);

extern int BUDB_ExecuteRequest(struct rx_call *);

/* Opcode-related useful stats for package: BUDB_ */
#define BUDB_LOWEST_OPCODE   0
#define BUDB_HIGHEST_OPCODE     30
#define BUDB_NUMBER_OPCODES     31

#define opcode_BUDB_AddVolume 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(0)))
#define opcode_BUDB_CreateDump 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(1)))
#define opcode_BUDB_DeleteDump 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(2)))
#define opcode_BUDB_DeleteTape 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(3)))
#define opcode_BUDB_DeleteVDP 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(4)))
#define opcode_BUDB_FindClone 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(5)))
#define opcode_BUDB_FindDump 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(6)))
#define opcode_BUDB_FindLatestDump 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(7)))
#define opcode_BUDB_MakeDumpAppended 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(8)))
#define opcode_BUDB_FindLastTape 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(9)))
#define opcode_BUDB_FinishDump 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(10)))
#define opcode_BUDB_FinishTape 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(11)))
#define opcode_BUDB_GetDumps 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(12)))
#define opcode_BUDB_GetTapes 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(13)))
#define opcode_BUDB_GetVolumes 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(14)))
#define opcode_BUDB_UseTape 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(15)))
#define opcode_BUDB_GetText 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(16)))
#define opcode_BUDB_GetTextVersion 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(17)))
#define opcode_BUDB_SaveText 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(18)))
#define opcode_BUDB_FreeAllLocks 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(19)))
#define opcode_BUDB_FreeLock 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(20)))
#define opcode_BUDB_GetInstanceId 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(21)))
#define opcode_BUDB_GetLock 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(22)))
#define opcode_BUDB_DbVerify 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(23)))
#define opcode_BUDB_DumpDB 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(24)))
#define opcode_BUDB_RestoreDbHeader 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(25)))
#define opcode_BUDB_T_GetVersion 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(26)))
#define opcode_BUDB_T_DumpHashTable 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(27)))
#define opcode_BUDB_T_DumpDatabase 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(28)))
#define opcode_BUDB_AddVolumes 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(29)))
#define opcode_BUDB_ListDumps 	((afs_uint64)((17LL << 32) + BUDB_OpCodeIndex(30)))
#endif	/* _RXGEN_BUDB_ */