]>
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>
20 #include <apt-pkg/acquire-method.h>
21 #include <apt-pkg/strutl.h>
38 unsigned long TimeOut
= 120;
39 Configuration::Item
const *RshOptions
= 0;
40 time_t RSHMethod::FailTime
= 0;
41 std::string
RSHMethod::FailFile
;
42 int RSHMethod::FailFd
= -1;
44 // RSHConn::RSHConn - Constructor /*{{{*/
45 // ---------------------------------------------------------------------
47 RSHConn::RSHConn(URI Srv
) : Len(0), WriteFd(-1), ReadFd(-1),
48 ServerName(Srv
), Process(-1) {
52 // RSHConn::RSHConn - Destructor /*{{{*/
53 // ---------------------------------------------------------------------
60 // RSHConn::Close - Forcibly terminate the connection /*{{{*/
61 // ---------------------------------------------------------------------
62 /* Often this is called when things have gone wrong to indicate that the
63 connection is no longer usable. */
72 ExecWait(Process
,"",true);
78 // RSHConn::Open - Connect to a host /*{{{*/
79 // ---------------------------------------------------------------------
83 // Use the already open connection if possible.
87 if (Connect(ServerName
.Host
,ServerName
.User
) == false)
93 // RSHConn::Connect - Fire up rsh and connect /*{{{*/
94 // ---------------------------------------------------------------------
96 bool RSHConn::Connect(std::string Host
, std::string User
)
99 int Pipes
[4] = {-1,-1,-1,-1};
100 if (pipe(Pipes
) != 0 || pipe(Pipes
+2) != 0)
102 _error
->Errno("pipe",_("Failed to create IPC pipe to subprocess"));
103 for (int I
= 0; I
!= 4; I
++)
107 for (int I
= 0; I
!= 4; I
++)
108 SetCloseExec(Pipes
[I
],true);
110 Process
= ExecFork();
115 const char *Args
[400];
118 dup2(Pipes
[1],STDOUT_FILENO
);
119 dup2(Pipes
[2],STDIN_FILENO
);
121 // Probably should do
122 // dup2(open("/dev/null",O_RDONLY),STDERR_FILENO);
126 // Insert user-supplied command line options
127 Configuration::Item
const *Opts
= RshOptions
;
131 for (; Opts
!= 0; Opts
= Opts
->Next
)
133 if (Opts
->Value
.empty() == true)
135 Args
[i
++] = Opts
->Value
.c_str();
139 if (User
.empty() == false) {
141 Args
[i
++] = User
.c_str();
143 if (Host
.empty() == false) {
144 Args
[i
++] = Host
.c_str();
146 Args
[i
++] = "/bin/sh";
148 execvp(Args
[0],(char **)Args
);
154 SetNonBlock(Pipes
[0],true);
155 SetNonBlock(Pipes
[3],true);
162 // RSHConn::ReadLine - Very simple buffered read with timeout /*{{{*/
163 // ---------------------------------------------------------------------
165 bool RSHConn::ReadLine(std::string
&Text
)
167 if (Process
== -1 || ReadFd
== -1)
171 while (Len
< sizeof(Buffer
))
173 // Scan the buffer for a new line
174 for (unsigned int I
= 0; I
!= Len
; I
++)
176 // Escape some special chars
181 if (Buffer
[I
] != '\n')
185 Text
= std::string(Buffer
,I
);
186 memmove(Buffer
,Buffer
+I
,Len
- I
);
191 // Wait for some data..
192 if (WaitFd(ReadFd
,false,TimeOut
) == false)
195 return _error
->Error(_("Connection timeout"));
199 int Res
= read(ReadFd
,Buffer
+ Len
,sizeof(Buffer
) - Len
);
202 _error
->Errno("read",_("Read error"));
209 return _error
->Error(_("A response overflowed the buffer."));
212 // RSHConn::WriteMsg - Send a message with optional remote sync. /*{{{*/
213 // ---------------------------------------------------------------------
214 /* The remote sync flag appends a || echo which will insert blank line
215 once the command completes. */
216 bool RSHConn::WriteMsg(std::string
&Text
,bool Sync
,const char *Fmt
,...)
221 // sprintf the description
223 vsnprintf(S
,sizeof(S
) - 4,Fmt
,args
);
227 strcat(S
," 2> /dev/null || echo\n");
229 strcat(S
," 2> /dev/null\n");
232 unsigned long Len
= strlen(S
);
233 unsigned long Start
= 0;
236 if (WaitFd(WriteFd
,true,TimeOut
) == false)
240 return _error
->Error(_("Connection timeout"));
243 int Res
= write(WriteFd
,S
+ Start
,Len
);
246 _error
->Errno("write",_("Write error"));
256 return ReadLine(Text
);
260 // RSHConn::Size - Return the size of the file /*{{{*/
261 // ---------------------------------------------------------------------
262 /* Right now for successful transfer the file size must be known in
264 bool RSHConn::Size(const char *Path
,unsigned long long &Size
)
270 if (WriteMsg(Msg
,true,"find %s -follow -printf '%%s\\n'",Path
) == false)
273 // FIXME: Sense if the bad reply is due to a File Not Found.
276 Size
= strtoull(Msg
.c_str(),&End
,10);
277 if (End
== Msg
.c_str())
278 return _error
->Error(_("File not found"));
282 // RSHConn::ModTime - Get the modification time in UTC /*{{{*/
283 // ---------------------------------------------------------------------
285 bool RSHConn::ModTime(const char *Path
, time_t &Time
)
288 // Query the mod time
291 if (WriteMsg(Msg
,true,"TZ=UTC find %s -follow -printf '%%TY%%Tm%%Td%%TH%%TM%%TS\\n'",Path
) == false)
295 return FTPMDTMStrToTime(Msg
.c_str(), Time
);
298 // RSHConn::Get - Get a file /*{{{*/
299 // ---------------------------------------------------------------------
301 bool RSHConn::Get(const char *Path
,FileFd
&To
,unsigned long long Resume
,
302 Hashes
&Hash
,bool &Missing
, unsigned long long Size
)
306 // Round to a 2048 byte block
307 Resume
= Resume
- (Resume
% 2048);
309 if (To
.Truncate(Resume
) == false)
311 if (To
.Seek(0) == false)
315 if (Hash
.AddFD(To
,Resume
) == false) {
316 _error
->Errno("read",_("Problem hashing file"));
321 // FIXME: Detect file-not openable type errors.
323 if (WriteMsg(Jnk
,false,"dd if=%s bs=2048 skip=%u", Path
, Resume
/ 2048) == false)
327 unsigned long long MyLen
= Resume
;
328 unsigned char Buffer
[4096];
331 // Wait for some data..
332 if (WaitFd(ReadFd
,false,TimeOut
) == false)
335 return _error
->Error(_("Data socket timed out"));
339 int Res
= read(ReadFd
,Buffer
,sizeof(Buffer
));
343 return _error
->Error(_("Connection closed prematurely"));
354 Hash
.Add(Buffer
,Res
);
355 if (To
.Write(Buffer
,Res
) == false)
366 // RSHMethod::RSHMethod - Constructor /*{{{*/
367 // ---------------------------------------------------------------------
369 RSHMethod::RSHMethod() : pkgAcqMethod("1.0",SendConfig
)
371 signal(SIGTERM
,SigTerm
);
372 signal(SIGINT
,SigTerm
);
377 // RSHMethod::Configuration - Handle a configuration message /*{{{*/
378 // ---------------------------------------------------------------------
379 bool RSHMethod::Configuration(std::string Message
)
383 if (pkgAcqMethod::Configuration(Message
) == false)
386 snprintf(ProgStr
, sizeof ProgStr
, "Acquire::%s::Timeout", Prog
);
387 TimeOut
= _config
->FindI(ProgStr
,TimeOut
);
388 snprintf(ProgStr
, sizeof ProgStr
, "Acquire::%s::Options", Prog
);
389 RshOptions
= _config
->Tree(ProgStr
);
394 // RSHMethod::SigTerm - Clean up and timestamp the files on exit /*{{{*/
395 // ---------------------------------------------------------------------
397 void RSHMethod::SigTerm(int)
402 // Transfer the modification times
403 struct timeval times
[2];
404 times
[0].tv_sec
= FailTime
;
405 times
[1].tv_sec
= FailTime
;
406 times
[0].tv_usec
= times
[1].tv_usec
= 0;
407 utimes(FailFile
.c_str(), times
);
413 // RSHMethod::Fetch - Fetch a URI /*{{{*/
414 // ---------------------------------------------------------------------
416 bool RSHMethod::Fetch(FetchItem
*Itm
)
419 const char *File
= Get
.Path
.c_str();
421 Res
.Filename
= Itm
->DestFile
;
424 // Connect to the server
425 if (Server
== 0 || Server
->Comp(Get
) == false) {
427 Server
= new RSHConn(Get
);
430 // Could not connect is a transient error..
431 if (Server
->Open() == false) {
437 // We say this mainly because the pause here is for the
438 // ssh connection that is still going
439 Status(_("Connecting to %s"), Get
.Host
.c_str());
441 // Get the files information
442 unsigned long long Size
;
443 if (Server
->Size(File
,Size
) == false ||
444 Server
->ModTime(File
,FailTime
) == false)
447 //_error->Error(_("File not found")); // Will be handled by Size
452 // See if it is an IMS hit
453 if (Itm
->LastModified
== FailTime
) {
460 // See if the file exists
462 if (stat(Itm
->DestFile
.c_str(),&Buf
) == 0) {
463 if (Size
== (unsigned long long)Buf
.st_size
&& FailTime
== Buf
.st_mtime
) {
464 Res
.Size
= Buf
.st_size
;
465 Res
.LastModified
= Buf
.st_mtime
;
466 Res
.ResumePoint
= Buf
.st_size
;
472 if (FailTime
== Buf
.st_mtime
&& Size
> (unsigned long long)Buf
.st_size
)
473 Res
.ResumePoint
= Buf
.st_size
;
479 FileFd
Fd(Itm
->DestFile
,FileFd::WriteAny
);
480 if (_error
->PendingError() == true)
485 FailFile
= Itm
->DestFile
;
486 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
490 if (Server
->Get(File
,Fd
,Res
.ResumePoint
,Hash
,Missing
,Res
.Size
) == false)
495 struct timeval times
[2];
496 times
[0].tv_sec
= FailTime
;
497 times
[1].tv_sec
= FailTime
;
498 times
[0].tv_usec
= times
[1].tv_usec
= 0;
499 utimes(FailFile
.c_str(), times
);
501 // If the file is missing we hard fail otherwise transient fail
508 Res
.Size
= Fd
.Size();
509 struct timeval times
[2];
510 times
[0].tv_sec
= FailTime
;
511 times
[1].tv_sec
= FailTime
;
512 times
[0].tv_usec
= times
[1].tv_usec
= 0;
513 utimes(Fd
.Name().c_str(), times
);
517 Res
.LastModified
= FailTime
;
518 Res
.TakeHashes(Hash
);
526 int main(int, const char *argv
[])
528 setlocale(LC_ALL
, "");
531 Prog
= strrchr(argv
[0],'/');