blob: fb463f99fc0a07ef57199d78c0e1461331568952 [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
Aurimas Liutikasfcad0602016-05-10 19:16:10 -070016#ifndef __STDC_CONSTANT_MACROS
srs5694add79a62010-01-26 15:59:58 -050017#define __STDC_CONSTANT_MACROS
Aurimas Liutikasfcad0602016-05-10 19:16:10 -070018#endif
srs5694add79a62010-01-26 15:59:58 -050019
20#include <sys/ioctl.h>
srs5694fed16d02010-01-27 23:03:40 -050021#include <string.h>
srs5694add79a62010-01-26 15:59:58 -050022#include <string>
23#include <stdint.h>
Roderick W. Smith24bba6e2013-10-12 19:07:16 -040024#include <unistd.h>
srs5694add79a62010-01-26 15:59:58 -050025#include <errno.h>
26#include <fcntl.h>
27#include <sys/stat.h>
srs569434882942012-03-23 12:49:15 -040028#include <unistd.h>
srs5694bf8950c2011-03-12 01:23:12 -050029
30#ifdef __linux__
31#include "linux/hdreg.h"
32#endif
33
srs5694add79a62010-01-26 15:59:58 -050034#include <iostream>
35
srs5694add79a62010-01-26 15:59:58 -050036#include "diskio.h"
37
38using namespace std;
39
40// Returns the official "real" name for a shortened version of same.
41// Trivial here; more important in Windows
42void DiskIO::MakeRealName(void) {
43 realFilename = userFilename;
44} // DiskIO::MakeRealName()
45
srs569455d92612010-03-07 22:16:07 -050046// Open the currently on-record file for reading. Returns 1 if the file is
47// already open or is opened by this call, 0 if opening the file doesn't
48// work.
srs5694add79a62010-01-26 15:59:58 -050049int DiskIO::OpenForRead(void) {
50 int shouldOpen = 1;
srs56948f1b2d62010-05-23 13:07:19 -040051 struct stat64 st;
srs5694add79a62010-01-26 15:59:58 -050052
53 if (isOpen) { // file is already open
54 if (openForWrite) {
55 Close();
56 } else {
57 shouldOpen = 0;
58 } // if/else
59 } // if
60
61 if (shouldOpen) {
62 fd = open(realFilename.c_str(), O_RDONLY);
63 if (fd == -1) {
srs569455d92612010-03-07 22:16:07 -050064 cerr << "Problem opening " << realFilename << " for reading! Error is " << errno << ".\n";
65 if (errno == EACCES) // User is probably not running as root
srs5694fed16d02010-01-27 23:03:40 -050066 cerr << "You must run this program as root or use sudo!\n";
srs569455d92612010-03-07 22:16:07 -050067 if (errno == ENOENT)
68 cerr << "The specified file does not exist!\n";
srs5694add79a62010-01-26 15:59:58 -050069 realFilename = "";
70 userFilename = "";
71 isOpen = 0;
72 openForWrite = 0;
73 } else {
srs56948f1b2d62010-05-23 13:07:19 -040074 isOpen = 0;
srs5694add79a62010-01-26 15:59:58 -050075 openForWrite = 0;
srs56948f1b2d62010-05-23 13:07:19 -040076 if (fstat64(fd, &st) == 0) {
77 if (S_ISDIR(st.st_mode))
78 cerr << "The specified path is a directory!\n";
Aurimas Liutikasbdbab022017-03-07 09:50:36 -080079#if !defined(__FreeBSD__) && !defined(__APPLE__)
srs56948f1b2d62010-05-23 13:07:19 -040080 else if (S_ISCHR(st.st_mode))
81 cerr << "The specified path is a character device!\n";
82#endif
83 else if (S_ISFIFO(st.st_mode))
84 cerr << "The specified path is a FIFO!\n";
85 else if (S_ISSOCK(st.st_mode))
86 cerr << "The specified path is a socket!\n";
87 else
88 isOpen = 1;
89 } // if (fstat64()...)
srs5694add79a62010-01-26 15:59:58 -050090 } // if/else
91 } // if
92
93 return isOpen;
94} // DiskIO::OpenForRead(void)
95
96// An extended file-open function. This includes some system-specific checks.
97// Returns 1 if the file is open, 0 otherwise....
98int DiskIO::OpenForWrite(void) {
99 if ((isOpen) && (openForWrite))
100 return 1;
101
102 // Close the disk, in case it's already open for reading only....
103 Close();
104
105 // try to open the device; may fail....
106 fd = open(realFilename.c_str(), O_WRONLY | O_CREAT, S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH);
107#ifdef __APPLE__
108 // MacOS X requires a shared lock under some circumstances....
109 if (fd < 0) {
Roderick W. Smithe09ef882013-07-08 22:56:00 -0400110 cerr << "Warning: Devices opened with shared lock will not have their\npartition table automatically reloaded!\n";
srs5694fed16d02010-01-27 23:03:40 -0500111 fd = open(realFilename.c_str(), O_WRONLY | O_SHLOCK);
srs5694add79a62010-01-26 15:59:58 -0500112 } // if
113#endif
114 if (fd >= 0) {
115 isOpen = 1;
116 openForWrite = 1;
117 } else {
118 isOpen = 0;
119 openForWrite = 0;
120 } // if/else
121 return isOpen;
122} // DiskIO::OpenForWrite(void)
123
124// Close the disk device. Note that this does NOT erase the stored filenames,
125// so the file can be re-opened without specifying the filename.
126void DiskIO::Close(void) {
127 if (isOpen)
srs569408bb0da2010-02-19 17:19:55 -0500128 if (close(fd) < 0)
129 cerr << "Warning! Problem closing file!\n";
srs5694add79a62010-01-26 15:59:58 -0500130 isOpen = 0;
131 openForWrite = 0;
132} // DiskIO::Close()
133
134// Returns block size of device pointed to by fd file descriptor. If the ioctl
135// returns an error condition, print a warning but return a value of SECTOR_SIZE
srs569455d92612010-03-07 22:16:07 -0500136// (512). If the disk can't be opened at all, return a value of 0.
srs5694add79a62010-01-26 15:59:58 -0500137int DiskIO::GetBlockSize(void) {
138 int err = -1, blockSize = 0;
srs56940741fa22013-01-09 12:55:40 -0500139#ifdef __sun__
140 struct dk_minfo minfo;
141#endif
srs5694add79a62010-01-26 15:59:58 -0500142
143 // If disk isn't open, try to open it....
144 if (!isOpen) {
145 OpenForRead();
146 } // if
147
148 if (isOpen) {
149#ifdef __APPLE__
150 err = ioctl(fd, DKIOCGETBLOCKSIZE, &blockSize);
151#endif
srs56940741fa22013-01-09 12:55:40 -0500152#ifdef __sun__
153 err = ioctl(fd, DKIOCGMEDIAINFO, &minfo);
154 if (err == 0)
155 blockSize = minfo.dki_lbsize;
156#endif
srs569408bb0da2010-02-19 17:19:55 -0500157#if defined (__FreeBSD__) || defined (__FreeBSD_kernel__)
srs5694add79a62010-01-26 15:59:58 -0500158 err = ioctl(fd, DIOCGSECTORSIZE, &blockSize);
159#endif
160#ifdef __linux__
161 err = ioctl(fd, BLKSSZGET, &blockSize);
162#endif
163
164 if (err == -1) {
165 blockSize = SECTOR_SIZE;
166 // ENOTTY = inappropriate ioctl; probably being called on a disk image
167 // file, so don't display the warning message....
168 // 32-bit code returns EINVAL, I don't know why. I know I'm treading on
169 // thin ice here, but it should be OK in all but very weird cases....
170 if ((errno != ENOTTY) && (errno != EINVAL)) {
srs5694fed16d02010-01-27 23:03:40 -0500171 cerr << "\aError " << errno << " when determining sector size! Setting sector size to "
172 << SECTOR_SIZE << "\n";
srs569455d92612010-03-07 22:16:07 -0500173 cout << "Disk device is " << realFilename << "\n";
srs5694add79a62010-01-26 15:59:58 -0500174 } // if
175 } // if (err == -1)
176 } // if (isOpen)
177
178 return (blockSize);
179} // DiskIO::GetBlockSize()
180
srs5694bf8950c2011-03-12 01:23:12 -0500181// Returns the number of heads, according to the kernel, or 255 if the
182// correct value can't be determined.
183uint32_t DiskIO::GetNumHeads(void) {
184 uint32_t numHeads = 255;
185
186#ifdef HDIO_GETGEO
187 struct hd_geometry geometry;
188
189 // If disk isn't open, try to open it....
190 if (!isOpen)
191 OpenForRead();
192
193 if (!ioctl(fd, HDIO_GETGEO, &geometry))
194 numHeads = (uint32_t) geometry.heads;
195#endif
196 return numHeads;
197} // DiskIO::GetNumHeads();
198
199// Returns the number of sectors per track, according to the kernel, or 63
200// if the correct value can't be determined.
201uint32_t DiskIO::GetNumSecsPerTrack(void) {
202 uint32_t numSecs = 63;
203
204 #ifdef HDIO_GETGEO
205 struct hd_geometry geometry;
206
207 // If disk isn't open, try to open it....
208 if (!isOpen)
209 OpenForRead();
210
211 if (!ioctl(fd, HDIO_GETGEO, &geometry))
212 numSecs = (uint32_t) geometry.sectors;
213 #endif
214 return numSecs;
215} // DiskIO::GetNumSecsPerTrack()
216
srs5694add79a62010-01-26 15:59:58 -0500217// Resync disk caches so the OS uses the new partition table. This code varies
218// a lot from one OS to another.
srs5694a17fe692011-09-10 20:30:20 -0400219// Returns 1 on success, 0 if the kernel continues to use the old partition table.
220// (Note that for most OSes, the default of 0 is returned because I've not yet
221// looked into how to test for success in the underlying system calls...)
222int DiskIO::DiskSync(void) {
223 int i, retval = 0, platformFound = 0;
srs5694add79a62010-01-26 15:59:58 -0500224
225 // If disk isn't open, try to open it....
226 if (!isOpen) {
227 OpenForRead();
228 } // if
229
230 if (isOpen) {
231 sync();
srs56940741fa22013-01-09 12:55:40 -0500232#if defined(__APPLE__) || defined(__sun__)
srs5694fed16d02010-01-27 23:03:40 -0500233 cout << "Warning: The kernel may continue to use old or deleted partitions.\n"
234 << "You should reboot or remove the drive.\n";
srs5694add79a62010-01-26 15:59:58 -0500235 /* don't know if this helps
236 * it definitely will get things on disk though:
237 * http://topiks.org/mac-os-x/0321278542/ch12lev1sec8.html */
srs56940741fa22013-01-09 12:55:40 -0500238#ifdef __sun__
239 i = ioctl(fd, DKIOCFLUSHWRITECACHE);
240#else
srs5694add79a62010-01-26 15:59:58 -0500241 i = ioctl(fd, DKIOCSYNCHRONIZECACHE);
srs56940741fa22013-01-09 12:55:40 -0500242#endif
srs5694add79a62010-01-26 15:59:58 -0500243 platformFound++;
244#endif
srs569408bb0da2010-02-19 17:19:55 -0500245#if defined (__FreeBSD__) || defined (__FreeBSD_kernel__)
srs5694add79a62010-01-26 15:59:58 -0500246 sleep(2);
247 i = ioctl(fd, DIOCGFLUSH);
srs5694fed16d02010-01-27 23:03:40 -0500248 cout << "Warning: The kernel may continue to use old or deleted partitions.\n"
249 << "You should reboot or remove the drive.\n";
srs5694add79a62010-01-26 15:59:58 -0500250 platformFound++;
251#endif
252#ifdef __linux__
srs569400b6d7a2011-06-26 22:40:06 -0400253 sleep(1); // Theoretically unnecessary, but ioctl() fails sometimes if omitted....
254 fsync(fd);
srs5694add79a62010-01-26 15:59:58 -0500255 i = ioctl(fd, BLKRRPART);
srs5694a17fe692011-09-10 20:30:20 -0400256 if (i) {
srs5694fed16d02010-01-27 23:03:40 -0500257 cout << "Warning: The kernel is still using the old partition table.\n"
Aurimas Liutikasbdbab022017-03-07 09:50:36 -0800258 << "The new table will be used at the next reboot.\n";
srs5694a17fe692011-09-10 20:30:20 -0400259 } else {
260 retval = 1;
261 } // if/else
srs5694add79a62010-01-26 15:59:58 -0500262 platformFound++;
263#endif
264 if (platformFound == 0)
srs5694fed16d02010-01-27 23:03:40 -0500265 cerr << "Warning: Platform not recognized!\n";
srs5694add79a62010-01-26 15:59:58 -0500266 if (platformFound > 1)
srs5694fed16d02010-01-27 23:03:40 -0500267 cerr << "\nWarning: We seem to be running on multiple platforms!\n";
srs5694add79a62010-01-26 15:59:58 -0500268 } // if (isOpen)
srs5694a17fe692011-09-10 20:30:20 -0400269 return retval;
srs5694add79a62010-01-26 15:59:58 -0500270} // DiskIO::DiskSync()
271
272// Seek to the specified sector. Returns 1 on success, 0 on failure.
srs5694cb76c672010-02-11 22:22:22 -0500273// Note that seeking beyond the end of the file is NOT detected as a failure!
srs5694add79a62010-01-26 15:59:58 -0500274int DiskIO::Seek(uint64_t sector) {
275 int retval = 1;
Aurimas Liutikasbdbab022017-03-07 09:50:36 -0800276 off64_t seekTo, sought;
srs5694add79a62010-01-26 15:59:58 -0500277
278 // If disk isn't open, try to open it....
279 if (!isOpen) {
280 retval = OpenForRead();
281 } // if
282
283 if (isOpen) {
284 seekTo = sector * (uint64_t) GetBlockSize();
285 sought = lseek64(fd, seekTo, SEEK_SET);
286 if (sought != seekTo) {
287 retval = 0;
288 } // if
289 } // if
290 return retval;
291} // DiskIO::Seek()
292
293// A variant on the standard read() function. Done to work around
294// limitations in FreeBSD concerning the matching of the sector
295// size with the number of bytes read.
296// Returns the number of bytes read into buffer.
297int DiskIO::Read(void* buffer, int numBytes) {
srs5694cb76c672010-02-11 22:22:22 -0500298 int blockSize, numBlocks, retval = 0;
srs5694add79a62010-01-26 15:59:58 -0500299 char* tempSpace;
300
301 // If disk isn't open, try to open it....
302 if (!isOpen) {
303 OpenForRead();
304 } // if
305
306 if (isOpen) {
307 // Compute required space and allocate memory
308 blockSize = GetBlockSize();
309 if (numBytes <= blockSize) {
310 numBlocks = 1;
srs5694cb76c672010-02-11 22:22:22 -0500311 tempSpace = new char [blockSize];
srs5694add79a62010-01-26 15:59:58 -0500312 } else {
313 numBlocks = numBytes / blockSize;
srs5694cb76c672010-02-11 22:22:22 -0500314 if ((numBytes % blockSize) != 0)
315 numBlocks++;
316 tempSpace = new char [numBlocks * blockSize];
srs5694add79a62010-01-26 15:59:58 -0500317 } // if/else
srs56946aae2a92011-06-10 01:16:51 -0400318 if (tempSpace == NULL) {
319 cerr << "Unable to allocate memory in DiskIO::Read()! Terminating!\n";
320 exit(1);
321 } // if
srs5694add79a62010-01-26 15:59:58 -0500322
323 // Read the data into temporary space, then copy it to buffer
324 retval = read(fd, tempSpace, numBlocks * blockSize);
325 memcpy(buffer, tempSpace, numBytes);
srs5694add79a62010-01-26 15:59:58 -0500326
327 // Adjust the return value, if necessary....
328 if (((numBlocks * blockSize) != numBytes) && (retval > 0))
329 retval = numBytes;
330
srs5694cb76c672010-02-11 22:22:22 -0500331 delete[] tempSpace;
srs5694add79a62010-01-26 15:59:58 -0500332 } // if (isOpen)
333 return retval;
334} // DiskIO::Read()
335
336// A variant on the standard write() function. Done to work around
337// limitations in FreeBSD concerning the matching of the sector
338// size with the number of bytes read.
339// Returns the number of bytes written.
340int DiskIO::Write(void* buffer, int numBytes) {
341 int blockSize = 512, i, numBlocks, retval = 0;
342 char* tempSpace;
343
344 // If disk isn't open, try to open it....
345 if ((!isOpen) || (!openForWrite)) {
346 OpenForWrite();
347 } // if
348
349 if (isOpen) {
350 // Compute required space and allocate memory
351 blockSize = GetBlockSize();
352 if (numBytes <= blockSize) {
353 numBlocks = 1;
srs5694cb76c672010-02-11 22:22:22 -0500354 tempSpace = new char [blockSize];
srs5694add79a62010-01-26 15:59:58 -0500355 } else {
356 numBlocks = numBytes / blockSize;
357 if ((numBytes % blockSize) != 0) numBlocks++;
srs5694cb76c672010-02-11 22:22:22 -0500358 tempSpace = new char [numBlocks * blockSize];
srs5694add79a62010-01-26 15:59:58 -0500359 } // if/else
srs56946aae2a92011-06-10 01:16:51 -0400360 if (tempSpace == NULL) {
361 cerr << "Unable to allocate memory in DiskIO::Write()! Terminating!\n";
362 exit(1);
363 } // if
364
srs5694add79a62010-01-26 15:59:58 -0500365 // Copy the data to my own buffer, then write it
srs5694add79a62010-01-26 15:59:58 -0500366 memcpy(tempSpace, buffer, numBytes);
367 for (i = numBytes; i < numBlocks * blockSize; i++) {
368 tempSpace[i] = 0;
369 } // for
370 retval = write(fd, tempSpace, numBlocks * blockSize);
371
372 // Adjust the return value, if necessary....
373 if (((numBlocks * blockSize) != numBytes) && (retval > 0))
374 retval = numBytes;
375
srs5694cb76c672010-02-11 22:22:22 -0500376 delete[] tempSpace;
srs5694add79a62010-01-26 15:59:58 -0500377 } // if (isOpen)
378 return retval;
379} // DiskIO:Write()
380
381/**************************************************************************************
382 * *
383 * Below functions are lifted from various sources, as documented in comments before *
384 * each one. *
385 * *
386 **************************************************************************************/
387
388// The disksize function is taken from the Linux fdisk code and modified
389// greatly since then to enable FreeBSD and MacOS support, as well as to
390// return correct values for disk image files.
391uint64_t DiskIO::DiskSize(int *err) {
srs5694add79a62010-01-26 15:59:58 -0500392 uint64_t sectors = 0; // size in sectors
393 off_t bytes = 0; // size in bytes
394 struct stat64 st;
395 int platformFound = 0;
srs56940741fa22013-01-09 12:55:40 -0500396#ifdef __sun__
397 struct dk_minfo minfo;
398#endif
srs5694add79a62010-01-26 15:59:58 -0500399
400 // If disk isn't open, try to open it....
401 if (!isOpen) {
402 OpenForRead();
403 } // if
404
405 if (isOpen) {
406 // Note to self: I recall testing a simplified version of
407 // this code, similar to what's in the __APPLE__ block,
408 // on Linux, but I had some problems. IIRC, it ran OK on 32-bit
409 // systems but not on 64-bit. Keep this in mind in case of
410 // 32/64-bit issues on MacOS....
411#ifdef __APPLE__
412 *err = ioctl(fd, DKIOCGETBLOCKCOUNT, &sectors);
413 platformFound++;
414#endif
srs56940741fa22013-01-09 12:55:40 -0500415#ifdef __sun__
416 *err = ioctl(fd, DKIOCGMEDIAINFO, &minfo);
417 if (*err == 0)
418 sectors = minfo.dki_capacity;
419 platformFound++;
420#endif
srs569408bb0da2010-02-19 17:19:55 -0500421#if defined (__FreeBSD__) || defined (__FreeBSD_kernel__)
srs5694add79a62010-01-26 15:59:58 -0500422 *err = ioctl(fd, DIOCGMEDIASIZE, &bytes);
srs569408bb0da2010-02-19 17:19:55 -0500423 long long b = GetBlockSize();
srs5694add79a62010-01-26 15:59:58 -0500424 sectors = bytes / b;
425 platformFound++;
426#endif
427#ifdef __linux__
srs569408bb0da2010-02-19 17:19:55 -0500428 long sz;
429 long long b;
srs5694add79a62010-01-26 15:59:58 -0500430 *err = ioctl(fd, BLKGETSIZE, &sz);
431 if (*err) {
432 sectors = sz = 0;
433 } // if
srs569464cbd172011-03-01 22:03:54 -0500434 if ((!*err) || (errno == EFBIG)) {
srs5694add79a62010-01-26 15:59:58 -0500435 *err = ioctl(fd, BLKGETSIZE64, &b);
436 if (*err || b == 0 || b == sz)
437 sectors = sz;
438 else
439 sectors = (b >> 9);
440 } // if
441 // Unintuitively, the above returns values in 512-byte blocks, no
442 // matter what the underlying device's block size. Correct for this....
443 sectors /= (GetBlockSize() / 512);
444 platformFound++;
445#endif
446 if (platformFound != 1)
srs5694fed16d02010-01-27 23:03:40 -0500447 cerr << "Warning! We seem to be running on no known platform!\n";
srs5694add79a62010-01-26 15:59:58 -0500448
449 // The above methods have failed, so let's assume it's a regular
450 // file (a QEMU image, dd backup, or what have you) and see what
451 // fstat() gives us....
452 if ((sectors == 0) || (*err == -1)) {
453 if (fstat64(fd, &st) == 0) {
srs56949a46b042011-03-15 00:34:10 -0400454 bytes = st.st_size;
srs5694add79a62010-01-26 15:59:58 -0500455 if ((bytes % UINT64_C(512)) != 0)
srs5694fed16d02010-01-27 23:03:40 -0500456 cerr << "Warning: File size is not a multiple of 512 bytes!"
457 << " Misbehavior is likely!\n\a";
srs5694add79a62010-01-26 15:59:58 -0500458 sectors = bytes / UINT64_C(512);
459 } // if
460 } // if
461 } // if (isOpen)
462 return sectors;
463} // DiskIO::DiskSize()