]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/cdromutl.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: cdromutl.cc,v 1.5 1999/04/20 05:11:17 jgg Exp $
4 /* ######################################################################
6 CDROM Utilities - Some functions to manipulate CDROM mounts.
8 These are here for the cdrom method and apt-cdrom.
10 ##################################################################### */
12 // Include Files /*{{{*/
14 #pragma implementation "apt-pkg/cdromutl.h"
16 #include <apt-pkg/cdromutl.h>
17 #include <apt-pkg/error.h>
18 #include <apt-pkg/md5.h>
19 #include <apt-pkg/fileutl.h>
20 #include <apt-pkg/configuration.h>
23 #include <sys/errno.h>
32 // IsMounted - Returns true if the mount point is mounted /*{{{*/
33 // ---------------------------------------------------------------------
34 /* This is a simple algorithm that should always work, we stat the mount point
35 and the '..' file in the mount point and see if they are on the same device.
36 By definition if they are the same then it is not mounted. This should
37 account for symlinked mount points as well. */
38 bool IsMounted(string
&Path
)
40 if (Path
.empty() == true)
43 // Need that trailing slash for directories
44 if (Path
[Path
.length() - 1] != '/')
47 /* First we check if the path is actualy mounted, we do this by
48 stating the path and the previous directory (carefull of links!)
49 and comparing their device fields. */
51 if (stat(Path
.c_str(),&Buf
) != 0 ||
52 stat((Path
+ "../").c_str(),&Buf2
) != 0)
53 return _error
->Errno("stat","Unable to stat the mount point %s",Path
.c_str());
55 if (Buf
.st_dev
== Buf2
.st_dev
)
60 // UnmountCdrom - Unmount a cdrom /*{{{*/
61 // ---------------------------------------------------------------------
62 /* Forking umount works much better than the umount syscall which can
63 leave /etc/mtab inconsitant. We drop all messages this produces. */
64 bool UnmountCdrom(string Path
)
66 if (IsMounted(Path
) == false)
69 int Child
= ExecFork();
74 // Make all the fds /dev/null
75 for (int I
= 0; I
!= 3; I
++)
76 dup2(open("/dev/null",O_RDWR
),I
);
78 if (_config
->Exists("Acquire::cdrom::"+Path
+"::UMount") == true)
80 if (system(_config
->Find("Acquire::cdrom::"+Path
+"::UMount").c_str()) != 0)
88 Args
[1] = Path
.c_str();
90 execvp(Args
[0],(char **)Args
);
97 while (waitpid(Child
,&Status
,0) != Child
)
101 return _error
->Errno("waitpid","Couldn't wait for subprocess");
104 // Check for an error code.
105 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
110 // MountCdrom - Mount a cdrom /*{{{*/
111 // ---------------------------------------------------------------------
112 /* We fork mount and drop all messages */
113 bool MountCdrom(string Path
)
115 if (IsMounted(Path
) == true)
118 int Child
= ExecFork();
123 // Make all the fds /dev/null
124 for (int I
= 0; I
!= 3; I
++)
125 dup2(open("/dev/null",O_RDWR
),I
);
127 if (_config
->Exists("Acquire::cdrom::"+Path
+"::Mount") == true)
129 if (system(_config
->Find("Acquire::cdrom::"+Path
+"::Mount").c_str()) != 0)
135 const char *Args
[10];
137 Args
[1] = Path
.c_str();
139 execvp(Args
[0],(char **)Args
);
146 while (waitpid(Child
,&Status
,0) != Child
)
150 return _error
->Errno("waitpid","Couldn't wait for subprocess");
153 // Check for an error code.
154 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
159 // IdentCdrom - Generate a unique string for this CD /*{{{*/
160 // ---------------------------------------------------------------------
161 /* We convert everything we hash into a string, this prevents byte size/order
162 from effecting the outcome. */
163 bool IdentCdrom(string CD
,string
&Res
)
167 string StartDir
= SafeGetCWD();
168 if (chdir(CD
.c_str()) != 0)
169 return _error
->Errno("chdir","Unable to change to %s",CD
.c_str());
171 DIR *D
= opendir(".");
173 return _error
->Errno("opendir","Unable to read %s",CD
.c_str());
175 /* Run over the directory, we assume that the reader order will never
176 change as the media is read-only. In theory if the kernel did
177 some sort of wacked caching this might not be true.. */
179 for (struct dirent
*Dir
= readdir(D
); Dir
!= 0; Dir
= readdir(D
))
182 if (strcmp(Dir
->d_name
,".") == 0 ||
183 strcmp(Dir
->d_name
,"..") == 0)
186 sprintf(S
,"%lu",Dir
->d_ino
);
188 Hash
.Add(Dir
->d_name
);
191 chdir(StartDir
.c_str());
194 // Some stats from the fsys
196 if (statfs(CD
.c_str(),&Buf
) != 0)
197 return _error
->Errno("statfs","Failed to stat the cdrom");
199 // We use a kilobyte block size to advoid overflow
200 sprintf(S
,"%lu %lu",(long)(Buf
.f_blocks
*(Buf
.f_bsize
/1024)),
201 (long)(Buf
.f_bfree
*(Buf
.f_bsize
/1024)));
204 Res
= Hash
.Result().Value();