blob: af71cdb8418d78d1b8e7e28258d080ebd8cf5204 [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";
Aurimas Liutikas74b74902016-05-10 18:53:54 -070077#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"
Aurimas Liutikas74b74902016-05-10 18:53:54 -0700257 << "The new table will be used at the next reboot or after you\n"
258 << "run partprobe(8) or kpartx(8)\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 Liutikas74b74902016-05-10 18:53:54 -0700276 off_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()