]>
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 /*{{{*/
15 #include <apt-pkg/error.h>
29 unsigned long TimeOut
= 120;
30 Configuration::Item
const *RshOptions
= 0;
31 time_t RSHMethod::FailTime
= 0;
32 string
RSHMethod::FailFile
;
33 int RSHMethod::FailFd
= -1;
35 // RSHConn::RSHConn - Constructor /*{{{*/
36 // ---------------------------------------------------------------------
38 RSHConn::RSHConn(URI Srv
) : Len(0), WriteFd(-1), ReadFd(-1),
39 ServerName(Srv
), Process(-1) {}
41 // RSHConn::RSHConn - Destructor /*{{{*/
42 // ---------------------------------------------------------------------
49 // RSHConn::Close - Forcibly terminate the connection /*{{{*/
50 // ---------------------------------------------------------------------
51 /* Often this is called when things have gone wrong to indicate that the
52 connection is no longer usable. */
61 ExecWait(Process
,"",true);
67 // RSHConn::Open - Connect to a host /*{{{*/
68 // ---------------------------------------------------------------------
72 // Use the already open connection if possible.
76 if (Connect(ServerName
.Host
,ServerName
.User
) == false)
82 // RSHConn::Connect - Fire up rsh and connect /*{{{*/
83 // ---------------------------------------------------------------------
85 bool RSHConn::Connect(string Host
, string User
)
88 int Pipes
[4] = {-1,-1,-1,-1};
89 if (pipe(Pipes
) != 0 || pipe(Pipes
+2) != 0)
91 _error
->Errno("pipe",_("Failed to create IPC pipe to subprocess"));
92 for (int I
= 0; I
!= 4; I
++)
96 for (int I
= 0; I
!= 4; I
++)
97 SetCloseExec(Pipes
[I
],true);
104 const char *Args
[400];
107 dup2(Pipes
[1],STDOUT_FILENO
);
108 dup2(Pipes
[2],STDIN_FILENO
);
110 // Probably should do
111 // dup2(open("/dev/null",O_RDONLY),STDERR_FILENO);
113 // Insert user-supplied command line options
114 Configuration::Item
const *Opts
= RshOptions
;
118 for (; Opts
!= 0; Opts
= Opts
->Next
)
120 if (Opts
->Value
.empty() == true)
122 Args
[i
++] = Opts
->Value
.c_str();
127 if (User
.empty() == false) {
129 Args
[i
++] = User
.c_str();
131 if (Host
.empty() == false) {
132 Args
[i
++] = Host
.c_str();
134 Args
[i
++] = "/bin/sh";
136 execvp(Args
[0],(char **)Args
);
142 SetNonBlock(Pipes
[0],true);
143 SetNonBlock(Pipes
[3],true);
150 // RSHConn::ReadLine - Very simple buffered read with timeout /*{{{*/
151 // ---------------------------------------------------------------------
153 bool RSHConn::ReadLine(string
&Text
)
155 if (Process
== -1 || ReadFd
== -1)
159 while (Len
< sizeof(Buffer
))
161 // Scan the buffer for a new line
162 for (unsigned int I
= 0; I
!= Len
; I
++)
164 // Escape some special chars
169 if (Buffer
[I
] != '\n')
173 Text
= string(Buffer
,I
);
174 memmove(Buffer
,Buffer
+I
,Len
- I
);
179 // Wait for some data..
180 if (WaitFd(ReadFd
,false,TimeOut
) == false)
183 return _error
->Error(_("Connection timeout"));
187 int Res
= read(ReadFd
,Buffer
+ Len
,sizeof(Buffer
) - Len
);
190 _error
->Errno("read",_("Read error"));
197 return _error
->Error(_("A response overflowed the buffer."));
200 // RSHConn::WriteMsg - Send a message with optional remote sync. /*{{{*/
201 // ---------------------------------------------------------------------
202 /* The remote sync flag appends a || echo which will insert blank line
203 once the command completes. */
204 bool RSHConn::WriteMsg(string
&Text
,bool Sync
,const char *Fmt
,...)
209 // sprintf the description
211 vsnprintf(S
,sizeof(S
) - 4,Fmt
,args
);
213 strcat(S
," 2> /dev/null || echo\n");
215 strcat(S
," 2> /dev/null\n");
218 unsigned long Len
= strlen(S
);
219 unsigned long Start
= 0;
222 if (WaitFd(WriteFd
,true,TimeOut
) == false)
226 return _error
->Error(_("Connection timeout"));
229 int Res
= write(WriteFd
,S
+ Start
,Len
);
232 _error
->Errno("write",_("Write error"));
242 return ReadLine(Text
);
246 // RSHConn::Size - Return the size of the file /*{{{*/
247 // ---------------------------------------------------------------------
248 /* Right now for successfull transfer the file size must be known in
250 bool RSHConn::Size(const char *Path
,unsigned long &Size
)
256 if (WriteMsg(Msg
,true,"find %s -follow -printf '%%s\\n'",Path
) == false)
259 // FIXME: Sense if the bad reply is due to a File Not Found.
262 Size
= strtoul(Msg
.c_str(),&End
,10);
263 if (End
== Msg
.c_str())
264 return _error
->Error(_("File not found"));
268 // RSHConn::ModTime - Get the modification time in UTC /*{{{*/
269 // ---------------------------------------------------------------------
271 bool RSHConn::ModTime(const char *Path
, time_t &Time
)
274 // Query the mod time
277 if (WriteMsg(Msg
,true,"TZ=UTC find %s -follow -printf '%%TY%%Tm%%Td%%TH%%TM%%TS\\n'",Path
) == false)
285 // RSHConn::Get - Get a file /*{{{*/
286 // ---------------------------------------------------------------------
288 bool RSHConn::Get(const char *Path
,FileFd
&To
,unsigned long Resume
,
289 Hashes
&Hash
,bool &Missing
, unsigned long Size
)
293 // Round to a 2048 byte block
294 Resume
= Resume
- (Resume
% 2048);
296 if (To
.Truncate(Resume
) == false)
298 if (To
.Seek(0) == false)
302 if (Hash
.AddFD(To
.Fd(),Resume
) == false) {
303 _error
->Errno("read",_("Problem hashing file"));
308 // FIXME: Detect file-not openable type errors.
310 if (WriteMsg(Jnk
,false,"dd if=%s bs=2048 skip=%u", Path
, Resume
/ 2048) == false)
314 unsigned int MyLen
= Resume
;
315 unsigned char Buffer
[4096];
318 // Wait for some data..
319 if (WaitFd(ReadFd
,false,TimeOut
) == false)
322 return _error
->Error(_("Data socket timed out"));
326 int Res
= read(ReadFd
,Buffer
,sizeof(Buffer
));
330 return _error
->Error(_("Connection closed prematurely"));
341 Hash
.Add(Buffer
,Res
);
342 if (To
.Write(Buffer
,Res
) == false)
353 // RSHMethod::RSHMethod - Constructor /*{{{*/
354 // ---------------------------------------------------------------------
356 RSHMethod::RSHMethod() : pkgAcqMethod("1.0",SendConfig
)
358 signal(SIGTERM
,SigTerm
);
359 signal(SIGINT
,SigTerm
);
364 // RSHMethod::Configuration - Handle a configuration message /*{{{*/
365 // ---------------------------------------------------------------------
366 bool RSHMethod::Configuration(string Message
)
370 if (pkgAcqMethod::Configuration(Message
) == false)
373 snprintf(ProgStr
, sizeof ProgStr
, "Acquire::%s::Timeout", Prog
);
374 TimeOut
= _config
->FindI(ProgStr
,TimeOut
);
375 snprintf(ProgStr
, sizeof ProgStr
, "Acquire::%s::Options", Prog
);
376 RshOptions
= _config
->Tree(ProgStr
);
381 // RSHMethod::SigTerm - Clean up and timestamp the files on exit /*{{{*/
382 // ---------------------------------------------------------------------
384 void RSHMethod::SigTerm(int sig
)
392 UBuf
.actime
= FailTime
;
393 UBuf
.modtime
= FailTime
;
394 utime(FailFile
.c_str(),&UBuf
);
399 // RSHMethod::Fetch - Fetch a URI /*{{{*/
400 // ---------------------------------------------------------------------
402 bool RSHMethod::Fetch(FetchItem
*Itm
)
405 const char *File
= Get
.Path
.c_str();
407 Res
.Filename
= Itm
->DestFile
;
410 // Connect to the server
411 if (Server
== 0 || Server
->Comp(Get
) == false) {
413 Server
= new RSHConn(Get
);
416 // Could not connect is a transient error..
417 if (Server
->Open() == false) {
423 // We say this mainly because the pause here is for the
424 // ssh connection that is still going
425 Status(_("Connecting to %s"), Get
.Host
.c_str());
427 // Get the files information
429 if (Server
->Size(File
,Size
) == false ||
430 Server
->ModTime(File
,FailTime
) == false)
433 //_error->Error(_("File not found")); // Will be handled by Size
438 // See if it is an IMS hit
439 if (Itm
->LastModified
== FailTime
) {
446 // See if the file exists
448 if (stat(Itm
->DestFile
.c_str(),&Buf
) == 0) {
449 if (Size
== (unsigned)Buf
.st_size
&& FailTime
== Buf
.st_mtime
) {
450 Res
.Size
= Buf
.st_size
;
451 Res
.LastModified
= Buf
.st_mtime
;
452 Res
.ResumePoint
= Buf
.st_size
;
458 if (FailTime
== Buf
.st_mtime
&& Size
> (unsigned)Buf
.st_size
)
459 Res
.ResumePoint
= Buf
.st_size
;
465 FileFd
Fd(Itm
->DestFile
,FileFd::WriteAny
);
466 if (_error
->PendingError() == true)
471 FailFile
= Itm
->DestFile
;
472 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
476 if (Server
->Get(File
,Fd
,Res
.ResumePoint
,Hash
,Missing
,Res
.Size
) == false)
482 UBuf
.actime
= FailTime
;
483 UBuf
.modtime
= FailTime
;
484 utime(FailFile
.c_str(),&UBuf
);
486 // If the file is missing we hard fail otherwise transient fail
493 Res
.Size
= Fd
.Size();
496 Res
.LastModified
= FailTime
;
497 Res
.TakeHashes(Hash
);
501 UBuf
.actime
= FailTime
;
502 UBuf
.modtime
= FailTime
;
503 utime(Queue
->DestFile
.c_str(),&UBuf
);
512 int main(int argc
, const char *argv
[])
514 setlocale(LC_ALL
, "");
517 Prog
= strrchr(argv
[0],'/');