]>
Commit | Line | Data |
---|---|---|
b2e465d6 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
7db98ffc | 3 | // $Id: rsh.cc,v 1.6.2.1 2004/01/16 18:58:50 mdz Exp $ |
b2e465d6 AL |
4 | /* ###################################################################### |
5 | ||
6 | RSH method - Transfer files via rsh compatible program | |
7 | ||
8 | Written by Ben Collins <bcollins@debian.org>, Copyright (c) 2000 | |
9 | Licensed under the GNU General Public License v2 [no exception clauses] | |
10 | ||
11 | ##################################################################### */ | |
12 | /*}}}*/ | |
5e775e59 | 13 | // Include Files /*{{{*/ |
ea542140 DK |
14 | #include <config.h> |
15 | ||
b2e465d6 | 16 | #include <apt-pkg/error.h> |
472ff00e DK |
17 | #include <apt-pkg/fileutl.h> |
18 | #include <apt-pkg/hashes.h> | |
19 | #include <apt-pkg/configuration.h> | |
453b82a3 | 20 | #include <apt-pkg/strutl.h> |
b2e465d6 | 21 | |
453b82a3 DK |
22 | #include <stdlib.h> |
23 | #include <string.h> | |
b2e465d6 AL |
24 | #include <sys/stat.h> |
25 | #include <sys/time.h> | |
b2e465d6 AL |
26 | #include <unistd.h> |
27 | #include <signal.h> | |
28 | #include <stdio.h> | |
29 | #include <errno.h> | |
30 | #include <stdarg.h> | |
ea542140 DK |
31 | #include "rsh.h" |
32 | ||
d77559ac | 33 | #include <apti18n.h> |
b2e465d6 AL |
34 | /*}}}*/ |
35 | ||
b2e465d6 | 36 | unsigned long TimeOut = 120; |
5e775e59 | 37 | Configuration::Item const *RshOptions = 0; |
b2e465d6 | 38 | time_t RSHMethod::FailTime = 0; |
8f3ba4e8 | 39 | std::string RSHMethod::FailFile; |
b2e465d6 AL |
40 | int RSHMethod::FailFd = -1; |
41 | ||
42 | // RSHConn::RSHConn - Constructor /*{{{*/ | |
43 | // --------------------------------------------------------------------- | |
44 | /* */ | |
d29d27b5 DK |
45 | RSHConn::RSHConn(std::string const &pProg, URI Srv) : Len(0), WriteFd(-1), ReadFd(-1), |
46 | ServerName(Srv), Prog(pProg), Process(-1) { | |
dcaa1185 DK |
47 | Buffer[0] = '\0'; |
48 | } | |
b2e465d6 AL |
49 | /*}}}*/ |
50 | // RSHConn::RSHConn - Destructor /*{{{*/ | |
51 | // --------------------------------------------------------------------- | |
52 | /* */ | |
53 | RSHConn::~RSHConn() | |
54 | { | |
55 | Close(); | |
56 | } | |
57 | /*}}}*/ | |
58 | // RSHConn::Close - Forcibly terminate the connection /*{{{*/ | |
59 | // --------------------------------------------------------------------- | |
60 | /* Often this is called when things have gone wrong to indicate that the | |
61 | connection is no longer usable. */ | |
62 | void RSHConn::Close() | |
63 | { | |
64 | if (Process == -1) | |
65 | return; | |
66 | ||
67 | close(WriteFd); | |
68 | close(ReadFd); | |
69 | kill(Process,SIGINT); | |
70 | ExecWait(Process,"",true); | |
71 | WriteFd = -1; | |
72 | ReadFd = -1; | |
73 | Process = -1; | |
74 | } | |
75 | /*}}}*/ | |
76 | // RSHConn::Open - Connect to a host /*{{{*/ | |
77 | // --------------------------------------------------------------------- | |
78 | /* */ | |
79 | bool RSHConn::Open() | |
80 | { | |
81 | // Use the already open connection if possible. | |
82 | if (Process != -1) | |
83 | return true; | |
84 | ||
c7872a2c | 85 | if (Connect(ServerName.Host,ServerName.Port,ServerName.User) == false) |
b2e465d6 AL |
86 | return false; |
87 | ||
88 | return true; | |
89 | } | |
90 | /*}}}*/ | |
91 | // RSHConn::Connect - Fire up rsh and connect /*{{{*/ | |
92 | // --------------------------------------------------------------------- | |
93 | /* */ | |
c7872a2c | 94 | bool RSHConn::Connect(std::string Host, unsigned int Port, std::string User) |
b2e465d6 | 95 | { |
c7872a2c DH |
96 | char *PortStr = NULL; |
97 | if (Port != 0) | |
98 | { | |
99 | if (asprintf (&PortStr, "%d", Port) == -1 || PortStr == NULL) | |
100 | return _error->Errno("asprintf", _("Failed")); | |
101 | } | |
102 | ||
b2e465d6 AL |
103 | // Create the pipes |
104 | int Pipes[4] = {-1,-1,-1,-1}; | |
105 | if (pipe(Pipes) != 0 || pipe(Pipes+2) != 0) | |
106 | { | |
dc738e7a | 107 | _error->Errno("pipe",_("Failed to create IPC pipe to subprocess")); |
b2e465d6 AL |
108 | for (int I = 0; I != 4; I++) |
109 | close(Pipes[I]); | |
110 | return false; | |
111 | } | |
112 | for (int I = 0; I != 4; I++) | |
113 | SetCloseExec(Pipes[I],true); | |
114 | ||
115 | Process = ExecFork(); | |
116 | ||
117 | // The child | |
118 | if (Process == 0) | |
119 | { | |
5e775e59 AL |
120 | const char *Args[400]; |
121 | unsigned int i = 0; | |
b2e465d6 AL |
122 | |
123 | dup2(Pipes[1],STDOUT_FILENO); | |
124 | dup2(Pipes[2],STDIN_FILENO); | |
125 | ||
126 | // Probably should do | |
127 | // dup2(open("/dev/null",O_RDONLY),STDERR_FILENO); | |
128 | ||
d29d27b5 | 129 | Args[i++] = Prog.c_str(); |
c5734bad | 130 | |
5e775e59 AL |
131 | // Insert user-supplied command line options |
132 | Configuration::Item const *Opts = RshOptions; | |
133 | if (Opts != 0) | |
134 | { | |
135 | Opts = Opts->Child; | |
136 | for (; Opts != 0; Opts = Opts->Next) | |
137 | { | |
138 | if (Opts->Value.empty() == true) | |
139 | continue; | |
140 | Args[i++] = Opts->Value.c_str(); | |
141 | } | |
142 | } | |
143 | ||
b2e465d6 AL |
144 | if (User.empty() == false) { |
145 | Args[i++] = "-l"; | |
146 | Args[i++] = User.c_str(); | |
147 | } | |
c7872a2c DH |
148 | if (PortStr != NULL) { |
149 | Args[i++] = "-p"; | |
150 | Args[i++] = PortStr; | |
151 | } | |
b2e465d6 AL |
152 | if (Host.empty() == false) { |
153 | Args[i++] = Host.c_str(); | |
154 | } | |
155 | Args[i++] = "/bin/sh"; | |
156 | Args[i] = 0; | |
157 | execvp(Args[0],(char **)Args); | |
158 | exit(100); | |
159 | } | |
160 | ||
c7872a2c DH |
161 | if (PortStr != NULL) |
162 | free(PortStr); | |
163 | ||
b2e465d6 AL |
164 | ReadFd = Pipes[0]; |
165 | WriteFd = Pipes[3]; | |
166 | SetNonBlock(Pipes[0],true); | |
167 | SetNonBlock(Pipes[3],true); | |
168 | close(Pipes[1]); | |
169 | close(Pipes[2]); | |
170 | ||
171 | return true; | |
c7872a2c DH |
172 | } |
173 | bool RSHConn::Connect(std::string Host, std::string User) | |
174 | { | |
175 | return Connect(Host, 0, User); | |
b2e465d6 AL |
176 | } |
177 | /*}}}*/ | |
178 | // RSHConn::ReadLine - Very simple buffered read with timeout /*{{{*/ | |
179 | // --------------------------------------------------------------------- | |
180 | /* */ | |
8f3ba4e8 | 181 | bool RSHConn::ReadLine(std::string &Text) |
b2e465d6 AL |
182 | { |
183 | if (Process == -1 || ReadFd == -1) | |
184 | return false; | |
185 | ||
186 | // Suck in a line | |
187 | while (Len < sizeof(Buffer)) | |
188 | { | |
189 | // Scan the buffer for a new line | |
190 | for (unsigned int I = 0; I != Len; I++) | |
191 | { | |
192 | // Escape some special chars | |
193 | if (Buffer[I] == 0) | |
194 | Buffer[I] = '?'; | |
195 | ||
196 | // End of line? | |
197 | if (Buffer[I] != '\n') | |
198 | continue; | |
199 | ||
200 | I++; | |
8f3ba4e8 | 201 | Text = std::string(Buffer,I); |
b2e465d6 AL |
202 | memmove(Buffer,Buffer+I,Len - I); |
203 | Len -= I; | |
204 | return true; | |
205 | } | |
206 | ||
207 | // Wait for some data.. | |
208 | if (WaitFd(ReadFd,false,TimeOut) == false) | |
209 | { | |
210 | Close(); | |
dc738e7a | 211 | return _error->Error(_("Connection timeout")); |
b2e465d6 AL |
212 | } |
213 | ||
214 | // Suck it back | |
215 | int Res = read(ReadFd,Buffer + Len,sizeof(Buffer) - Len); | |
216 | if (Res <= 0) | |
217 | { | |
dc738e7a | 218 | _error->Errno("read",_("Read error")); |
b2e465d6 AL |
219 | Close(); |
220 | return false; | |
221 | } | |
222 | Len += Res; | |
223 | } | |
224 | ||
dc738e7a | 225 | return _error->Error(_("A response overflowed the buffer.")); |
b2e465d6 AL |
226 | } |
227 | /*}}}*/ | |
228 | // RSHConn::WriteMsg - Send a message with optional remote sync. /*{{{*/ | |
229 | // --------------------------------------------------------------------- | |
230 | /* The remote sync flag appends a || echo which will insert blank line | |
231 | once the command completes. */ | |
8f3ba4e8 | 232 | bool RSHConn::WriteMsg(std::string &Text,bool Sync,const char *Fmt,...) |
b2e465d6 AL |
233 | { |
234 | va_list args; | |
235 | va_start(args,Fmt); | |
236 | ||
180b6932 MV |
237 | // sprintf into a buffer |
238 | char Tmp[1024]; | |
239 | vsnprintf(Tmp,sizeof(Tmp),Fmt,args); | |
11d0fb91 MV |
240 | va_end(args); |
241 | ||
180b6932 MV |
242 | // concat to create the real msg |
243 | std::string Msg; | |
b2e465d6 | 244 | if (Sync == true) |
180b6932 | 245 | Msg = std::string(Tmp) + " 2> /dev/null || echo\n"; |
b2e465d6 | 246 | else |
180b6932 | 247 | Msg = std::string(Tmp) + " 2> /dev/null\n"; |
b2e465d6 AL |
248 | |
249 | // Send it off | |
180b6932 | 250 | const char *S = Msg.c_str(); |
b2e465d6 AL |
251 | unsigned long Len = strlen(S); |
252 | unsigned long Start = 0; | |
253 | while (Len != 0) | |
254 | { | |
255 | if (WaitFd(WriteFd,true,TimeOut) == false) | |
256 | { | |
257 | ||
258 | Close(); | |
dc738e7a | 259 | return _error->Error(_("Connection timeout")); |
b2e465d6 AL |
260 | } |
261 | ||
262 | int Res = write(WriteFd,S + Start,Len); | |
263 | if (Res <= 0) | |
264 | { | |
db0db9fe | 265 | _error->Errno("write",_("Write error")); |
b2e465d6 AL |
266 | Close(); |
267 | return false; | |
268 | } | |
269 | ||
270 | Len -= Res; | |
271 | Start += Res; | |
272 | } | |
273 | ||
274 | if (Sync == true) | |
275 | return ReadLine(Text); | |
276 | return true; | |
277 | } | |
278 | /*}}}*/ | |
279 | // RSHConn::Size - Return the size of the file /*{{{*/ | |
280 | // --------------------------------------------------------------------- | |
1e3f4083 | 281 | /* Right now for successful transfer the file size must be known in |
b2e465d6 | 282 | advance. */ |
650faab0 | 283 | bool RSHConn::Size(const char *Path,unsigned long long &Size) |
b2e465d6 AL |
284 | { |
285 | // Query the size | |
8f3ba4e8 | 286 | std::string Msg; |
b2e465d6 AL |
287 | Size = 0; |
288 | ||
289 | if (WriteMsg(Msg,true,"find %s -follow -printf '%%s\\n'",Path) == false) | |
290 | return false; | |
291 | ||
292 | // FIXME: Sense if the bad reply is due to a File Not Found. | |
293 | ||
294 | char *End; | |
650faab0 | 295 | Size = strtoull(Msg.c_str(),&End,10); |
b2e465d6 | 296 | if (End == Msg.c_str()) |
db0db9fe | 297 | return _error->Error(_("File not found")); |
b2e465d6 AL |
298 | return true; |
299 | } | |
300 | /*}}}*/ | |
301 | // RSHConn::ModTime - Get the modification time in UTC /*{{{*/ | |
302 | // --------------------------------------------------------------------- | |
303 | /* */ | |
304 | bool RSHConn::ModTime(const char *Path, time_t &Time) | |
305 | { | |
306 | Time = time(&Time); | |
307 | // Query the mod time | |
8f3ba4e8 | 308 | std::string Msg; |
b2e465d6 AL |
309 | |
310 | if (WriteMsg(Msg,true,"TZ=UTC find %s -follow -printf '%%TY%%Tm%%Td%%TH%%TM%%TS\\n'",Path) == false) | |
311 | return false; | |
312 | ||
313 | // Parse it | |
96cc64a5 | 314 | return FTPMDTMStrToTime(Msg.c_str(), Time); |
b2e465d6 AL |
315 | } |
316 | /*}}}*/ | |
317 | // RSHConn::Get - Get a file /*{{{*/ | |
318 | // --------------------------------------------------------------------- | |
319 | /* */ | |
650faab0 DK |
320 | bool RSHConn::Get(const char *Path,FileFd &To,unsigned long long Resume, |
321 | Hashes &Hash,bool &Missing, unsigned long long Size) | |
b2e465d6 AL |
322 | { |
323 | Missing = false; | |
324 | ||
325 | // Round to a 2048 byte block | |
326 | Resume = Resume - (Resume % 2048); | |
327 | ||
328 | if (To.Truncate(Resume) == false) | |
329 | return false; | |
330 | if (To.Seek(0) == false) | |
331 | return false; | |
332 | ||
333 | if (Resume != 0) { | |
109eb151 | 334 | if (Hash.AddFD(To,Resume) == false) { |
dc738e7a | 335 | _error->Errno("read",_("Problem hashing file")); |
b2e465d6 AL |
336 | return false; |
337 | } | |
338 | } | |
339 | ||
340 | // FIXME: Detect file-not openable type errors. | |
8f3ba4e8 | 341 | std::string Jnk; |
b2e465d6 AL |
342 | if (WriteMsg(Jnk,false,"dd if=%s bs=2048 skip=%u", Path, Resume / 2048) == false) |
343 | return false; | |
344 | ||
345 | // Copy loop | |
650faab0 | 346 | unsigned long long MyLen = Resume; |
b2e465d6 AL |
347 | unsigned char Buffer[4096]; |
348 | while (MyLen < Size) | |
349 | { | |
350 | // Wait for some data.. | |
351 | if (WaitFd(ReadFd,false,TimeOut) == false) | |
352 | { | |
353 | Close(); | |
dc738e7a | 354 | return _error->Error(_("Data socket timed out")); |
b2e465d6 AL |
355 | } |
356 | ||
357 | // Read the data.. | |
358 | int Res = read(ReadFd,Buffer,sizeof(Buffer)); | |
359 | if (Res == 0) | |
360 | { | |
361 | Close(); | |
dc738e7a | 362 | return _error->Error(_("Connection closed prematurely")); |
b2e465d6 AL |
363 | } |
364 | ||
365 | if (Res < 0) | |
366 | { | |
367 | if (errno == EAGAIN) | |
368 | continue; | |
369 | break; | |
370 | } | |
371 | MyLen += Res; | |
372 | ||
63b1700f | 373 | Hash.Add(Buffer,Res); |
b2e465d6 AL |
374 | if (To.Write(Buffer,Res) == false) |
375 | { | |
376 | Close(); | |
377 | return false; | |
378 | } | |
379 | } | |
380 | ||
381 | return true; | |
382 | } | |
383 | /*}}}*/ | |
384 | ||
385 | // RSHMethod::RSHMethod - Constructor /*{{{*/ | |
30060442 | 386 | RSHMethod::RSHMethod(std::string &&pProg) : aptMethod(std::move(pProg),"1.0",SendConfig) |
b2e465d6 AL |
387 | { |
388 | signal(SIGTERM,SigTerm); | |
389 | signal(SIGINT,SigTerm); | |
390 | Server = 0; | |
391 | FailFd = -1; | |
d3e8fbb3 | 392 | } |
b2e465d6 | 393 | /*}}}*/ |
5e775e59 AL |
394 | // RSHMethod::Configuration - Handle a configuration message /*{{{*/ |
395 | // --------------------------------------------------------------------- | |
8f3ba4e8 | 396 | bool RSHMethod::Configuration(std::string Message) |
5e775e59 | 397 | { |
25ff0797 DK |
398 | // enabling privilege dropping for this method requires configuration… |
399 | // … which is otherwise lifted straight from root, so use it by default. | |
30060442 | 400 | _config->Set(std::string("Binary::") + Binary + "::APT::Sandbox::User", ""); |
25ff0797 | 401 | |
23e64f6d | 402 | if (aptMethod::Configuration(Message) == false) |
5e775e59 AL |
403 | return false; |
404 | ||
30060442 | 405 | std::string const timeconf = std::string("Acquire::") + Binary + "::Timeout"; |
23e64f6d | 406 | TimeOut = _config->FindI(timeconf, TimeOut); |
30060442 | 407 | std::string const optsconf = std::string("Acquire::") + Binary + "::Options"; |
23e64f6d | 408 | RshOptions = _config->Tree(optsconf.c_str()); |
5e775e59 AL |
409 | |
410 | return true; | |
411 | } | |
412 | /*}}}*/ | |
b2e465d6 AL |
413 | // RSHMethod::SigTerm - Clean up and timestamp the files on exit /*{{{*/ |
414 | // --------------------------------------------------------------------- | |
415 | /* */ | |
65512241 | 416 | void RSHMethod::SigTerm(int) |
b2e465d6 AL |
417 | { |
418 | if (FailFd == -1) | |
419 | _exit(100); | |
b2e465d6 | 420 | |
9ce3cfc9 | 421 | // Transfer the modification times |
246bbb61 | 422 | struct timeval times[2]; |
9ce3cfc9 DK |
423 | times[0].tv_sec = FailTime; |
424 | times[1].tv_sec = FailTime; | |
246bbb61 DK |
425 | times[0].tv_usec = times[1].tv_usec = 0; |
426 | utimes(FailFile.c_str(), times); | |
9ce3cfc9 | 427 | close(FailFd); |
b2e465d6 AL |
428 | |
429 | _exit(100); | |
430 | } | |
431 | /*}}}*/ | |
432 | // RSHMethod::Fetch - Fetch a URI /*{{{*/ | |
433 | // --------------------------------------------------------------------- | |
434 | /* */ | |
435 | bool RSHMethod::Fetch(FetchItem *Itm) | |
436 | { | |
437 | URI Get = Itm->Uri; | |
438 | const char *File = Get.Path.c_str(); | |
439 | FetchResult Res; | |
440 | Res.Filename = Itm->DestFile; | |
441 | Res.IMSHit = false; | |
442 | ||
443 | // Connect to the server | |
444 | if (Server == 0 || Server->Comp(Get) == false) { | |
445 | delete Server; | |
30060442 | 446 | Server = new RSHConn(Binary, Get); |
b2e465d6 AL |
447 | } |
448 | ||
449 | // Could not connect is a transient error.. | |
450 | if (Server->Open() == false) { | |
451 | Server->Close(); | |
452 | Fail(true); | |
453 | return true; | |
454 | } | |
455 | ||
456 | // We say this mainly because the pause here is for the | |
457 | // ssh connection that is still going | |
dc738e7a | 458 | Status(_("Connecting to %s"), Get.Host.c_str()); |
b2e465d6 AL |
459 | |
460 | // Get the files information | |
650faab0 | 461 | unsigned long long Size; |
b2e465d6 AL |
462 | if (Server->Size(File,Size) == false || |
463 | Server->ModTime(File,FailTime) == false) | |
464 | { | |
465 | //Fail(true); | |
db0db9fe | 466 | //_error->Error(_("File not found")); // Will be handled by Size |
b2e465d6 AL |
467 | return false; |
468 | } | |
469 | Res.Size = Size; | |
470 | ||
471 | // See if it is an IMS hit | |
472 | if (Itm->LastModified == FailTime) { | |
473 | Res.Size = 0; | |
474 | Res.IMSHit = true; | |
475 | URIDone(Res); | |
476 | return true; | |
477 | } | |
478 | ||
479 | // See if the file exists | |
480 | struct stat Buf; | |
481 | if (stat(Itm->DestFile.c_str(),&Buf) == 0) { | |
650faab0 | 482 | if (Size == (unsigned long long)Buf.st_size && FailTime == Buf.st_mtime) { |
b2e465d6 AL |
483 | Res.Size = Buf.st_size; |
484 | Res.LastModified = Buf.st_mtime; | |
485 | Res.ResumePoint = Buf.st_size; | |
486 | URIDone(Res); | |
487 | return true; | |
488 | } | |
489 | ||
490 | // Resume? | |
650faab0 | 491 | if (FailTime == Buf.st_mtime && Size > (unsigned long long)Buf.st_size) |
b2e465d6 AL |
492 | Res.ResumePoint = Buf.st_size; |
493 | } | |
494 | ||
495 | // Open the file | |
9224ce3d | 496 | Hashes Hash(Itm->ExpectedHashes); |
b2e465d6 AL |
497 | { |
498 | FileFd Fd(Itm->DestFile,FileFd::WriteAny); | |
499 | if (_error->PendingError() == true) | |
500 | return false; | |
501 | ||
502 | URIStart(Res); | |
503 | ||
504 | FailFile = Itm->DestFile; | |
3a8776a3 | 505 | FailFile.c_str(); // Make sure we don't do a malloc in the signal handler |
b2e465d6 AL |
506 | FailFd = Fd.Fd(); |
507 | ||
508 | bool Missing; | |
63b1700f | 509 | if (Server->Get(File,Fd,Res.ResumePoint,Hash,Missing,Res.Size) == false) |
b2e465d6 AL |
510 | { |
511 | Fd.Close(); | |
512 | ||
513 | // Timestamp | |
246bbb61 | 514 | struct timeval times[2]; |
9ce3cfc9 DK |
515 | times[0].tv_sec = FailTime; |
516 | times[1].tv_sec = FailTime; | |
246bbb61 DK |
517 | times[0].tv_usec = times[1].tv_usec = 0; |
518 | utimes(FailFile.c_str(), times); | |
b2e465d6 AL |
519 | |
520 | // If the file is missing we hard fail otherwise transient fail | |
521 | if (Missing == true) | |
522 | return false; | |
523 | Fail(true); | |
524 | return true; | |
525 | } | |
526 | ||
527 | Res.Size = Fd.Size(); | |
246bbb61 | 528 | struct timeval times[2]; |
9ce3cfc9 DK |
529 | times[0].tv_sec = FailTime; |
530 | times[1].tv_sec = FailTime; | |
246bbb61 DK |
531 | times[0].tv_usec = times[1].tv_usec = 0; |
532 | utimes(Fd.Name().c_str(), times); | |
9ce3cfc9 | 533 | FailFd = -1; |
b2e465d6 AL |
534 | } |
535 | ||
536 | Res.LastModified = FailTime; | |
a7c835af | 537 | Res.TakeHashes(Hash); |
b2e465d6 | 538 | |
b2e465d6 AL |
539 | URIDone(Res); |
540 | ||
541 | return true; | |
542 | } | |
543 | /*}}}*/ | |
544 | ||
65512241 | 545 | int main(int, const char *argv[]) |
b2e465d6 | 546 | { |
8b79c94a | 547 | return RSHMethod(flNotDir(argv[0])).Run(); |
b2e465d6 | 548 | } |