]>
Commit | Line | Data |
---|---|---|
f46e7681 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
b3d44315 | 3 | // $Id: cdrom.cc,v 1.20.2.1 2004/01/16 18:58:50 mdz Exp $ |
f46e7681 AL |
4 | /* ###################################################################### |
5 | ||
6 | CDROM URI method for APT | |
7 | ||
8 | ##################################################################### */ | |
9 | /*}}}*/ | |
10 | // Include Files /*{{{*/ | |
11 | #include <apt-pkg/acquire-method.h> | |
a6418a4b | 12 | #include <apt-pkg/cdrom.h> |
f46e7681 AL |
13 | #include <apt-pkg/cdromutl.h> |
14 | #include <apt-pkg/error.h> | |
15 | #include <apt-pkg/configuration.h> | |
16 | #include <apt-pkg/fileutl.h> | |
13e8426f | 17 | #include <apt-pkg/hashes.h> |
f46e7681 AL |
18 | |
19 | #include <sys/stat.h> | |
20 | #include <unistd.h> | |
8e372e79 | 21 | #include <dlfcn.h> |
076cc664 AL |
22 | |
23 | #include <iostream> | |
d77559ac | 24 | #include <apti18n.h> |
f46e7681 AL |
25 | /*}}}*/ |
26 | ||
076cc664 AL |
27 | using namespace std; |
28 | ||
f46e7681 AL |
29 | class CDROMMethod : public pkgAcqMethod |
30 | { | |
f631d1ba | 31 | bool DatabaseLoaded; |
76fe5db7 MV |
32 | bool Debug; |
33 | ||
5b76e7f2 | 34 | ::Configuration Database; |
f46e7681 | 35 | string CurrentID; |
8e5fc8f5 | 36 | string CDROM; |
70dbf5f8 | 37 | bool MountedByApt; |
76fe5db7 | 38 | pkgUdevCdromDevices UdevCdroms; |
8e372e79 | 39 | |
bf783d90 | 40 | bool IsCorrectCD(URI want, string MountPath, string& NewID); |
1c545980 | 41 | bool AutoDetectAndMount(const URI, string &NewID); |
f46e7681 AL |
42 | virtual bool Fetch(FetchItem *Itm); |
43 | string GetID(string Name); | |
8e5fc8f5 | 44 | virtual void Exit(); |
8e372e79 | 45 | |
f46e7681 AL |
46 | public: |
47 | ||
48 | CDROMMethod(); | |
49 | }; | |
50 | ||
51 | // CDROMMethod::CDROMethod - Constructor /*{{{*/ | |
52 | // --------------------------------------------------------------------- | |
53 | /* */ | |
459681d3 AL |
54 | CDROMMethod::CDROMMethod() : pkgAcqMethod("1.0",SingleInstance | LocalOnly | |
55 | SendConfig | NeedsCleanup | | |
56 | Removable), | |
8e5fc8f5 | 57 | DatabaseLoaded(false), |
70dbf5f8 | 58 | MountedByApt(false) |
f46e7681 | 59 | { |
76fe5db7 | 60 | UdevCdroms.Dlopen(); |
f46e7681 AL |
61 | }; |
62 | /*}}}*/ | |
8e5fc8f5 AL |
63 | // CDROMMethod::Exit - Unmount the disc if necessary /*{{{*/ |
64 | // --------------------------------------------------------------------- | |
65 | /* */ | |
66 | void CDROMMethod::Exit() | |
8e372e79 MV |
67 | { |
68 | if (MountedByApt == true) | |
8e5fc8f5 AL |
69 | UnmountCdrom(CDROM); |
70 | } | |
71 | /*}}}*/ | |
e42eb508 | 72 | // CDROMMethod::GetID - Search the database for a matching string /*{{{*/ |
f46e7681 | 73 | // --------------------------------------------------------------------- |
e42eb508 | 74 | /* */ |
f46e7681 AL |
75 | string CDROMMethod::GetID(string Name) |
76 | { | |
e42eb508 | 77 | // Search for an ID |
f631d1ba | 78 | const Configuration::Item *Top = Database.Tree("CD"); |
b7d9b68e AL |
79 | if (Top != 0) |
80 | Top = Top->Child; | |
e42eb508 | 81 | |
f46e7681 | 82 | for (; Top != 0;) |
e42eb508 | 83 | { |
f46e7681 AL |
84 | if (Top->Value == Name) |
85 | return Top->Tag; | |
e42eb508 | 86 | |
f46e7681 | 87 | Top = Top->Next; |
e42eb508 | 88 | } |
f46e7681 AL |
89 | return string(); |
90 | } | |
91 | /*}}}*/ | |
76fe5db7 MV |
92 | // CDROMMethod::AutoDetectAndMount /*{{{*/ |
93 | // --------------------------------------------------------------------- | |
94 | /* Modifies class varaiable CDROM to the mountpoint */ | |
1c545980 | 95 | bool CDROMMethod::AutoDetectAndMount(const URI Get, string &NewID) |
76fe5db7 MV |
96 | { |
97 | vector<struct CdromDevice> v = UdevCdroms.Scan(); | |
98 | ||
99 | // first check if its mounted somewhere already | |
100 | for (unsigned int i=0; i < v.size(); i++) | |
101 | { | |
102 | if (v[i].Mounted) | |
103 | { | |
104 | if (Debug) | |
105 | clog << "Checking mounted cdrom device " << v[i].DeviceName << endl; | |
bf783d90 | 106 | if (IsCorrectCD(Get, v[i].MountPath, NewID)) |
76fe5db7 MV |
107 | { |
108 | CDROM = v[i].MountPath; | |
109 | return true; | |
110 | } | |
111 | } | |
112 | } | |
113 | ||
114 | // we are not supposed to mount, exit | |
115 | if (_config->FindB("APT::CDROM::NoMount",false) == true) | |
116 | return false; | |
117 | ||
118 | // check if we have the mount point | |
ffee221b | 119 | string AptMountPoint = _config->FindDir("Dir::Media::MountPath"); |
fb503892 | 120 | if (!FileExists(AptMountPoint)) |
ffee221b | 121 | mkdir(AptMountPoint.c_str(), 0750); |
a6418a4b | 122 | |
76fe5db7 MV |
123 | // now try mounting |
124 | for (unsigned int i=0; i < v.size(); i++) | |
125 | { | |
126 | if (!v[i].Mounted) | |
127 | { | |
fb503892 | 128 | if(MountCdrom(AptMountPoint, v[i].DeviceName)) |
76fe5db7 | 129 | { |
fb503892 | 130 | if (IsCorrectCD(Get, AptMountPoint, NewID)) |
76fe5db7 MV |
131 | { |
132 | MountedByApt = true; | |
fb503892 | 133 | CDROM = AptMountPoint; |
76fe5db7 MV |
134 | return true; |
135 | } else { | |
fb503892 | 136 | UnmountCdrom(AptMountPoint); |
76fe5db7 MV |
137 | } |
138 | } | |
139 | } | |
140 | } | |
141 | ||
142 | return false; | |
143 | } | |
144 | /*}}}*/ | |
a6418a4b MV |
145 | // CDROMMethod::IsCorrectCD /*{{{*/ |
146 | // --------------------------------------------------------------------- | |
147 | /* */ | |
bf783d90 | 148 | bool CDROMMethod::IsCorrectCD(URI want, string MountPath, string& NewID) |
a6418a4b | 149 | { |
a6418a4b MV |
150 | for (unsigned int Version = 2; Version != 0; Version--) |
151 | { | |
152 | if (IdentCdrom(MountPath,NewID,Version) == false) | |
153 | return false; | |
154 | ||
76fe5db7 | 155 | if (Debug) |
a6418a4b MV |
156 | clog << "ID " << Version << " " << NewID << endl; |
157 | ||
158 | // A hit | |
159 | if (Database.Find("CD::" + NewID) == want.Host) | |
160 | return true; | |
161 | } | |
162 | ||
163 | return false; | |
164 | } | |
165 | /*}}}*/ | |
f46e7681 AL |
166 | // CDROMMethod::Fetch - Fetch a file /*{{{*/ |
167 | // --------------------------------------------------------------------- | |
168 | /* */ | |
169 | bool CDROMMethod::Fetch(FetchItem *Itm) | |
170 | { | |
76fe5db7 MV |
171 | FetchResult Res; |
172 | ||
f46e7681 AL |
173 | URI Get = Itm->Uri; |
174 | string File = Get.Path; | |
76fe5db7 | 175 | Debug = _config->FindB("Debug::Acquire::cdrom", false); |
34fc0421 | 176 | |
49cb36fc MV |
177 | if (Debug) |
178 | clog << "CDROMMethod::Fetch " << Itm->Uri << endl; | |
34fc0421 | 179 | |
f46e7681 AL |
180 | /* All IMS queries are returned as a hit, CDROMs are readonly so |
181 | time stamps never change */ | |
182 | if (Itm->LastModified != 0) | |
183 | { | |
184 | Res.LastModified = Itm->LastModified; | |
185 | Res.IMSHit = true; | |
2aab5956 | 186 | Res.Filename = Itm->DestFile; |
f46e7681 AL |
187 | URIDone(Res); |
188 | return true; | |
189 | } | |
e42eb508 AL |
190 | |
191 | // Load the database | |
192 | if (DatabaseLoaded == false) | |
193 | { | |
194 | // Read the database | |
195 | string DFile = _config->FindFile("Dir::State::cdroms"); | |
196 | if (FileExists(DFile) == true) | |
197 | { | |
198 | if (ReadConfigFile(Database,DFile) == false) | |
dc738e7a | 199 | return _error->Error(_("Unable to read the cdrom database %s"), |
e42eb508 AL |
200 | DFile.c_str()); |
201 | } | |
202 | DatabaseLoaded = true; | |
203 | } | |
204 | ||
f46e7681 | 205 | // All non IMS queries for package files fail. |
e42eb508 | 206 | if (Itm->IndexFile == true || GetID(Get.Host).empty() == true) |
f46e7681 | 207 | { |
db0db9fe CP |
208 | Fail(_("Please use apt-cdrom to make this CD-ROM recognized by APT." |
209 | " apt-get update cannot be used to add new CD-ROMs")); | |
9e0349cc | 210 | return true; |
f46e7681 AL |
211 | } |
212 | ||
213 | // We already have a CD inserted, but it is the wrong one | |
49cb36fc MV |
214 | if (CurrentID.empty() == false && |
215 | CurrentID != "FAIL" && | |
216 | Database.Find("CD::" + CurrentID) != Get.Host) | |
f46e7681 | 217 | { |
db0db9fe | 218 | Fail(_("Wrong CD-ROM"),true); |
9e0349cc | 219 | return true; |
f46e7681 | 220 | } |
a6418a4b | 221 | |
ff1e4b06 | 222 | bool AutoDetect = _config->FindB("Acquire::cdrom::AutoDetect", true); |
8e5fc8f5 | 223 | CDROM = _config->FindDir("Acquire::cdrom::mount","/cdrom/"); |
49cb36fc MV |
224 | if (Debug) |
225 | clog << "Looking for CDROM at " << CDROM << endl; | |
a6418a4b | 226 | |
49cb36fc MV |
227 | if (CDROM[0] == '.') |
228 | CDROM= SafeGetCWD() + '/' + CDROM; | |
49cb36fc | 229 | |
bf783d90 | 230 | string NewID; |
49cb36fc | 231 | while (CurrentID.empty() == true) |
a6418a4b | 232 | { |
ff1e4b06 | 233 | if (AutoDetect) |
bf783d90 | 234 | AutoDetectAndMount(Get, NewID); |
a6418a4b | 235 | |
70dbf5f8 MV |
236 | if(!IsMounted(CDROM)) |
237 | MountedByApt = MountCdrom(CDROM); | |
34fc0421 | 238 | |
bf783d90 | 239 | if (IsCorrectCD(Get, CDROM, NewID)) |
175f08ac AL |
240 | break; |
241 | ||
4df0b629 | 242 | // I suppose this should prompt somehow? |
50959877 MV |
243 | if (_config->FindB("APT::CDROM::NoMount",false) == false && |
244 | UnmountCdrom(CDROM) == false) | |
dc738e7a | 245 | return _error->Error(_("Unable to unmount the CD-ROM in %s, it may still be in use."), |
4df0b629 | 246 | CDROM.c_str()); |
018f1533 AL |
247 | if (MediaFail(Get.Host,CDROM) == false) |
248 | { | |
76d97c26 | 249 | CurrentID = "FAIL"; |
2a749770 | 250 | return _error->Error(_("Disk not found.")); |
018f1533 | 251 | } |
f46e7681 AL |
252 | } |
253 | ||
e42eb508 AL |
254 | // Found a CD |
255 | Res.Filename = CDROM + File; | |
256 | struct stat Buf; | |
257 | if (stat(Res.Filename.c_str(),&Buf) != 0) | |
dc738e7a | 258 | return _error->Error(_("File not found")); |
f46e7681 | 259 | |
281daf46 AL |
260 | if (NewID.empty() == false) |
261 | CurrentID = NewID; | |
e42eb508 | 262 | Res.LastModified = Buf.st_mtime; |
e42eb508 | 263 | Res.Size = Buf.st_size; |
13e8426f MV |
264 | |
265 | Hashes Hash; | |
266 | FileFd Fd(Res.Filename, FileFd::ReadOnly); | |
267 | Hash.AddFD(Fd.Fd(), Fd.Size()); | |
268 | Res.TakeHashes(Hash); | |
269 | ||
e42eb508 AL |
270 | URIDone(Res); |
271 | return true; | |
f46e7681 AL |
272 | } |
273 | /*}}}*/ | |
274 | ||
275 | int main() | |
276 | { | |
b25423f6 MZ |
277 | setlocale(LC_ALL, ""); |
278 | ||
f46e7681 AL |
279 | CDROMMethod Mth; |
280 | return Mth.Run(); | |
281 | } |