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
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
|
/*
* Copyright (C) 1986-2005 The Free Software Foundation, Inc.
*
* Portions Copyright (C) 1998-2005 Derek Price, Ximbiot <http://ximbiot.com>,
* and others.
*
* Portions Copyright (C) 1992, Brian Berliner and Jeff Polk
* Portions Copyright (C) 1989-1992, Brian Berliner
*
* You may distribute under the terms of the GNU General Public License as
* specified in the README file that comes with the CVS kit. */
#include <sys/cdefs.h>
__RCSID("$NetBSD: mkmodules.c,v 1.7 2016/05/17 14:00:09 christos Exp $");
#include "cvs.h"
#include "getline.h"
#include "history.h"
#include "save-cwd.h"
#ifndef DBLKSIZ
#define DBLKSIZ 4096 /* since GNU ndbm doesn't define it */
#endif
static int checkout_file (char *file, char *temp);
static char *make_tempfile (void);
static void rename_rcsfile (char *temp, char *real);
#ifndef MY_NDBM
static void rename_dbmfile (char *temp);
static void write_dbmfile (char *temp);
#endif /* !MY_NDBM */
/* cvsacl patch */
static const char *const aclconfig_contents[] = {
"# Set `UseCVSACL' to yes to use CVSACL feature.\n",
"UseCVSACL=yes\n",
"\n",
"# Default CVSACL Permission to use.\n",
"#CVSACLDefaultPermissions=p\n",
"\n",
"# Default file location for CVS ACL file (access) is CVSROOT/access.\n",
"# If you want to use a different location, define it below.\n",
"#CVSACLFileLocation=/path/to/cvs/access\n",
"\n",
"# Set `UseSystemGroups' to yes to use system group definitions (/etc/group).\n",
"UseSystemGroups=yes\n",
"\n",
"# Set `UseCVSGroups' to yes to use another group file.\n",
"#UseCVSGroups=yes\n",
"\n",
"# Default file location for CVS groups file is CVSROOT/group.\n",
"# If you want to use a different location, define it below.\n",
"#CVSGroupsFileLocation=/path/to/cvs/group\n",
"\n",
"# Set UseSeperateACLFileForEachDir to yes in order to use a\n",
"# seperate 'access' file for each directory.\n",
"# This increased the performance if you have really big repository.\n",
"#UseSeperateACLFileForEachDir=no\n",
"\n",
"# If StopAtFirstPermissionDenied is set to yes\n",
"# operation will stop at first permission denied message.\n",
"# Default is no.\n",
"#StopAtFirstPermissionDenied=no\n",
"\n",
"# Set CVSServerRunAsUser to a system user, in order CVS server\n",
"# to run as.\n",
"#CVSServerRunAsUser=runascvsuser",
NULL
};
static const char *const access_contents[] = {
"# CVS ACL definitions file. DO NOT EDIT MANUALLY\n",
"#\n",
"# BNF:\n",
"# <entry>: "
"<filetype>:<path>:<tag-branch>:<permission-list>:\n",
"# <filetype>: d|f\n",
"# <path>: ALL | unix-file-path\n",
"# <tag-branch>: ALL | HEAD | name\n",
"# <permission-list>: <permission>\n",
"# | <permission-list> , <permission>\n",
"# <permission>: <actor>!<privilege>\n",
"# <actor>: ALL | user | group\n",
"# <privilege> n | a | w | t | r | c | d | p\n",
"#\n",
"# Valid privileges are:\n",
"# * - no permission (n) (1)\n",
"# * - all permissions (a) (2)\n",
"# * - write permission (w) (3)\n",
"# * - tag permission (t) (4)\n",
"# * - read permission (r) (5)\n",
"# * - add permission (c) (6)\n",
"# * - remove permission (d) (7)\n",
"# * - permission change (p) (8)\n",
"#\n",
"# Valid filetypes are:\n",
"# * - plain file (f)\n",
"# * - directory (d)\n",
"#\n",
NULL
};
static const char *const group_contents[] = {
NULL
};
/* Structure which describes an administrative file. */
struct admin_file {
/* Name of the file, within the CVSROOT directory. */
char *filename;
/* This is a one line description of what the file is for. It is not
currently used, although one wonders whether it should be, somehow.
If NULL, then don't process this file in mkmodules (FIXME?: a bit of
a kludge; probably should replace this with a flags field). */
char *errormsg;
/* Contents which the file should have in a new repository. To avoid
problems with brain-dead compilers which choke on long string constants,
this is a pointer to an array of char * terminated by NULL--each of
the strings is concatenated.
If this field is NULL, the file is not created in a new
repository, but it can be added with "cvs add" (just as if one
had created the repository with a version of CVS which didn't
know about the file) and the checked-out copy will be updated
without having to add it to checkoutlist. */
const char * const *contents;
};
static const char *const loginfo_contents[] = {
"# The \"loginfo\" file controls where \"cvs commit\" log information is\n",
"# sent. The first entry on a line is a regular expression which must\n",
"# match the directory that the change is being made to, relative to the\n",
"# $CVSROOT. If a match is found, then the remainder of the line is a\n",
"# filter program that should expect log information on its standard input.\n",
"#\n",
"# If the repository name does not match any of the regular expressions in this\n",
"# file, the \"DEFAULT\" line is used, if it is specified.\n",
"#\n",
"# If the name ALL appears as a regular expression it is always used\n",
"# in addition to the first matching regex or DEFAULT.\n",
"#\n",
"# If any format strings are present in the filter, they will be replaced\n",
"# as follows:\n",
"# %c = canonical name of the command being executed\n",
#ifdef PROXY_SUPPORT
"# %R = the name of the referrer, if any, otherwise the value NONE\n",
#endif
"# %p = path relative to repository\n",
"# %r = repository (path portion of $CVSROOT)\n",
"# %t = tagname\n",
"# %{sVv} = attribute list = file name, old version number (pre-checkin),\n",
"# new version number (post-checkin). When either old or new revision\n",
"# is unknown, doesn't exist, or isn't applicable, the string \"NONE\"\n",
"# will be placed on the command line instead.\n",
"#\n",
"# Note that %{sVv} is a list operator and not all elements are necessary.\n",
"# Thus %{sv} is a legal format string, but will only be replaced with\n",
"# file name and new revision.\n",
"# It also generates multiple arguments for each file being operated upon.\n",
"# That is, if two files, file1 & file2, are being commited from 1.1 to\n",
"# version 1.1.2.1 and from 1.1.2.2 to 1.1.2.3, respectively, %{sVv} will\n",
"# generate the following six arguments in this order:\n",
"# file1, 1.1, 1.1.2.1, file2, 1.1.2.2, 1.1.2.3.\n",
"#\n",
"# For example:\n",
"#DEFAULT (echo \"\"; id; echo %s; date; cat) >> $CVSROOT/CVSROOT/commitlog\n",
"# or\n",
"#DEFAULT (echo \"\"; id; echo %{sVv}; date; cat) >> $CVSROOT/CVSROOT/commitlog\n",
NULL
};
static const char *const rcsinfo_contents[] = {
"# The \"rcsinfo\" file is used to control templates with which the editor\n",
"# is invoked on commit and import.\n",
"#\n",
"# The first entry on a line is a regular expression which is tested\n",
"# against the directory that the change is being made to, relative to the\n",
"# $CVSROOT. For the first match that is found, then the remainder of the\n",
"# line is the name of the file that contains the template.\n",
"#\n",
"# If the repository name does not match any of the regular expressions in this\n",
"# file, the \"DEFAULT\" line is used, if it is specified.\n",
"#\n",
"# If the name \"ALL\" appears as a regular expression it is always used\n",
"# in addition to the first matching regex or \"DEFAULT\".\n",
NULL
};
static const char *const verifymsg_contents[] = {
"# The \"verifymsg\" file is used to allow verification of logging\n",
"# information. It works best when a template (as specified in the\n",
"# rcsinfo file) is provided for the logging procedure. Given a\n",
"# template with locations for, a bug-id number, a list of people who\n",
"# reviewed the code before it can be checked in, and an external\n",
"# process to catalog the differences that were code reviewed, the\n",
"# following test can be applied to the code:\n",
"#\n",
"# Making sure that the entered bug-id number is correct.\n",
"# Validating that the code that was reviewed is indeed the code being\n",
"# checked in (using the bug-id number or a seperate review\n",
"# number to identify this particular code set.).\n",
"#\n",
"# If any of the above test failed, then the commit would be aborted.\n",
"#\n",
"# Format strings present in the filter will be replaced as follows:\n",
"# %c = canonical name of the command being executed\n",
#ifdef PROXY_SUPPORT
"# %R = the name of the referrer, if any, otherwise the value NONE\n",
#endif
"# %p = path relative to repository\n",
"# %r = repository (path portion of $CVSROOT)\n",
"# %l = name of log file to be verified.\n",
"#\n",
"# If no format strings are present in the filter, a default \" %l\" will\n",
"# be appended to the filter, but this usage is deprecated.\n",
"#\n",
"# Actions such as mailing a copy of the report to each reviewer are\n",
"# better handled by an entry in the loginfo file.\n",
"#\n",
"# One thing that should be noted is the the ALL keyword is not\n",
"# supported. There can be only one entry that matches a given\n",
"# repository.\n",
NULL
};
static const char *const commitinfo_contents[] = {
"# The \"commitinfo\" file is used to control pre-commit checks.\n",
"# The filter on the right is invoked with the repository and a list \n",
"# of files to check. A non-zero exit of the filter program will \n",
"# cause the commit to be aborted.\n",
"#\n",
"# The first entry on a line is a regular expression which is tested\n",
"# against the directory that the change is being committed to, relative\n",
"# to the $CVSROOT. For the first match that is found, then the remainder\n",
"# of the line is the name of the filter to run.\n",
"#\n",
"# Format strings present in the filter will be replaced as follows:\n",
"# %c = canonical name of the command being executed\n",
#ifdef PROXY_SUPPORT
"# %R = the name of the referrer, if any, otherwise the value NONE\n",
#endif
"# %p = path relative to repository\n",
"# %r = repository (path portion of $CVSROOT)\n",
"# %t = tagname\n",
"# %{s} = file name, file name, ...\n",
"#\n",
"# If no format strings are present in the filter string, a default of\n",
"# \" %r %s\" will be appended to the filter string, but this usage is\n",
"# deprecated.\n",
"#\n",
"# If the repository name does not match any of the regular expressions in this\n",
"# file, the \"DEFAULT\" line is used, if it is specified.\n",
"#\n",
"# If the name \"ALL\" appears as a regular expression it is always used\n",
"# in addition to the first matching regex or \"DEFAULT\".\n",
NULL
};
static const char *const taginfo_contents[] = {
"# The \"taginfo\" file is used to control pre-tag checks.\n",
"# The filter on the right is invoked with the following arguments\n",
"# if no format strings are present:\n",
"#\n",
"# $1 -- tagname\n",
"# $2 -- operation \"add\" for tag, \"mov\" for tag -F, and \"del\" for tag -d\n",
"# $3 -- tagtype \"?\" on delete, \"T\" for branch, \"N\" for static\n",
"# $4 -- repository\n",
"# $5-> file revision [file revision ...]\n",
"#\n",
"# If any format strings are present in the filter, they will be replaced\n",
"# as follows:\n",
"# %b = branch mode = \"?\" (delete ops - unknown) | \"T\" (branch)\n",
"# | \"N\" (not branch)\n",
"# %o = operation = \"add\" | \"mov\" | \"del\"\n",
"# %c = canonical name of the command being executed\n",
#ifdef PROXY_SUPPORT
"# %R = the name of the referrer, if any, otherwise the value NONE\n",
#endif
"# %p = path relative to repository\n",
"# %r = repository (path portion of $CVSROOT)\n",
"# %t = tagname\n",
"# %{sVv} = attribute list = file name, old version tag will be deleted\n",
"# from, new version tag will be added to (or deleted from, but\n",
"# this feature is deprecated. When either old or new revision is\n",
"# unknown, doesn't exist, or isn't applicable, the string \"NONE\"\n",
"# will be placed on the command line.\n",
"#\n",
"# Note that %{sVv} is a list operator and not all elements are necessary.\n",
"# Thus %{sV} is a legal format string, but will only be replaced with file\n",
"# name and old revision. it also generates multiple arguments for each file\n",
"# being operated upon. i.e. if two files, file1 & file2, are having a tag\n",
"# moved from version 1.1 to version 1.1.2.9, %{sVv} will generate the\n",
"# following six arguments in this order:\n",
"# file1, 1.1, 1.1.2.9, file2, 1.1, 1.1.2.9.\n",
"#\n",
"# A non-zero exit of the filter program will cause the tag to be aborted.\n",
"#\n",
"# The first entry on a line is a regular expression which is tested\n",
"# against the directory that the change is being committed to, relative\n",
"# to the $CVSROOT. For the first match that is found, then the remainder\n",
"# of the line is the name of the filter to run.\n",
"#\n",
"# If the repository name does not match any of the regular expressions in this\n",
"# file, the \"DEFAULT\" line is used, if it is specified.\n",
"#\n",
"# If the name \"ALL\" appears as a regular expression it is always used\n",
"# in addition to the first matching regex or \"DEFAULT\".\n",
NULL
};
static const char *const preproxy_contents[] = {
"# The \"preproxy\" file is called form the secondary server as soon as\n",
"# the secondary server determines that it will be proxying a write\n",
"# command to a primary server and immediately before it opens a\n",
"# connection to the primary server. This script might, for example, be\n",
"# used to launch a dial up or VPN connection to the primary server's\n",
"# network.\n",
"#\n",
"# If any format strings are present in the filter, they will be replaced\n",
"# as follows:\n",
"# %c = canonical name of the command being executed\n",
#ifdef PROXY_SUPPORT
"# %R = the name of the referrer, if any, otherwise the value NONE\n",
#endif
"# %p = path relative to repository (currently always \".\")\n",
"# %r = repository (path portion of $CVSROOT)\n",
"#\n",
"# The first entry on a line is a regular expression which is tested\n",
"# against the directory that the change is being committed to, relative\n",
"# to the $CVSROOT. For the first match that is found, then the remainder\n",
"# of the line is the name of the filter to run.\n",
"#\n",
"# If the repository name does not match any of the regular expressions in this\n",
"# file, the \"DEFAULT\" line is used, if it is specified.\n",
"#\n",
"# If the name \"ALL\" appears as a regular expression it is always used\n",
"# in addition to the first matching regex or \"DEFAULT\".\n",
NULL
};
static const char *const postadmin_contents[] = {
"# The \"postadmin\" file is called after the \"admin\" command finishes\n",
"# processing a directory.\n",
"#\n",
"# If any format strings are present in the filter, they will be replaced\n",
"# as follows:\n",
"# %c = canonical name of the command being executed\n",
#ifdef PROXY_SUPPORT
"# %R = the name of the referrer, if any, otherwise the value NONE\n",
#endif
"# %p = path relative to repository\n",
"# %r = repository (path portion of $CVSROOT)\n",
"#\n",
"# The first entry on a line is a regular expression which is tested\n",
"# against the directory that the change is being committed to, relative\n",
"# to the $CVSROOT. For the first match that is found, then the remainder\n",
"# of the line is the name of the filter to run.\n",
"#\n",
"# If the repository name does not match any of the regular expressions in this\n",
"# file, the \"DEFAULT\" line is used, if it is specified.\n",
"#\n",
"# If the name \"ALL\" appears as a regular expression it is always used\n",
"# in addition to the first matching regex or \"DEFAULT\".\n",
NULL
};
static const char *const postproxy_contents[] = {
"# The \"postproxy\" file is called from a secondary server as soon as\n",
"# the secondary server closes its connection to the primary server.\n",
"# This script might, for example, be used to shut down a dial up\n",
"# or VPN connection to the primary server's network.\n",
"#\n",
"# If any format strings are present in the filter, they will be replaced\n",
"# as follows:\n",
"# %c = canonical name of the command being executed\n",
#ifdef PROXY_SUPPORT
"# %R = the name of the referrer, if any, otherwise the value NONE\n",
#endif
"# %p = path relative to repository (currently always \".\")\n",
"# %r = repository (path portion of $CVSROOT)\n",
"#\n",
"# The first entry on a line is a regular expression which is tested\n",
"# against the directory that the change is being committed to, relative\n",
"# to the $CVSROOT. For the first match that is found, then the remainder\n",
"# of the line is the name of the filter to run.\n",
"#\n",
"# If the repository name does not match any of the regular expressions in this\n",
"# file, the \"DEFAULT\" line is used, if it is specified.\n",
"#\n",
"# If the name \"ALL\" appears as a regular expression it is always used\n",
"# in addition to the first matching regex or \"DEFAULT\".\n",
NULL
};
static const char *const posttag_contents[] = {
"# The \"posttag\" file is called after the \"tag\" command finishes\n",
"# processing a directory.\n",
"#\n",
"# If any format strings are present in the filter, they will be replaced\n",
"# as follows:\n",
"# %b = branch mode = \"?\" (delete ops - unknown) | \"T\" (branch)\n",
"# | \"N\" (not branch)\n",
"# %o = operation = \"add\" | \"mov\" | \"del\"\n",
"# %c = canonical name of the command being executed\n",
#ifdef PROXY_SUPPORT
"# %R = the name of the referrer, if any, otherwise the value NONE\n",
#endif
"# %p = path relative to repository\n",
"# %r = repository (path portion of $CVSROOT)\n",
"# %t = tagname\n",
"# %{sVv} = attribute list = file name, old version tag will be deleted\n",
"# from, new version tag will be added to (or deleted from, but\n",
"# this feature is deprecated. When either old or new revision is\n",
"# unknown, doesn't exist, or isn't applicable, the string \"NONE\"\n",
"# will be placed on the command line.\n",
"#\n",
"# Note that %{sVv} is a list operator and not all elements are necessary.\n",
"# Thus %{sV} is a legal format string, but will only be replaced with file\n",
"# name and old revision. it also generates multiple arguments for each file\n",
"# being operated upon. i.e. if two files, file1 & file2, are having a tag\n",
"# moved from version 1.1 to version 1.1.2.9, %{sVv} will generate the\n",
"# following six arguments in this order:\n",
"# file1, 1.1, 1.1.2.9, file2, 1.1, 1.1.2.9.\n",
"#\n",
"# The first entry on a line is a regular expression which is tested\n",
"# against the directory that the change is being committed to, relative\n",
"# to the $CVSROOT. For the first match that is found, then the remainder\n",
"# of the line is the name of the filter to run.\n",
"#\n",
"# If the repository name does not match any of the regular expressions in this\n",
"# file, the \"DEFAULT\" line is used, if it is specified.\n",
"#\n",
"# If the name \"ALL\" appears as a regular expression it is always used\n",
"# in addition to the first matching regex or \"DEFAULT\".\n",
NULL
};
static const char *const postwatch_contents[] = {
"# The \"postwatch\" file is called after any command finishes writing new\n",
"# file attibute (watch/edit) information in a directory.\n",
"#\n",
"# If any format strings are present in the filter, they will be replaced\n",
"# as follows:\n",
"# %c = canonical name of the command being executed\n",
#ifdef PROXY_SUPPORT
"# %R = the name of the referrer, if any, otherwise the value NONE\n",
#endif
"# %p = path relative to repository\n",
"# %r = repository (path portion of $CVSROOT)\n",
"#\n",
"# The first entry on a line is a regular expression which is tested\n",
"# against the directory that the change is being committed to, relative\n",
"# to the $CVSROOT. For the first match that is found, then the remainder\n",
"# of the line is the name of the filter to run.\n",
"#\n",
"# If the repository name does not match any of the regular expressions in this\n",
"# file, the \"DEFAULT\" line is used, if it is specified.\n",
"#\n",
"# If the name \"ALL\" appears as a regular expression it is always used\n",
"# in addition to the first matching regex or \"DEFAULT\".\n",
NULL
};
static const char *const checkoutlist_contents[] = {
"# The \"checkoutlist\" file is used to support additional version controlled\n",
"# administrative files in $CVSROOT/CVSROOT, such as template files.\n",
"#\n",
"# The first entry on a line is a filename which will be checked out from\n",
"# the corresponding RCS file in the $CVSROOT/CVSROOT directory.\n",
"# The remainder of the line is an error message to use if the file cannot\n",
"# be checked out.\n",
"#\n",
"# File format:\n",
"#\n",
"# [<whitespace>]<filename>[<whitespace><error message>]<end-of-line>\n",
"#\n",
"# comment lines begin with '#'\n",
NULL
};
static const char *const cvswrappers_contents[] = {
"# This file affects handling of files based on their names.\n",
"#\n",
#if 0 /* see comments in wrap_add in wrapper.c */
"# The -t/-f options allow one to treat directories of files\n",
"# as a single file, or to transform a file in other ways on\n",
"# its way in and out of CVS.\n",
"#\n",
#endif
"# The -m option specifies whether CVS attempts to merge files.\n",
"#\n",
"# The -k option specifies keyword expansion (e.g. -kb for binary).\n",
"#\n",
"# Format of wrapper file ($CVSROOT/CVSROOT/cvswrappers or .cvswrappers)\n",
"#\n",
"# wildcard [option value][option value]...\n",
"#\n",
"# where option is one of\n",
"# -f from cvs filter value: path to filter\n",
"# -t to cvs filter value: path to filter\n",
"# -m update methodology value: MERGE or COPY\n",
"# -k expansion mode value: b, o, kkv, &c\n",
"#\n",
"# and value is a single-quote delimited value.\n",
"# For example:\n",
"#*.gif -k 'b'\n",
NULL
};
static const char *const notify_contents[] = {
"# The \"notify\" file controls where notifications from watches set by\n",
"# \"cvs watch add\" or \"cvs edit\" are sent. The first entry on a line is\n",
"# a regular expression which is tested against the directory that the\n",
"# change is being made to, relative to the $CVSROOT. If it matches,\n",
"# then the remainder of the line is a filter program that should contain\n",
"# one occurrence of %s for the user to notify, and information on its\n",
"# standard input.\n",
"#\n",
"# \"ALL\" or \"DEFAULT\" can be used in place of the regular expression.\n",
"#\n",
"# format strings are replaceed as follows:\n",
"# %c = canonical name of the command being executed\n",
#ifdef PROXY_SUPPORT
"# %R = the name of the referrer, if any, otherwise the value NONE\n",
#endif
"# %p = path relative to repository\n",
"# %r = repository (path portion of $CVSROOT)\n",
"# %s = user to notify\n",
"#\n",
"# For example:\n",
"#ALL (echo Committed to %r/%p; cat) |mail %s -s \"CVS notification\"\n",
NULL
};
static const char *const modules_contents[] = {
"# Three different line formats are valid:\n",
"# key -a aliases...\n",
"# key [options] directory\n",
"# key [options] directory files...\n",
"#\n",
"# Where \"options\" are composed of:\n",
"# -i prog Run \"prog\" on \"cvs commit\" from top-level of module.\n",
"# -o prog Run \"prog\" on \"cvs checkout\" of module.\n",
"# -e prog Run \"prog\" on \"cvs export\" of module.\n",
"# -t prog Run \"prog\" on \"cvs rtag\" of module.\n",
"# -u prog Run \"prog\" on \"cvs update\" of module.\n",
"# -d dir Place module in directory \"dir\" instead of module name.\n",
"# -l Top-level directory only -- do not recurse.\n",
"#\n",
"# NOTE: If you change any of the \"Run\" options above, you'll have to\n",
"# release and re-checkout any working directories of these modules.\n",
"#\n",
"# And \"directory\" is a path to a directory relative to $CVSROOT.\n",
"#\n",
"# The \"-a\" option specifies an alias. An alias is interpreted as if\n",
"# everything on the right of the \"-a\" had been typed on the command line.\n",
"#\n",
"# You can encode a module within a module by using the special '&'\n",
"# character to interpose another module into the current module. This\n",
"# can be useful for creating a module that consists of many directories\n",
"# spread out over the entire source repository.\n",
NULL
};
static const char *const config_contents[] = {
"# Set `SystemAuth' to `no' if pserver shouldn't check system users/passwords.\n",
"#SystemAuth=no\n",
"\n",
"# Set `LocalKeyword' to specify a local alias for a standard keyword.\n",
"#LocalKeyword=MYCVS=CVSHeader\n",
"\n",
"# Set `KeywordExpand' to `i' followed by a list of keywords to expand or\n",
"# `e' followed by a list of keywords to not expand.\n"
"#KeywordExpand=iMYCVS,Name,Date\n",
"#KeywordExpand=eCVSHeader\n",
"\n",
#ifdef PRESERVE_PERMISSIONS_SUPPORT
"# Set `PreservePermissions' to `yes' to save file status information\n",
"# in the repository.\n",
"#PreservePermissions=no\n",
"\n",
#endif
"# Set `TopLevelAdmin' to `yes' to create a CVS directory at the top\n",
"# level of the new working directory when using the `cvs checkout'\n",
"# command.\n",
"#TopLevelAdmin=no\n",
"\n",
"# Put CVS lock files in this directory rather than directly in the repository.\n",
"#LockDir=/var/lock/cvs\n",
"\n",
"# Set `LogHistory' to `all' or `" ALL_HISTORY_REC_TYPES "' to log all transactions to the\n",
"# history file, or a subset as needed (ie `TMAR' logs all write operations)\n",
"#LogHistory=" ALL_HISTORY_REC_TYPES "\n",
"\n",
"# Set `RereadLogAfterVerify' to `always' (the default) to allow the verifymsg\n",
"# script to change the log message. Set it to `stat' to force CVS to verify\n",
"# that the file has changed before reading it (this can take up to an extra\n",
"# second per directory being committed, so it is not recommended for large\n",
"# repositories. Set it to `never' (the previous CVS behavior) to prevent\n",
"# verifymsg scripts from changing the log message.\n",
"#RereadLogAfterVerify=always\n",
"\n",
"# Set `UserAdminOptions' to the list of `cvs admin' commands (options)\n",
"# that users not in the `cvsadmin' group are allowed to run. This\n",
"# defaults to `k', or only allowing the changing of the default\n",
"# keyword expansion mode for files for users not in the `cvsadmin' group.\n",
"# This value is ignored if the `cvsadmin' group does not exist.\n",
"#\n",
"# The following string would enable all `cvs admin' commands for all\n",
"# users:\n",
"#AdminGroup=wheel\n",
"#AdminOptions=aAbceIklLmnNostuU\n",
#ifdef SUPPORT_OLD_INFO_FMT_STRINGS
"\n",
"# Set `UseNewInfoFmtStrings' to `no' if you must support a legacy system by\n",
"# enabling the deprecated old style info file command line format strings.\n",
"# Be warned that these strings could be disabled in any new version of CVS.\n",
"UseNewInfoFmtStrings=yes\n",
#endif /* SUPPORT_OLD_INFO_FMT_STRINGS */
"\n",
"# Set `ImportNewFilesToVendorBranchOnly' to `yes' if you wish to force\n",
"# every `cvs import' command to behave as if the `-X' flag was\n",
"# specified.\n",
"#ImportNewFilesToVendorBranchOnly=no\n",
#ifdef PROXY_SUPPORT
"\n",
"# Set `PrimaryServer' to the CVSROOT to the primary, or write, server when\n",
"# establishing one or more read-only mirrors which serve as proxies for\n",
"# the write server in write mode or redirect the client to the primary for\n",
"# write requests.\n",
"#\n",
"# For example:\n",
"#\n",
"# PrimaryServer=:fork:localhost/cvsroot\n",
"\n",
"# Set `MaxProxyBufferSize' to the the maximum allowable secondary\n",
"# buffer memory cache size before the buffer begins being stored to disk, in\n",
"# bytes. Must be a positive integer but may end in `k', `M', `G', or `T' (for\n",
"# kiilo, mega, giga, & tera, respectively). If an otherwise valid number you\n",
"# specify is greater than the SIZE_MAX defined by your system's C compiler,\n",
"# then it will be resolved to SIZE_MAX without a warning. Defaults to 8M (8\n",
"# megabytes).\n",
"#\n",
"# High values for MaxProxyBufferSize may speed up a secondary server\n",
"# with old hardware and a lot of available memory but can actually slow a\n",
"# modern system down slightly.\n",
"#\n",
"# For example:\n",
"#\n",
"# MaxProxyBufferSize=1G\n",
#endif /* PROXY_SUPPORT */
"\n",
"# Set `MaxCommentLeaderLength' to the maximum length permitted for the\n",
"# automagically determined comment leader used when expanding the Log\n",
"# keyword, in bytes. CVS's behavior when the automagically determined\n",
"# comment leader exceeds this length is dependant on the value of\n",
"# `UseArchiveCommentLeader' set in this file. `unlimited' is a valid\n",
"# setting for this value. Defaults to 20 bytes.\n",
"#\n",
"# For example:\n",
"#\n",
"# MaxCommentLeaderLength=20\n",
"\n",
"# Set `UseArchiveCommentLeader' to `yes' to cause CVS to fall back on\n",
"# the comment leader set in the RCS archive file, if any, when the\n",
"# automagically determined comment leader exceeds `MaxCommentLeaderLength'\n",
"# bytes. If `UseArchiveCommentLeader' is not set and a comment leader\n",
"# greater than `MaxCommentLeaderLength' is calculated, the Log keyword\n",
"# being examined will not be expanded. Defaults to `no'.\n",
"#\n",
"# For example:\n",
"#\n",
"# UseArchiveCommentLeader=no\n",
"#\n",
"# Set this to the name of a local tag to use in addition to Id\n",
"#tag=OurTag\n",
NULL
};
static const struct admin_file filelist[] = {
{CVSROOTADM_CHECKOUTLIST,
"a %s file can specify extra CVSROOT files to auto-checkout",
checkoutlist_contents},
{CVSROOTADM_COMMITINFO,
"a %s file can be used to configure 'cvs commit' checking",
commitinfo_contents},
{CVSROOTADM_IGNORE,
"a %s file can be used to specify files to ignore",
NULL},
{CVSROOTADM_LOGINFO,
"no logging of 'cvs commit' messages is done without a %s file",
&loginfo_contents[0]},
{CVSROOTADM_MODULES,
/* modules is special-cased in mkmodules. */
NULL,
modules_contents},
{CVSROOTADM_NOTIFY,
"a %s file can be used to specify where notifications go",
notify_contents},
{CVSROOTADM_POSTADMIN,
"a %s file can be used to configure 'cvs admin' logging",
postadmin_contents},
{CVSROOTADM_POSTPROXY,
"a %s file can be used to close or log connections to a primary server",
postproxy_contents},
{CVSROOTADM_POSTTAG,
"a %s file can be used to configure 'cvs tag' logging",
posttag_contents},
{CVSROOTADM_POSTWATCH,
"a %s file can be used to configure 'cvs watch' logging",
postwatch_contents},
{CVSROOTADM_PREPROXY,
"a %s file can be used to open or log connections to a primary server",
preproxy_contents},
{CVSROOTADM_RCSINFO,
"a %s file can be used to configure 'cvs commit' templates",
rcsinfo_contents},
{CVSROOTADM_READERS,
"a %s file specifies read-only users",
NULL},
{CVSROOTADM_TAGINFO,
"a %s file can be used to configure 'cvs tag' checking",
taginfo_contents},
{CVSROOTADM_VERIFYMSG,
"a %s file can be used to validate log messages",
verifymsg_contents},
{CVSROOTADM_WRAPPER,
"a %s file can be used to specify files to treat as wrappers",
cvswrappers_contents},
{CVSROOTADM_WRITERS,
"a %s file specifies read/write users",
NULL},
/* Some have suggested listing CVSROOTADM_PASSWD here too. This
would mean that CVS commands which operate on the
CVSROOTADM_PASSWD file would transmit hashed passwords over the
net. This might seem to be no big deal, as pserver normally
transmits cleartext passwords, but the difference is that
CVSROOTADM_PASSWD contains *all* passwords, not just the ones
currently being used. For example, it could be too easy to
accidentally give someone readonly access to CVSROOTADM_PASSWD
(e.g. via anonymous CVS or cvsweb), and then if there are any
guessable passwords for read/write access (usually there will be)
they get read/write access.
Another worry is the implications of storing old passwords--if
someone used a password in the past they might be using it
elsewhere, using a similar password, etc, and so saving old
passwords, even hashed, is probably not a good idea. */
{CVSROOTADM_CONFIG,
"a %s file configures various behaviors",
config_contents},
/* cvsacl patch */
{CVSROOTADM_ACLCONFIG,
"a %s file configures Access Control List behaviors",
aclconfig_contents},
{CVSROOTADM_ACCESS,
"a %s file configures Access Control Lists",
access_contents},
{CVSROOTADM_GROUP,
"a %s file configures Access Control List group definitions",
group_contents},
{NULL, NULL, NULL}
};
/* Rebuild the checked out administrative files in directory DIR. */
int
mkmodules (char *dir)
{
struct saved_cwd cwd;
char *temp;
char *cp, *last, *fname;
#ifdef MY_NDBM
DBM *db;
#endif
FILE *fp;
char *line = NULL;
size_t line_allocated = 0;
const struct admin_file *fileptr;
if (noexec)
return 0;
if (save_cwd (&cwd))
error (1, errno, "Failed to save current directory.");
if (CVS_CHDIR (dir) < 0)
error (1, errno, "cannot chdir to %s", dir);
/*
* First, do the work necessary to update the "modules" database.
*/
temp = make_tempfile ();
switch (checkout_file (CVSROOTADM_MODULES, temp))
{
case 0: /* everything ok */
#ifdef MY_NDBM
/* open it, to generate any duplicate errors */
if ((db = dbm_open (temp, O_RDONLY, 0666)) != NULL)
dbm_close (db);
#else
write_dbmfile (temp);
rename_dbmfile (temp);
#endif
rename_rcsfile (temp, CVSROOTADM_MODULES);
break;
default:
error (0, 0,
"'cvs checkout' is less functional without a %s file",
CVSROOTADM_MODULES);
break;
} /* switch on checkout_file() */
if (unlink_file (temp) < 0
&& !existence_error (errno))
error (0, errno, "cannot remove %s", temp);
free (temp);
/* Checkout the files that need it in CVSROOT dir */
for (fileptr = filelist; fileptr && fileptr->filename; fileptr++) {
if (fileptr->errormsg == NULL)
continue;
temp = make_tempfile ();
if (checkout_file (fileptr->filename, temp) == 0)
rename_rcsfile (temp, fileptr->filename);
/* else
* If there was some problem other than the file not existing,
* checkout_file already printed a real error message. If the
* file does not exist, it is harmless--it probably just means
* that the repository was created with an old version of CVS
* which didn't have so many files in CVSROOT.
*/
if (unlink_file (temp) < 0
&& !existence_error (errno))
error (0, errno, "cannot remove %s", temp);
free (temp);
}
fp = CVS_FOPEN (CVSROOTADM_CHECKOUTLIST, "r");
if (fp)
{
/*
* File format:
* [<whitespace>]<filename>[<whitespace><error message>]<end-of-line>
*
* comment lines begin with '#'
*/
while (getline (&line, &line_allocated, fp) >= 0)
{
/* skip lines starting with # */
if (line[0] == '#')
continue;
if ((last = strrchr (line, '\n')) != NULL)
*last = '\0'; /* strip the newline */
/* Skip leading white space. */
for (fname = line;
*fname && isspace ((unsigned char) *fname);
fname++)
;
/* Find end of filename. */
for (cp = fname; *cp && !isspace ((unsigned char) *cp); cp++)
;
*cp = '\0';
temp = make_tempfile ();
if (checkout_file (fname, temp) == 0)
{
rename_rcsfile (temp, fname);
}
else
{
/* Skip leading white space before the error message. */
for (cp++;
cp < last && *cp && isspace ((unsigned char) *cp);
cp++)
;
if (cp < last && *cp)
error (0, 0, "%s", cp);
}
if (unlink_file (temp) < 0
&& !existence_error (errno))
error (0, errno, "cannot remove %s", temp);
free (temp);
}
if (line)
free (line);
if (ferror (fp))
error (0, errno, "cannot read %s", CVSROOTADM_CHECKOUTLIST);
if (fclose (fp) < 0)
error (0, errno, "cannot close %s", CVSROOTADM_CHECKOUTLIST);
}
else
{
/* Error from CVS_FOPEN. */
if (!existence_error (errno))
error (0, errno, "cannot open %s", CVSROOTADM_CHECKOUTLIST);
}
if (restore_cwd (&cwd))
error (1, errno, "Failed to restore current directory, `%s'.",
cwd.name);
free_cwd (&cwd);
return 0;
}
/*
* Yeah, I know, there are NFS race conditions here.
*/
static char *
make_tempfile (void)
{
static int seed = 0;
int fd;
char *temp;
if (seed == 0)
seed = getpid ();
temp = xmalloc (sizeof (BAKPREFIX) + 40);
while (1)
{
(void) sprintf (temp, "%s%d", BAKPREFIX, seed++);
if ((fd = CVS_OPEN (temp, O_CREAT|O_EXCL|O_RDWR, 0666)) != -1)
break;
if (errno != EEXIST)
error (1, errno, "cannot create temporary file %s", temp);
}
if (close(fd) < 0)
error(1, errno, "cannot close temporary file %s", temp);
return temp;
}
/* Get a file. If the file does not exist, return 1 silently. If
there is an error, print a message and return 1 (FIXME: probably
not a very clean convention). On success, return 0. */
static int
checkout_file (char *file, char *temp)
{
char *rcs;
RCSNode *rcsnode;
int retcode = 0;
if (noexec)
return 0;
rcs = Xasprintf ("%s%s", file, RCSEXT);
if (!isfile (rcs))
{
free (rcs);
return 1;
}
rcsnode = RCS_parsercsfile (rcs);
if (!rcsnode)
{
/* Probably not necessary (?); RCS_parsercsfile already printed a
message. */
error (0, 0, "Failed to parse `%s'.", rcs);
free (rcs);
return 1;
}
retcode = RCS_checkout (rcsnode, NULL, NULL, NULL, NULL, temp, NULL, NULL);
if (retcode != 0)
{
/* Probably not necessary (?); RCS_checkout already printed a
message. */
error (0, 0, "failed to check out %s file",
file);
}
freercsnode (&rcsnode);
free (rcs);
return retcode;
}
#ifndef MY_NDBM
static void
write_dbmfile( char *temp )
{
char line[DBLKSIZ], value[DBLKSIZ];
FILE *fp;
DBM *db;
char *cp, *vp;
datum key, val;
int len, cont, err = 0;
fp = xfopen (temp, "r");
if ((db = dbm_open (temp, O_RDWR | O_CREAT | O_TRUNC, 0666)) == NULL)
error (1, errno, "cannot open dbm file %s for creation", temp);
for (cont = 0; fgets (line, sizeof (line), fp) != NULL;)
{
if ((cp = strrchr (line, '\n')) != NULL)
*cp = '\0'; /* strip the newline */
/*
* Add the line to the value, at the end if this is a continuation
* line; otherwise at the beginning, but only after any trailing
* backslash is removed.
*/
vp = value;
if (cont)
vp += strlen (value);
/*
* See if the line we read is a continuation line, and strip the
* backslash if so.
*/
len = strlen (line);
if (len > 0)
cp = &line[len - 1];
else
cp = line;
if (*cp == '\\')
{
cont = 1;
*cp = '\0';
}
else
{
cont = 0;
}
(void) strcpy (vp, line);
if (value[0] == '#')
continue; /* comment line */
vp = value;
while (*vp && isspace ((unsigned char) *vp))
vp++;
if (*vp == '\0')
continue; /* empty line */
/*
* If this was not a continuation line, add the entry to the database
*/
if (!cont)
{
key.dptr = vp;
while (*vp && !isspace ((unsigned char) *vp))
vp++;
key.dsize = vp - key.dptr;
*vp++ = '\0'; /* NULL terminate the key */
while (*vp && isspace ((unsigned char) *vp))
vp++; /* skip whitespace to value */
if (*vp == '\0')
{
error (0, 0, "warning: NULL value for key `%s'", key.dptr);
continue;
}
val.dptr = vp;
val.dsize = strlen (vp);
if (dbm_store (db, key, val, DBM_INSERT) == 1)
{
error (0, 0, "duplicate key found for `%s'", key.dptr);
err++;
}
}
}
dbm_close (db);
if (fclose (fp) < 0)
error (0, errno, "cannot close %s", temp);
if (err)
{
/* I think that the size of the buffer needed here is
just determined by sizeof (CVSROOTADM_MODULES), the
filenames created by make_tempfile, and other things that won't
overflow. */
char dotdir[50], dotpag[50], dotdb[50];
(void) sprintf (dotdir, "%s.dir", temp);
(void) sprintf (dotpag, "%s.pag", temp);
(void) sprintf (dotdb, "%s.db", temp);
if (unlink_file (dotdir) < 0
&& !existence_error (errno))
error (0, errno, "cannot remove %s", dotdir);
if (unlink_file (dotpag) < 0
&& !existence_error (errno))
error (0, errno, "cannot remove %s", dotpag);
if (unlink_file (dotdb) < 0
&& !existence_error (errno))
error (0, errno, "cannot remove %s", dotdb);
error (1, 0, "DBM creation failed; correct above errors");
}
}
static void
rename_dbmfile( char *temp )
{
/* I think that the size of the buffer needed here is
just determined by sizeof (CVSROOTADM_MODULES), the
filenames created by make_tempfile, and other things that won't
overflow. */
char newdir[50], newpag[50], newdb[50];
char dotdir[50], dotpag[50], dotdb[50];
char bakdir[50], bakpag[50], bakdb[50];
int dir1_errno = 0, pag1_errno = 0, db1_errno = 0;
int dir2_errno = 0, pag2_errno = 0, db2_errno = 0;
int dir3_errno = 0, pag3_errno = 0, db3_errno = 0;
(void) sprintf (dotdir, "%s.dir", CVSROOTADM_MODULES);
(void) sprintf (dotpag, "%s.pag", CVSROOTADM_MODULES);
(void) sprintf (dotdb, "%s.db", CVSROOTADM_MODULES);
(void) sprintf (bakdir, "%s%s.dir", BAKPREFIX, CVSROOTADM_MODULES);
(void) sprintf (bakpag, "%s%s.pag", BAKPREFIX, CVSROOTADM_MODULES);
(void) sprintf (bakdb, "%s%s.db", BAKPREFIX, CVSROOTADM_MODULES);
(void) sprintf (newdir, "%s.dir", temp);
(void) sprintf (newpag, "%s.pag", temp);
(void) sprintf (newdb, "%s.db", temp);
(void) chmod (newdir, 0666);
(void) chmod (newpag, 0666);
(void) chmod (newdb, 0666);
/* don't mess with me */
SIG_beginCrSect ();
/* rm .#modules.dir .#modules.pag */
if (unlink_file (bakdir) < 0)
dir1_errno = errno;
if (unlink_file (bakpag) < 0)
pag1_errno = errno;
if (unlink_file (bakdb) < 0)
db1_errno = errno;
/* mv modules.dir .#modules.dir */
if (CVS_RENAME (dotdir, bakdir) < 0)
dir2_errno = errno;
/* mv modules.pag .#modules.pag */
if (CVS_RENAME (dotpag, bakpag) < 0)
pag2_errno = errno;
/* mv modules.db .#modules.db */
if (CVS_RENAME (dotdb, bakdb) < 0)
db2_errno = errno;
/* mv "temp".dir modules.dir */
if (CVS_RENAME (newdir, dotdir) < 0)
dir3_errno = errno;
/* mv "temp".pag modules.pag */
if (CVS_RENAME (newpag, dotpag) < 0)
pag3_errno = errno;
/* mv "temp".db modules.db */
if (CVS_RENAME (newdb, dotdb) < 0)
db3_errno = errno;
/* OK -- make my day */
SIG_endCrSect ();
/* I didn't want to call error() when we had signals blocked
(unnecessary?), but do it now. */
if (dir1_errno && !existence_error (dir1_errno))
error (0, dir1_errno, "cannot remove %s", bakdir);
if (pag1_errno && !existence_error (pag1_errno))
error (0, pag1_errno, "cannot remove %s", bakpag);
if (db1_errno && !existence_error (db1_errno))
error (0, db1_errno, "cannot remove %s", bakdb);
if (dir2_errno && !existence_error (dir2_errno))
error (0, dir2_errno, "cannot remove %s", bakdir);
if (pag2_errno && !existence_error (pag2_errno))
error (0, pag2_errno, "cannot remove %s", bakpag);
if (db2_errno && !existence_error (db2_errno))
error (0, db2_errno, "cannot remove %s", bakdb);
if (dir3_errno && !existence_error (dir3_errno))
error (0, dir3_errno, "cannot remove %s", bakdir);
if (pag3_errno && !existence_error (pag3_errno))
error (0, pag3_errno, "cannot remove %s", bakpag);
if (db3_errno && !existence_error (db3_errno))
error (0, db3_errno, "cannot remove %s", bakdb);
}
#endif /* !MY_NDBM */
static void
rename_rcsfile (char *temp, char *real)
{
char *bak;
struct stat statbuf;
char *rcs;
/* Set "x" bits if set in original. */
rcs = Xasprintf ("%s%s", real, RCSEXT);
statbuf.st_mode = 0; /* in case rcs file doesn't exist, but it should... */
if (stat (rcs, &statbuf) < 0
&& !existence_error (errno))
error (0, errno, "cannot stat %s", rcs);
free (rcs);
if (chmod (temp, 0444 | (statbuf.st_mode & 0111)) < 0)
error (0, errno, "warning: cannot chmod %s", temp);
bak = Xasprintf ("%s%s", BAKPREFIX, real);
/* rm .#loginfo */
if (unlink_file (bak) < 0
&& !existence_error (errno))
error (0, errno, "cannot remove %s", bak);
/* mv loginfo .#loginfo */
if (CVS_RENAME (real, bak) < 0
&& !existence_error (errno))
error (0, errno, "cannot rename %s to %s", real, bak);
/* mv "temp" loginfo */
if (CVS_RENAME (temp, real) < 0
&& !existence_error (errno))
error (0, errno, "cannot rename %s to %s", temp, real);
free (bak);
}
const char *const init_usage[] = {
"Usage: %s %s\n",
"(Specify the --help global option for a list of other help options)\n",
NULL
};
int
init (int argc, char **argv)
{
/* Name of CVSROOT directory. */
char *adm;
/* Name of this administrative file. */
char *info;
/* Name of ,v file for this administrative file. */
char *info_v;
/* Exit status. */
int err = 0;
struct stat st;
const struct admin_file *fileptr;
umask (cvsumask);
if (argc == -1 || argc > 1)
usage (init_usage);
#ifdef CLIENT_SUPPORT
if (current_parsed_root->isremote)
{
start_server ();
ign_setup ();
send_init_command ();
return get_responses_and_close ();
}
#endif /* CLIENT_SUPPORT */
if (stat (current_parsed_root->directory, &st) != -1)
if (!admin_group_member ())
error (1, 0, "init to an existing repository is restricted to"
" members of the group %s", config->UserAdminGroup);
/* Note: we do *not* create parent directories as needed like the
old cvsinit.sh script did. Few utilities do that, and a
non-existent parent directory is as likely to be a typo as something
which needs to be created. */
mkdir_if_needed (current_parsed_root->directory);
adm = Xasprintf ("%s/%s", current_parsed_root->directory, CVSROOTADM);
mkdir_if_needed (adm);
/* This is needed because we pass "fileptr->filename" not "info"
to add_rcs_file below. I think this would be easy to change,
thus nuking the need for CVS_CHDIR here, but I haven't looked
closely (e.g. see wrappers calls within add_rcs_file). */
if ( CVS_CHDIR (adm) < 0)
error (1, errno, "cannot change to directory %s", adm);
/* Make Emptydir so it's there if we need it */
mkdir_if_needed (CVSNULLREPOS);
/* 80 is long enough for all the administrative file names, plus
"/" and so on. */
info = xmalloc (strlen (adm) + 80);
info_v = xmalloc (strlen (adm) + 80);
for (fileptr = filelist; fileptr && fileptr->filename; ++fileptr)
{
if (fileptr->contents == NULL)
continue;
strcpy (info, adm);
strcat (info, "/");
strcat (info, fileptr->filename);
strcpy (info_v, info);
strcat (info_v, RCSEXT);
if (isfile (info_v))
/* We will check out this file in the mkmodules step.
Nothing else is required. */
;
else
{
int retcode;
if (!isfile (info))
{
FILE *fp;
const char * const *p;
fp = xfopen (info, "w");
for (p = fileptr->contents; *p != NULL; ++p)
if (fputs (*p, fp) < 0)
error (1, errno, "cannot write %s", info);
if (fclose (fp) < 0)
error (1, errno, "cannot close %s", info);
}
/* The message used to say " of " and fileptr->filename after
"initial checkin" but I fail to see the point as we know what
file it is from the name. */
retcode = add_rcs_file ("initial checkin", info_v,
fileptr->filename, "1.1", NULL,
/* No vendor branch. */
NULL, NULL, 0, NULL,
NULL, 0, NULL, 0);
if (retcode != 0)
/* add_rcs_file already printed an error message. */
err = 1;
}
}
/* Turn on history logging by default. The user can remove the file
to disable it. */
strcpy (info, adm);
strcat (info, "/");
strcat (info, CVSROOTADM_HISTORY);
if (!isfile (info))
{
FILE *fp;
fp = xfopen (info, "w");
if (fclose (fp) < 0)
error (1, errno, "cannot close %s", info);
/* Make the new history file world-writeable, since every CVS
user will need to be able to write to it. We use chmod()
because xchmod() is too shy. */
chmod (info, 0666);
}
/* Make an empty val-tags file to prevent problems creating it later. */
strcpy (info, adm);
strcat (info, "/");
strcat (info, CVSROOTADM_VALTAGS);
if (!isfile (info))
{
FILE *fp;
fp = xfopen (info, "w");
if (fclose (fp) < 0)
error (1, errno, "cannot close %s", info);
/* Make the new val-tags file world-writeable, since every CVS
user will need to be able to write to it. We use chmod()
because xchmod() is too shy. */
chmod (info, 0666);
}
free (info);
free (info_v);
mkmodules (adm);
free (adm);
return err;
}
|