blob: 35032d35d1d0814289ad500e6566d34fa88194a5 [file] [log] [blame]
srs5694add79a62010-01-26 15:59:58 -05001//
2// C++ Interface: diskio (Unix components [Linux, FreeBSD, Mac OS X])
3//
4// Description: Class to handle low-level disk I/O for GPT fdisk
5//
6//
7// Author: Rod Smith <rodsmith@rodsbooks.com>, (C) 2009
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12// This program is copyright (c) 2009 by Roderick W. Smith. It is distributed
13// under the terms of the GNU GPL version 2, as detailed in the COPYING file.
14
15#define __STDC_LIMIT_MACROS
16#define __STDC_CONSTANT_MACROS
17
18#include <sys/ioctl.h>
srs5694fed16d02010-01-27 23:03:40 -050019#include <string.h>
srs5694add79a62010-01-26 15:59:58 -050020#include <string>
21#include <stdint.h>
Roderick W. Smith24bba6e2013-10-12 19:07:16 -040022#include <unistd.h>
srs5694add79a62010-01-26 15:59:58 -050023#include <errno.h>
24#include <fcntl.h>
25#include <sys/stat.h>
srs569434882942012-03-23 12:49:15 -040026#include <unistd.h>
srs5694bf8950c2011-03-12 01:23:12 -050027
28#ifdef __linux__
29#include "linux/hdreg.h"
30#endif
31
srs5694add79a62010-01-26 15:59:58 -050032#include <iostream>
33
srs5694add79a62010-01-26 15:59:58 -050034#include "diskio.h"
35
36using namespace std;
37
38// Returns the official "real" name for a shortened version of same.
39// Trivial here; more important in Windows
40void DiskIO::MakeRealName(void) {
41 realFilename = userFilename;
42} // DiskIO::MakeRealName()
43
srs569455d92612010-03-07 22:16:07 -050044// Open the currently on-record file for reading. Returns 1 if the file is
45// already open or is opened by this call, 0 if opening the file doesn't
46// work.
srs5694add79a62010-01-26 15:59:58 -050047int DiskIO::OpenForRead(void) {
48 int shouldOpen = 1;
srs56948f1b2d62010-05-23 13:07:19 -040049 struct stat64 st;
srs5694add79a62010-01-26 15:59:58 -050050
51 if (isOpen) { // file is already open
52 if (openForWrite) {
53 Close();
54 } else {
55 shouldOpen = 0;
56 } // if/else
57 } // if
58
59 if (shouldOpen) {
60 fd = open(realFilename.c_str(), O_RDONLY);
61 if (fd == -1) {
srs569455d92612010-03-07 22:16:07 -050062 cerr << "Problem opening " << realFilename << " for reading! Error is " << errno << ".\n";
63 if (errno == EACCES) // User is probably not running as root
srs5694fed16d02010-01-27 23:03:40 -050064 cerr << "You must run this program as root or use sudo!\n";
srs569455d92612010-03-07 22:16:07 -050065 if (errno == ENOENT)
66 cerr << "The specified file does not exist!\n";
srs5694add79a62010-01-26 15:59:58 -050067 realFilename = "";
68 userFilename = "";
69 isOpen = 0;
70 openForWrite = 0;
71 } else {
srs56948f1b2d62010-05-23 13:07:19 -040072 isOpen = 0;
srs5694add79a62010-01-26 15:59:58 -050073 openForWrite = 0;
srs56948f1b2d62010-05-23 13:07:19 -040074 if (fstat64(fd, &st) == 0) {
75 if (S_ISDIR(st.st_mode))
76 cerr << "The specified path is a directory!\n";
Guillaume Delacourfd118a42014-07-23 01:28:29 +020077#if !(defined(__FreeBSD__) || defined(__FreeBSD_kernel__)) \
78 && !defined(__APPLE__)
srs56948f1b2d62010-05-23 13:07:19 -040079 else if (S_ISCHR(st.st_mode))
80 cerr << "The specified path is a character device!\n";
81#endif
82 else if (S_ISFIFO(st.st_mode))
83 cerr << "The specified path is a FIFO!\n";
84 else if (S_ISSOCK(st.st_mode))
85 cerr << "The specified path is a socket!\n";
86 else
87 isOpen = 1;
88 } // if (fstat64()...)
srs5694add79a62010-01-26 15:59:58 -050089 } // if/else
90 } // if
91
92 return isOpen;
93} // DiskIO::OpenForRead(void)
94
95// An extended file-open function. This includes some system-specific checks.
96// Returns 1 if the file is open, 0 otherwise....
97int DiskIO::OpenForWrite(void) {
98 if ((isOpen) && (openForWrite))
99 return 1;
100
101 // Close the disk, in case it's already open for reading only....
102 Close();
103
104 // try to open the device; may fail....
105 fd = open(realFilename.c_str(), O_WRONLY | O_CREAT, S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH);
106#ifdef __APPLE__
107 // MacOS X requires a shared lock under some circumstances....
108 if (fd < 0) {
Roderick W. Smithe09ef882013-07-08 22:56:00 -0400109 cerr << "Warning: Devices opened with shared lock will not have their\npartition table automatically reloaded!\n";
srs5694fed16d02010-01-27 23:03:40 -0500110 fd = open(realFilename.c_str(), O_WRONLY | O_SHLOCK);
srs5694add79a62010-01-26 15:59:58 -0500111 } // if
112#endif
113 if (fd >= 0) {
114 isOpen = 1;
115 openForWrite = 1;
116 } else {
117 isOpen = 0;
118 openForWrite = 0;
119 } // if/else
120 return isOpen;
121} // DiskIO::OpenForWrite(void)
122
123// Close the disk device. Note that this does NOT erase the stored filenames,
124// so the file can be re-opened without specifying the filename.
125void DiskIO::Close(void) {
126 if (isOpen)
srs569408bb0da2010-02-19 17:19:55 -0500127 if (close(fd) < 0)
128 cerr << "Warning! Problem closing file!\n";
srs5694add79a62010-01-26 15:59:58 -0500129 isOpen = 0;
130 openForWrite = 0;
131} // DiskIO::Close()
132
133// Returns block size of device pointed to by fd file descriptor. If the ioctl
134// returns an error condition, print a warning but return a value of SECTOR_SIZE
srs569455d92612010-03-07 22:16:07 -0500135// (512). If the disk can't be opened at all, return a value of 0.
srs5694add79a62010-01-26 15:59:58 -0500136int DiskIO::GetBlockSize(void) {
137 int err = -1, blockSize = 0;
srs56940741fa22013-01-09 12:55:40 -0500138#ifdef __sun__
139 struct dk_minfo minfo;
140#endif
srs5694add79a62010-01-26 15:59:58 -0500141
142 // If disk isn't open, try to open it....
143 if (!isOpen) {
144 OpenForRead();
145 } // if
146
147 if (isOpen) {
148#ifdef __APPLE__
149 err = ioctl(fd, DKIOCGETBLOCKSIZE, &blockSize);
150#endif
srs56940741fa22013-01-09 12:55:40 -0500151#ifdef __sun__
152 err = ioctl(fd, DKIOCGMEDIAINFO, &minfo);
153 if (err == 0)
154 blockSize = minfo.dki_lbsize;
155#endif
srs569408bb0da2010-02-19 17:19:55 -0500156#if defined (__FreeBSD__) || defined (__FreeBSD_kernel__)
srs5694add79a62010-01-26 15:59:58 -0500157 err = ioctl(fd, DIOCGSECTORSIZE, &blockSize);
158#endif
159#ifdef __linux__
160 err = ioctl(fd, BLKSSZGET, &blockSize);
161#endif
162
163 if (err == -1) {
164 blockSize = SECTOR_SIZE;
165 // ENOTTY = inappropriate ioctl; probably being called on a disk image
166 // file, so don't display the warning message....
167 // 32-bit code returns EINVAL, I don't know why. I know I'm treading on
168 // thin ice here, but it should be OK in all but very weird cases....
169 if ((errno != ENOTTY) && (errno != EINVAL)) {
srs5694fed16d02010-01-27 23:03:40 -0500170 cerr << "\aError " << errno << " when determining sector size! Setting sector size to "
171 << SECTOR_SIZE << "\n";
srs569455d92612010-03-07 22:16:07 -0500172 cout << "Disk device is " << realFilename << "\n";
srs5694add79a62010-01-26 15:59:58 -0500173 } // if
174 } // if (err == -1)
175 } // if (isOpen)
176
177 return (blockSize);
178} // DiskIO::GetBlockSize()
179
srs5694bf8950c2011-03-12 01:23:12 -0500180// Returns the number of heads, according to the kernel, or 255 if the
181// correct value can't be determined.
182uint32_t DiskIO::GetNumHeads(void) {
183 uint32_t numHeads = 255;
184
185#ifdef HDIO_GETGEO
186 struct hd_geometry geometry;
187
188 // If disk isn't open, try to open it....
189 if (!isOpen)
190 OpenForRead();
191
192 if (!ioctl(fd, HDIO_GETGEO, &geometry))
193 numHeads = (uint32_t) geometry.heads;
194#endif
195 return numHeads;
196} // DiskIO::GetNumHeads();
197
198// Returns the number of sectors per track, according to the kernel, or 63
199// if the correct value can't be determined.
200uint32_t DiskIO::GetNumSecsPerTrack(void) {
201 uint32_t numSecs = 63;
202
203 #ifdef HDIO_GETGEO
204 struct hd_geometry geometry;
205
206 // If disk isn't open, try to open it....
207 if (!isOpen)
208 OpenForRead();
209
210 if (!ioctl(fd, HDIO_GETGEO, &geometry))
211 numSecs = (uint32_t) geometry.sectors;
212 #endif
213 return numSecs;
214} // DiskIO::GetNumSecsPerTrack()
215
srs5694add79a62010-01-26 15:59:58 -0500216// Resync disk caches so the OS uses the new partition table. This code varies
217// a lot from one OS to another.
srs5694a17fe692011-09-10 20:30:20 -0400218// Returns 1 on success, 0 if the kernel continues to use the old partition table.
219// (Note that for most OSes, the default of 0 is returned because I've not yet
220// looked into how to test for success in the underlying system calls...)
221int DiskIO::DiskSync(void) {
222 int i, retval = 0, platformFound = 0;
srs5694add79a62010-01-26 15:59:58 -0500223
224 // If disk isn't open, try to open it....
225 if (!isOpen) {
226 OpenForRead();
227 } // if
228
229 if (isOpen) {
230 sync();
srs56940741fa22013-01-09 12:55:40 -0500231#if defined(__APPLE__) || defined(__sun__)
srs5694fed16d02010-01-27 23:03:40 -0500232 cout << "Warning: The kernel may continue to use old or deleted partitions.\n"
233 << "You should reboot or remove the drive.\n";
srs5694add79a62010-01-26 15:59:58 -0500234 /* don't know if this helps
235 * it definitely will get things on disk though:
236 * http://topiks.org/mac-os-x/0321278542/ch12lev1sec8.html */
srs56940741fa22013-01-09 12:55:40 -0500237#ifdef __sun__
238 i = ioctl(fd, DKIOCFLUSHWRITECACHE);
239#else
srs5694add79a62010-01-26 15:59:58 -0500240 i = ioctl(fd, DKIOCSYNCHRONIZECACHE);
srs56940741fa22013-01-09 12:55:40 -0500241#endif
srs5694add79a62010-01-26 15:59:58 -0500242 platformFound++;
243#endif
srs569408bb0da2010-02-19 17:19:55 -0500244#if defined (__FreeBSD__) || defined (__FreeBSD_kernel__)
srs5694add79a62010-01-26 15:59:58 -0500245 sleep(2);
246 i = ioctl(fd, DIOCGFLUSH);
srs5694fed16d02010-01-27 23:03:40 -0500247 cout << "Warning: The kernel may continue to use old or deleted partitions.\n"
248 << "You should reboot or remove the drive.\n";
srs5694add79a62010-01-26 15:59:58 -0500249 platformFound++;
250#endif
251#ifdef __linux__
srs569400b6d7a2011-06-26 22:40:06 -0400252 sleep(1); // Theoretically unnecessary, but ioctl() fails sometimes if omitted....
253 fsync(fd);
srs5694add79a62010-01-26 15:59:58 -0500254 i = ioctl(fd, BLKRRPART);
srs5694a17fe692011-09-10 20:30:20 -0400255 if (i) {
srs5694fed16d02010-01-27 23:03:40 -0500256 cout << "Warning: The kernel is still using the old partition table.\n"
257 << "The new table will be used at the next reboot.\n";
srs5694a17fe692011-09-10 20:30:20 -0400258 } else {
259 retval = 1;
260 } // if/else
srs5694add79a62010-01-26 15:59:58 -0500261 platformFound++;
262#endif
263 if (platformFound == 0)
srs5694fed16d02010-01-27 23:03:40 -0500264 cerr << "Warning: Platform not recognized!\n";
srs5694add79a62010-01-26 15:59:58 -0500265 if (platformFound > 1)
srs5694fed16d02010-01-27 23:03:40 -0500266 cerr << "\nWarning: We seem to be running on multiple platforms!\n";
srs5694add79a62010-01-26 15:59:58 -0500267 } // if (isOpen)
srs5694a17fe692011-09-10 20:30:20 -0400268 return retval;
srs5694add79a62010-01-26 15:59:58 -0500269} // DiskIO::DiskSync()
270
271// Seek to the specified sector. Returns 1 on success, 0 on failure.
srs5694cb76c672010-02-11 22:22:22 -0500272// Note that seeking beyond the end of the file is NOT detected as a failure!
srs5694add79a62010-01-26 15:59:58 -0500273int DiskIO::Seek(uint64_t sector) {
274 int retval = 1;
275 off_t seekTo, sought;
276
277 // If disk isn't open, try to open it....
278 if (!isOpen) {
279 retval = OpenForRead();
280 } // if
281
282 if (isOpen) {
283 seekTo = sector * (uint64_t) GetBlockSize();
284 sought = lseek64(fd, seekTo, SEEK_SET);
285 if (sought != seekTo) {
286 retval = 0;
287 } // if
288 } // if
289 return retval;
290} // DiskIO::Seek()
291
292// A variant on the standard read() function. Done to work around
293// limitations in FreeBSD concerning the matching of the sector
294// size with the number of bytes read.
295// Returns the number of bytes read into buffer.
296int DiskIO::Read(void* buffer, int numBytes) {
srs5694cb76c672010-02-11 22:22:22 -0500297 int blockSize, numBlocks, retval = 0;
srs5694add79a62010-01-26 15:59:58 -0500298 char* tempSpace;
299
300 // If disk isn't open, try to open it....
301 if (!isOpen) {
302 OpenForRead();
303 } // if
304
305 if (isOpen) {
306 // Compute required space and allocate memory
307 blockSize = GetBlockSize();
308 if (numBytes <= blockSize) {
309 numBlocks = 1;
srs5694cb76c672010-02-11 22:22:22 -0500310 tempSpace = new char [blockSize];
srs5694add79a62010-01-26 15:59:58 -0500311 } else {
312 numBlocks = numBytes / blockSize;
srs5694cb76c672010-02-11 22:22:22 -0500313 if ((numBytes % blockSize) != 0)
314 numBlocks++;
315 tempSpace = new char [numBlocks * blockSize];
srs5694add79a62010-01-26 15:59:58 -0500316 } // if/else
srs56946aae2a92011-06-10 01:16:51 -0400317 if (tempSpace == NULL) {
318 cerr << "Unable to allocate memory in DiskIO::Read()! Terminating!\n";
319 exit(1);
320 } // if
srs5694add79a62010-01-26 15:59:58 -0500321
322 // Read the data into temporary space, then copy it to buffer
323 retval = read(fd, tempSpace, numBlocks * blockSize);
324 memcpy(buffer, tempSpace, numBytes);
srs5694add79a62010-01-26 15:59:58 -0500325
326 // Adjust the return value, if necessary....
327 if (((numBlocks * blockSize) != numBytes) && (retval > 0))
328 retval = numBytes;
329
srs5694cb76c672010-02-11 22:22:22 -0500330 delete[] tempSpace;
srs5694add79a62010-01-26 15:59:58 -0500331 } // if (isOpen)
332 return retval;
333} // DiskIO::Read()
334
335// A variant on the standard write() function. Done to work around
336// limitations in FreeBSD concerning the matching of the sector
337// size with the number of bytes read.
338// Returns the number of bytes written.
339int DiskIO::Write(void* buffer, int numBytes) {
340 int blockSize = 512, i, numBlocks, retval = 0;
341 char* tempSpace;
342
343 // If disk isn't open, try to open it....
344 if ((!isOpen) || (!openForWrite)) {
345 OpenForWrite();
346 } // if
347
348 if (isOpen) {
349 // Compute required space and allocate memory
350 blockSize = GetBlockSize();
351 if (numBytes <= blockSize) {
352 numBlocks = 1;
srs5694cb76c672010-02-11 22:22:22 -0500353 tempSpace = new char [blockSize];
srs5694add79a62010-01-26 15:59:58 -0500354 } else {
355 numBlocks = numBytes / blockSize;
356 if ((numBytes % blockSize) != 0) numBlocks++;
srs5694cb76c672010-02-11 22:22:22 -0500357 tempSpace = new char [numBlocks * blockSize];
srs5694add79a62010-01-26 15:59:58 -0500358 } // if/else
srs56946aae2a92011-06-10 01:16:51 -0400359 if (tempSpace == NULL) {
360 cerr << "Unable to allocate memory in DiskIO::Write()! Terminating!\n";
361 exit(1);
362 } // if
363
srs5694add79a62010-01-26 15:59:58 -0500364 // Copy the data to my own buffer, then write it
srs5694add79a62010-01-26 15:59:58 -0500365 memcpy(tempSpace, buffer, numBytes);
366 for (i = numBytes; i < numBlocks * blockSize; i++) {
367 tempSpace[i] = 0;
368 } // for
369 retval = write(fd, tempSpace, numBlocks * blockSize);
370
371 // Adjust the return value, if necessary....
372 if (((numBlocks * blockSize) != numBytes) && (retval > 0))
373 retval = numBytes;
374
srs5694cb76c672010-02-11 22:22:22 -0500375 delete[] tempSpace;
srs5694add79a62010-01-26 15:59:58 -0500376 } // if (isOpen)
377 return retval;
378} // DiskIO:Write()
379
380/**************************************************************************************
381 * *
382 * Below functions are lifted from various sources, as documented in comments before *
383 * each one. *
384 * *
385 **************************************************************************************/
386
387// The disksize function is taken from the Linux fdisk code and modified
388// greatly since then to enable FreeBSD and MacOS support, as well as to
389// return correct values for disk image files.
390uint64_t DiskIO::DiskSize(int *err) {
srs5694add79a62010-01-26 15:59:58 -0500391 uint64_t sectors = 0; // size in sectors
392 off_t bytes = 0; // size in bytes
393 struct stat64 st;
394 int platformFound = 0;
srs56940741fa22013-01-09 12:55:40 -0500395#ifdef __sun__
396 struct dk_minfo minfo;
397#endif
srs5694add79a62010-01-26 15:59:58 -0500398
399 // If disk isn't open, try to open it....
400 if (!isOpen) {
401 OpenForRead();
402 } // if
403
404 if (isOpen) {
405 // Note to self: I recall testing a simplified version of
406 // this code, similar to what's in the __APPLE__ block,
407 // on Linux, but I had some problems. IIRC, it ran OK on 32-bit
408 // systems but not on 64-bit. Keep this in mind in case of
409 // 32/64-bit issues on MacOS....
410#ifdef __APPLE__
411 *err = ioctl(fd, DKIOCGETBLOCKCOUNT, &sectors);
412 platformFound++;
413#endif
srs56940741fa22013-01-09 12:55:40 -0500414#ifdef __sun__
415 *err = ioctl(fd, DKIOCGMEDIAINFO, &minfo);
416 if (*err == 0)
417 sectors = minfo.dki_capacity;
418 platformFound++;
419#endif
srs569408bb0da2010-02-19 17:19:55 -0500420#if defined (__FreeBSD__) || defined (__FreeBSD_kernel__)
srs5694add79a62010-01-26 15:59:58 -0500421 *err = ioctl(fd, DIOCGMEDIASIZE, &bytes);
srs569408bb0da2010-02-19 17:19:55 -0500422 long long b = GetBlockSize();
srs5694add79a62010-01-26 15:59:58 -0500423 sectors = bytes / b;
424 platformFound++;
425#endif
426#ifdef __linux__
srs569408bb0da2010-02-19 17:19:55 -0500427 long sz;
428 long long b;
srs5694add79a62010-01-26 15:59:58 -0500429 *err = ioctl(fd, BLKGETSIZE, &sz);
430 if (*err) {
431 sectors = sz = 0;
432 } // if
srs569464cbd172011-03-01 22:03:54 -0500433 if ((!*err) || (errno == EFBIG)) {
srs5694add79a62010-01-26 15:59:58 -0500434 *err = ioctl(fd, BLKGETSIZE64, &b);
435 if (*err || b == 0 || b == sz)
436 sectors = sz;
437 else
438 sectors = (b >> 9);
439 } // if
440 // Unintuitively, the above returns values in 512-byte blocks, no
441 // matter what the underlying device's block size. Correct for this....
442 sectors /= (GetBlockSize() / 512);
443 platformFound++;
444#endif
445 if (platformFound != 1)
srs5694fed16d02010-01-27 23:03:40 -0500446 cerr << "Warning! We seem to be running on no known platform!\n";
srs5694add79a62010-01-26 15:59:58 -0500447
448 // The above methods have failed, so let's assume it's a regular
449 // file (a QEMU image, dd backup, or what have you) and see what
450 // fstat() gives us....
451 if ((sectors == 0) || (*err == -1)) {
452 if (fstat64(fd, &st) == 0) {
srs56949a46b042011-03-15 00:34:10 -0400453 bytes = st.st_size;
srs5694add79a62010-01-26 15:59:58 -0500454 if ((bytes % UINT64_C(512)) != 0)
srs5694fed16d02010-01-27 23:03:40 -0500455 cerr << "Warning: File size is not a multiple of 512 bytes!"
456 << " Misbehavior is likely!\n\a";
srs5694add79a62010-01-26 15:59:58 -0500457 sectors = bytes / UINT64_C(512);
458 } // if
459 } // if
460 } // if (isOpen)
461 return sectors;
462} // DiskIO::DiskSize()