]>
git.saurik.com Git - apt.git/blob - methods/rsh.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: rsh.cc,v 1.6.2.1 2004/01/16 18:58:50 mdz Exp $
4 /* ######################################################################
6 RSH method - Transfer files via rsh compatible program
8 Written by Ben Collins <bcollins@debian.org>, Copyright (c) 2000
9 Licensed under the GNU General Public License v2 [no exception clauses]
11 ##################################################################### */
13 // Include Files /*{{{*/
16 #include <apt-pkg/error.h>
17 #include <apt-pkg/fileutl.h>
18 #include <apt-pkg/hashes.h>
19 #include <apt-pkg/configuration.h>
35 unsigned long TimeOut
= 120;
36 Configuration::Item
const *RshOptions
= 0;
37 time_t RSHMethod::FailTime
= 0;
38 std::string
RSHMethod::FailFile
;
39 int RSHMethod::FailFd
= -1;
41 // RSHConn::RSHConn - Constructor /*{{{*/
42 // ---------------------------------------------------------------------
44 RSHConn::RSHConn(URI Srv
) : Len(0), WriteFd(-1), ReadFd(-1),
45 ServerName(Srv
), Process(-1) {
49 // RSHConn::RSHConn - Destructor /*{{{*/
50 // ---------------------------------------------------------------------
57 // RSHConn::Close - Forcibly terminate the connection /*{{{*/
58 // ---------------------------------------------------------------------
59 /* Often this is called when things have gone wrong to indicate that the
60 connection is no longer usable. */
69 ExecWait(Process
,"",true);
75 // RSHConn::Open - Connect to a host /*{{{*/
76 // ---------------------------------------------------------------------
80 // Use the already open connection if possible.
84 if (Connect(ServerName
.Host
,ServerName
.User
) == false)
90 // RSHConn::Connect - Fire up rsh and connect /*{{{*/
91 // ---------------------------------------------------------------------
93 bool RSHConn::Connect(std::string Host
, std::string User
)
96 int Pipes
[4] = {-1,-1,-1,-1};
97 if (pipe(Pipes
) != 0 || pipe(Pipes
+2) != 0)
99 _error
->Errno("pipe",_("Failed to create IPC pipe to subprocess"));
100 for (int I
= 0; I
!= 4; I
++)
104 for (int I
= 0; I
!= 4; I
++)
105 SetCloseExec(Pipes
[I
],true);
107 Process
= ExecFork();
112 const char *Args
[400];
115 dup2(Pipes
[1],STDOUT_FILENO
);
116 dup2(Pipes
[2],STDIN_FILENO
);
118 // Probably should do
119 // dup2(open("/dev/null",O_RDONLY),STDERR_FILENO);
123 // Insert user-supplied command line options
124 Configuration::Item
const *Opts
= RshOptions
;
128 for (; Opts
!= 0; Opts
= Opts
->Next
)
130 if (Opts
->Value
.empty() == true)
132 Args
[i
++] = Opts
->Value
.c_str();
136 if (User
.empty() == false) {
138 Args
[i
++] = User
.c_str();
140 if (Host
.empty() == false) {
141 Args
[i
++] = Host
.c_str();
143 Args
[i
++] = "/bin/sh";
145 execvp(Args
[0],(char **)Args
);
151 SetNonBlock(Pipes
[0],true);
152 SetNonBlock(Pipes
[3],true);
159 // RSHConn::ReadLine - Very simple buffered read with timeout /*{{{*/
160 // ---------------------------------------------------------------------
162 bool RSHConn::ReadLine(std::string
&Text
)
164 if (Process
== -1 || ReadFd
== -1)
168 while (Len
< sizeof(Buffer
))
170 // Scan the buffer for a new line
171 for (unsigned int I
= 0; I
!= Len
; I
++)
173 // Escape some special chars
178 if (Buffer
[I
] != '\n')
182 Text
= std::string(Buffer
,I
);
183 memmove(Buffer
,Buffer
+I
,Len
- I
);
188 // Wait for some data..
189 if (WaitFd(ReadFd
,false,TimeOut
) == false)
192 return _error
->Error(_("Connection timeout"));
196 int Res
= read(ReadFd
,Buffer
+ Len
,sizeof(Buffer
) - Len
);
199 _error
->Errno("read",_("Read error"));
206 return _error
->Error(_("A response overflowed the buffer."));
209 // RSHConn::WriteMsg - Send a message with optional remote sync. /*{{{*/
210 // ---------------------------------------------------------------------
211 /* The remote sync flag appends a || echo which will insert blank line
212 once the command completes. */
213 bool RSHConn::WriteMsg(std::string
&Text
,bool Sync
,const char *Fmt
,...)
218 // sprintf the description
220 vsnprintf(S
,sizeof(S
) - 4,Fmt
,args
);
224 strcat(S
," 2> /dev/null || echo\n");
226 strcat(S
," 2> /dev/null\n");
229 unsigned long Len
= strlen(S
);
230 unsigned long Start
= 0;
233 if (WaitFd(WriteFd
,true,TimeOut
) == false)
237 return _error
->Error(_("Connection timeout"));
240 int Res
= write(WriteFd
,S
+ Start
,Len
);
243 _error
->Errno("write",_("Write error"));
253 return ReadLine(Text
);
257 // RSHConn::Size - Return the size of the file /*{{{*/
258 // ---------------------------------------------------------------------
259 /* Right now for successfull transfer the file size must be known in
261 bool RSHConn::Size(const char *Path
,unsigned long long &Size
)
267 if (WriteMsg(Msg
,true,"find %s -follow -printf '%%s\\n'",Path
) == false)
270 // FIXME: Sense if the bad reply is due to a File Not Found.
273 Size
= strtoull(Msg
.c_str(),&End
,10);
274 if (End
== Msg
.c_str())
275 return _error
->Error(_("File not found"));
279 // RSHConn::ModTime - Get the modification time in UTC /*{{{*/
280 // ---------------------------------------------------------------------
282 bool RSHConn::ModTime(const char *Path
, time_t &Time
)
285 // Query the mod time
288 if (WriteMsg(Msg
,true,"TZ=UTC find %s -follow -printf '%%TY%%Tm%%Td%%TH%%TM%%TS\\n'",Path
) == false)
292 return FTPMDTMStrToTime(Msg
.c_str(), Time
);
295 // RSHConn::Get - Get a file /*{{{*/
296 // ---------------------------------------------------------------------
298 bool RSHConn::Get(const char *Path
,FileFd
&To
,unsigned long long Resume
,
299 Hashes
&Hash
,bool &Missing
, unsigned long long Size
)
303 // Round to a 2048 byte block
304 Resume
= Resume
- (Resume
% 2048);
306 if (To
.Truncate(Resume
) == false)
308 if (To
.Seek(0) == false)
312 if (Hash
.AddFD(To
,Resume
) == false) {
313 _error
->Errno("read",_("Problem hashing file"));
318 // FIXME: Detect file-not openable type errors.
320 if (WriteMsg(Jnk
,false,"dd if=%s bs=2048 skip=%u", Path
, Resume
/ 2048) == false)
324 unsigned long long MyLen
= Resume
;
325 unsigned char Buffer
[4096];
328 // Wait for some data..
329 if (WaitFd(ReadFd
,false,TimeOut
) == false)
332 return _error
->Error(_("Data socket timed out"));
336 int Res
= read(ReadFd
,Buffer
,sizeof(Buffer
));
340 return _error
->Error(_("Connection closed prematurely"));
351 Hash
.Add(Buffer
,Res
);
352 if (To
.Write(Buffer
,Res
) == false)
363 // RSHMethod::RSHMethod - Constructor /*{{{*/
364 // ---------------------------------------------------------------------
366 RSHMethod::RSHMethod() : pkgAcqMethod("1.0",SendConfig
)
368 signal(SIGTERM
,SigTerm
);
369 signal(SIGINT
,SigTerm
);
374 // RSHMethod::Configuration - Handle a configuration message /*{{{*/
375 // ---------------------------------------------------------------------
376 bool RSHMethod::Configuration(std::string Message
)
380 if (pkgAcqMethod::Configuration(Message
) == false)
383 snprintf(ProgStr
, sizeof ProgStr
, "Acquire::%s::Timeout", Prog
);
384 TimeOut
= _config
->FindI(ProgStr
,TimeOut
);
385 snprintf(ProgStr
, sizeof ProgStr
, "Acquire::%s::Options", Prog
);
386 RshOptions
= _config
->Tree(ProgStr
);
391 // RSHMethod::SigTerm - Clean up and timestamp the files on exit /*{{{*/
392 // ---------------------------------------------------------------------
394 void RSHMethod::SigTerm(int sig
)
402 UBuf
.actime
= FailTime
;
403 UBuf
.modtime
= FailTime
;
404 utime(FailFile
.c_str(),&UBuf
);
409 // RSHMethod::Fetch - Fetch a URI /*{{{*/
410 // ---------------------------------------------------------------------
412 bool RSHMethod::Fetch(FetchItem
*Itm
)
415 const char *File
= Get
.Path
.c_str();
417 Res
.Filename
= Itm
->DestFile
;
420 // Connect to the server
421 if (Server
== 0 || Server
->Comp(Get
) == false) {
423 Server
= new RSHConn(Get
);
426 // Could not connect is a transient error..
427 if (Server
->Open() == false) {
433 // We say this mainly because the pause here is for the
434 // ssh connection that is still going
435 Status(_("Connecting to %s"), Get
.Host
.c_str());
437 // Get the files information
438 unsigned long long Size
;
439 if (Server
->Size(File
,Size
) == false ||
440 Server
->ModTime(File
,FailTime
) == false)
443 //_error->Error(_("File not found")); // Will be handled by Size
448 // See if it is an IMS hit
449 if (Itm
->LastModified
== FailTime
) {
456 // See if the file exists
458 if (stat(Itm
->DestFile
.c_str(),&Buf
) == 0) {
459 if (Size
== (unsigned long long)Buf
.st_size
&& FailTime
== Buf
.st_mtime
) {
460 Res
.Size
= Buf
.st_size
;
461 Res
.LastModified
= Buf
.st_mtime
;
462 Res
.ResumePoint
= Buf
.st_size
;
468 if (FailTime
== Buf
.st_mtime
&& Size
> (unsigned long long)Buf
.st_size
)
469 Res
.ResumePoint
= Buf
.st_size
;
475 FileFd
Fd(Itm
->DestFile
,FileFd::WriteAny
);
476 if (_error
->PendingError() == true)
481 FailFile
= Itm
->DestFile
;
482 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
486 if (Server
->Get(File
,Fd
,Res
.ResumePoint
,Hash
,Missing
,Res
.Size
) == false)
492 UBuf
.actime
= FailTime
;
493 UBuf
.modtime
= FailTime
;
494 utime(FailFile
.c_str(),&UBuf
);
496 // If the file is missing we hard fail otherwise transient fail
503 Res
.Size
= Fd
.Size();
506 Res
.LastModified
= FailTime
;
507 Res
.TakeHashes(Hash
);
511 UBuf
.actime
= FailTime
;
512 UBuf
.modtime
= FailTime
;
513 utime(Queue
->DestFile
.c_str(),&UBuf
);
522 int main(int argc
, const char *argv
[])
524 setlocale(LC_ALL
, "");
527 Prog
= strrchr(argv
[0],'/');