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
|
/* $OpenBSD: ci.c,v 1.87 2005/12/20 09:04:17 xsa Exp $ */
/*
* Copyright (c) 2005 Niall O'Higgins <niallo@openbsd.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following cinditions
* are met:
*
* 1. Redistributions of source cide must retain the above cipyright
* notice, this list of cinditions and the following disclaimer.
* 2. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <ctype.h>
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "log.h"
#include "rcs.h"
#include "diff.h"
#include "rcsprog.h"
#define CI_OPTSTRING "d::f::i::j::k:l::m:M::N:n:qr::s:Tt:u::Vw:x:"
#define DATE_NOW -1
#define DATE_MTIME -2
#define LOG_INIT "Initial revision"
#define LOG_PROMPT "enter log message, terminated with a single '.' " \
"or end of file:\n>> "
#define DESC_PROMPT "enter description, terminated with single '.' " \
"or end of file:\nNOTE: This is NOT the log message!" \
"\n>> "
struct checkin_params {
int flags, openflags;
mode_t fmode;
time_t date;
RCSFILE *file;
RCSNUM *frev, *newrev;
char fpath[MAXPATHLEN], *rcs_msg, *username, *deltatext, *filename;
char *author;
const char *symbol, *state, *description;
};
static int checkin_attach_symbol(struct checkin_params *pb);
static int checkin_checklock(struct checkin_params *pb);
static char *checkin_choose_rcsfile(const char *);
static char *checkin_diff_file(struct checkin_params *);
static char *checkin_getdesc(void);
static char *checkin_getinput(const char *);
static char *checkin_getlogmsg(RCSNUM *, RCSNUM *);
static int checkin_init(struct checkin_params *);
static int checkin_mtimedate(struct checkin_params *pb);
static int checkin_update(struct checkin_params *pb);
static void checkin_revert(struct checkin_params *pb);
void
checkin_usage(void)
{
fprintf(stderr,
"usage: ci [-MNqTV] [-d[date]] [-f[rev]] [-i[rev]] [-j[rev]]\n"
" [-kmode] [-l[rev]] [-M[rev]] [-mmsg] [-Nsymbol]\n"
" [-nsymbol] [-r[rev]] [-sstate] [-tfile|str] [-u[rev]]\n"
" [-wusername] [-xsuffixes] file ...\n");
}
/*
* checkin_main()
*
* Handler for the `ci' program.
* Returns 0 on success, or >0 on error.
*/
int
checkin_main(int argc, char **argv)
{
int i, ch, status;
struct checkin_params pb;
pb.date = DATE_NOW;
pb.file = NULL;
pb.rcs_msg = pb.username = pb.author = NULL;
pb.state = pb.symbol = pb.description = NULL;
pb.newrev = NULL;
pb.fmode = pb.flags = status = 0;
pb.flags = INTERACTIVE;
pb.openflags = RCS_RDWR|RCS_CREATE;
while ((ch = rcs_getopt(argc, argv, CI_OPTSTRING)) != -1) {
switch (ch) {
case 'd':
if (rcs_optarg == NULL)
pb.date = DATE_MTIME;
else if ((pb.date = cvs_date_parse(rcs_optarg)) <= 0)
fatal("invalid date");
break;
case 'f':
rcs_set_rev(rcs_optarg, &pb.newrev);
pb.flags |= FORCE;
break;
case 'h':
(usage)();
exit(0);
case 'i':
rcs_set_rev(rcs_optarg, &pb.newrev);
pb.openflags |= RCS_CREATE;
pb.flags |= CI_INIT;
break;
case 'j':
rcs_set_rev(rcs_optarg, &pb.newrev);
pb.openflags &= ~RCS_CREATE;
pb.flags &= ~CI_INIT;
break;
case 'l':
rcs_set_rev(rcs_optarg, &pb.newrev);
pb.flags |= CO_LOCK;
break;
case 'M':
rcs_set_rev(rcs_optarg, &pb.newrev);
pb.flags |= CO_REVDATE;
break;
case 'm':
pb.rcs_msg = rcs_optarg;
if (pb.rcs_msg == NULL)
fatal("missing message for -m option");
pb.flags &= ~INTERACTIVE;
break;
case 'N':
pb.symbol = xstrdup(rcs_optarg);
if (rcs_sym_check(pb.symbol) != 1)
fatal("invalid symbol `%s'", pb.symbol);
pb.flags |= CI_SYMFORCE;
break;
case 'n':
pb.symbol = xstrdup(rcs_optarg);
if (rcs_sym_check(pb.symbol) != 1)
fatal("invalid symbol `%s'", pb.symbol);
break;
case 'q':
verbose = 0;
break;
case 'r':
rcs_set_rev(rcs_optarg, &pb.newrev);
pb.flags |= CI_DEFAULT;
break;
case 's':
pb.state = rcs_optarg;
if (rcs_state_check(pb.state) < 0)
fatal("invalid state `%s'", pb.state);
break;
case 'T':
pb.flags |= PRESERVETIME;
break;
case 't':
pb.description = xstrdup(rcs_optarg);
break;
case 'u':
rcs_set_rev(rcs_optarg, &pb.newrev);
pb.flags |= CO_UNLOCK;
break;
case 'V':
printf("%s\n", rcs_version);
exit(0);
case 'w':
pb.author = xstrdup(rcs_optarg);
break;
case 'x':
rcs_suffixes = rcs_optarg;
break;
default:
(usage)();
exit(1);
}
}
argc -= rcs_optind;
argv += rcs_optind;
if (argc == 0) {
cvs_log(LP_ERR, "no input file");
(usage)();
exit(1);
}
if ((pb.username = getlogin()) == NULL)
fatal("getlogin failed");
for (i = 0; i < argc; i++) {
pb.filename = argv[i];
/*
* Test for existence of ,v file. If we are expected to
* create one, set NEWFILE flag.
*/
if (rcs_statfile(pb.filename, pb.fpath, sizeof(pb.fpath)) < 0) {
if (pb.openflags & RCS_CREATE)
pb.flags |= NEWFILE;
else {
cvs_log(LP_ERR, "No existing RCS file");
status = 1;
continue;
}
} else {
if (pb.flags & CI_INIT) {
cvs_log(LP_ERR, "%s already exists", pb.fpath);
status = 1;
continue;
}
pb.openflags &= ~RCS_CREATE;
}
/*
* If we are to create a new ,v file, we must decide where it
* should go.
*/
if (pb.flags & NEWFILE) {
char *fpath = checkin_choose_rcsfile(pb.filename);
if (fpath == NULL) {
status = 1;
continue;
}
strlcpy(pb.fpath, fpath, sizeof(pb.fpath));
xfree(fpath);
}
pb.file = rcs_open(pb.fpath, pb.openflags, pb.fmode);
if (pb.file == NULL)
fatal("failed to open rcsfile '%s'", pb.fpath);
if (verbose == 1)
printf("%s <-- %s\n", pb.fpath, pb.filename);
if (pb.flags & NEWFILE)
status = checkin_init(&pb);
else
status = checkin_update(&pb);
}
return (status);
}
/*
* checkin_diff_file()
*
* Generate the diff between the working file and a revision.
* Returns pointer to a char array on success, NULL on failure.
*/
static char *
checkin_diff_file(struct checkin_params *pb)
{
char path1[MAXPATHLEN], path2[MAXPATHLEN];
BUF *b1, *b2, *b3;
char rbuf[64], *deltatext;
rcsnum_tostr(pb->frev, rbuf, sizeof(rbuf));
if ((b1 = cvs_buf_load(pb->filename, BUF_AUTOEXT)) == NULL) {
cvs_log(LP_ERR, "failed to load file: '%s'", pb->filename);
return (NULL);
}
if ((b2 = rcs_getrev(pb->file, pb->frev)) == NULL) {
cvs_log(LP_ERR, "failed to load revision");
cvs_buf_free(b1);
return (NULL);
}
if ((b3 = cvs_buf_alloc((size_t)128, BUF_AUTOEXT)) == NULL) {
cvs_log(LP_ERR, "failed to allocated buffer for diff");
cvs_buf_free(b1);
cvs_buf_free(b2);
return (NULL);
}
strlcpy(path1, rcs_tmpdir, sizeof(path1));
strlcat(path1, "/diff1.XXXXXXXXXX", sizeof(path1));
if (cvs_buf_write_stmp(b1, path1, 0600) == -1) {
cvs_log(LP_ERRNO, "could not write temporary file");
cvs_buf_free(b1);
cvs_buf_free(b2);
return (NULL);
}
cvs_buf_free(b1);
strlcpy(path2, rcs_tmpdir, sizeof(path2));
strlcat(path2, "/diff2.XXXXXXXXXX", sizeof(path2));
if (cvs_buf_write_stmp(b2, path2, 0600) == -1) {
cvs_buf_free(b2);
(void)unlink(path1);
return (NULL);
}
cvs_buf_free(b2);
diff_format = D_RCSDIFF;
cvs_diffreg(path1, path2, b3);
(void)unlink(path1);
(void)unlink(path2);
cvs_buf_putc(b3, '\0');
deltatext = (char *)cvs_buf_release(b3);
return (deltatext);
}
/*
* checkin_getlogmsg()
*
* Get log message from user interactively.
* Returns pointer to a char array on success, NULL on failure.
*/
static char *
checkin_getlogmsg(RCSNUM *rev, RCSNUM *rev2)
{
char *rcs_msg, nrev[16], prev[16];
RCSNUM *tmprev;
rcs_msg = NULL;
tmprev = rcsnum_alloc();
rcsnum_cpy(rev, tmprev, 16);
rcsnum_tostr(tmprev, prev, sizeof(prev));
if (rev2 == NULL)
rcsnum_tostr(rcsnum_inc(tmprev), nrev, sizeof(nrev));
else
rcsnum_tostr(rev2, nrev, sizeof(nrev));
rcsnum_free(tmprev);
if (verbose == 1)
printf("new revision: %s; previous revision: %s\n", nrev,
prev);
rcs_msg = checkin_getinput(LOG_PROMPT);
return (rcs_msg);
}
/*
* checkin_getdesc()
*
* Get file description interactively.
* Returns pointer to a char array on success, NULL on failure.
*/
static char *
checkin_getdesc()
{
char *description;
description = checkin_getinput(DESC_PROMPT);
return (description);
}
/*
* checkin_getinput()
*
* Get some input from the user, in RCS style, prompting with message <prompt>.
* Returns pointer to a char array on success, NULL on failure.
*/
static char *
checkin_getinput(const char *prompt)
{
BUF *inputbuf;
char *input, buf[128];
if ((inputbuf = cvs_buf_alloc((size_t)64, BUF_AUTOEXT)) == NULL) {
cvs_log(LP_ERR, "failed to allocate input buffer");
return (NULL);
}
printf(prompt);
for (;;) {
fgets(buf, (int)sizeof(buf), stdin);
if (feof(stdin) || ferror(stdin) || buf[0] == '.')
break;
cvs_buf_append(inputbuf, buf, strlen(buf));
printf(">> ");
}
cvs_buf_putc(inputbuf, '\0');
input = (char *)cvs_buf_release(inputbuf);
return (input);
}
/*
* checkin_update()
*
* Do a checkin to an existing RCS file.
*
* On success, return 0. On error return -1.
*/
static int
checkin_update(struct checkin_params *pb)
{
char *filec, numb1[64], numb2[64];
BUF *bp;
/*
* XXX this is wrong, we need to get the revision the user
* has the lock for. So we can decide if we want to create a
* branch or not. (if it's not current HEAD we need to branch).
*/
pb->frev = pb->file->rf_head;
if (checkin_checklock(pb) < 0)
return (-1);
/* If revision passed on command line is less than HEAD, bail.
* XXX only applies to ci -r1.2 foo for example if HEAD is > 1.2 and
* there is no lock set for the user.
*/
if ((pb->newrev != NULL)
&& (rcsnum_cmp(pb->newrev, pb->frev, 0) > 0)) {
cvs_log(LP_ERR,
"%s: revision %s too low; must be higher than %s",
pb->file->rf_path,
rcsnum_tostr(pb->newrev, numb1, sizeof(numb1)),
rcsnum_tostr(pb->frev, numb2, sizeof(numb2)));
rcs_close(pb->file);
return (-1);
}
/* Load file contents */
if ((bp = cvs_buf_load(pb->filename, BUF_AUTOEXT)) == NULL) {
cvs_log(LP_ERR, "failed to load '%s'", pb->filename);
return (-1);
}
if (cvs_buf_putc(bp, '\0') < 0)
return (-1);
filec = (char *)cvs_buf_release(bp);
/* Get RCS patch */
if ((pb->deltatext = checkin_diff_file(pb)) == NULL) {
cvs_log(LP_ERR, "failed to get diff");
return (-1);
}
/*
* If -f is not specified and there are no differences, tell
* the user and revert to latest version.
*/
if (!(pb->flags & FORCE) && (strlen(pb->deltatext) < 1)) {
checkin_revert(pb);
return (0);
}
/* If no log message specified, get it interactively. */
if (pb->flags & INTERACTIVE)
pb->rcs_msg = checkin_getlogmsg(pb->frev, pb->newrev);
if (rcs_lock_remove(pb->file, pb->username, pb->frev) < 0) {
if (rcs_errno != RCS_ERR_NOENT)
cvs_log(LP_WARN, "failed to remove lock");
else if (!(pb->flags & CO_LOCK))
cvs_log(LP_WARN, "previous revision was not locked; "
"ignoring -l option");
}
/* Current head revision gets the RCS patch as rd_text */
if (rcs_deltatext_set(pb->file, pb->frev, pb->deltatext) == -1)
fatal("failed to set new rd_text for head rev");
/*
* Set the date of the revision to be the last modification
* time of the working file if -d has no argument.
*/
if (pb->date == DATE_MTIME
&& (checkin_mtimedate(pb) < 0))
return (-1);
/* Now add our new revision */
if (rcs_rev_add(pb->file,
(pb->newrev == NULL ? RCS_HEAD_REV : pb->newrev),
pb->rcs_msg, pb->date, pb->author) != 0) {
cvs_log(LP_ERR, "failed to add new revision");
return (-1);
}
/*
* If we are checking in to a non-default (ie user-specified)
* revision, set head to this revision.
*/
if (pb->newrev != NULL)
rcs_head_set(pb->file, pb->newrev);
else
pb->newrev = pb->file->rf_head;
/* New head revision has to contain entire file; */
if (rcs_deltatext_set(pb->file, pb->frev, filec) == -1)
fatal("failed to set new head revision");
/* Attach a symbolic name to this revision if specified. */
if (pb->symbol != NULL
&& (checkin_attach_symbol(pb) < 0))
return (-1);
/* Set the state of this revision if specified. */
if (pb->state != NULL)
(void)rcs_state_set(pb->file, pb->newrev, pb->state);
xfree(pb->deltatext);
xfree(filec);
(void)unlink(pb->filename);
/* Do checkout if -u or -l are specified. */
if (((pb->flags & CO_LOCK) || (pb->flags & CO_UNLOCK))
&& !(pb->flags & CI_DEFAULT))
checkout_rev(pb->file, pb->newrev, pb->filename, pb->flags,
pb->username, pb->author, NULL);
/* File will NOW be synced */
rcs_close(pb->file);
if (pb->flags & INTERACTIVE) {
xfree(pb->rcs_msg);
pb->rcs_msg = NULL;
}
return (0);
}
/*
* checkin_init()
*
* Does an initial check in, just enough to create the new ,v file
* On success, return 0. On error return -1.
*/
static int
checkin_init(struct checkin_params *pb)
{
BUF *bp, *dp;
char *filec;
const char *rcs_desc;
/* Load file contents */
if ((bp = cvs_buf_load(pb->filename, BUF_AUTOEXT)) == NULL) {
cvs_log(LP_ERR, "failed to load '%s'", pb->filename);
return (-1);
}
if (cvs_buf_putc(bp, '\0') < 0)
return (-1);
filec = (char *)cvs_buf_release(bp);
/* Get description from user */
if (pb->description == NULL)
rcs_desc = (const char *)checkin_getdesc();
else {
if (*pb->description == '-') {
pb->description++;
rcs_desc = (const char *)pb->description;
} else {
dp = cvs_buf_load(pb->description, BUF_AUTOEXT);
if (dp == NULL) {
cvs_log(LP_ERR,
"failed to load description file '%s'",
pb->description);
xfree(filec);
return (-1);
}
if (cvs_buf_putc(dp, '\0') < 0) {
xfree(filec);
return (-1);
}
rcs_desc = (const char *)cvs_buf_release(dp);
}
}
rcs_desc_set(pb->file, rcs_desc);
/* Now add our new revision */
if (rcs_rev_add(pb->file, RCS_HEAD_REV, LOG_INIT, -1, pb->author) != 0) {
cvs_log(LP_ERR, "failed to add new revision");
return (-1);
}
/*
* If we are checking in to a non-default (ie user-specified)
* revision, set head to this revision.
*/
if (pb->newrev != NULL)
rcs_head_set(pb->file, pb->newrev);
else
pb->newrev = pb->file->rf_head;
/* New head revision has to contain entire file; */
if (rcs_deltatext_set(pb->file, pb->file->rf_head, filec) == -1) {
cvs_log(LP_ERR, "failed to set new head revision");
return (-1);
}
/* Attach a symbolic name to this revision if specified. */
if (pb->symbol != NULL
&& (checkin_attach_symbol(pb) < 0))
return (-1);
/* Set the state of this revision if specified. */
if (pb->state != NULL)
(void)rcs_state_set(pb->file, pb->newrev, pb->state);
xfree(filec);
(void)unlink(pb->filename);
/* Do checkout if -u or -l are specified. */
if (((pb->flags & CO_LOCK) || (pb->flags & CO_UNLOCK))
&& !(pb->flags & CI_DEFAULT))
checkout_rev(pb->file, pb->newrev, pb->filename, pb->flags,
pb->username, pb->author, NULL);
/* File will NOW be synced */
rcs_close(pb->file);
return (0);
}
/*
* checkin_attach_symbol()
*
* Attempt to attach the specified symbol to the revision.
* On success, return 0. On error return -1.
*/
static int
checkin_attach_symbol(struct checkin_params *pb)
{
char rbuf[16];
int ret;
if (verbose == 1)
printf("symbol: %s\n", pb->symbol);
if (pb->flags & CI_SYMFORCE)
rcs_sym_remove(pb->file, pb->symbol);
if ((ret = rcs_sym_add(pb->file, pb->symbol, pb->newrev) == -1)
&& (rcs_errno == RCS_ERR_DUPENT)) {
rcsnum_tostr(rcs_sym_getrev(pb->file, pb->symbol),
rbuf, sizeof(rbuf));
cvs_log(LP_ERR,
"symbolic name %s already bound to %s",
pb->symbol, rbuf);
rcs_close(pb->file);
return (-1);
} else if (ret == -1) {
cvs_log(LP_ERR, "problem adding symbol: %s",
pb->symbol);
rcs_close(pb->file);
return (-1);
}
return (0);
}
/*
* checkin_revert()
*
* If there are no differences between the working file and the latest revision
* and the -f flag is not specified, simply revert to the latest version and
* warn the user.
*
*/
static void
checkin_revert(struct checkin_params *pb)
{
char rbuf[16];
rcsnum_tostr(pb->frev, rbuf, sizeof(rbuf));
cvs_log(LP_WARN,
"file is unchanged; reverting to previous revision %s",
rbuf);
(void)unlink(pb->filename);
if ((pb->flags & CO_LOCK) || (pb->flags & CO_UNLOCK))
checkout_rev(pb->file, pb->frev, pb->filename,
pb->flags, pb->username, pb->author, NULL);
rcs_lock_remove(pb->file, pb->username, pb->frev);
rcs_close(pb->file);
if (verbose == 1)
printf("done\n");
}
/*
* checkin_checklock()
*
* Check for the existence of a lock on the file. If there are no locks, or it
* is not locked by the correct user, return -1. Otherwise, return 0.
*/
static int
checkin_checklock(struct checkin_params *pb)
{
struct rcs_lock *lkp;
TAILQ_FOREACH(lkp, &(pb->file->rf_locks), rl_list) {
if ((!strcmp(lkp->rl_name, pb->username)) &&
(!rcsnum_cmp(lkp->rl_num, pb->frev, 0)))
return (0);
}
cvs_log(LP_ERR,
"%s: no lock set by %s", pb->file->rf_path, pb->username);
rcs_close(pb->file);
return (-1);
}
/*
* checkin_mtimedate()
*
* Set the date of the revision to be the last modification
* time of the working file.
*
* On success, return 0. On error return -1.
*/
static int
checkin_mtimedate(struct checkin_params *pb)
{
struct stat sb;
if (stat(pb->filename, &sb) != 0) {
cvs_log(LP_ERRNO, "failed to stat `%s'", pb->filename);
rcs_close(pb->file);
return (-1);
}
pb->date = (time_t)sb.st_mtimespec.tv_sec;
return (0);
}
/*
* checkin_choose_rcsfile()
*
* Given a relative filename, decide where the corresponding ,v file
* should be.
*
* Returns pointer to a char array on success, NULL on failure.
*/
static char *
checkin_choose_rcsfile(const char *filename)
{
char name[MAXPATHLEN], *basepath;
const char *ptr;
size_t len;
struct stat sb;
basepath = xmalloc(MAXPATHLEN);
if (strchr(filename, '/') == NULL) {
strlcat(basepath, RCSDIR"/", MAXPATHLEN);
if ((stat(basepath, &sb) == 0) && (sb.st_mode & S_IFDIR)) {
/* <path>/RCS/<filename>,v */
strlcat(basepath, filename, MAXPATHLEN);
strlcat(basepath, RCS_FILE_EXT, MAXPATHLEN);
} else {
/* <path>/<filename>,v */
memset(basepath, '\0', MAXPATHLEN);
strlcpy(basepath, filename, MAXPATHLEN);
strlcat(basepath, RCS_FILE_EXT, MAXPATHLEN);
}
} else {
ptr = filename;
/* Walk backwards till we find the base directory */
len = strlen(filename);
ptr += len + 1;
while (filename[len] != '/') {
len--;
ptr--;
}
/*
* Need two bytes extra for trailing slash and
* NUL-termination.
*/
len += 2;
if (len > MAXPATHLEN) {
xfree(basepath);
return (NULL);
}
strlcpy(basepath, filename, len);
strlcpy(name, ptr, MAXPATHLEN);
strlcat(basepath, RCSDIR"/", MAXPATHLEN);
if ((stat(basepath, &sb) == 0) && (sb.st_mode & S_IFDIR)) {
/* <path>/RCS/<filename>,v */
strlcat(basepath, name, MAXPATHLEN);
strlcat(basepath, RCS_FILE_EXT, MAXPATHLEN);
} else {
/* <path>/<filename>,v */
memset(basepath, '\0', MAXPATHLEN);
strlcpy(basepath, filename, MAXPATHLEN);
strlcat(basepath, RCS_FILE_EXT, MAXPATHLEN);
}
}
return (basepath);
}
|