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
|
#include "system.h"
#include <netinet/in.h>
#include "build/rpmbuild.h"
#include "url.h"
#include "ftp.h"
#include "http.h"
static struct urlstring {
const char *leadin;
urltype ret;
} urlstrings[] = {
{ "file://", URL_IS_PATH },
{ "ftp://", URL_IS_FTP },
{ "http://", URL_IS_HTTP },
{ "-", URL_IS_DASH },
{ NULL, URL_IS_UNKNOWN }
};
void freeUrlinfo(urlinfo *u)
{
if (u->ftpControl >= 0)
close(u->ftpControl);
FREE(u->service);
FREE(u->user);
FREE(u->password);
FREE(u->host);
FREE(u->portstr);
FREE(u->path);
FREE(u);
}
urlinfo *newUrlinfo(void)
{
urlinfo *u;
if ((u = malloc(sizeof(*u))) == NULL)
return NULL;
memset(u, 0, sizeof(*u));
u->port = -1;
u->ftpControl = -1;
return u;
}
static void findUrlinfo(urlinfo **uret, int mustAsk)
{
urlinfo *u;
urlinfo **empty;
static urlinfo **uCache = NULL;
static int uCount = 0;
int i;
if (uret == NULL)
return;
u = *uret;
empty = NULL;
for (i = 0; i < uCount; i++) {
urlinfo *ou;
if ((ou = uCache[i]) == NULL) {
if (empty == NULL)
empty = &uCache[i];
continue;
}
if (u->service && ou->service && strcmp(ou->service, u->service))
continue;
if (u->host && ou->host && strcmp(ou->host, u->host))
continue;
if (u->user && ou->user && strcmp(ou->user, u->user))
continue;
if (u->password && ou->password && strcmp(ou->password, u->password))
continue;
if (u->portstr && ou->portstr && strcmp(ou->portstr, u->portstr))
continue;
break;
}
if (i == uCount) {
if (empty == NULL) {
uCount++;
if (uCache)
uCache = realloc(uCache, sizeof(*uCache) * uCount);
else
uCache = malloc(sizeof(*uCache));
empty = &uCache[i];
}
*empty = u;
} else {
const char *up = uCache[i]->path;
uCache[i]->path = u->path;
u->path = up;
freeUrlinfo(u);
}
*uret = u = uCache[i];
if (!strcmp(u->service, "ftp")) {
if (mustAsk || (u->user != NULL && u->password == NULL)) {
char * prompt;
FREE(u->password);
prompt = alloca(strlen(u->host) + strlen(u->user) + 40);
sprintf(prompt, _("Password for %s@%s: "), u->user, u->host);
u->password = strdup(getpass(prompt));
}
}
return;
}
int urlSplit(const char * url, urlinfo **uret)
{
urlinfo *u;
char *myurl;
char *s, *se, *f, *fe;
if (uret == NULL)
return -1;
if ((u = newUrlinfo()) == NULL)
return -1;
if ((se = s = myurl = strdup(url)) == NULL) {
freeUrlinfo(u);
return -1;
}
do {
while (*se && *se != '/') se++;
if (*se == '\0') {
/* XXX can't find path */
if (myurl) free(myurl);
freeUrlinfo(u);
return -1;
}
if ((se != s) && se[-1] == ':' && se[0] == '/' && se[1] == '/') {
se[-1] = '\0';
u->service = strdup(s);
se += 2;
s = se++;
continue;
}
u->path = strdup(se);
*se = '\0';
break;
} while (1);
fe = f = s;
while (*fe && *fe != '@') fe++;
if (*fe == '@') {
s = fe + 1;
*fe = '\0';
while (fe > f && *fe != ':') fe--;
if (*fe == ':') {
*fe++ = '\0';
u->password = strdup(fe);
}
u->user = strdup(f);
}
fe = f = s;
while (*fe && *fe != ':') fe++;
if (*fe == ':') {
*fe++ = '\0';
u->portstr = strdup(fe);
if (u->portstr != NULL && u->portstr[0] != '\0') {
char *end;
u->port = strtol(u->portstr, &end, 0);
if (*end) {
rpmMessage(RPMMESS_ERROR, _("url port must be a number\n"));
if (myurl) free(myurl);
freeUrlinfo(u);
return -1;
}
}
}
u->host = strdup(f);
if (u->port < 0 && u->service != NULL) {
struct servent *se;
if ((se = getservbyname(u->service, "tcp")) != NULL)
u->port = ntohs(se->s_port);
else if (!strcasecmp(u->service, "ftp"))
u->port = IPPORT_FTP;
else if (!strcasecmp(u->service, "http"))
u->port = IPPORT_HTTP;
}
if (myurl) free(myurl);
if (uret) {
*uret = u;
findUrlinfo(uret, 0);
}
return 0;
}
static int urlConnect(const char * url, urlinfo ** uret)
{
urlinfo *u;
if (urlSplit(url, &u) < 0)
return -1;
if (!strcmp(u->service, "ftp") && u->ftpControl < 0) {
char *proxy;
char *proxyport;
rpmMessage(RPMMESS_DEBUG, _("logging into %s as %s, pw %s\n"),
u->host,
u->user ? u->user : "ftp",
u->password ? u->password : "(username)");
/* XXX FIXME: this doesn't work with urlinfo caching */
if ((proxy = rpmGetVar(RPMVAR_FTPPROXY)) != NULL) {
char *nu = malloc(strlen(u->user) + strlen(u->host) + sizeof("@"));
strcpy(nu, u->user);
strcat(nu, "@");
strcat(nu, u->host);
free((void *)u->user);
u->user = nu;
free((void *)u->host);
u->host = strdup(proxy);
}
/* XXX FIXME: this doesn't work with urlinfo caching */
if ((proxyport = rpmGetVar(RPMVAR_FTPPORT)) != NULL) {
int port;
char *end;
port = strtol(proxyport, &end, 0);
if (*end) {
fprintf(stderr, _("error: ftpport must be a number\n"));
return -1;
}
u->port = port;
}
u->ftpControl = ftpOpen(u);
if (u->ftpControl < 0)
return u->ftpControl;
}
if (uret != NULL)
*uret = u;
return 0;
}
urltype urlIsURL(const char * url)
{
struct urlstring *us;
for (us = urlstrings; us->leadin != NULL; us++) {
if (strncmp(url, us->leadin, strlen(us->leadin)))
continue;
return us->ret;
}
return URL_IS_UNKNOWN;
}
#ifdef NOTYET
int urlAbort(FD_t fd)
{
if (fd != NULL && fd->fd_url) {
urlinfo *u = (urlinfo *)fd->fd_url;
if (u->ftpControl >= 0)
ftpAbort(fd);
}
}
#endif
int ufdClose(FD_t fd)
{
if (fd != NULL && fd->fd_url) {
urlinfo *u = (urlinfo *)fd->fd_url;
if (u->ftpControl >= 0)
ftpAbort(fd);
}
return fdClose(fd);
}
FD_t ufdOpen(const char *url, int flags, mode_t mode)
{
FD_t fd = NULL;
urlinfo *u;
switch (urlIsURL(url)) {
case URL_IS_FTP:
if (urlConnect(url, &u) < 0)
break;
if ((fd = fdNew()) == NULL)
break;
fd->fd_url = u;
if (ftpGetFileDesc(fd) < 0)
break;
break;
case URL_IS_HTTP:
if (urlSplit(url, &u))
break;
if ((fd = fdNew()) == NULL)
break;
if (httpProxySetup(url,&u))
break;
fd->fd_url = u;
fd->fd_fd = httpOpen(u);
break;
case URL_IS_PATH:
if (urlSplit(url, &u))
break;
fd = fdOpen(u->path, flags, mode);
break;
case URL_IS_DASH:
fd = fdDup(STDIN_FILENO);
break;
case URL_IS_UNKNOWN:
default:
fd = fdOpen(url, flags, mode);
break;
}
if (fd == NULL || fdFileno(fd) < 0) {
ufdClose(fd);
return NULL;
}
return fd;
}
int urlGetFile(const char * url, const char * dest) {
int rc;
FD_t sfd = NULL;
FD_t tfd = NULL;
sfd = ufdOpen(url, O_RDONLY, 0);
if (sfd == NULL || fdFileno(sfd) < 0) {
rpmMessage(RPMMESS_DEBUG, _("failed to open %s\n"), url);
ufdClose(sfd);
return FTPERR_UNKNOWN;
}
if (sfd->fd_url != NULL && dest == NULL) {
const char *fileName = ((urlinfo *)sfd->fd_url)->path;
if ((dest = strrchr(fileName, '/')) != NULL)
dest++;
else
dest = fileName;
}
tfd = fdOpen(dest, O_CREAT|O_WRONLY|O_TRUNC, 0600);
if (fdFileno(tfd) < 0) {
rpmMessage(RPMMESS_DEBUG, _("failed to create %s\n"), dest);
fdClose(tfd);
ufdClose(sfd);
return FTPERR_UNKNOWN;
}
switch (urlIsURL(url)) {
case URL_IS_FTP:
if ((rc = ftpGetFile(sfd, tfd))) {
unlink(dest);
ufdClose(sfd);
}
/* XXX fdClose(sfd) done by copyData */
break;
case URL_IS_HTTP:
case URL_IS_PATH:
case URL_IS_DASH:
if ((rc = httpGetFile(sfd, tfd))) {
unlink(dest);
ufdClose(sfd);
}
/* XXX fdClose(sfd) done by copyData */
break;
case URL_IS_UNKNOWN:
default:
rc = FTPERR_UNKNOWN;
break;
}
fdClose(tfd);
return rc;
}
|