]> git.saurik.com Git - apt.git/blob - methods/rsh.cc
The entire concept of PendingError() is flawed :/.
[apt.git] / methods / rsh.cc
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: rsh.cc,v 1.6.2.1 2004/01/16 18:58:50 mdz Exp $
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 /*}}}*/
13 // Include Files /*{{{*/
14 #include <config.h>
15
16 #include <apt-pkg/error.h>
17 #include <apt-pkg/fileutl.h>
18 #include <apt-pkg/hashes.h>
19 #include <apt-pkg/configuration.h>
20 #include <apt-pkg/strutl.h>
21
22 #include <stdlib.h>
23 #include <string.h>
24 #include <sys/stat.h>
25 #include <sys/time.h>
26 #include <unistd.h>
27 #include <signal.h>
28 #include <stdio.h>
29 #include <errno.h>
30 #include <stdarg.h>
31 #include "rsh.h"
32
33 #include <apti18n.h>
34 /*}}}*/
35
36 unsigned long TimeOut = 120;
37 Configuration::Item const *RshOptions = 0;
38 time_t RSHMethod::FailTime = 0;
39 std::string RSHMethod::FailFile;
40 int RSHMethod::FailFd = -1;
41
42 // RSHConn::RSHConn - Constructor /*{{{*/
43 // ---------------------------------------------------------------------
44 /* */
45 RSHConn::RSHConn(std::string const &pProg, URI Srv) : Len(0), WriteFd(-1), ReadFd(-1),
46 ServerName(Srv), Prog(pProg), Process(-1) {
47 Buffer[0] = '\0';
48 }
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
85 if (Connect(ServerName.Host,ServerName.Port,ServerName.User) == false)
86 return false;
87
88 return true;
89 }
90 /*}}}*/
91 // RSHConn::Connect - Fire up rsh and connect /*{{{*/
92 // ---------------------------------------------------------------------
93 /* */
94 bool RSHConn::Connect(std::string Host, unsigned int Port, std::string User)
95 {
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
103 // Create the pipes
104 int Pipes[4] = {-1,-1,-1,-1};
105 if (pipe(Pipes) != 0 || pipe(Pipes+2) != 0)
106 {
107 _error->Errno("pipe",_("Failed to create IPC pipe to subprocess"));
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 {
120 const char *Args[400];
121 unsigned int i = 0;
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
129 Args[i++] = Prog.c_str();
130
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
144 if (User.empty() == false) {
145 Args[i++] = "-l";
146 Args[i++] = User.c_str();
147 }
148 if (PortStr != NULL) {
149 Args[i++] = "-p";
150 Args[i++] = PortStr;
151 }
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
161 if (PortStr != NULL)
162 free(PortStr);
163
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;
172 }
173 bool RSHConn::Connect(std::string Host, std::string User)
174 {
175 return Connect(Host, 0, User);
176 }
177 /*}}}*/
178 // RSHConn::ReadLine - Very simple buffered read with timeout /*{{{*/
179 // ---------------------------------------------------------------------
180 /* */
181 bool RSHConn::ReadLine(std::string &Text)
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++;
201 Text = std::string(Buffer,I);
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();
211 return _error->Error(_("Connection timeout"));
212 }
213
214 // Suck it back
215 int Res = read(ReadFd,Buffer + Len,sizeof(Buffer) - Len);
216 if (Res <= 0)
217 {
218 _error->Errno("read",_("Read error"));
219 Close();
220 return false;
221 }
222 Len += Res;
223 }
224
225 return _error->Error(_("A response overflowed the buffer."));
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. */
232 bool RSHConn::WriteMsg(std::string &Text,bool Sync,const char *Fmt,...)
233 {
234 va_list args;
235 va_start(args,Fmt);
236
237 // sprintf into a buffer
238 char Tmp[1024];
239 vsnprintf(Tmp,sizeof(Tmp),Fmt,args);
240 va_end(args);
241
242 // concat to create the real msg
243 std::string Msg;
244 if (Sync == true)
245 Msg = std::string(Tmp) + " 2> /dev/null || echo\n";
246 else
247 Msg = std::string(Tmp) + " 2> /dev/null\n";
248
249 // Send it off
250 const char *S = Msg.c_str();
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();
259 return _error->Error(_("Connection timeout"));
260 }
261
262 int Res = write(WriteFd,S + Start,Len);
263 if (Res <= 0)
264 {
265 _error->Errno("write",_("Write error"));
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 // ---------------------------------------------------------------------
281 /* Right now for successful transfer the file size must be known in
282 advance. */
283 bool RSHConn::Size(const char *Path,unsigned long long &Size)
284 {
285 // Query the size
286 std::string Msg;
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;
295 Size = strtoull(Msg.c_str(),&End,10);
296 if (End == Msg.c_str())
297 return _error->Error(_("File not found"));
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
308 std::string Msg;
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
314 return FTPMDTMStrToTime(Msg.c_str(), Time);
315 }
316 /*}}}*/
317 // RSHConn::Get - Get a file /*{{{*/
318 // ---------------------------------------------------------------------
319 /* */
320 bool RSHConn::Get(const char *Path,FileFd &To,unsigned long long Resume,
321 Hashes &Hash,bool &Missing, unsigned long long Size)
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) {
334 if (Hash.AddFD(To,Resume) == false) {
335 _error->Errno("read",_("Problem hashing file"));
336 return false;
337 }
338 }
339
340 // FIXME: Detect file-not openable type errors.
341 std::string Jnk;
342 if (WriteMsg(Jnk,false,"dd if=%s bs=2048 skip=%u", Path, Resume / 2048) == false)
343 return false;
344
345 // Copy loop
346 unsigned long long MyLen = Resume;
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();
354 return _error->Error(_("Data socket timed out"));
355 }
356
357 // Read the data..
358 int Res = read(ReadFd,Buffer,sizeof(Buffer));
359 if (Res == 0)
360 {
361 Close();
362 return _error->Error(_("Connection closed prematurely"));
363 }
364
365 if (Res < 0)
366 {
367 if (errno == EAGAIN)
368 continue;
369 break;
370 }
371 MyLen += Res;
372
373 Hash.Add(Buffer,Res);
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 /*{{{*/
386 RSHMethod::RSHMethod(std::string &&pProg) : aptMethod(std::move(pProg),"1.0",SendConfig)
387 {
388 signal(SIGTERM,SigTerm);
389 signal(SIGINT,SigTerm);
390 Server = 0;
391 FailFd = -1;
392 }
393 /*}}}*/
394 // RSHMethod::Configuration - Handle a configuration message /*{{{*/
395 // ---------------------------------------------------------------------
396 bool RSHMethod::Configuration(std::string Message)
397 {
398 // enabling privilege dropping for this method requires configuration…
399 // … which is otherwise lifted straight from root, so use it by default.
400 _config->Set(std::string("Binary::") + Binary + "::APT::Sandbox::User", "");
401
402 if (aptMethod::Configuration(Message) == false)
403 return false;
404
405 std::string const timeconf = std::string("Acquire::") + Binary + "::Timeout";
406 TimeOut = _config->FindI(timeconf, TimeOut);
407 std::string const optsconf = std::string("Acquire::") + Binary + "::Options";
408 RshOptions = _config->Tree(optsconf.c_str());
409
410 return true;
411 }
412 /*}}}*/
413 // RSHMethod::SigTerm - Clean up and timestamp the files on exit /*{{{*/
414 // ---------------------------------------------------------------------
415 /* */
416 void RSHMethod::SigTerm(int)
417 {
418 if (FailFd == -1)
419 _exit(100);
420
421 // Transfer the modification times
422 struct timeval times[2];
423 times[0].tv_sec = FailTime;
424 times[1].tv_sec = FailTime;
425 times[0].tv_usec = times[1].tv_usec = 0;
426 utimes(FailFile.c_str(), times);
427 close(FailFd);
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;
446 Server = new RSHConn(Binary, Get);
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
458 Status(_("Connecting to %s"), Get.Host.c_str());
459
460 // Get the files information
461 unsigned long long Size;
462 if (Server->Size(File,Size) == false ||
463 Server->ModTime(File,FailTime) == false)
464 {
465 //Fail(true);
466 //_error->Error(_("File not found")); // Will be handled by Size
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) {
482 if (Size == (unsigned long long)Buf.st_size && FailTime == Buf.st_mtime) {
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?
491 if (FailTime == Buf.st_mtime && Size > (unsigned long long)Buf.st_size)
492 Res.ResumePoint = Buf.st_size;
493 }
494
495 // Open the file
496 Hashes Hash(Itm->ExpectedHashes);
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;
505 FailFile.c_str(); // Make sure we don't do a malloc in the signal handler
506 FailFd = Fd.Fd();
507
508 bool Missing;
509 if (Server->Get(File,Fd,Res.ResumePoint,Hash,Missing,Res.Size) == false)
510 {
511 Fd.Close();
512
513 // Timestamp
514 struct timeval times[2];
515 times[0].tv_sec = FailTime;
516 times[1].tv_sec = FailTime;
517 times[0].tv_usec = times[1].tv_usec = 0;
518 utimes(FailFile.c_str(), times);
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();
528 struct timeval times[2];
529 times[0].tv_sec = FailTime;
530 times[1].tv_sec = FailTime;
531 times[0].tv_usec = times[1].tv_usec = 0;
532 utimes(Fd.Name().c_str(), times);
533 FailFd = -1;
534 }
535
536 Res.LastModified = FailTime;
537 Res.TakeHashes(Hash);
538
539 URIDone(Res);
540
541 return true;
542 }
543 /*}}}*/
544
545 int main(int, const char *argv[])
546 {
547 return RSHMethod(flNotDir(argv[0])).Run();
548 }