Commit 537a23663d91fd61df5555e1a2b6dea85a8a80e4

Stefan Sperling 2019-02-08T10:55:47

remove rcsutil code we won't need, and make the rest compile

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
diff --git a/lib/rcsutil.c b/lib/rcsutil.c
index af00285..dbc118f 100644
--- a/lib/rcsutil.c
+++ b/lib/rcsutil.c
@@ -27,446 +27,16 @@
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <sys/stat.h>
-#include <sys/time.h>
+#include <sys/queue.h>
 
 #include <ctype.h>
-#include <err.h>
-#include <fcntl.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
 
-#include "rcsprog.h"
-
-/*
- * rcs_get_mtime()
- *
- * Get <filename> last modified time.
- * Returns last modified time on success, or -1 on failure.
- */
-time_t
-rcs_get_mtime(RCSFILE *file)
-{
-	struct stat st;
-	time_t mtime;
-
-	if (file->rf_file == NULL)
-		return (-1);
-
-	if (fstat(fileno(file->rf_file), &st) == -1) {
-		warn("%s", file->rf_path);
-		return (-1);
-	}
-
-	mtime = st.st_mtimespec.tv_sec;
-
-	return (mtime);
-}
-
-/*
- * rcs_set_mtime()
- *
- * Set <filename> last modified time to <mtime> if it's not set to -1.
- */
-void
-rcs_set_mtime(RCSFILE *file, time_t mtime)
-{
-	static struct timeval tv[2];
-
-	if (file->rf_file == NULL || mtime == -1)
-		return;
-
-	tv[0].tv_sec = mtime;
-	tv[1].tv_sec = tv[0].tv_sec;
-
-	if (futimes(fileno(file->rf_file), tv) == -1)
-		err(1, "utimes");
-}
-
-int
-rcs_getopt(int argc, char **argv, const char *optstr)
-{
-	char *a;
-	const char *c;
-	static int i = 1;
-	int opt, hasargument, ret;
-
-	hasargument = 0;
-	rcs_optarg = NULL;
-
-	if (i >= argc)
-		return (-1);
-
-	a = argv[i++];
-	if (*a++ != '-')
-		return (-1);
-
-	ret = 0;
-	opt = *a;
-	for (c = optstr; *c != '\0'; c++) {
-		if (*c == opt) {
-			a++;
-			ret = opt;
-
-			if (*(c + 1) == ':') {
-				if (*(c + 2) == ':') {
-					if (*a != '\0')
-						hasargument = 1;
-				} else {
-					if (*a != '\0') {
-						hasargument = 1;
-					} else {
-						ret = 1;
-						break;
-					}
-				}
-			}
-
-			if (hasargument == 1)
-				rcs_optarg = a;
-
-			if (ret == opt)
-				rcs_optind++;
-			break;
-		}
-	}
-
-	if (ret == 0)
-		warnx("unknown option -%c", opt);
-	else if (ret == 1)
-		warnx("missing argument for option -%c", opt);
-
-	return (ret);
-}
-
-/*
- * rcs_choosefile()
- *
- * Given a relative filename, decide where the corresponding RCS file
- * should be.  Tries each extension until a file is found.  If no file
- * was found, returns a path with the first extension.
- *
- * Opens and returns file descriptor to RCS file.
- */
-int
-rcs_choosefile(const char *filename, char *out, size_t len)
-{
-	int fd;
-	struct stat sb;
-	char *p, *ext, name[PATH_MAX], *next, *ptr, rcsdir[PATH_MAX],
-	    *suffixes, rcspath[PATH_MAX];
-
-	/*
-	 * If `filename' contains a directory, `rcspath' contains that
-	 * directory, including a trailing slash.  Otherwise `rcspath'
-	 * contains an empty string.
-	 */
-	if (strlcpy(rcspath, filename, sizeof(rcspath)) >= sizeof(rcspath))
-		errx(1, "rcs_choosefile: truncation");
-
-	/* If `/' is found, end string after `/'. */
-	if ((ptr = strrchr(rcspath, '/')) != NULL)
-		*(++ptr) = '\0';
-	else
-		rcspath[0] = '\0';
-
-	/* Append RCS/ to `rcspath' if it exists. */
-	if (strlcpy(rcsdir, rcspath, sizeof(rcsdir)) >= sizeof(rcsdir) ||
-	    strlcat(rcsdir, RCSDIR, sizeof(rcsdir)) >= sizeof(rcsdir))
-		errx(1, "rcs_choosefile: truncation");
-
-	if (stat(rcsdir, &sb) == 0 && S_ISDIR(sb.st_mode))
-		if (strlcpy(rcspath, rcsdir, sizeof(rcspath))
-		    >= sizeof(rcspath) ||
-		    strlcat(rcspath, "/", sizeof(rcspath)) >= sizeof(rcspath))
-			errx(1, "rcs_choosefile: truncation");
-
-	/* Name of file without path. */
-	if ((ptr = strrchr(filename, '/')) == NULL) {
-		if (strlcpy(name, filename, sizeof(name)) >= sizeof(name))
-			errx(1, "rcs_choosefile: truncation");
-	} else {
-		/* Skip `/'. */
-		if (strlcpy(name, ptr + 1, sizeof(name)) >= sizeof(name))
-			errx(1, "rcs_choosefile: truncation");
-	}
-
-	/* Name of RCS file without an extension. */
-	if (strlcat(rcspath, name, sizeof(rcspath)) >= sizeof(rcspath))
-		errx(1, "rcs_choosefile: truncation");
-
-	/*
-	 * If only the empty suffix was given, use existing rcspath.
-	 * This ensures that there is at least one suffix for strsep().
-	 */
-	if (strcmp(rcs_suffixes, "") == 0) {
-		if (strlcpy(out, rcspath, len) >= len)
-			errx(1, "rcs_choosefile: truncation");
-		fd = open(rcspath, O_RDONLY);
-		return (fd);
-	}
-
-	/*
-	 * Cycle through slash-separated `rcs_suffixes', appending each
-	 * extension to `rcspath' and testing if the file exists.  If it
-	 * does, return that string.  Otherwise return path with first
-	 * extension.
-	 */
-	suffixes = xstrdup(rcs_suffixes);
-	for (next = suffixes; (ext = strsep(&next, "/")) != NULL;) {
-		char fpath[PATH_MAX];
-
-		if ((p = strrchr(rcspath, ',')) != NULL) {
-			if (!strcmp(p, ext)) {
-				if ((fd = open(rcspath, O_RDONLY)) == -1)
-					continue;
-
-				if (fstat(fd, &sb) == -1)
-					err(1, "%s", rcspath);
-
-				if (strlcpy(out, rcspath, len) >= len)
-					errx(1, "rcs_choosefile; truncation");
-
-				free(suffixes);
-				return (fd);
-			}
-
-			continue;
-		}
-
-		/* Construct RCS file path. */
-		if (strlcpy(fpath, rcspath, sizeof(fpath)) >= sizeof(fpath) ||
-		    strlcat(fpath, ext, sizeof(fpath)) >= sizeof(fpath))
-			errx(1, "rcs_choosefile: truncation");
-
-		/* Don't use `filename' as RCS file. */
-		if (strcmp(fpath, filename) == 0)
-			continue;
-
-		if ((fd = open(fpath, O_RDONLY)) == -1)
-			continue;
-
-		if (fstat(fd, &sb) == -1)
-			err(1, "%s", fpath);
-
-		if (strlcpy(out, fpath, len) >= len)
-			errx(1, "rcs_choosefile: truncation");
-
-		free(suffixes);
-		return (fd);
-	}
-
-	/*
-	 * `suffixes' should now be NUL separated, so the first
-	 * extension can be read just by reading `suffixes'.
-	 */
-	if (strlcat(rcspath, suffixes, sizeof(rcspath)) >= sizeof(rcspath))
-		errx(1, "rcs_choosefile: truncation");
-
-	free(suffixes);
-
-	if (strlcpy(out, rcspath, len) >= len)
-		errx(1, "rcs_choosefile: truncation");
-
-	fd = open(rcspath, O_RDONLY);
-
-	return (fd);
-}
-
-/*
- * Set <str> to <new_str>.  Print warning if <str> is redefined.
- */
-void
-rcs_setrevstr(char **str, char *new_str)
-{
-	if (new_str == NULL)
-		return;
-	if (*str != NULL)
-		warnx("redefinition of revision number");
-	*str = new_str;
-}
-
-/*
- * Set <str1> or <str2> to <new_str>, depending on which is not set.
- * If both are set, error out.
- */
-void
-rcs_setrevstr2(char **str1, char **str2, char *new_str)
-{
-	if (new_str == NULL)
-		return;
-	if (*str1 == NULL)
-		*str1 = new_str;
-	else if (*str2 == NULL)
-		*str2 = new_str;
-	else
-		errx(1, "too many revision numbers");
-}
-
-/*
- * Get revision from file.  The revision can be specified as a symbol or
- * a revision number.
- */
-RCSNUM *
-rcs_getrevnum(const char *rev_str, RCSFILE *file)
-{
-	RCSNUM *rev;
-
-	/* Search for symbol. */
-	rev = rcs_sym_getrev(file, rev_str);
-
-	/* Search for revision number. */
-	if (rev == NULL)
-		rev = rcsnum_parse(rev_str);
-
-	return (rev);
-}
-
-/*
- * Prompt for and store user's input in an allocated string.
- *
- * Returns the string's pointer.
- */
-char *
-rcs_prompt(const char *prompt, int flags)
-{
-	BUF *bp;
-	size_t len;
-	char *buf;
-
-	if (!(flags & INTERACTIVE) && isatty(STDIN_FILENO))
-		flags |= INTERACTIVE;
-
-	bp = buf_alloc(0);
-	if (flags & INTERACTIVE)
-		(void)fprintf(stderr, "%s", prompt);
-	if (flags & INTERACTIVE)
-		(void)fprintf(stderr, ">> ");
-	clearerr(stdin);
-	while ((buf = fgetln(stdin, &len)) != NULL) {
-		/* The last line may not be EOL terminated. */
-		if (buf[0] == '.' && (len == 1 || buf[1] == '\n'))
-			break;
-		else
-			buf_append(bp, buf, len);
-
-		if (flags & INTERACTIVE)
-			(void)fprintf(stderr, ">> ");
-	}
-	buf_putc(bp, '\0');
-
-	return (buf_release(bp));
-}
-
-u_int
-rcs_rev_select(RCSFILE *file, const char *range)
-{
-	int i;
-	u_int nrev;
-	const char *ep;
-	char *lstr, *rstr;
-	struct rcs_delta *rdp;
-	struct rcs_argvector *revargv, *revrange;
-	RCSNUM lnum, rnum;
-
-	nrev = 0;
-	(void)memset(&lnum, 0, sizeof(lnum));
-	(void)memset(&rnum, 0, sizeof(rnum));
-
-	if (range == NULL) {
-		TAILQ_FOREACH(rdp, &file->rf_delta, rd_list)
-			if (rcsnum_cmp(rdp->rd_num, file->rf_head, 0) == 0) {
-				rdp->rd_flags |= RCS_RD_SELECT;
-				return (1);
-			}
-		return (0);
-	}
-
-	revargv = rcs_strsplit(range, ",");
-	for (i = 0; revargv->argv[i] != NULL; i++) {
-		revrange = rcs_strsplit(revargv->argv[i], ":");
-		if (revrange->argv[0] == NULL)
-			/* should not happen */
-			errx(1, "invalid revision range: %s", revargv->argv[i]);
-		else if (revrange->argv[1] == NULL)
-			lstr = rstr = revrange->argv[0];
-		else {
-			if (revrange->argv[2] != NULL)
-				errx(1, "invalid revision range: %s",
-				    revargv->argv[i]);
-			lstr = revrange->argv[0];
-			rstr = revrange->argv[1];
-			if (strcmp(lstr, "") == 0)
-				lstr = NULL;
-			if (strcmp(rstr, "") == 0)
-				rstr = NULL;
-		}
-
-		if (lstr == NULL)
-			lstr = RCS_HEAD_INIT;
-		if (rcsnum_aton(lstr, &ep, &lnum) == 0 || (*ep != '\0'))
-			errx(1, "invalid revision: %s", lstr);
-
-		if (rstr != NULL) {
-			if (rcsnum_aton(rstr, &ep, &rnum) == 0 || (*ep != '\0'))
-				errx(1, "invalid revision: %s", rstr);
-		} else
-			rcsnum_cpy(file->rf_head, &rnum, 0);
-
-		rcs_argv_destroy(revrange);
-
-		TAILQ_FOREACH(rdp, &file->rf_delta, rd_list)
-			if (rcsnum_cmp(rdp->rd_num, &lnum, 0) <= 0 &&
-			    rcsnum_cmp(rdp->rd_num, &rnum, 0) >= 0 &&
-			    !(rdp->rd_flags & RCS_RD_SELECT)) {
-				rdp->rd_flags |= RCS_RD_SELECT;
-				nrev++;
-			}
-	}
-	rcs_argv_destroy(revargv);
-
-	free(lnum.rn_id);
-	free(rnum.rn_id);
-
-	return (nrev);
-}
-
-/*
- * Load description from <in> to <file>.
- * If <in> starts with a `-', <in> is taken as the description.
- * Otherwise <in> is the name of the file containing the description.
- * If <in> is NULL, the description is read from stdin.
- * Returns 0 on success, -1 on failure, setting errno.
- */
-int
-rcs_set_description(RCSFILE *file, const char *in, int flags)
-{
-	BUF *bp;
-	char *content;
-	const char *prompt =
-	    "enter description, terminated with single '.' or end of file:\n"
-	    "NOTE: This is NOT the log message!\n";
-
-	/* Description is in file <in>. */
-	if (in != NULL && *in != '-') {
-		if ((bp = buf_load(in)) == NULL)
-			return (-1);
-		buf_putc(bp, '\0');
-		content = buf_release(bp);
-	/* Description is in <in>. */
-	} else if (in != NULL)
-		/* Skip leading `-'. */
-		content = xstrdup(in + 1);
-	/* Get description from stdin. */
-	else
-		content = rcs_prompt(prompt, flags);
-
-	rcs_desc_set(file, content);
-	free(content);
-	return (0);
-}
+#include "buf.h"
+#include "rcsutil.h"
 
 /*
  * Split the contents of a file into a list of lines.
@@ -479,18 +49,27 @@ rcs_splitlines(u_char *data, size_t len)
 	struct rcs_line *lp;
 	size_t i, tlen;
 
-	lines = xcalloc(1, sizeof(*lines));
+	lines = calloc(1, sizeof(*lines));
+	if (lines == NULL)
+		return NULL;
 	TAILQ_INIT(&(lines->l_lines));
 
-	lp = xcalloc(1, sizeof(*lp));
+	lp = calloc(1, sizeof(*lp));
+	if (lp == NULL) {
+		free(lines);
+		return NULL;
+	}
 	TAILQ_INSERT_TAIL(&(lines->l_lines), lp, l_list);
 
-
 	p = c = data;
 	for (i = 0; i < len; i++) {
 		if (*p == '\n' || (i == len - 1)) {
 			tlen = p - c + 1;
-			lp = xmalloc(sizeof(*lp));
+			lp = malloc(sizeof(*lp));
+			if (lp == NULL) {
+				rcs_freelines(lines);
+				return NULL;
+			}
 			lp->l_line = c;
 			lp->l_len = tlen;
 			lp->l_lineno = ++(lines->l_nblines);
@@ -523,6 +102,7 @@ rcs_patchfile(u_char *data, size_t dlen, u_char *patch, size_t plen,
 	struct rcs_lines *dlines, *plines;
 	struct rcs_line *lp;
 	BUF *res;
+	size_t newlen;
 
 	dlines = rcs_splitlines(data, dlen);
 	plines = rcs_splitlines(patch, plen);
@@ -537,100 +117,10 @@ rcs_patchfile(u_char *data, size_t dlen, u_char *patch, size_t plen,
 	TAILQ_FOREACH(lp, &dlines->l_lines, l_list) {
 		if (lp->l_line == NULL)
 			continue;
-		buf_append(res, lp->l_line, lp->l_len);
+		buf_append(&newlen, res, lp->l_line, lp->l_len);
 	}
 
 	rcs_freelines(dlines);
 	rcs_freelines(plines);
 	return (res);
 }
-
-/*
- * rcs_yesno()
- *
- * Read a char from standard input, returns defc if the
- * user enters an equivalent to defc, else whatever char
- * was entered.  Converts input to lower case.
- */
-int
-rcs_yesno(int defc)
-{
-	int c, ret;
-
-	fflush(stderr);
-	fflush(stdout);
-
-	clearerr(stdin);
-	if (isalpha(c = getchar()))
-		c = tolower(c);
-	if (c == defc || c == '\n' || (c == EOF && feof(stdin)))
-		ret = defc;
-	else
-		ret = c;
-
-	while (c != EOF && c != '\n')
-		c = getchar();
-
-	return (ret);
-}
-
-/*
- * rcs_strsplit()
- *
- * Split a string <str> of <sep>-separated values and allocate
- * an argument vector for the values found.
- */
-struct rcs_argvector *
-rcs_strsplit(const char *str, const char *sep)
-{
-	struct rcs_argvector *av;
-	size_t i = 0;
-	char *cp, *p;
-
-	cp = xstrdup(str);
-	av = xmalloc(sizeof(*av));
-	av->str = cp;
-	av->argv = xmalloc(sizeof(*(av->argv)));
-
-	while ((p = strsep(&cp, sep)) != NULL) {
-		av->argv[i++] = p;
-		av->argv = xreallocarray(av->argv,
-		    i + 1, sizeof(*(av->argv)));
-	}
-	av->argv[i] = NULL;
-
-	return (av);
-}
-
-/*
- * rcs_argv_destroy()
- *
- * Free an argument vector previously allocated by rcs_strsplit().
- */
-void
-rcs_argv_destroy(struct rcs_argvector *av)
-{
-	free(av->str);
-	free(av->argv);
-	free(av);
-}
-
-/*
- * Strip suffix from filename.
- */
-void
-rcs_strip_suffix(char *filename)
-{
-	char *p, *suffixes, *next, *ext;
-
-	if ((p = strrchr(filename, ',')) != NULL) {
-		suffixes = xstrdup(rcs_suffixes);
-		for (next = suffixes; (ext = strsep(&next, "/")) != NULL;) {
-			if (!strcmp(p, ext)) {
-				*p = '\0';
-				break;
-			}
-		}
-		free(suffixes);
-	}
-}
diff --git a/lib/rcsutil.h b/lib/rcsutil.h
index cb046ef..c9f01fb 100644
--- a/lib/rcsutil.h
+++ b/lib/rcsutil.h
@@ -27,8 +27,6 @@
 #ifndef RCSUTIL_H
 #define RCSUTIL_H
 
-#include "rcs.h"
-
 struct rcs_line {
 	u_char			*l_line;
 	int			 l_lineno;
@@ -43,29 +41,10 @@ struct rcs_lines {
 	struct tqh	 l_lines;
 };
 
-struct rcs_argvector {
-	char *str;
-	char **argv;
-};
-
 /* rcsutil.c */
-int			 rcs_getopt(int, char **, const char *);
-void			 rcs_set_mtime(RCSFILE *, time_t);
-int			 rcs_choosefile(const char *, char *, size_t);
-time_t			 rcs_get_mtime(RCSFILE *);
-RCSNUM			*rcs_getrevnum(const char *, RCSFILE *);
-char			*rcs_prompt(const char *, int);
-u_int			 rcs_rev_select(RCSFILE *, const char *);
-int			 rcs_set_description(RCSFILE *, const char *, int);
-void			 rcs_setrevstr(char **, char *);
-void			 rcs_setrevstr2(char **, char **, char *);
 BUF			*rcs_patchfile(u_char *, size_t, u_char *, size_t,
 			    int (*p)(struct rcs_lines *,struct rcs_lines *));
 struct rcs_lines	*rcs_splitlines(u_char *, size_t);
 void			 rcs_freelines(struct rcs_lines *);
-int			 rcs_yesno(int);
-struct rcs_argvector	*rcs_strsplit(const char *, const char *);
-void			 rcs_argv_destroy(struct rcs_argvector *);
-void			 rcs_strip_suffix(char *);
 
 #endif	/* RCSUTIL_H */