commit.c revision 1.99
1/*	$OpenBSD: commit.c,v 1.99 2007/01/18 15:26:52 xsa Exp $	*/
2/*
3 * Copyright (c) 2006 Joris Vink <joris@openbsd.org>
4 * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19#include "includes.h"
20
21#include "cvs.h"
22#include "diff.h"
23#include "log.h"
24#include "remote.h"
25
26void	cvs_commit_local(struct cvs_file *);
27void	cvs_commit_check_files(struct cvs_file *);
28
29static BUF *commit_diff_file(struct cvs_file *);
30static void commit_desc_set(struct cvs_file *);
31
32struct	cvs_flisthead files_affected;
33struct	cvs_flisthead files_added;
34struct	cvs_flisthead files_removed;
35struct	cvs_flisthead files_modified;
36
37int	conflicts_found;
38char	*logmsg = NULL;
39
40struct cvs_cmd cvs_cmd_commit = {
41	CVS_OP_COMMIT, 0, "commit",
42	{ "ci", "com" },
43	"Check files into the repository",
44	"[-flR] [-F logfile | -m msg] [-r rev] ...",
45	"F:flm:Rr:",
46	NULL,
47	cvs_commit
48};
49
50int
51cvs_commit(int argc, char **argv)
52{
53	int ch;
54	char *arg = ".";
55	int flags;
56	struct cvs_recursion cr;
57
58	flags = CR_RECURSE_DIRS;
59
60	while ((ch = getopt(argc, argv, cvs_cmd_commit.cmd_opts)) != -1) {
61		switch (ch) {
62		case 'F':
63			logmsg = cvs_logmsg_read(optarg);
64			break;
65		case 'f':
66			break;
67		case 'l':
68			flags &= ~CR_RECURSE_DIRS;
69			break;
70		case 'm':
71			logmsg = xstrdup(optarg);
72			break;
73		case 'R':
74			break;
75		case 'r':
76			break;
77		default:
78			fatal("%s", cvs_cmd_commit.cmd_synopsis);
79		}
80	}
81
82	argc -= optind;
83	argv += optind;
84
85	TAILQ_INIT(&files_affected);
86	TAILQ_INIT(&files_added);
87	TAILQ_INIT(&files_removed);
88	TAILQ_INIT(&files_modified);
89	conflicts_found = 0;
90
91	cr.enterdir = NULL;
92	cr.leavedir = NULL;
93	cr.fileproc = cvs_commit_check_files;
94	cr.flags = flags;
95
96	if (argc > 0)
97		cvs_file_run(argc, argv, &cr);
98	else
99		cvs_file_run(1, &arg, &cr);
100
101	if (conflicts_found != 0)
102		fatal("%d conflicts found, please correct these first",
103		    conflicts_found);
104
105	if (TAILQ_EMPTY(&files_affected))
106		return (0);
107
108	if (logmsg == NULL && cvs_server_active == 0) {
109		logmsg = cvs_logmsg_create(&files_added, &files_removed,
110		    &files_modified);
111	}
112
113	if (logmsg == NULL)
114		fatal("This shouldnt happen, honestly!");
115
116	cvs_file_freelist(&files_modified);
117	cvs_file_freelist(&files_removed);
118	cvs_file_freelist(&files_added);
119
120	if (current_cvsroot->cr_method != CVS_METHOD_LOCAL) {
121		cvs_client_connect_to_server();
122		cr.fileproc = cvs_client_sendfile;
123
124		if (argc > 0)
125			cvs_file_run(argc, argv, &cr);
126		else
127			cvs_file_run(1, &arg, &cr);
128
129		if (!(flags & CR_RECURSE_DIRS))
130			cvs_client_send_request("Argument -l");
131
132		cvs_client_send_request("Argument -m%s", logmsg);
133
134		cvs_client_send_files(argv, argc);
135		cvs_client_senddir(".");
136		cvs_client_send_request("ci");
137		cvs_client_get_responses();
138	} else {
139		cr.fileproc = cvs_commit_local;
140		cvs_file_walklist(&files_affected, &cr);
141		cvs_file_freelist(&files_affected);
142	}
143
144	return (0);
145}
146
147void
148cvs_commit_check_files(struct cvs_file *cf)
149{
150	cvs_log(LP_TRACE, "cvs_commit_check_files(%s)", cf->file_path);
151
152	/*
153	 * cvs_file_classify makes the noise for us
154	 * XXX - we want that?
155	 */
156	cvs_file_classify(cf, NULL, 1);
157
158	if (cf->file_type == CVS_DIR) {
159		if (verbosity > 1)
160			cvs_log(LP_NOTICE, "Examining %s", cf->file_path);
161		return;
162	}
163
164	if (cf->file_status == FILE_CONFLICT ||
165	    cf->file_status == FILE_UNLINK) {
166		conflicts_found++;
167		return;
168	}
169
170	if (cf->file_status != FILE_REMOVED &&
171	    update_has_conflict_markers(cf)) {
172		cvs_log(LP_ERR, "conflict: unresolved conflicts in %s from "
173		    "merging, please fix these first", cf->file_path);
174		conflicts_found++;
175		return;
176	}
177
178	if (cf->file_status == FILE_MERGE ||
179	    cf->file_status == FILE_PATCH ||
180	    cf->file_status == FILE_CHECKOUT ||
181	    cf->file_status == FILE_LOST) {
182		cvs_log(LP_ERR, "conflict: %s is not up-to-date",
183		    cf->file_path);
184		conflicts_found++;
185		return;
186	}
187
188	if (cf->file_status == FILE_ADDED ||
189	    cf->file_status == FILE_REMOVED ||
190	    cf->file_status == FILE_MODIFIED)
191		cvs_file_get(cf->file_path, &files_affected);
192
193	switch (cf->file_status) {
194	case FILE_ADDED:
195		cvs_file_get(cf->file_path, &files_added);
196		break;
197	case FILE_REMOVED:
198		cvs_file_get(cf->file_path, &files_removed);
199		break;
200	case FILE_MODIFIED:
201		cvs_file_get(cf->file_path, &files_modified);
202		break;
203	}
204}
205
206void
207cvs_commit_local(struct cvs_file *cf)
208{
209	BUF *b, *d;
210	int isnew;
211	RCSNUM *head;
212	int l, openflags, rcsflags;
213	char rbuf[24], nbuf[24];
214	CVSENTRIES *entlist;
215	char *attic, *repo, *rcsfile;
216
217	cvs_log(LP_TRACE, "cvs_commit_local(%s)", cf->file_path);
218	cvs_file_classify(cf, NULL, 0);
219
220	if (cvs_noexec == 1)
221		return;
222
223	if (cf->file_type != CVS_FILE)
224		fatal("cvs_commit_local: '%s' is not a file", cf->file_path);
225
226	if (cf->file_status == FILE_MODIFIED ||
227	    cf->file_status == FILE_REMOVED || (cf->file_status == FILE_ADDED
228	    && cf->file_rcs != NULL && cf->file_rcs->rf_dead == 1)) {
229		head = rcs_head_get(cf->file_rcs);
230		rcsnum_tostr(head, rbuf, sizeof(rbuf));
231		rcsnum_free(head);
232	} else {
233		strlcpy(rbuf, "Non-existent", sizeof(rbuf));
234	}
235
236	isnew = 0;
237	if (cf->file_status == FILE_ADDED) {
238		isnew = 1;
239		rcsflags = RCS_CREATE;
240		openflags = O_CREAT | O_TRUNC | O_WRONLY;
241		if (cf->file_rcs != NULL) {
242			if (cf->file_rcs->rf_inattic == 0)
243				cvs_log(LP_ERR, "warning: expected %s "
244				    "to be in the Attic", cf->file_path);
245
246			if (cf->file_rcs->rf_dead == 0)
247				cvs_log(LP_ERR, "warning: expected %s "
248				    "to be dead", cf->file_path);
249
250			rcsfile = xmalloc(MAXPATHLEN);
251			repo = xmalloc(MAXPATHLEN);
252			cvs_get_repository_path(cf->file_wd, repo, MAXPATHLEN);
253			l = snprintf(rcsfile, MAXPATHLEN, "%s/%s%s",
254			    repo, cf->file_name, RCS_FILE_EXT);
255			if (l == -1 || l >= MAXPATHLEN)
256				fatal("cvs_commit_local: overflow");
257
258			if (rename(cf->file_rpath, rcsfile) == -1)
259				fatal("cvs_commit_local: failed to move %s "
260				    "outside the Attic: %s", cf->file_path,
261				    strerror(errno));
262
263			xfree(cf->file_rpath);
264			cf->file_rpath = xstrdup(rcsfile);
265			xfree(rcsfile);
266			xfree(repo);
267
268			rcsflags = RCS_READ | RCS_PARSE_FULLY;
269			openflags = O_RDONLY;
270			rcs_close(cf->file_rcs);
271			isnew = 0;
272		}
273
274		cf->repo_fd = open(cf->file_rpath, openflags);
275		if (cf->repo_fd < 0)
276			fatal("cvs_commit_local: %s", strerror(errno));
277
278		cf->file_rcs = rcs_open(cf->file_rpath, cf->repo_fd,
279		    rcsflags, 0600);
280		if (cf->file_rcs == NULL)
281			fatal("cvs_commit_local: failed to create RCS file "
282			    "for %s", cf->file_path);
283
284		commit_desc_set(cf);
285	}
286
287	if (verbosity > 1) {
288		cvs_printf("Checking in %s:\n", cf->file_path);
289		cvs_printf("%s <- %s\n", cf->file_rpath, cf->file_path);
290		cvs_printf("old revision: %s; ", rbuf);
291	}
292
293	if (isnew == 0)
294		d = commit_diff_file(cf);
295
296	if (cf->file_status == FILE_REMOVED) {
297		b = rcs_rev_getbuf(cf->file_rcs, cf->file_rcs->rf_head, 0);
298		if (b == NULL)
299			fatal("cvs_commit_local: failed to get HEAD");
300	} else {
301		if ((b = cvs_buf_load_fd(cf->fd, BUF_AUTOEXT)) == NULL)
302			fatal("cvs_commit_local: failed to load file");
303	}
304
305	if (isnew == 0) {
306		if (rcs_deltatext_set(cf->file_rcs,
307		    cf->file_rcs->rf_head, d) == -1)
308			fatal("cvs_commit_local: failed to set delta");
309	}
310
311	if (rcs_rev_add(cf->file_rcs, RCS_HEAD_REV, logmsg, -1, NULL) == -1)
312		fatal("cvs_commit_local: failed to add new revision");
313
314	if (rcs_deltatext_set(cf->file_rcs, cf->file_rcs->rf_head, b) == -1)
315		fatal("cvs_commit_local: failed to set new HEAD delta");
316
317	if (cf->file_status == FILE_REMOVED) {
318		if (rcs_state_set(cf->file_rcs,
319		    cf->file_rcs->rf_head, RCS_STATE_DEAD) == -1)
320			fatal("cvs_commit_local: failed to set state");
321	}
322
323	if (cf->file_rcs->rf_branch != NULL) {
324		rcsnum_free(cf->file_rcs->rf_branch);
325		cf->file_rcs->rf_branch = NULL;
326	}
327
328	rcs_write(cf->file_rcs);
329
330	if (cf->file_status == FILE_REMOVED) {
331		strlcpy(nbuf, "Removed", sizeof(nbuf));
332	} else if (cf->file_status == FILE_ADDED) {
333		if (cf->file_rcs->rf_dead == 1)
334			strlcpy(nbuf, "Initial Revision", sizeof(nbuf));
335		else
336			rcsnum_tostr(cf->file_rcs->rf_head,
337			    nbuf, sizeof(nbuf));
338	} else if (cf->file_status == FILE_MODIFIED) {
339		rcsnum_tostr(cf->file_rcs->rf_head, nbuf, sizeof(nbuf));
340	}
341
342	if (verbosity > 1)
343		cvs_printf("new revision: %s\n", nbuf);
344
345	(void)unlink(cf->file_path);
346	(void)close(cf->fd);
347	cf->fd = -1;
348
349	if (cf->file_status != FILE_REMOVED) {
350		cvs_checkout_file(cf, cf->file_rcs->rf_head, CO_COMMIT);
351	} else {
352		entlist = cvs_ent_open(cf->file_wd);
353		cvs_ent_remove(entlist, cf->file_name);
354		cvs_ent_close(entlist, ENT_SYNC);
355
356		repo = xmalloc(MAXPATHLEN);
357		attic = xmalloc(MAXPATHLEN);
358		cvs_get_repository_path(cf->file_wd, repo, MAXPATHLEN);
359
360		l = snprintf(attic, MAXPATHLEN, "%s/%s", repo, CVS_PATH_ATTIC);
361		if (l == -1 || l >= MAXPATHLEN)
362			fatal("cvs_commit_local: overflow");
363
364		if (mkdir(attic, 0755) == -1 && errno != EEXIST)
365			fatal("cvs_commit_local: failed to create Attic");
366
367		l = snprintf(attic, MAXPATHLEN, "%s/%s/%s%s", repo,
368		    CVS_PATH_ATTIC, cf->file_name, RCS_FILE_EXT);
369		if (l == -1 || l >= MAXPATHLEN)
370			fatal("cvs_commit_local: overflow");
371
372		if (rename(cf->file_rpath, attic) == -1)
373			fatal("cvs_commit_local: failed to move %s to Attic",
374			    cf->file_path);
375
376		xfree(repo);
377		xfree(attic);
378
379		if (cvs_server_active == 1)
380			cvs_server_update_entry("Remove-entry", cf);
381	}
382
383	if (verbosity > 1)
384		cvs_printf("done\n");
385	else {
386		cvs_log(LP_NOTICE, "checking in '%s'; revision %s -> %s",
387		    cf->file_path, rbuf, nbuf);
388	}
389}
390
391static BUF *
392commit_diff_file(struct cvs_file *cf)
393{
394	char *p1, *p2;
395	BUF *b1, *b2;
396
397	(void)xasprintf(&p1, "%s/diff1.XXXXXXXXXX", cvs_tmpdir);
398
399	if (cf->file_status == FILE_MODIFIED ||
400	    cf->file_status == FILE_ADDED) {
401		if ((b1 = cvs_buf_load_fd(cf->fd, BUF_AUTOEXT)) == NULL)
402			fatal("commit_diff_file: failed to load '%s'",
403			    cf->file_path);
404		cvs_buf_write_stmp(b1, p1, NULL);
405		cvs_buf_free(b1);
406	} else {
407		rcs_rev_write_stmp(cf->file_rcs, cf->file_rcs->rf_head, p1, 0);
408	}
409
410	(void)xasprintf(&p2, "%s/diff2.XXXXXXXXXX", cvs_tmpdir);
411	rcs_rev_write_stmp(cf->file_rcs, cf->file_rcs->rf_head, p2, 0);
412
413	if ((b2 = cvs_buf_alloc(128, BUF_AUTOEXT)) == NULL)
414		fatal("commit_diff_file: failed to create diff buf");
415
416	diff_format = D_RCSDIFF;
417	if (cvs_diffreg(p1, p2, b2) == D_ERROR)
418		fatal("commit_diff_file: failed to get RCS patch");
419
420	xfree(p1);
421	xfree(p2);
422
423	return (b2);
424}
425
426static void
427commit_desc_set(struct cvs_file *cf)
428{
429	BUF *bp;
430	int l, fd;
431	char *desc_path, *desc;
432
433	desc_path = xmalloc(MAXPATHLEN);
434	l = snprintf(desc_path, MAXPATHLEN, "%s/%s%s",
435	    CVS_PATH_CVSDIR, cf->file_name, CVS_DESCR_FILE_EXT);
436	if (l == -1 || l >= MAXPATHLEN)
437		fatal("commit_desc_set: overflow");
438
439	if ((fd = open(desc_path, O_RDONLY)) == -1) {
440		xfree(desc_path);
441		return;
442	}
443
444	bp = cvs_buf_load_fd(fd, BUF_AUTOEXT);
445	cvs_buf_putc(bp, '\0');
446	desc = cvs_buf_release(bp);
447
448	rcs_desc_set(cf->file_rcs, desc);
449
450	(void)close(fd);
451	(void)cvs_unlink(desc_path);
452
453	xfree(desc);
454	xfree(desc_path);
455}
456