]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/fileutl.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: fileutl.cc,v 1.42 2002/09/14 05:29:22 jgg Exp $
4 /* ######################################################################
8 CopyFile - Buffered copy of a single file
9 GetLock - dpkg compatible lock file manipulation (fcntl)
11 This source is placed in the Public Domain, do with it what you will
12 It was originally written by Jason Gunthorpe <jgg@debian.org>.
14 ##################################################################### */
16 // Include Files /*{{{*/
18 #pragma implementation "apt-pkg/fileutl.h"
20 #include <apt-pkg/fileutl.h>
21 #include <apt-pkg/error.h>
22 #include <apt-pkg/sptr.h>
23 #include <apt-pkg/configuration.h>
31 #include <sys/types.h>
41 // CopyFile - Buffered copy of a file /*{{{*/
42 // ---------------------------------------------------------------------
43 /* The caller is expected to set things so that failure causes erasure */
44 bool CopyFile(FileFd
&From
,FileFd
&To
)
46 if (From
.IsOpen() == false || To
.IsOpen() == false)
49 // Buffered copy between fds
50 SPtrArray
<unsigned char> Buf
= new unsigned char[64000];
51 unsigned long Size
= From
.Size();
54 unsigned long ToRead
= Size
;
58 if (From
.Read(Buf
,ToRead
) == false ||
59 To
.Write(Buf
,ToRead
) == false)
68 // GetLock - Gets a lock file /*{{{*/
69 // ---------------------------------------------------------------------
70 /* This will create an empty file of the given name and lock it. Once this
71 is done all other calls to GetLock in any other process will fail with
72 -1. The return result is the fd of the file, the call should call
73 close at some time. */
74 int GetLock(string File
,bool Errors
)
76 int FD
= open(File
.c_str(),O_RDWR
| O_CREAT
| O_TRUNC
,0640);
79 // Read only .. cant have locking problems there.
82 _error
->Warning(_("Not using locking for read only lock file %s"),File
.c_str());
83 return dup(0); // Need something for the caller to close
87 _error
->Errno("open",_("Could not open lock file %s"),File
.c_str());
89 // Feh.. We do this to distinguish the lock vs open case..
93 SetCloseExec(FD
,true);
95 // Aquire a write lock
98 fl
.l_whence
= SEEK_SET
;
101 if (fcntl(FD
,F_SETLK
,&fl
) == -1)
105 _error
->Warning(_("Not using locking for nfs mounted lock file %s"),File
.c_str());
106 return dup(0); // Need something for the caller to close
109 _error
->Errno("open",_("Could not get lock %s"),File
.c_str());
120 // FileExists - Check if a file exists /*{{{*/
121 // ---------------------------------------------------------------------
123 bool FileExists(string File
)
126 if (stat(File
.c_str(),&Buf
) != 0)
131 // SafeGetCWD - This is a safer getcwd that returns a dynamic string /*{{{*/
132 // ---------------------------------------------------------------------
133 /* We return / on failure. */
136 // Stash the current dir.
139 if (getcwd(S
,sizeof(S
)-2) == 0)
141 unsigned int Len
= strlen(S
);
147 // flNotDir - Strip the directory from the filename /*{{{*/
148 // ---------------------------------------------------------------------
150 string
flNotDir(string File
)
152 string::size_type Res
= File
.rfind('/');
153 if (Res
== string::npos
)
156 return string(File
,Res
,Res
- File
.length());
159 // flNotFile - Strip the file from the directory name /*{{{*/
160 // ---------------------------------------------------------------------
161 /* Result ends in a / */
162 string
flNotFile(string File
)
164 string::size_type Res
= File
.rfind('/');
165 if (Res
== string::npos
)
168 return string(File
,0,Res
);
171 // flExtension - Return the extension for the file /*{{{*/
172 // ---------------------------------------------------------------------
174 string
flExtension(string File
)
176 string::size_type Res
= File
.rfind('.');
177 if (Res
== string::npos
)
180 return string(File
,Res
,Res
- File
.length());
183 // flNoLink - If file is a symlink then deref it /*{{{*/
184 // ---------------------------------------------------------------------
185 /* If the name is not a link then the returned path is the input. */
186 string
flNoLink(string File
)
189 if (lstat(File
.c_str(),&St
) != 0 || S_ISLNK(St
.st_mode
) == 0)
191 if (stat(File
.c_str(),&St
) != 0)
194 /* Loop resolving the link. There is no need to limit the number of
195 loops because the stat call above ensures that the symlink is not
203 if ((Res
= readlink(NFile
.c_str(),Buffer
,sizeof(Buffer
))) <= 0 ||
204 (unsigned)Res
>= sizeof(Buffer
))
207 // Append or replace the previous path
209 if (Buffer
[0] == '/')
212 NFile
= flNotFile(NFile
) + Buffer
;
214 // See if we are done
215 if (lstat(NFile
.c_str(),&St
) != 0)
217 if (S_ISLNK(St
.st_mode
) == 0)
222 // flCombine - Combine a file and a directory /*{{{*/
223 // ---------------------------------------------------------------------
224 /* If the file is an absolute path then it is just returned, otherwise
225 the directory is pre-pended to it. */
226 string
flCombine(string Dir
,string File
)
228 if (File
.empty() == true)
231 if (File
[0] == '/' || Dir
.empty() == true)
233 if (File
.length() >= 2 && File
[0] == '.' && File
[1] == '/')
235 if (Dir
[Dir
.length()-1] == '/')
237 return Dir
+ '/' + File
;
240 // SetCloseExec - Set the close on exec flag /*{{{*/
241 // ---------------------------------------------------------------------
243 void SetCloseExec(int Fd
,bool Close
)
245 if (fcntl(Fd
,F_SETFD
,(Close
== false)?0:FD_CLOEXEC
) != 0)
247 cerr
<< "FATAL -> Could not set close on exec " << strerror(errno
) << endl
;
252 // SetNonBlock - Set the nonblocking flag /*{{{*/
253 // ---------------------------------------------------------------------
255 void SetNonBlock(int Fd
,bool Block
)
257 int Flags
= fcntl(Fd
,F_GETFL
) & (~O_NONBLOCK
);
258 if (fcntl(Fd
,F_SETFL
,Flags
| ((Block
== false)?0:O_NONBLOCK
)) != 0)
260 cerr
<< "FATAL -> Could not set non-blocking flag " << strerror(errno
) << endl
;
265 // WaitFd - Wait for a FD to become readable /*{{{*/
266 // ---------------------------------------------------------------------
267 /* This waits for a FD to become readable using select. It is useful for
268 applications making use of non-blocking sockets. The timeout is
270 bool WaitFd(int Fd
,bool write
,unsigned long timeout
)
283 Res
= select(Fd
+1,0,&Set
,0,(timeout
!= 0?&tv
:0));
285 while (Res
< 0 && errno
== EINTR
);
295 Res
= select(Fd
+1,&Set
,0,0,(timeout
!= 0?&tv
:0));
297 while (Res
< 0 && errno
== EINTR
);
306 // ExecFork - Magical fork that sanitizes the context before execing /*{{{*/
307 // ---------------------------------------------------------------------
308 /* This is used if you want to cleanse the environment for the forked
309 child, it fixes up the important signals and nukes all of the fds,
310 otherwise acts like normal fork. */
313 // Fork off the process
314 pid_t Process
= fork();
317 cerr
<< "FATAL -> Failed to fork." << endl
;
321 // Spawn the subprocess
325 signal(SIGPIPE
,SIG_DFL
);
326 signal(SIGQUIT
,SIG_DFL
);
327 signal(SIGINT
,SIG_DFL
);
328 signal(SIGWINCH
,SIG_DFL
);
329 signal(SIGCONT
,SIG_DFL
);
330 signal(SIGTSTP
,SIG_DFL
);
333 Configuration::Item
const *Opts
= _config
->Tree("APT::Keep-Fds");
334 if (Opts
!= 0 && Opts
->Child
!= 0)
337 for (; Opts
!= 0; Opts
= Opts
->Next
)
339 if (Opts
->Value
.empty() == true)
341 int fd
= atoi(Opts
->Value
.c_str());
346 // Close all of our FDs - just in case
347 for (int K
= 3; K
!= 40; K
++)
349 if(KeepFDs
.find(K
) == KeepFDs
.end())
350 fcntl(K
,F_SETFD
,FD_CLOEXEC
);
357 // ExecWait - Fancy waitpid /*{{{*/
358 // ---------------------------------------------------------------------
359 /* Waits for the given sub process. If Reap is set then no errors are
360 generated. Otherwise a failed subprocess will generate a proper descriptive
362 bool ExecWait(pid_t Pid
,const char *Name
,bool Reap
)
367 // Wait and collect the error code
369 while (waitpid(Pid
,&Status
,0) != Pid
)
377 return _error
->Error(_("Waited for %s but it wasn't there"),Name
);
381 // Check for an error code.
382 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
386 if (WIFSIGNALED(Status
) != 0 && WTERMSIG(Status
) == SIGSEGV
)
387 return _error
->Error(_("Sub-process %s received a segmentation fault."),Name
);
389 if (WIFEXITED(Status
) != 0)
390 return _error
->Error(_("Sub-process %s returned an error code (%u)"),Name
,WEXITSTATUS(Status
));
392 return _error
->Error(_("Sub-process %s exited unexpectedly"),Name
);
399 // FileFd::Open - Open a file /*{{{*/
400 // ---------------------------------------------------------------------
401 /* The most commonly used open mode combinations are given with Mode */
402 bool FileFd::Open(string FileName
,OpenMode Mode
, unsigned long Perms
)
409 iFd
= open(FileName
.c_str(),O_RDONLY
);
415 if (lstat(FileName
.c_str(),&Buf
) == 0 && S_ISLNK(Buf
.st_mode
))
416 unlink(FileName
.c_str());
417 iFd
= open(FileName
.c_str(),O_RDWR
| O_CREAT
| O_TRUNC
,Perms
);
422 iFd
= open(FileName
.c_str(),O_RDWR
);
426 iFd
= open(FileName
.c_str(),O_RDWR
| O_CREAT
,Perms
);
430 unlink(FileName
.c_str());
431 iFd
= open(FileName
.c_str(),O_RDWR
| O_CREAT
| O_EXCL
,Perms
);
436 return _error
->Errno("open",_("Could not open file %s"),FileName
.c_str());
438 this->FileName
= FileName
;
439 SetCloseExec(iFd
,true);
443 // FileFd::~File - Closes the file /*{{{*/
444 // ---------------------------------------------------------------------
445 /* If the proper modes are selected then we close the Fd and possibly
446 unlink the file on error. */
452 // FileFd::Read - Read a bit of the file /*{{{*/
453 // ---------------------------------------------------------------------
454 /* We are carefull to handle interruption by a signal while reading
456 bool FileFd::Read(void *To
,unsigned long Size
,unsigned long *Actual
)
465 Res
= read(iFd
,To
,Size
);
466 if (Res
< 0 && errno
== EINTR
)
471 return _error
->Errno("read",_("Read error"));
474 To
= (char *)To
+ Res
;
479 while (Res
> 0 && Size
> 0);
492 return _error
->Error(_("read, still have %lu to read but none left"),Size
);
495 // FileFd::Write - Write to the file /*{{{*/
496 // ---------------------------------------------------------------------
498 bool FileFd::Write(const void *From
,unsigned long Size
)
504 Res
= write(iFd
,From
,Size
);
505 if (Res
< 0 && errno
== EINTR
)
510 return _error
->Errno("write",_("Write error"));
513 From
= (char *)From
+ Res
;
516 while (Res
> 0 && Size
> 0);
522 return _error
->Error(_("write, still have %lu to write but couldn't"),Size
);
525 // FileFd::Seek - Seek in the file /*{{{*/
526 // ---------------------------------------------------------------------
528 bool FileFd::Seek(unsigned long To
)
530 if (lseek(iFd
,To
,SEEK_SET
) != (signed)To
)
533 return _error
->Error("Unable to seek to %lu",To
);
539 // FileFd::Skip - Seek in the file /*{{{*/
540 // ---------------------------------------------------------------------
542 bool FileFd::Skip(unsigned long Over
)
544 if (lseek(iFd
,Over
,SEEK_CUR
) < 0)
547 return _error
->Error("Unable to seek ahead %lu",Over
);
553 // FileFd::Truncate - Truncate the file /*{{{*/
554 // ---------------------------------------------------------------------
556 bool FileFd::Truncate(unsigned long To
)
558 if (ftruncate(iFd
,To
) != 0)
561 return _error
->Error("Unable to truncate to %lu",To
);
567 // FileFd::Tell - Current seek position /*{{{*/
568 // ---------------------------------------------------------------------
570 unsigned long FileFd::Tell()
572 off_t Res
= lseek(iFd
,0,SEEK_CUR
);
573 if (Res
== (off_t
)-1)
574 _error
->Errno("lseek","Failed to determine the current file position");
578 // FileFd::Size - Return the size of the file /*{{{*/
579 // ---------------------------------------------------------------------
581 unsigned long FileFd::Size()
584 if (fstat(iFd
,&Buf
) != 0)
585 return _error
->Errno("fstat","Unable to determine the file size");
589 // FileFd::Close - Close the file if the close flag is set /*{{{*/
590 // ---------------------------------------------------------------------
595 if ((Flags
& AutoClose
) == AutoClose
)
596 if (iFd
>= 0 && close(iFd
) != 0)
597 Res
&= _error
->Errno("close",_("Problem closing the file"));
600 if ((Flags
& Fail
) == Fail
&& (Flags
& DelOnFail
) == DelOnFail
&&
601 FileName
.empty() == false)
602 if (unlink(FileName
.c_str()) != 0)
603 Res
&= _error
->WarningE("unlnk",_("Problem unlinking the file"));
607 // FileFd::Sync - Sync the file /*{{{*/
608 // ---------------------------------------------------------------------
612 #ifdef _POSIX_SYNCHRONIZED_IO
614 return _error
->Errno("sync",_("Problem syncing the file"));