]>
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 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>.
15 The exception is RunScripts() it is under the GPLv2
17 ##################################################################### */
19 // Include Files /*{{{*/
20 #include <apt-pkg/fileutl.h>
21 #include <apt-pkg/error.h>
22 #include <apt-pkg/sptr.h>
23 #include <apt-pkg/configuration.h>
34 #include <sys/types.h>
44 // RunScripts - Run a set of scripts from a configuration subtree /*{{{*/
45 // ---------------------------------------------------------------------
47 bool RunScripts(const char *Cnf
)
49 Configuration::Item
const *Opts
= _config
->Tree(Cnf
);
50 if (Opts
== 0 || Opts
->Child
== 0)
54 // Fork for running the system calls
55 pid_t Child
= ExecFork();
60 if (chdir("/tmp/") != 0)
63 unsigned int Count
= 1;
64 for (; Opts
!= 0; Opts
= Opts
->Next
, Count
++)
66 if (Opts
->Value
.empty() == true)
69 if (system(Opts
->Value
.c_str()) != 0)
77 while (waitpid(Child
,&Status
,0) != Child
)
81 return _error
->Errno("waitpid","Couldn't wait for subprocess");
84 // Restore sig int/quit
85 signal(SIGQUIT
,SIG_DFL
);
86 signal(SIGINT
,SIG_DFL
);
88 // Check for an error code.
89 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
91 unsigned int Count
= WEXITSTATUS(Status
);
95 for (; Opts
!= 0 && Count
!= 1; Opts
= Opts
->Next
, Count
--);
96 _error
->Error("Problem executing scripts %s '%s'",Cnf
,Opts
->Value
.c_str());
99 return _error
->Error("Sub-process returned an error code");
106 // CopyFile - Buffered copy of a file /*{{{*/
107 // ---------------------------------------------------------------------
108 /* The caller is expected to set things so that failure causes erasure */
109 bool CopyFile(FileFd
&From
,FileFd
&To
)
111 if (From
.IsOpen() == false || To
.IsOpen() == false)
114 // Buffered copy between fds
115 SPtrArray
<unsigned char> Buf
= new unsigned char[64000];
116 unsigned long Size
= From
.Size();
119 unsigned long ToRead
= Size
;
123 if (From
.Read(Buf
,ToRead
) == false ||
124 To
.Write(Buf
,ToRead
) == false)
133 // GetLock - Gets a lock file /*{{{*/
134 // ---------------------------------------------------------------------
135 /* This will create an empty file of the given name and lock it. Once this
136 is done all other calls to GetLock in any other process will fail with
137 -1. The return result is the fd of the file, the call should call
138 close at some time. */
139 int GetLock(string File
,bool Errors
)
141 // GetLock() is used in aptitude on directories with public-write access
142 // Use O_NOFOLLOW here to prevent symlink traversal attacks
143 int FD
= open(File
.c_str(),O_RDWR
| O_CREAT
| O_NOFOLLOW
,0640);
146 // Read only .. cant have locking problems there.
149 _error
->Warning(_("Not using locking for read only lock file %s"),File
.c_str());
150 return dup(0); // Need something for the caller to close
154 _error
->Errno("open",_("Could not open lock file %s"),File
.c_str());
156 // Feh.. We do this to distinguish the lock vs open case..
160 SetCloseExec(FD
,true);
162 // Aquire a write lock
165 fl
.l_whence
= SEEK_SET
;
168 if (fcntl(FD
,F_SETLK
,&fl
) == -1)
172 _error
->Warning(_("Not using locking for nfs mounted lock file %s"),File
.c_str());
173 return dup(0); // Need something for the caller to close
176 _error
->Errno("open",_("Could not get lock %s"),File
.c_str());
187 // FileExists - Check if a file exists /*{{{*/
188 // ---------------------------------------------------------------------
190 bool FileExists(string File
)
193 if (stat(File
.c_str(),&Buf
) != 0)
198 // SafeGetCWD - This is a safer getcwd that returns a dynamic string /*{{{*/
199 // ---------------------------------------------------------------------
200 /* We return / on failure. */
203 // Stash the current dir.
206 if (getcwd(S
,sizeof(S
)-2) == 0)
208 unsigned int Len
= strlen(S
);
214 // flNotDir - Strip the directory from the filename /*{{{*/
215 // ---------------------------------------------------------------------
217 string
flNotDir(string File
)
219 string::size_type Res
= File
.rfind('/');
220 if (Res
== string::npos
)
223 return string(File
,Res
,Res
- File
.length());
226 // flNotFile - Strip the file from the directory name /*{{{*/
227 // ---------------------------------------------------------------------
228 /* Result ends in a / */
229 string
flNotFile(string File
)
231 string::size_type Res
= File
.rfind('/');
232 if (Res
== string::npos
)
235 return string(File
,0,Res
);
238 // flExtension - Return the extension for the file /*{{{*/
239 // ---------------------------------------------------------------------
241 string
flExtension(string File
)
243 string::size_type Res
= File
.rfind('.');
244 if (Res
== string::npos
)
247 return string(File
,Res
,Res
- File
.length());
250 // flNoLink - If file is a symlink then deref it /*{{{*/
251 // ---------------------------------------------------------------------
252 /* If the name is not a link then the returned path is the input. */
253 string
flNoLink(string File
)
256 if (lstat(File
.c_str(),&St
) != 0 || S_ISLNK(St
.st_mode
) == 0)
258 if (stat(File
.c_str(),&St
) != 0)
261 /* Loop resolving the link. There is no need to limit the number of
262 loops because the stat call above ensures that the symlink is not
270 if ((Res
= readlink(NFile
.c_str(),Buffer
,sizeof(Buffer
))) <= 0 ||
271 (unsigned)Res
>= sizeof(Buffer
))
274 // Append or replace the previous path
276 if (Buffer
[0] == '/')
279 NFile
= flNotFile(NFile
) + Buffer
;
281 // See if we are done
282 if (lstat(NFile
.c_str(),&St
) != 0)
284 if (S_ISLNK(St
.st_mode
) == 0)
289 // flCombine - Combine a file and a directory /*{{{*/
290 // ---------------------------------------------------------------------
291 /* If the file is an absolute path then it is just returned, otherwise
292 the directory is pre-pended to it. */
293 string
flCombine(string Dir
,string File
)
295 if (File
.empty() == true)
298 if (File
[0] == '/' || Dir
.empty() == true)
300 if (File
.length() >= 2 && File
[0] == '.' && File
[1] == '/')
302 if (Dir
[Dir
.length()-1] == '/')
304 return Dir
+ '/' + File
;
307 // SetCloseExec - Set the close on exec flag /*{{{*/
308 // ---------------------------------------------------------------------
310 void SetCloseExec(int Fd
,bool Close
)
312 if (fcntl(Fd
,F_SETFD
,(Close
== false)?0:FD_CLOEXEC
) != 0)
314 cerr
<< "FATAL -> Could not set close on exec " << strerror(errno
) << endl
;
319 // SetNonBlock - Set the nonblocking flag /*{{{*/
320 // ---------------------------------------------------------------------
322 void SetNonBlock(int Fd
,bool Block
)
324 int Flags
= fcntl(Fd
,F_GETFL
) & (~O_NONBLOCK
);
325 if (fcntl(Fd
,F_SETFL
,Flags
| ((Block
== false)?0:O_NONBLOCK
)) != 0)
327 cerr
<< "FATAL -> Could not set non-blocking flag " << strerror(errno
) << endl
;
332 // WaitFd - Wait for a FD to become readable /*{{{*/
333 // ---------------------------------------------------------------------
334 /* This waits for a FD to become readable using select. It is useful for
335 applications making use of non-blocking sockets. The timeout is
337 bool WaitFd(int Fd
,bool write
,unsigned long timeout
)
350 Res
= select(Fd
+1,0,&Set
,0,(timeout
!= 0?&tv
:0));
352 while (Res
< 0 && errno
== EINTR
);
362 Res
= select(Fd
+1,&Set
,0,0,(timeout
!= 0?&tv
:0));
364 while (Res
< 0 && errno
== EINTR
);
373 // ExecFork - Magical fork that sanitizes the context before execing /*{{{*/
374 // ---------------------------------------------------------------------
375 /* This is used if you want to cleanse the environment for the forked
376 child, it fixes up the important signals and nukes all of the fds,
377 otherwise acts like normal fork. */
380 // Fork off the process
381 pid_t Process
= fork();
384 cerr
<< "FATAL -> Failed to fork." << endl
;
388 // Spawn the subprocess
392 signal(SIGPIPE
,SIG_DFL
);
393 signal(SIGQUIT
,SIG_DFL
);
394 signal(SIGINT
,SIG_DFL
);
395 signal(SIGWINCH
,SIG_DFL
);
396 signal(SIGCONT
,SIG_DFL
);
397 signal(SIGTSTP
,SIG_DFL
);
400 Configuration::Item
const *Opts
= _config
->Tree("APT::Keep-Fds");
401 if (Opts
!= 0 && Opts
->Child
!= 0)
404 for (; Opts
!= 0; Opts
= Opts
->Next
)
406 if (Opts
->Value
.empty() == true)
408 int fd
= atoi(Opts
->Value
.c_str());
413 // Close all of our FDs - just in case
414 for (int K
= 3; K
!= 40; K
++)
416 if(KeepFDs
.find(K
) == KeepFDs
.end())
417 fcntl(K
,F_SETFD
,FD_CLOEXEC
);
424 // ExecWait - Fancy waitpid /*{{{*/
425 // ---------------------------------------------------------------------
426 /* Waits for the given sub process. If Reap is set then no errors are
427 generated. Otherwise a failed subprocess will generate a proper descriptive
429 bool ExecWait(pid_t Pid
,const char *Name
,bool Reap
)
434 // Wait and collect the error code
436 while (waitpid(Pid
,&Status
,0) != Pid
)
444 return _error
->Error(_("Waited for %s but it wasn't there"),Name
);
448 // Check for an error code.
449 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
453 if (WIFSIGNALED(Status
) != 0 && WTERMSIG(Status
) == SIGSEGV
)
454 return _error
->Error(_("Sub-process %s received a segmentation fault."),Name
);
456 if (WIFEXITED(Status
) != 0)
457 return _error
->Error(_("Sub-process %s returned an error code (%u)"),Name
,WEXITSTATUS(Status
));
459 return _error
->Error(_("Sub-process %s exited unexpectedly"),Name
);
466 // FileFd::Open - Open a file /*{{{*/
467 // ---------------------------------------------------------------------
468 /* The most commonly used open mode combinations are given with Mode */
469 bool FileFd::Open(string FileName
,OpenMode Mode
, unsigned long Perms
)
476 iFd
= open(FileName
.c_str(),O_RDONLY
);
482 if (lstat(FileName
.c_str(),&Buf
) == 0 && S_ISLNK(Buf
.st_mode
))
483 unlink(FileName
.c_str());
484 iFd
= open(FileName
.c_str(),O_RDWR
| O_CREAT
| O_TRUNC
,Perms
);
489 iFd
= open(FileName
.c_str(),O_RDWR
);
493 iFd
= open(FileName
.c_str(),O_RDWR
| O_CREAT
,Perms
);
497 unlink(FileName
.c_str());
498 iFd
= open(FileName
.c_str(),O_RDWR
| O_CREAT
| O_EXCL
,Perms
);
503 return _error
->Errno("open",_("Could not open file %s"),FileName
.c_str());
505 this->FileName
= FileName
;
506 SetCloseExec(iFd
,true);
510 // FileFd::~File - Closes the file /*{{{*/
511 // ---------------------------------------------------------------------
512 /* If the proper modes are selected then we close the Fd and possibly
513 unlink the file on error. */
519 // FileFd::Read - Read a bit of the file /*{{{*/
520 // ---------------------------------------------------------------------
521 /* We are carefull to handle interruption by a signal while reading
523 bool FileFd::Read(void *To
,unsigned long Size
,unsigned long *Actual
)
532 Res
= read(iFd
,To
,Size
);
533 if (Res
< 0 && errno
== EINTR
)
538 return _error
->Errno("read",_("Read error"));
541 To
= (char *)To
+ Res
;
546 while (Res
> 0 && Size
> 0);
559 return _error
->Error(_("read, still have %lu to read but none left"),Size
);
562 // FileFd::Write - Write to the file /*{{{*/
563 // ---------------------------------------------------------------------
565 bool FileFd::Write(const void *From
,unsigned long Size
)
571 Res
= write(iFd
,From
,Size
);
572 if (Res
< 0 && errno
== EINTR
)
577 return _error
->Errno("write",_("Write error"));
580 From
= (char *)From
+ Res
;
583 while (Res
> 0 && Size
> 0);
589 return _error
->Error(_("write, still have %lu to write but couldn't"),Size
);
592 // FileFd::Seek - Seek in the file /*{{{*/
593 // ---------------------------------------------------------------------
595 bool FileFd::Seek(unsigned long To
)
597 if (lseek(iFd
,To
,SEEK_SET
) != (signed)To
)
600 return _error
->Error("Unable to seek to %lu",To
);
606 // FileFd::Skip - Seek in the file /*{{{*/
607 // ---------------------------------------------------------------------
609 bool FileFd::Skip(unsigned long Over
)
611 if (lseek(iFd
,Over
,SEEK_CUR
) < 0)
614 return _error
->Error("Unable to seek ahead %lu",Over
);
620 // FileFd::Truncate - Truncate the file /*{{{*/
621 // ---------------------------------------------------------------------
623 bool FileFd::Truncate(unsigned long To
)
625 if (ftruncate(iFd
,To
) != 0)
628 return _error
->Error("Unable to truncate to %lu",To
);
634 // FileFd::Tell - Current seek position /*{{{*/
635 // ---------------------------------------------------------------------
637 unsigned long FileFd::Tell()
639 off_t Res
= lseek(iFd
,0,SEEK_CUR
);
640 if (Res
== (off_t
)-1)
641 _error
->Errno("lseek","Failed to determine the current file position");
645 // FileFd::Size - Return the size of the file /*{{{*/
646 // ---------------------------------------------------------------------
648 unsigned long FileFd::Size()
651 if (fstat(iFd
,&Buf
) != 0)
652 return _error
->Errno("fstat","Unable to determine the file size");
656 // FileFd::Close - Close the file if the close flag is set /*{{{*/
657 // ---------------------------------------------------------------------
662 if ((Flags
& AutoClose
) == AutoClose
)
663 if (iFd
>= 0 && close(iFd
) != 0)
664 Res
&= _error
->Errno("close",_("Problem closing the file"));
667 if ((Flags
& Fail
) == Fail
&& (Flags
& DelOnFail
) == DelOnFail
&&
668 FileName
.empty() == false)
669 if (unlink(FileName
.c_str()) != 0)
670 Res
&= _error
->WarningE("unlnk",_("Problem unlinking the file"));
674 // FileFd::Sync - Sync the file /*{{{*/
675 // ---------------------------------------------------------------------
679 #ifdef _POSIX_SYNCHRONIZED_IO
681 return _error
->Errno("sync",_("Problem syncing the file"));