]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/fileutl.cc
f86bf2942ea011f14059ea7547c5e40aad61f4aa
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 Most of this source is placed in the Public Domain, do with it what
13 It was originally written by Jason Gunthorpe <jgg@debian.org>.
14 FileFd gzip support added by Martin Pitt <martin.pitt@canonical.com>
16 The exception is RunScripts() it is under the GPLv2
18 ##################################################################### */
20 // Include Files /*{{{*/
21 #include <apt-pkg/fileutl.h>
22 #include <apt-pkg/strutl.h>
23 #include <apt-pkg/error.h>
24 #include <apt-pkg/sptr.h>
25 #include <apt-pkg/configuration.h>
37 #include <sys/types.h>
49 // RunScripts - Run a set of scripts from a configuration subtree /*{{{*/
50 // ---------------------------------------------------------------------
52 bool RunScripts(const char *Cnf
)
54 Configuration::Item
const *Opts
= _config
->Tree(Cnf
);
55 if (Opts
== 0 || Opts
->Child
== 0)
59 // Fork for running the system calls
60 pid_t Child
= ExecFork();
65 if (chdir("/tmp/") != 0)
68 unsigned int Count
= 1;
69 for (; Opts
!= 0; Opts
= Opts
->Next
, Count
++)
71 if (Opts
->Value
.empty() == true)
74 if (system(Opts
->Value
.c_str()) != 0)
82 while (waitpid(Child
,&Status
,0) != Child
)
86 return _error
->Errno("waitpid","Couldn't wait for subprocess");
89 // Restore sig int/quit
90 signal(SIGQUIT
,SIG_DFL
);
91 signal(SIGINT
,SIG_DFL
);
93 // Check for an error code.
94 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
96 unsigned int Count
= WEXITSTATUS(Status
);
100 for (; Opts
!= 0 && Count
!= 1; Opts
= Opts
->Next
, Count
--);
101 _error
->Error("Problem executing scripts %s '%s'",Cnf
,Opts
->Value
.c_str());
104 return _error
->Error("Sub-process returned an error code");
111 // CopyFile - Buffered copy of a file /*{{{*/
112 // ---------------------------------------------------------------------
113 /* The caller is expected to set things so that failure causes erasure */
114 bool CopyFile(FileFd
&From
,FileFd
&To
)
116 if (From
.IsOpen() == false || To
.IsOpen() == false)
119 // Buffered copy between fds
120 SPtrArray
<unsigned char> Buf
= new unsigned char[64000];
121 unsigned long Size
= From
.Size();
124 unsigned long ToRead
= Size
;
128 if (From
.Read(Buf
,ToRead
) == false ||
129 To
.Write(Buf
,ToRead
) == false)
138 // GetLock - Gets a lock file /*{{{*/
139 // ---------------------------------------------------------------------
140 /* This will create an empty file of the given name and lock it. Once this
141 is done all other calls to GetLock in any other process will fail with
142 -1. The return result is the fd of the file, the call should call
143 close at some time. */
144 int GetLock(string File
,bool Errors
)
146 // GetLock() is used in aptitude on directories with public-write access
147 // Use O_NOFOLLOW here to prevent symlink traversal attacks
148 int FD
= open(File
.c_str(),O_RDWR
| O_CREAT
| O_NOFOLLOW
,0640);
151 // Read only .. cant have locking problems there.
154 _error
->Warning(_("Not using locking for read only lock file %s"),File
.c_str());
155 return dup(0); // Need something for the caller to close
159 _error
->Errno("open",_("Could not open lock file %s"),File
.c_str());
161 // Feh.. We do this to distinguish the lock vs open case..
165 SetCloseExec(FD
,true);
167 // Aquire a write lock
170 fl
.l_whence
= SEEK_SET
;
173 if (fcntl(FD
,F_SETLK
,&fl
) == -1)
177 _error
->Warning(_("Not using locking for nfs mounted lock file %s"),File
.c_str());
178 return dup(0); // Need something for the caller to close
181 _error
->Errno("open",_("Could not get lock %s"),File
.c_str());
192 // FileExists - Check if a file exists /*{{{*/
193 // ---------------------------------------------------------------------
195 bool FileExists(string File
)
198 if (stat(File
.c_str(),&Buf
) != 0)
203 // DirectoryExists - Check if a directory exists and is really one /*{{{*/
204 // ---------------------------------------------------------------------
206 bool DirectoryExists(string
const &Path
)
209 if (stat(Path
.c_str(),&Buf
) != 0)
211 return ((Buf
.st_mode
& S_IFDIR
) != 0);
214 // CreateDirectory - poor man's mkdir -p guarded by a parent directory /*{{{*/
215 // ---------------------------------------------------------------------
216 /* This method will create all directories needed for path in good old
217 mkdir -p style but refuses to do this if Parent is not a prefix of
218 this Path. Example: /var/cache/ and /var/cache/apt/archives are given,
219 so it will create apt/archives if /var/cache exists - on the other
220 hand if the parent is /var/lib the creation will fail as this path
221 is not a parent of the path to be generated. */
222 bool CreateDirectory(string
const &Parent
, string
const &Path
)
224 if (Parent
.empty() == true || Path
.empty() == true)
227 if (DirectoryExists(Path
) == true)
230 if (DirectoryExists(Parent
) == false)
233 // we are not going to create directories "into the blue"
234 if (Path
.find(Parent
, 0) != 0)
237 vector
<string
> const dirs
= VectorizeString(Path
.substr(Parent
.size()), '/');
238 string progress
= Parent
;
239 for (vector
<string
>::const_iterator d
= dirs
.begin(); d
!= dirs
.end(); ++d
)
241 if (d
->empty() == true)
244 progress
.append("/").append(*d
);
245 if (DirectoryExists(progress
) == true)
248 if (mkdir(progress
.c_str(), 0755) != 0)
254 // GetListOfFilesInDir - returns a vector of files in the given dir /*{{{*/
255 // ---------------------------------------------------------------------
256 /* If an extension is given only files with this extension are included
257 in the returned vector, otherwise every "normal" file is included. */
258 std::vector
<string
> GetListOfFilesInDir(string
const &Dir
, string
const &Ext
,
259 bool const &SortList
, bool const &AllowNoExt
)
261 std::vector
<string
> ext
;
263 if (Ext
.empty() == false)
265 if (AllowNoExt
== true && ext
.empty() == false)
267 return GetListOfFilesInDir(Dir
, ext
, SortList
);
269 std::vector
<string
> GetListOfFilesInDir(string
const &Dir
, std::vector
<string
> const &Ext
,
270 bool const &SortList
)
272 // Attention debuggers: need to be set with the environment config file!
273 bool const Debug
= _config
->FindB("Debug::GetListOfFilesInDir", false);
276 std::clog
<< "Accept in " << Dir
<< " only files with the following " << Ext
.size() << " extensions:" << std::endl
;
277 if (Ext
.empty() == true)
278 std::clog
<< "\tNO extension" << std::endl
;
280 for (std::vector
<string
>::const_iterator e
= Ext
.begin();
282 std::clog
<< '\t' << (e
->empty() == true ? "NO" : *e
) << " extension" << std::endl
;
285 std::vector
<string
> List
;
286 Configuration::MatchAgainstConfig
SilentIgnore("Dir::Ignore-Files-Silently");
287 DIR *D
= opendir(Dir
.c_str());
290 _error
->Errno("opendir",_("Unable to read %s"),Dir
.c_str());
294 for (struct dirent
*Ent
= readdir(D
); Ent
!= 0; Ent
= readdir(D
))
296 // skip "hidden" files
297 if (Ent
->d_name
[0] == '.')
300 // check for accepted extension:
301 // no extension given -> periods are bad as hell!
302 // extensions given -> "" extension allows no extension
303 if (Ext
.empty() == false)
305 string d_ext
= flExtension(Ent
->d_name
);
306 if (d_ext
== Ent
->d_name
) // no extension
308 if (std::find(Ext
.begin(), Ext
.end(), "") == Ext
.end())
311 std::clog
<< "Bad file: " << Ent
->d_name
<< " → no extension" << std::endl
;
312 _error
->Notice("Ignoring file '%s' in directory '%s' as it has no filename extension", Ent
->d_name
, Dir
.c_str());
316 else if (std::find(Ext
.begin(), Ext
.end(), d_ext
) == Ext
.end())
319 std::clog
<< "Bad file: " << Ent
->d_name
<< " → bad extension »" << flExtension(Ent
->d_name
) << "«" << std::endl
;
320 if (SilentIgnore
.Match(Ent
->d_name
) == false)
321 _error
->Notice("Ignoring file '%s' in directory '%s' as it has an invalid filename extension", Ent
->d_name
, Dir
.c_str());
326 // Skip bad filenames ala run-parts
327 const char *C
= Ent
->d_name
;
329 if (isalpha(*C
) == 0 && isdigit(*C
) == 0
330 && *C
!= '_' && *C
!= '-') {
331 // no required extension -> dot is a bad character
332 if (*C
== '.' && Ext
.empty() == false)
337 // we don't reach the end of the name -> bad character included
341 std::clog
<< "Bad file: " << Ent
->d_name
<< " → bad character »"
342 << *C
<< "« in filename (period allowed: " << (Ext
.empty() ? "no" : "yes") << ")" << std::endl
;
346 // skip filenames which end with a period. These are never valid
350 std::clog
<< "Bad file: " << Ent
->d_name
<< " → Period as last character" << std::endl
;
354 // Make sure it is a file and not something else
355 string
const File
= flCombine(Dir
,Ent
->d_name
);
357 if (stat(File
.c_str(),&St
) != 0 || S_ISREG(St
.st_mode
) == 0)
360 std::clog
<< "Bad file: " << Ent
->d_name
<< " → stat says not a good file" << std::endl
;
365 std::clog
<< "Accept file: " << Ent
->d_name
<< " in " << Dir
<< std::endl
;
366 List
.push_back(File
);
370 if (SortList
== true)
371 std::sort(List
.begin(),List
.end());
375 // SafeGetCWD - This is a safer getcwd that returns a dynamic string /*{{{*/
376 // ---------------------------------------------------------------------
377 /* We return / on failure. */
380 // Stash the current dir.
383 if (getcwd(S
,sizeof(S
)-2) == 0)
385 unsigned int Len
= strlen(S
);
391 // flNotDir - Strip the directory from the filename /*{{{*/
392 // ---------------------------------------------------------------------
394 string
flNotDir(string File
)
396 string::size_type Res
= File
.rfind('/');
397 if (Res
== string::npos
)
400 return string(File
,Res
,Res
- File
.length());
403 // flNotFile - Strip the file from the directory name /*{{{*/
404 // ---------------------------------------------------------------------
405 /* Result ends in a / */
406 string
flNotFile(string File
)
408 string::size_type Res
= File
.rfind('/');
409 if (Res
== string::npos
)
412 return string(File
,0,Res
);
415 // flExtension - Return the extension for the file /*{{{*/
416 // ---------------------------------------------------------------------
418 string
flExtension(string File
)
420 string::size_type Res
= File
.rfind('.');
421 if (Res
== string::npos
)
424 return string(File
,Res
,Res
- File
.length());
427 // flNoLink - If file is a symlink then deref it /*{{{*/
428 // ---------------------------------------------------------------------
429 /* If the name is not a link then the returned path is the input. */
430 string
flNoLink(string File
)
433 if (lstat(File
.c_str(),&St
) != 0 || S_ISLNK(St
.st_mode
) == 0)
435 if (stat(File
.c_str(),&St
) != 0)
438 /* Loop resolving the link. There is no need to limit the number of
439 loops because the stat call above ensures that the symlink is not
447 if ((Res
= readlink(NFile
.c_str(),Buffer
,sizeof(Buffer
))) <= 0 ||
448 (unsigned)Res
>= sizeof(Buffer
))
451 // Append or replace the previous path
453 if (Buffer
[0] == '/')
456 NFile
= flNotFile(NFile
) + Buffer
;
458 // See if we are done
459 if (lstat(NFile
.c_str(),&St
) != 0)
461 if (S_ISLNK(St
.st_mode
) == 0)
466 // flCombine - Combine a file and a directory /*{{{*/
467 // ---------------------------------------------------------------------
468 /* If the file is an absolute path then it is just returned, otherwise
469 the directory is pre-pended to it. */
470 string
flCombine(string Dir
,string File
)
472 if (File
.empty() == true)
475 if (File
[0] == '/' || Dir
.empty() == true)
477 if (File
.length() >= 2 && File
[0] == '.' && File
[1] == '/')
479 if (Dir
[Dir
.length()-1] == '/')
481 return Dir
+ '/' + File
;
484 // SetCloseExec - Set the close on exec flag /*{{{*/
485 // ---------------------------------------------------------------------
487 void SetCloseExec(int Fd
,bool Close
)
489 if (fcntl(Fd
,F_SETFD
,(Close
== false)?0:FD_CLOEXEC
) != 0)
491 cerr
<< "FATAL -> Could not set close on exec " << strerror(errno
) << endl
;
496 // SetNonBlock - Set the nonblocking flag /*{{{*/
497 // ---------------------------------------------------------------------
499 void SetNonBlock(int Fd
,bool Block
)
501 int Flags
= fcntl(Fd
,F_GETFL
) & (~O_NONBLOCK
);
502 if (fcntl(Fd
,F_SETFL
,Flags
| ((Block
== false)?0:O_NONBLOCK
)) != 0)
504 cerr
<< "FATAL -> Could not set non-blocking flag " << strerror(errno
) << endl
;
509 // WaitFd - Wait for a FD to become readable /*{{{*/
510 // ---------------------------------------------------------------------
511 /* This waits for a FD to become readable using select. It is useful for
512 applications making use of non-blocking sockets. The timeout is
514 bool WaitFd(int Fd
,bool write
,unsigned long timeout
)
527 Res
= select(Fd
+1,0,&Set
,0,(timeout
!= 0?&tv
:0));
529 while (Res
< 0 && errno
== EINTR
);
539 Res
= select(Fd
+1,&Set
,0,0,(timeout
!= 0?&tv
:0));
541 while (Res
< 0 && errno
== EINTR
);
550 // ExecFork - Magical fork that sanitizes the context before execing /*{{{*/
551 // ---------------------------------------------------------------------
552 /* This is used if you want to cleanse the environment for the forked
553 child, it fixes up the important signals and nukes all of the fds,
554 otherwise acts like normal fork. */
557 // Fork off the process
558 pid_t Process
= fork();
561 cerr
<< "FATAL -> Failed to fork." << endl
;
565 // Spawn the subprocess
569 signal(SIGPIPE
,SIG_DFL
);
570 signal(SIGQUIT
,SIG_DFL
);
571 signal(SIGINT
,SIG_DFL
);
572 signal(SIGWINCH
,SIG_DFL
);
573 signal(SIGCONT
,SIG_DFL
);
574 signal(SIGTSTP
,SIG_DFL
);
577 Configuration::Item
const *Opts
= _config
->Tree("APT::Keep-Fds");
578 if (Opts
!= 0 && Opts
->Child
!= 0)
581 for (; Opts
!= 0; Opts
= Opts
->Next
)
583 if (Opts
->Value
.empty() == true)
585 int fd
= atoi(Opts
->Value
.c_str());
590 // Close all of our FDs - just in case
591 for (int K
= 3; K
!= 40; K
++)
593 if(KeepFDs
.find(K
) == KeepFDs
.end())
594 fcntl(K
,F_SETFD
,FD_CLOEXEC
);
601 // ExecWait - Fancy waitpid /*{{{*/
602 // ---------------------------------------------------------------------
603 /* Waits for the given sub process. If Reap is set then no errors are
604 generated. Otherwise a failed subprocess will generate a proper descriptive
606 bool ExecWait(pid_t Pid
,const char *Name
,bool Reap
)
611 // Wait and collect the error code
613 while (waitpid(Pid
,&Status
,0) != Pid
)
621 return _error
->Error(_("Waited for %s but it wasn't there"),Name
);
625 // Check for an error code.
626 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
630 if (WIFSIGNALED(Status
) != 0)
632 if( WTERMSIG(Status
) == SIGSEGV
)
633 return _error
->Error(_("Sub-process %s received a segmentation fault."),Name
);
635 return _error
->Error(_("Sub-process %s received signal %u."),Name
, WTERMSIG(Status
));
638 if (WIFEXITED(Status
) != 0)
639 return _error
->Error(_("Sub-process %s returned an error code (%u)"),Name
,WEXITSTATUS(Status
));
641 return _error
->Error(_("Sub-process %s exited unexpectedly"),Name
);
648 // FileFd::Open - Open a file /*{{{*/
649 // ---------------------------------------------------------------------
650 /* The most commonly used open mode combinations are given with Mode */
651 bool FileFd::Open(string FileName
,OpenMode Mode
, unsigned long Perms
)
658 iFd
= open(FileName
.c_str(),O_RDONLY
);
662 iFd
= open(FileName
.c_str(),O_RDONLY
);
664 gz
= gzdopen (iFd
, "r");
676 char *name
= strdup((FileName
+ ".XXXXXX").c_str());
677 TemporaryFileName
= string(mktemp(name
));
678 iFd
= open(TemporaryFileName
.c_str(),O_RDWR
| O_CREAT
| O_EXCL
,Perms
);
685 iFd
= open(FileName
.c_str(),O_RDWR
);
689 iFd
= open(FileName
.c_str(),O_RDWR
| O_CREAT
,Perms
);
693 unlink(FileName
.c_str());
694 iFd
= open(FileName
.c_str(),O_RDWR
| O_CREAT
| O_EXCL
,Perms
);
699 return _error
->Errno("open",_("Could not open file %s"),FileName
.c_str());
701 this->FileName
= FileName
;
702 SetCloseExec(iFd
,true);
706 bool FileFd::OpenDescriptor(int Fd
, OpenMode Mode
, bool AutoClose
)
709 Flags
= (AutoClose
) ? FileFd::AutoClose
: 0;
711 if (Mode
== ReadOnlyGzip
) {
712 gz
= gzdopen (iFd
, "r");
716 return _error
->Errno("gzdopen",_("Could not open file descriptor %d"),
724 // FileFd::~File - Closes the file /*{{{*/
725 // ---------------------------------------------------------------------
726 /* If the proper modes are selected then we close the Fd and possibly
727 unlink the file on error. */
733 // FileFd::Read - Read a bit of the file /*{{{*/
734 // ---------------------------------------------------------------------
735 /* We are carefull to handle interruption by a signal while reading
737 bool FileFd::Read(void *To
,unsigned long Size
,unsigned long *Actual
)
747 Res
= gzread(gz
,To
,Size
);
749 Res
= read(iFd
,To
,Size
);
750 if (Res
< 0 && errno
== EINTR
)
755 return _error
->Errno("read",_("Read error"));
758 To
= (char *)To
+ Res
;
763 while (Res
> 0 && Size
> 0);
776 return _error
->Error(_("read, still have %lu to read but none left"),Size
);
779 // FileFd::Write - Write to the file /*{{{*/
780 // ---------------------------------------------------------------------
782 bool FileFd::Write(const void *From
,unsigned long Size
)
789 Res
= gzwrite(gz
,From
,Size
);
791 Res
= write(iFd
,From
,Size
);
792 if (Res
< 0 && errno
== EINTR
)
797 return _error
->Errno("write",_("Write error"));
800 From
= (char *)From
+ Res
;
803 while (Res
> 0 && Size
> 0);
809 return _error
->Error(_("write, still have %lu to write but couldn't"),Size
);
812 // FileFd::Seek - Seek in the file /*{{{*/
813 // ---------------------------------------------------------------------
815 bool FileFd::Seek(unsigned long To
)
819 res
= gzseek(gz
,To
,SEEK_SET
);
821 res
= lseek(iFd
,To
,SEEK_SET
);
822 if (res
!= (signed)To
)
825 return _error
->Error("Unable to seek to %lu",To
);
831 // FileFd::Skip - Seek in the file /*{{{*/
832 // ---------------------------------------------------------------------
834 bool FileFd::Skip(unsigned long Over
)
838 res
= gzseek(gz
,Over
,SEEK_CUR
);
840 res
= lseek(iFd
,Over
,SEEK_CUR
);
844 return _error
->Error("Unable to seek ahead %lu",Over
);
850 // FileFd::Truncate - Truncate the file /*{{{*/
851 // ---------------------------------------------------------------------
853 bool FileFd::Truncate(unsigned long To
)
858 return _error
->Error("Truncating gzipped files is not implemented (%s)", FileName
.c_str());
860 if (ftruncate(iFd
,To
) != 0)
863 return _error
->Error("Unable to truncate to %lu",To
);
869 // FileFd::Tell - Current seek position /*{{{*/
870 // ---------------------------------------------------------------------
872 unsigned long FileFd::Tell()
878 Res
= lseek(iFd
,0,SEEK_CUR
);
879 if (Res
== (off_t
)-1)
880 _error
->Errno("lseek","Failed to determine the current file position");
884 // FileFd::Size - Return the size of the file /*{{{*/
885 // ---------------------------------------------------------------------
887 unsigned long FileFd::Size()
889 //TODO: For gz, do we need the actual file size here or the uncompressed length?
891 if (fstat(iFd
,&Buf
) != 0)
892 return _error
->Errno("fstat","Unable to determine the file size");
896 // FileFd::Close - Close the file if the close flag is set /*{{{*/
897 // ---------------------------------------------------------------------
902 if ((Flags
& AutoClose
) == AutoClose
)
905 int const e
= gzclose(gz
);
906 // gzdopen() on empty files always fails with "buffer error" here, ignore that
907 if (e
!= 0 && e
!= Z_BUF_ERROR
)
908 Res
&= _error
->Errno("close",_("Problem closing the gzip file %s"), FileName
.c_str());
910 if (iFd
> 0 && close(iFd
) != 0)
911 Res
&= _error
->Errno("close",_("Problem closing the file %s"), FileName
.c_str());
914 if ((Flags
& Replace
) == Replace
&& iFd
>= 0) {
915 if (rename(TemporaryFileName
.c_str(), FileName
.c_str()) != 0)
916 Res
&= _error
->Errno("rename",_("Problem renaming the file %s to %s"), TemporaryFileName
.c_str(), FileName
.c_str());
918 FileName
= TemporaryFileName
; // for the unlink() below.
924 if ((Flags
& Fail
) == Fail
&& (Flags
& DelOnFail
) == DelOnFail
&&
925 FileName
.empty() == false)
926 if (unlink(FileName
.c_str()) != 0)
927 Res
&= _error
->WarningE("unlnk",_("Problem unlinking the file %s"), FileName
.c_str());
933 // FileFd::Sync - Sync the file /*{{{*/
934 // ---------------------------------------------------------------------
938 #ifdef _POSIX_SYNCHRONIZED_IO
940 return _error
->Errno("sync",_("Problem syncing the file"));