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
|
/* $OpenBSD: remote.c,v 1.31 2015/11/05 09:48:21 nicm Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h> /* MAXBSIZE */
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "atomicio.h"
#include "cvs.h"
#include "remote.h"
#define MINIMUM(a, b) (((a) < (b)) ? (a) : (b))
struct cvs_resp *
cvs_remote_get_response_info(const char *response)
{
int i;
for (i = 0; cvs_responses[i].supported != -1; i++) {
if (!strcmp(cvs_responses[i].name, response))
return (&(cvs_responses[i]));
}
return (NULL);
}
struct cvs_req *
cvs_remote_get_request_info(const char *request)
{
int i;
for (i = 0; cvs_requests[i].supported != -1; i++) {
if (!strcmp(cvs_requests[i].name, request))
return (&(cvs_requests[i]));
}
return (NULL);
}
void
cvs_remote_output(const char *data)
{
FILE *out;
size_t len;
char nl = '\n';
if (cvs_server_active)
out = stdout;
else
out = current_cvsroot->cr_srvin;
fputs(data, out);
fputs("\n", out);
if (cvs_server_active == 0 && cvs_client_inlog_fd != -1) {
len = strlen(data);
if (atomicio(vwrite, cvs_client_inlog_fd, data, len) != len ||
atomicio(vwrite, cvs_client_inlog_fd, &nl, 1) != 1)
fatal("failed to write to log file");
}
}
char *
cvs_remote_input(void)
{
FILE *in;
size_t len;
char nl = '\n';
char *data, *ldata;
if (cvs_server_active)
in = stdin;
else
in = current_cvsroot->cr_srvout;
data = fgetln(in, &len);
if (data == NULL) {
if (sig_received != 0)
fatal("received signal %d", sig_received);
if (cvs_server_active) {
cvs_cleanup();
exit(0);
}
fatal("the connection has been closed by the server");
}
if (data[len - 1] == '\n') {
data[len - 1] = '\0';
ldata = xstrdup(data);
} else {
ldata = xmalloc(len + 1);
memcpy(ldata, data, len);
ldata[len] = '\0';
}
if (cvs_server_active == 0 && cvs_client_outlog_fd != -1) {
len = strlen(data);
if (atomicio(vwrite, cvs_client_outlog_fd, data, len) != len ||
atomicio(vwrite, cvs_client_outlog_fd, &nl, 1) != 1)
fatal("failed to write to log file");
}
return (ldata);
}
void
cvs_remote_receive_file(int fd, size_t len)
{
FILE *in;
char data[MAXBSIZE];
size_t nread, nleft, toread;
if (cvs_server_active)
in = stdin;
else
in = current_cvsroot->cr_srvout;
nleft = len;
while (nleft > 0) {
toread = MINIMUM(nleft, MAXBSIZE);
nread = fread(data, sizeof(char), toread, in);
if (nread == 0)
fatal("error receiving file");
if (atomicio(vwrite, fd, data, nread) != nread)
fatal("failed to write %zu bytes", nread);
if (cvs_server_active == 0 && cvs_client_outlog_fd != -1 &&
atomicio(vwrite, cvs_client_outlog_fd, data, nread)
!= nread)
fatal("failed to write to log file");
nleft -= nread;
}
}
void
cvs_remote_send_file(const char *path, int _fd)
{
int fd;
FILE *out, *in;
size_t ret, rw;
off_t total;
struct stat st;
char buf[18], data[MAXBSIZE];
if (cvs_server_active)
out = stdout;
else
out = current_cvsroot->cr_srvin;
fd = dup(_fd);
if (fd == -1)
fatal("cvs_remote_send_file: dup: %s", strerror(errno));
if (lseek(fd, 0, SEEK_SET) < 0)
fatal("cvs_remote_send_file: %s: lseek: %s", path,
strerror(errno));
if (fstat(fd, &st) == -1)
fatal("cvs_remote_send_file: %s: fstat: %s", path,
strerror(errno));
cvs_modetostr(st.st_mode, buf, sizeof(buf));
cvs_remote_output(buf);
(void)xsnprintf(buf, sizeof(buf), "%lld", st.st_size);
cvs_remote_output(buf);
if ((in = fdopen(fd, "r")) == NULL)
fatal("cvs_remote_send_file: fdopen %s", strerror(errno));
total = 0;
while ((ret = fread(data, sizeof(char), MAXBSIZE, in)) != 0) {
rw = fwrite(data, sizeof(char), ret, out);
if (rw != ret)
fatal("failed to write %zu bytes", ret);
if (cvs_server_active == 0 && cvs_client_inlog_fd != -1 &&
atomicio(vwrite, cvs_client_inlog_fd, data, ret) != ret)
fatal("failed to write to log file");
total += ret;
}
if (total != st.st_size)
fatal("length mismatch, %lld vs %lld", total, st.st_size);
(void)fclose(in);
}
void
cvs_remote_send_file_buf(char *file, BUF *bp, mode_t mode)
{
char buf[18];
u_char *data;
size_t len, ret;
if (cvs_server_active != 1)
fatal("cvs_remote_send_file_buf is server only");
len = buf_len(bp);
data = buf_release(bp);
cvs_modetostr(mode, buf, sizeof(buf));
cvs_remote_output(buf);
(void)xsnprintf(buf, sizeof(buf), "%ld", len);
cvs_remote_output(buf);
ret = fwrite(data, sizeof(char), len, stdout);
if (ret != len)
cvs_log(LP_ERR, "warning: sent %s truncated", file);
if (cvs_server_active == 0 && cvs_client_inlog_fd != -1 &&
atomicio(vwrite, cvs_client_inlog_fd, data, len) != len)
fatal("failed to write to log file");
free(data);
}
void
cvs_remote_classify_file(struct cvs_file *cf)
{
struct stat st;
CVSENTRIES *entlist;
entlist = cvs_ent_open(cf->file_wd);
cf->file_ent = cvs_ent_get(entlist, cf->file_name);
if (cf->file_ent != NULL && cf->file_ent->ce_status != CVS_ENT_REG) {
if (cf->file_ent->ce_status == CVS_ENT_ADDED) {
if (cf->fd != -1)
cf->file_status = FILE_ADDED;
else
cf->file_status = FILE_UNKNOWN;
} else {
cf->file_status = FILE_REMOVED;
}
return;
}
if (cf->file_ent != NULL) {
if (cf->file_ent->ce_type == CVS_ENT_DIR)
cf->file_type = CVS_DIR;
else
cf->file_type = CVS_FILE;
}
if (cf->fd != -1)
cf->file_flags |= FILE_ON_DISK;
if ((cf->file_flags & FILE_ON_DISK) && cf->file_ent != NULL) {
if (fstat(cf->fd, &st) == -1)
fatal("cvs_remote_classify_file(%s): %s", cf->file_path,
strerror(errno));
if (st.st_mtime != cf->file_ent->ce_mtime ||
cf->file_ent->ce_conflict != NULL)
cf->file_status = FILE_MODIFIED;
else
cf->file_status = FILE_UPTODATE;
} else if (!(cf->file_flags & FILE_ON_DISK)) {
cf->file_status = FILE_UNKNOWN;
}
if (cvs_cmdop == CVS_OP_IMPORT && cf->file_type == CVS_FILE)
cf->file_status = FILE_MODIFIED;
}
void
cvs_validate_directory(const char *path)
{
char *dir, *sp, *dp;
dir = xstrdup(path);
for (sp = dir; sp != NULL; sp = dp) {
dp = strchr(sp, '/');
if (dp != NULL)
*(dp++) = '\0';
if (!strcmp(sp, ".."))
fatal("path validation failed!");
}
free(dir);
}
|