]> git.proxmox.com Git - mirror_smartmontools-debian.git/blob - atacmds.cpp
Update to Standards-Version 3.9.5, no changes need
[mirror_smartmontools-debian.git] / atacmds.cpp
1 /*
2 * atacmds.cpp
3 *
4 * Home page of code is: http://smartmontools.sourceforge.net
5 *
6 * Copyright (C) 2002-11 Bruce Allen <smartmontools-support@lists.sourceforge.net>
7 * Copyright (C) 2008-14 Christian Franke <smartmontools-support@lists.sourceforge.net>
8 * Copyright (C) 1999-2000 Michael Cornwell <cornwell@acm.org>
9 * Copyright (C) 2000 Andre Hedrick <andre@linux-ide.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * You should have received a copy of the GNU General Public License
17 * (for example COPYING); If not, see <http://www.gnu.org/licenses/>.
18 *
19 * This code was originally developed as a Senior Thesis by Michael Cornwell
20 * at the Concurrent Systems Laboratory (now part of the Storage Systems
21 * Research Center), Jack Baskin School of Engineering, University of
22 * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
23 *
24 */
25
26 #include <stdio.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <stdlib.h>
30 #include <ctype.h>
31
32 #include "config.h"
33 #include "int64.h"
34 #include "atacmds.h"
35 #include "utility.h"
36 #include "dev_ata_cmd_set.h" // for parsed_ata_device
37
38 const char * atacmds_cpp_cvsid = "$Id: atacmds.cpp 3971 2014-07-23 18:57:55Z chrfranke $"
39 ATACMDS_H_CVSID;
40
41 // Print ATA debug messages?
42 unsigned char ata_debugmode = 0;
43
44 // Suppress serial number?
45 // (also used in scsiprint.cpp)
46 bool dont_print_serial_number = false;
47
48
49 #define SMART_CYL_LOW 0x4F
50 #define SMART_CYL_HI 0xC2
51
52 // SMART RETURN STATUS yields SMART_CYL_HI,SMART_CYL_LOW to indicate drive
53 // is healthy and SRET_STATUS_HI_EXCEEDED,SRET_STATUS_MID_EXCEEDED to
54 // indicate that a threshhold exceeded condition has been detected.
55 // Those values (byte pairs) are placed in ATA register "LBA 23:8".
56 #define SRET_STATUS_HI_EXCEEDED 0x2C
57 #define SRET_STATUS_MID_EXCEEDED 0xF4
58
59
60 // Get ID and increase flag of current pending or offline
61 // uncorrectable attribute.
62 unsigned char get_unc_attr_id(bool offline, const ata_vendor_attr_defs & defs,
63 bool & increase)
64 {
65 unsigned char id = (!offline ? 197 : 198);
66 const ata_vendor_attr_defs::entry & def = defs[id];
67 if (def.flags & ATTRFLAG_INCREASING)
68 increase = true; // '-v 19[78],increasing' option
69 else if (def.name.empty() || (id == 198 && def.name == "Offline_Scan_UNC_SectCt"))
70 increase = false; // no or '-v 198,offlinescanuncsectorct' option
71 else
72 id = 0; // other '-v 19[78],...' option
73 return id;
74 }
75
76 #if 0 // TODO: never used
77 // This are the meanings of the Self-test failure checkpoint byte.
78 // This is in the self-test log at offset 4 bytes into the self-test
79 // descriptor and in the SMART READ DATA structure at byte offset
80 // 371. These codes are not well documented. The meanings returned by
81 // this routine are used (at least) by Maxtor and IBM. Returns NULL if
82 // not recognized. Currently the maximum length is 15 bytes.
83 const char *SelfTestFailureCodeName(unsigned char which){
84
85 switch (which) {
86 case 0:
87 return "Write_Test";
88 case 1:
89 return "Servo_Basic";
90 case 2:
91 return "Servo_Random";
92 case 3:
93 return "G-list_Scan";
94 case 4:
95 return "Handling_Damage";
96 case 5:
97 return "Read_Scan";
98 default:
99 return NULL;
100 }
101 }
102 #endif
103
104
105 // Table of raw print format names
106 struct format_name_entry
107 {
108 const char * name;
109 ata_attr_raw_format format;
110 };
111
112 const format_name_entry format_names[] = {
113 {"raw8" , RAWFMT_RAW8},
114 {"raw16" , RAWFMT_RAW16},
115 {"raw48" , RAWFMT_RAW48},
116 {"hex48" , RAWFMT_HEX48},
117 {"raw56" , RAWFMT_RAW56},
118 {"hex56" , RAWFMT_HEX56},
119 {"raw64" , RAWFMT_RAW64},
120 {"hex64" , RAWFMT_HEX64},
121 {"raw16(raw16)" , RAWFMT_RAW16_OPT_RAW16},
122 {"raw16(avg16)" , RAWFMT_RAW16_OPT_AVG16},
123 {"raw24(raw8)" , RAWFMT_RAW24_OPT_RAW8},
124 {"raw24/raw24" , RAWFMT_RAW24_DIV_RAW24},
125 {"raw24/raw32" , RAWFMT_RAW24_DIV_RAW32},
126 {"sec2hour" , RAWFMT_SEC2HOUR},
127 {"min2hour" , RAWFMT_MIN2HOUR},
128 {"halfmin2hour" , RAWFMT_HALFMIN2HOUR},
129 {"msec24hour32" , RAWFMT_MSEC24_HOUR32},
130 {"tempminmax" , RAWFMT_TEMPMINMAX},
131 {"temp10x" , RAWFMT_TEMP10X},
132 };
133
134 const unsigned num_format_names = sizeof(format_names)/sizeof(format_names[0]);
135
136 // Table to map old to new '-v' option arguments
137 const char * const map_old_vendor_opts[][2] = {
138 { "9,halfminutes" , "9,halfmin2hour,Power_On_Half_Minutes"},
139 { "9,minutes" , "9,min2hour,Power_On_Minutes"},
140 { "9,seconds" , "9,sec2hour,Power_On_Seconds"},
141 { "9,temp" , "9,tempminmax,Temperature_Celsius"},
142 {"192,emergencyretractcyclect" , "192,raw48,Emerg_Retract_Cycle_Ct"},
143 {"193,loadunload" , "193,raw24/raw24"},
144 {"194,10xCelsius" , "194,temp10x,Temperature_Celsius_x10"},
145 {"194,unknown" , "194,raw48,Unknown_Attribute"},
146 {"197,increasing" , "197,raw48+,Total_Pending_Sectors"}, // '+' sets flag
147 {"198,offlinescanuncsectorct" , "198,raw48,Offline_Scan_UNC_SectCt"}, // see also get_unc_attr_id() above
148 {"198,increasing" , "198,raw48+,Total_Offl_Uncorrectabl"}, // '+' sets flag
149 {"200,writeerrorcount" , "200,raw48,Write_Error_Count"},
150 {"201,detectedtacount" , "201,raw48,Detected_TA_Count"},
151 {"220,temp" , "220,tempminmax,Temperature_Celsius"},
152 };
153
154 const unsigned num_old_vendor_opts = sizeof(map_old_vendor_opts)/sizeof(map_old_vendor_opts[0]);
155
156 // Parse vendor attribute display def (-v option).
157 // Return false on error.
158 bool parse_attribute_def(const char * opt, ata_vendor_attr_defs & defs,
159 ata_vendor_def_prior priority)
160 {
161 // Map old -> new options
162 unsigned i;
163 for (i = 0; i < num_old_vendor_opts; i++) {
164 if (!strcmp(opt, map_old_vendor_opts[i][0])) {
165 opt = map_old_vendor_opts[i][1];
166 break;
167 }
168 }
169
170 // Parse option
171 int len = strlen(opt);
172 int id = 0, n1 = -1, n2 = -1;
173 char fmtname[32+1], attrname[32+1];
174 if (opt[0] == 'N') {
175 // "N,format[,name]"
176 if (!( sscanf(opt, "N,%32[^,]%n,%32[^,]%n", fmtname, &n1, attrname, &n2) >= 1
177 && (n1 == len || n2 == len)))
178 return false;
179 }
180 else {
181 // "id,format[+][,name]"
182 if (!( sscanf(opt, "%d,%32[^,]%n,%32[^,]%n", &id, fmtname, &n1, attrname, &n2) >= 2
183 && 1 <= id && id <= 255 && (n1 == len || n2 == len)))
184 return false;
185 }
186 if (n1 == len)
187 attrname[0] = 0;
188
189 unsigned flags = 0;
190 // For "-v 19[78],increasing" above
191 if (fmtname[strlen(fmtname)-1] == '+') {
192 fmtname[strlen(fmtname)-1] = 0;
193 flags = ATTRFLAG_INCREASING;
194 }
195
196 // Split "format[:byteorder]"
197 char byteorder[8+1] = "";
198 if (strchr(fmtname, ':')) {
199 n1 = n2 = -1;
200 if (!( sscanf(fmtname, "%*[^:]%n:%8[012345rvwz]%n", &n1, byteorder, &n2) >= 1
201 && n2 == (int)strlen(fmtname)))
202 return false;
203 fmtname[n1] = 0;
204 if (strchr(byteorder, 'v'))
205 flags |= (ATTRFLAG_NO_NORMVAL|ATTRFLAG_NO_WORSTVAL);
206 if (strchr(byteorder, 'w'))
207 flags |= ATTRFLAG_NO_WORSTVAL;
208 }
209
210 // Find format name
211 for (i = 0; ; i++) {
212 if (i >= num_format_names)
213 return false; // Not found
214 if (!strcmp(fmtname, format_names[i].name))
215 break;
216 }
217 ata_attr_raw_format format = format_names[i].format;
218
219 // 64-bit formats use the normalized and worst value bytes.
220 if (!*byteorder && (format == RAWFMT_RAW64 || format == RAWFMT_HEX64))
221 flags |= (ATTRFLAG_NO_NORMVAL|ATTRFLAG_NO_WORSTVAL);
222
223 if (!id) {
224 // "N,format" -> set format for all entries
225 for (i = 0; i < MAX_ATTRIBUTE_NUM; i++) {
226 if (defs[i].priority >= priority)
227 continue;
228 if (attrname[0])
229 defs[i].name = attrname;
230 defs[i].priority = priority;
231 defs[i].raw_format = format;
232 defs[i].flags = flags;
233 snprintf(defs[i].byteorder, sizeof(defs[i].byteorder), "%s", byteorder);
234 }
235 }
236 else if (defs[id].priority <= priority) {
237 // "id,format[,name]"
238 if (attrname[0])
239 defs[id].name = attrname;
240 defs[id].raw_format = format;
241 defs[id].priority = priority;
242 defs[id].flags = flags;
243 snprintf(defs[id].byteorder, sizeof(defs[id].byteorder), "%s", byteorder);
244 }
245
246 return true;
247 }
248
249
250 // Return a multiline string containing a list of valid arguments for
251 // parse_attribute_def(). The strings are preceeded by tabs and followed
252 // (except for the last) by newlines.
253 std::string create_vendor_attribute_arg_list()
254 {
255 std::string s;
256 unsigned i;
257 for (i = 0; i < num_format_names; i++)
258 s += strprintf("%s\tN,%s[:012345rvwz][,ATTR_NAME]",
259 (i>0 ? "\n" : ""), format_names[i].name);
260 for (i = 0; i < num_old_vendor_opts; i++)
261 s += strprintf("\n\t%s", map_old_vendor_opts[i][0]);
262 return s;
263 }
264
265
266 // Parse firmwarebug def (-F option).
267 // Return false on error.
268 bool parse_firmwarebug_def(const char * opt, firmwarebug_defs & firmwarebugs)
269 {
270 if (!strcmp(opt, "none"))
271 firmwarebugs.set(BUG_NONE);
272 else if (!strcmp(opt, "nologdir"))
273 firmwarebugs.set(BUG_NOLOGDIR);
274 else if (!strcmp(opt, "samsung"))
275 firmwarebugs.set(BUG_SAMSUNG);
276 else if (!strcmp(opt, "samsung2"))
277 firmwarebugs.set(BUG_SAMSUNG2);
278 else if (!strcmp(opt, "samsung3"))
279 firmwarebugs.set(BUG_SAMSUNG3);
280 else if (!strcmp(opt, "xerrorlba"))
281 firmwarebugs.set(BUG_XERRORLBA);
282 else
283 return false;
284 return true;
285 }
286
287 // Return a string of valid argument words for parse_firmwarebug_def()
288 const char * get_valid_firmwarebug_args()
289 {
290 return "none, nologdir, samsung, samsung2, samsung3, xerrorlba";
291 }
292
293
294 // swap two bytes. Point to low address
295 void swap2(char *location){
296 char tmp=*location;
297 *location=*(location+1);
298 *(location+1)=tmp;
299 return;
300 }
301
302 // swap four bytes. Point to low address
303 void swap4(char *location){
304 char tmp=*location;
305 *location=*(location+3);
306 *(location+3)=tmp;
307 swap2(location+1);
308 return;
309 }
310
311 // swap eight bytes. Points to low address
312 void swap8(char *location){
313 char tmp=*location;
314 *location=*(location+7);
315 *(location+7)=tmp;
316 tmp=*(location+1);
317 *(location+1)=*(location+6);
318 *(location+6)=tmp;
319 swap4(location+2);
320 return;
321 }
322
323 // Invalidate serial number and WWN and adjust checksum in IDENTIFY data
324 static void invalidate_serno(ata_identify_device * id)
325 {
326 unsigned char sum = 0;
327 unsigned i;
328 for (i = 0; i < sizeof(id->serial_no); i++) {
329 sum += id->serial_no[i]; sum -= id->serial_no[i] = 'X';
330 }
331 unsigned char * b = (unsigned char *)id;
332 for (i = 2*108; i < 2*112; i++) { // words108-111: WWN
333 sum += b[i]; sum -= b[i] = 0x00;
334 }
335
336 #ifndef __NetBSD__
337 bool must_swap = !!isbigendian();
338 if (must_swap)
339 swapx(id->words088_255+255-88);
340 #endif
341 if ((id->words088_255[255-88] & 0x00ff) == 0x00a5)
342 id->words088_255[255-88] += sum << 8;
343 #ifndef __NetBSD__
344 if (must_swap)
345 swapx(id->words088_255+255-88);
346 #endif
347 }
348
349 static const char * const commandstrings[]={
350 "SMART ENABLE",
351 "SMART DISABLE",
352 "SMART AUTOMATIC ATTRIBUTE SAVE",
353 "SMART IMMEDIATE OFFLINE",
354 "SMART AUTO OFFLINE",
355 "SMART STATUS",
356 "SMART STATUS CHECK",
357 "SMART READ ATTRIBUTE VALUES",
358 "SMART READ ATTRIBUTE THRESHOLDS",
359 "SMART READ LOG",
360 "IDENTIFY DEVICE",
361 "IDENTIFY PACKET DEVICE",
362 "CHECK POWER MODE",
363 "SMART WRITE LOG",
364 "WARNING (UNDEFINED COMMAND -- CONTACT DEVELOPERS AT " PACKAGE_BUGREPORT ")\n"
365 };
366
367
368 static const char * preg(const ata_register & r, char (& buf)[8])
369 {
370 if (!r.is_set())
371 //return "n/a ";
372 return "....";
373 snprintf(buf, sizeof(buf), "0x%02x", r.val());
374 return buf;
375 }
376
377 static void print_regs(const char * prefix, const ata_in_regs & r, const char * suffix = "\n")
378 {
379 char bufs[7][8];
380 pout("%s FR=%s, SC=%s, LL=%s, LM=%s, LH=%s, DEV=%s, CMD=%s%s", prefix,
381 preg(r.features, bufs[0]), preg(r.sector_count, bufs[1]), preg(r.lba_low, bufs[2]),
382 preg(r.lba_mid, bufs[3]), preg(r.lba_high, bufs[4]), preg(r.device, bufs[5]),
383 preg(r.command, bufs[6]), suffix);
384 }
385
386 static void print_regs(const char * prefix, const ata_out_regs & r, const char * suffix = "\n")
387 {
388 char bufs[7][8];
389 pout("%sERR=%s, SC=%s, LL=%s, LM=%s, LH=%s, DEV=%s, STS=%s%s", prefix,
390 preg(r.error, bufs[0]), preg(r.sector_count, bufs[1]), preg(r.lba_low, bufs[2]),
391 preg(r.lba_mid, bufs[3]), preg(r.lba_high, bufs[4]), preg(r.device, bufs[5]),
392 preg(r.status, bufs[6]), suffix);
393 }
394
395 static void prettyprint(const unsigned char *p, const char *name){
396 pout("\n===== [%s] DATA START (BASE-16) =====\n", name);
397 for (int i=0; i<512; i+=16, p+=16)
398 #define P(n) (' ' <= p[n] && p[n] <= '~' ? (int)p[n] : '.')
399 // print complete line to avoid slow tty output and extra lines in syslog.
400 pout("%03d-%03d: %02x %02x %02x %02x %02x %02x %02x %02x "
401 "%02x %02x %02x %02x %02x %02x %02x %02x"
402 " |%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c|"
403 "%c",
404 i, i+16-1,
405 p[ 0], p[ 1], p[ 2], p[ 3], p[ 4], p[ 5], p[ 6], p[ 7],
406 p[ 8], p[ 9], p[10], p[11], p[12], p[13], p[14], p[15],
407 P( 0), P( 1), P( 2), P( 3), P( 4), P( 5), P( 6), P( 7),
408 P( 8), P( 9), P(10), P(11), P(12), P(13), P(14), P(15),
409 '\n');
410 #undef P
411 pout("===== [%s] DATA END (512 Bytes) =====\n\n", name);
412 }
413
414 // This function provides the pretty-print reporting for SMART
415 // commands: it implements the various -r "reporting" options for ATA
416 // ioctls.
417 int smartcommandhandler(ata_device * device, smart_command_set command, int select, char *data){
418 // TODO: Rework old stuff below
419 // This conditional is true for commands that return data
420 int getsdata=(command==PIDENTIFY ||
421 command==IDENTIFY ||
422 command==READ_LOG ||
423 command==READ_THRESHOLDS ||
424 command==READ_VALUES ||
425 command==CHECK_POWER_MODE);
426
427 int sendsdata=(command==WRITE_LOG);
428
429 // If reporting is enabled, say what the command will be before it's executed
430 if (ata_debugmode) {
431 // conditional is true for commands that use parameters
432 int usesparam=(command==READ_LOG ||
433 command==AUTO_OFFLINE ||
434 command==AUTOSAVE ||
435 command==IMMEDIATE_OFFLINE ||
436 command==WRITE_LOG);
437
438 pout("\nREPORT-IOCTL: Device=%s Command=%s", device->get_dev_name(), commandstrings[command]);
439 if (usesparam)
440 pout(" InputParameter=%d\n", select);
441 else
442 pout("\n");
443 }
444
445 if ((getsdata || sendsdata) && !data){
446 pout("REPORT-IOCTL: Unable to execute command %s : data destination address is NULL\n", commandstrings[command]);
447 return -1;
448 }
449
450 // The reporting is cleaner, and we will find coding bugs faster, if
451 // the commands that failed clearly return empty (zeroed) data
452 // structures
453 if (getsdata) {
454 if (command==CHECK_POWER_MODE)
455 data[0]=0;
456 else
457 memset(data, '\0', 512);
458 }
459
460
461 // if requested, pretty-print the input data structure
462 if (ata_debugmode > 1 && sendsdata)
463 //pout("REPORT-IOCTL: Device=%s Command=%s\n", device->get_dev_name(), commandstrings[command]);
464 prettyprint((unsigned char *)data, commandstrings[command]);
465
466 // now execute the command
467 int retval = -1;
468 {
469 ata_cmd_in in;
470 // Set common register values
471 switch (command) {
472 default: // SMART commands
473 in.in_regs.command = ATA_SMART_CMD;
474 in.in_regs.lba_high = SMART_CYL_HI; in.in_regs.lba_mid = SMART_CYL_LOW;
475 break;
476 case IDENTIFY: case PIDENTIFY: case CHECK_POWER_MODE: // Non SMART commands
477 break;
478 }
479 // Set specific values
480 switch (command) {
481 case IDENTIFY:
482 in.in_regs.command = ATA_IDENTIFY_DEVICE;
483 in.set_data_in(data, 1);
484 break;
485 case PIDENTIFY:
486 in.in_regs.command = ATA_IDENTIFY_PACKET_DEVICE;
487 in.set_data_in(data, 1);
488 break;
489 case CHECK_POWER_MODE:
490 in.in_regs.command = ATA_CHECK_POWER_MODE;
491 in.out_needed.sector_count = true; // Powermode returned here
492 break;
493 case READ_VALUES:
494 in.in_regs.features = ATA_SMART_READ_VALUES;
495 in.set_data_in(data, 1);
496 break;
497 case READ_THRESHOLDS:
498 in.in_regs.features = ATA_SMART_READ_THRESHOLDS;
499 in.in_regs.lba_low = 1; // TODO: CORRECT ???
500 in.set_data_in(data, 1);
501 break;
502 case READ_LOG:
503 in.in_regs.features = ATA_SMART_READ_LOG_SECTOR;
504 in.in_regs.lba_low = select;
505 in.set_data_in(data, 1);
506 break;
507 case WRITE_LOG:
508 in.in_regs.features = ATA_SMART_WRITE_LOG_SECTOR;
509 in.in_regs.lba_low = select;
510 in.set_data_out(data, 1);
511 break;
512 case ENABLE:
513 in.in_regs.features = ATA_SMART_ENABLE;
514 in.in_regs.lba_low = 1; // TODO: CORRECT ???
515 break;
516 case DISABLE:
517 in.in_regs.features = ATA_SMART_DISABLE;
518 in.in_regs.lba_low = 1; // TODO: CORRECT ???
519 break;
520 case STATUS_CHECK:
521 in.out_needed.lba_high = in.out_needed.lba_mid = true; // Status returned here
522 case STATUS:
523 in.in_regs.features = ATA_SMART_STATUS;
524 break;
525 case AUTO_OFFLINE:
526 in.in_regs.features = ATA_SMART_AUTO_OFFLINE;
527 in.in_regs.sector_count = select; // Caution: Non-DATA command!
528 break;
529 case AUTOSAVE:
530 in.in_regs.features = ATA_SMART_AUTOSAVE;
531 in.in_regs.sector_count = select; // Caution: Non-DATA command!
532 break;
533 case IMMEDIATE_OFFLINE:
534 in.in_regs.features = ATA_SMART_IMMEDIATE_OFFLINE;
535 in.in_regs.lba_low = select;
536 break;
537 default:
538 pout("Unrecognized command %d in smartcommandhandler()\n"
539 "Please contact " PACKAGE_BUGREPORT "\n", command);
540 device->set_err(ENOSYS);
541 return -1;
542 }
543
544 if (ata_debugmode)
545 print_regs(" Input: ", in.in_regs,
546 (in.direction==ata_cmd_in::data_in ? " IN\n":
547 in.direction==ata_cmd_in::data_out ? " OUT\n":"\n"));
548
549 ata_cmd_out out;
550
551 int64_t start_usec = -1;
552 if (ata_debugmode)
553 start_usec = smi()->get_timer_usec();
554
555 bool ok = device->ata_pass_through(in, out);
556
557 if (start_usec >= 0) {
558 int64_t duration_usec = smi()->get_timer_usec() - start_usec;
559 if (duration_usec >= 500)
560 pout(" [Duration: %.3fs]\n", duration_usec / 1000000.0);
561 }
562
563 if (ata_debugmode && out.out_regs.is_set())
564 print_regs(" Output: ", out.out_regs);
565
566 if (ok) switch (command) {
567 default:
568 retval = 0;
569 break;
570 case CHECK_POWER_MODE:
571 if (out.out_regs.sector_count.is_set()) {
572 data[0] = out.out_regs.sector_count;
573 retval = 0;
574 }
575 else {
576 pout("CHECK POWER MODE: incomplete response, ATA output registers missing\n");
577 device->set_err(ENOSYS);
578 retval = -1;
579 }
580 break;
581 case STATUS_CHECK:
582 // Cyl low and Cyl high unchanged means "Good SMART status"
583 if ((out.out_regs.lba_high == SMART_CYL_HI) &&
584 (out.out_regs.lba_mid == SMART_CYL_LOW))
585 retval = 0;
586 // These values mean "Bad SMART status"
587 else if ((out.out_regs.lba_high == SRET_STATUS_HI_EXCEEDED) &&
588 (out.out_regs.lba_mid == SRET_STATUS_MID_EXCEEDED))
589 retval = 1;
590 else if (out.out_regs.lba_mid == SMART_CYL_LOW) {
591 retval = 0;
592 if (ata_debugmode)
593 pout("SMART STATUS RETURN: half healthy response sequence, "
594 "probable SAT/USB truncation\n");
595 } else if (out.out_regs.lba_mid == SRET_STATUS_MID_EXCEEDED) {
596 retval = 1;
597 if (ata_debugmode)
598 pout("SMART STATUS RETURN: half unhealthy response sequence, "
599 "probable SAT/USB truncation\n");
600 }
601 else if (!out.out_regs.is_set()) {
602 device->set_err(ENOSYS, "Incomplete response, ATA output registers missing");
603 retval = -1;
604 }
605 else {
606 // We haven't gotten output that makes sense; print out some debugging info
607 pout("SMART Status command failed\n");
608 pout("Please get assistance from %s\n", PACKAGE_HOMEPAGE);
609 pout("Register values returned from SMART Status command are:\n");
610 print_regs(" ", out.out_regs);
611 device->set_err(ENOSYS, "Invalid ATA output register values");
612 retval = -1;
613 }
614 break;
615 }
616 }
617
618 // If requested, invalidate serial number before any printing is done
619 if ((command == IDENTIFY || command == PIDENTIFY) && !retval && dont_print_serial_number)
620 invalidate_serno((ata_identify_device *)data);
621
622 // If reporting is enabled, say what output was produced by the command
623 if (ata_debugmode) {
624 if (device->get_errno())
625 pout("REPORT-IOCTL: Device=%s Command=%s returned %d errno=%d [%s]\n",
626 device->get_dev_name(), commandstrings[command], retval,
627 device->get_errno(), device->get_errmsg());
628 else
629 pout("REPORT-IOCTL: Device=%s Command=%s returned %d\n",
630 device->get_dev_name(), commandstrings[command], retval);
631
632 // if requested, pretty-print the output data structure
633 if (ata_debugmode > 1 && getsdata) {
634 if (command==CHECK_POWER_MODE)
635 pout("Sector Count Register (BASE-16): %02x\n", (unsigned char)(*data));
636 else
637 prettyprint((unsigned char *)data, commandstrings[command]);
638 }
639 }
640
641 return retval;
642 }
643
644 // Get capacity and sector sizes from IDENTIFY data
645 void ata_get_size_info(const ata_identify_device * id, ata_size_info & sizes)
646 {
647 sizes.sectors = sizes.capacity = 0;
648 sizes.log_sector_size = sizes.phy_sector_size = 0;
649 sizes.log_sector_offset = 0;
650
651 // Return if no LBA support
652 if (!(id->words047_079[49-47] & 0x0200))
653 return;
654
655 // Determine 28-bit LBA capacity
656 unsigned lba28 = (unsigned)id->words047_079[61-47] << 16
657 | (unsigned)id->words047_079[60-47] ;
658
659 // Determine 48-bit LBA capacity if supported
660 uint64_t lba48 = 0;
661 if ((id->command_set_2 & 0xc400) == 0x4400)
662 lba48 = (uint64_t)id->words088_255[103-88] << 48
663 | (uint64_t)id->words088_255[102-88] << 32
664 | (uint64_t)id->words088_255[101-88] << 16
665 | (uint64_t)id->words088_255[100-88] ;
666
667 // Return if capacity unknown (ATAPI CD/DVD)
668 if (!(lba28 || lba48))
669 return;
670
671 // Determine sector sizes
672 sizes.log_sector_size = sizes.phy_sector_size = 512;
673
674 unsigned short word106 = id->words088_255[106-88];
675 if ((word106 & 0xc000) == 0x4000) {
676 // Long Logical/Physical Sectors (LLS/LPS) ?
677 if (word106 & 0x1000)
678 // Logical sector size is specified in 16-bit words
679 sizes.log_sector_size = sizes.phy_sector_size =
680 ((id->words088_255[118-88] << 16) | id->words088_255[117-88]) << 1;
681
682 if (word106 & 0x2000)
683 // Physical sector size is multiple of logical sector size
684 sizes.phy_sector_size <<= (word106 & 0x0f);
685
686 unsigned short word209 = id->words088_255[209-88];
687 if ((word209 & 0xc000) == 0x4000)
688 sizes.log_sector_offset = (word209 & 0x3fff) * sizes.log_sector_size;
689 }
690
691 // Some early 4KiB LLS disks (Samsung N3U-3) return bogus lba28 value
692 if (lba48 >= lba28 || (lba48 && sizes.log_sector_size > 512))
693 sizes.sectors = lba48;
694 else
695 sizes.sectors = lba28;
696
697 sizes.capacity = sizes.sectors * sizes.log_sector_size;
698 }
699
700 // This function computes the checksum of a single disk sector (512
701 // bytes). Returns zero if checksum is OK, nonzero if the checksum is
702 // incorrect. The size (512) is correct for all SMART structures.
703 unsigned char checksum(const void * data)
704 {
705 unsigned char sum = 0;
706 for (int i = 0; i < 512; i++)
707 sum += ((const unsigned char *)data)[i];
708 return sum;
709 }
710
711 // Copies n bytes (or n-1 if n is odd) from in to out, but swaps adjacents
712 // bytes.
713 static void swapbytes(char * out, const char * in, size_t n)
714 {
715 for (size_t i = 0; i < n; i += 2) {
716 out[i] = in[i+1];
717 out[i+1] = in[i];
718 }
719 }
720
721 // Copies in to out, but removes leading and trailing whitespace.
722 static void trim(char * out, const char * in)
723 {
724 // Find the first non-space character (maybe none).
725 int first = -1;
726 int i;
727 for (i = 0; in[i]; i++)
728 if (!isspace((int)in[i])) {
729 first = i;
730 break;
731 }
732
733 if (first == -1) {
734 // There are no non-space characters.
735 out[0] = '\0';
736 return;
737 }
738
739 // Find the last non-space character.
740 for (i = strlen(in)-1; i >= first && isspace((int)in[i]); i--)
741 ;
742 int last = i;
743
744 strncpy(out, in+first, last-first+1);
745 out[last-first+1] = '\0';
746 }
747
748 // Convenience function for formatting strings from ata_identify_device
749 void ata_format_id_string(char * out, const unsigned char * in, int n)
750 {
751 bool must_swap = true;
752 #ifdef __NetBSD__
753 /* NetBSD kernel delivers IDENTIFY data in host byte order (but all else is LE) */
754 // TODO: Handle NetBSD case in os_netbsd.cpp
755 if (isbigendian())
756 must_swap = !must_swap;
757 #endif
758
759 char tmp[65];
760 n = n > 64 ? 64 : n;
761 if (!must_swap)
762 strncpy(tmp, (const char *)in, n);
763 else
764 swapbytes(tmp, (const char *)in, n);
765 tmp[n] = '\0';
766 trim(out, tmp);
767 }
768
769 // returns -1 if command fails or the device is in Sleep mode, else
770 // value of Sector Count register. Sector Count result values:
771 // 00h device is in Standby mode.
772 // 80h device is in Idle mode.
773 // FFh device is in Active mode or Idle mode.
774
775 int ataCheckPowerMode(ata_device * device) {
776 unsigned char result;
777
778 if ((smartcommandhandler(device, CHECK_POWER_MODE, 0, (char *)&result)))
779 return -1;
780
781 if (result!=0 && result!=0x80 && result!=0xff)
782 pout("ataCheckPowerMode(): ATA CHECK POWER MODE returned unknown Sector Count Register value %02x\n", result);
783
784 return (int)result;
785 }
786
787 // Issue a no-data ATA command with optional sector count register value
788 bool ata_nodata_command(ata_device * device, unsigned char command,
789 int sector_count /* = -1 */)
790 {
791 ata_cmd_in in;
792 in.in_regs.command = command;
793 if (sector_count >= 0)
794 in.in_regs.sector_count = sector_count;
795
796 return device->ata_pass_through(in);
797 }
798
799 // Issue SET FEATURES command with optional sector count register value
800 bool ata_set_features(ata_device * device, unsigned char features,
801 int sector_count /* = -1 */)
802 {
803 ata_cmd_in in;
804 in.in_regs.command = ATA_SET_FEATURES;
805 in.in_regs.features = features;
806 if (sector_count >= 0)
807 in.in_regs.sector_count = sector_count;
808
809 return device->ata_pass_through(in);
810 }
811
812 // Reads current Device Identity info (512 bytes) into buf. Returns 0
813 // if all OK. Returns -1 if no ATA Device identity can be
814 // established. Returns >0 if Device is ATA Packet Device (not SMART
815 // capable). The value of the integer helps identify the type of
816 // Packet device, which is useful so that the user can connect the
817 // formal device number with whatever object is inside their computer.
818 int ata_read_identity(ata_device * device, ata_identify_device * buf, bool fix_swapped_id,
819 unsigned char * raw_buf /* = 0 */)
820 {
821 unsigned short *rawshort=(unsigned short *)buf;
822 unsigned char *rawbyte =(unsigned char *)buf;
823
824 // See if device responds either to IDENTIFY DEVICE or IDENTIFY
825 // PACKET DEVICE
826 bool packet = false;
827 if ((smartcommandhandler(device, IDENTIFY, 0, (char *)buf))){
828 if (smartcommandhandler(device, PIDENTIFY, 0, (char *)buf)){
829 return -1;
830 }
831 packet = true;
832 }
833
834 unsigned i;
835 if (fix_swapped_id) {
836 // Swap ID strings
837 for (i = 0; i < sizeof(buf->serial_no)-1; i += 2)
838 swap2((char *)(buf->serial_no+i));
839 for (i = 0; i < sizeof(buf->fw_rev)-1; i += 2)
840 swap2((char *)(buf->fw_rev+i));
841 for (i = 0; i < sizeof(buf->model)-1; i += 2)
842 swap2((char *)(buf->model+i));
843 }
844
845 // If requested, save raw data before endianness adjustments
846 if (raw_buf)
847 memcpy(raw_buf, buf, sizeof(*buf));
848
849 #ifndef __NetBSD__
850 // if machine is big-endian, swap byte order as needed
851 // NetBSD kernel delivers IDENTIFY data in host byte order
852 // TODO: Handle NetBSD case in os_netbsd.cpp
853 if (isbigendian()){
854
855 // swap various capability words that are needed
856 for (i=0; i<33; i++)
857 swap2((char *)(buf->words047_079+i));
858
859 for (i=80; i<=87; i++)
860 swap2((char *)(rawshort+i));
861
862 for (i=0; i<168; i++)
863 swap2((char *)(buf->words088_255+i));
864 }
865 #endif
866
867 // If there is a checksum there, validate it
868 if ((rawshort[255] & 0x00ff) == 0x00a5 && checksum(rawbyte))
869 checksumwarning("Drive Identity Structure");
870
871 // AT Attachment 8 - ATA/ATAPI Command Set (ATA8-ACS)
872 // T13/1699-D Revision 6a (Final Draft), September 6, 2008.
873 // Sections 7.16.7 and 7.17.6:
874 //
875 // Word 0 of IDENTIFY DEVICE data:
876 // Bit 15 = 0 : ATA device
877 //
878 // Word 0 of IDENTIFY PACKET DEVICE data:
879 // Bits 15:14 = 10b : ATAPI device
880 // Bits 15:14 = 11b : Reserved
881 // Bits 12:8 : Device type (SPC-4, e.g 0x05 = CD/DVD)
882
883 // CF+ and CompactFlash Specification Revision 4.0, May 24, 2006.
884 // Section 6.2.1.6:
885 //
886 // Word 0 of IDENTIFY DEVICE data:
887 // 848Ah = Signature for CompactFlash Storage Card
888 // 044Ah = Alternate value turns on ATA device while preserving all retired bits
889 // 0040h = Alternate value turns on ATA device while zeroing all retired bits
890
891 // Assume ATA if IDENTIFY DEVICE returns CompactFlash Signature
892 if (!packet && rawbyte[1] == 0x84 && rawbyte[0] == 0x8a)
893 return 0;
894
895 // If this is a PACKET DEVICE, return device type
896 if (rawbyte[1] & 0x80)
897 return 1+(rawbyte[1] & 0x1f);
898
899 // Not a PACKET DEVICE
900 return 0;
901 }
902
903 // Get World Wide Name (WWN) fields.
904 // Return NAA field or -1 if WWN is unsupported.
905 // Table 34 of T13/1699-D Revision 6a (ATA8-ACS), September 6, 2008.
906 // (WWN was introduced in ATA/ATAPI-7 and is mandatory since ATA8-ACS Revision 3b)
907 int ata_get_wwn(const ata_identify_device * id, unsigned & oui, uint64_t & unique_id)
908 {
909 // Don't use word 84 to be compatible with some older ATA-7 disks
910 unsigned short word087 = id->csf_default;
911 if ((word087 & 0xc100) != 0x4100)
912 return -1; // word not valid or WWN support bit 8 not set
913
914 unsigned short word108 = id->words088_255[108-88];
915 unsigned short word109 = id->words088_255[109-88];
916 unsigned short word110 = id->words088_255[110-88];
917 unsigned short word111 = id->words088_255[111-88];
918
919 oui = ((word108 & 0x0fff) << 12) | (word109 >> 4);
920 unique_id = ((uint64_t)(word109 & 0xf) << 32)
921 | (unsigned)((word110 << 16) | word111);
922 return (word108 >> 12);
923 }
924
925 // Get nominal media rotation rate.
926 // Returns: 0 = not reported, 1 = SSD, >1 = HDD rpm, < 0 = -(Unknown value)
927 int ata_get_rotation_rate(const ata_identify_device * id)
928 {
929 // Table 37 of T13/1699-D (ATA8-ACS) Revision 6a, September 6, 2008
930 // Table A.31 of T13/2161-D (ACS-3) Revision 3b, August 25, 2012
931 unsigned short word217 = id->words088_255[217-88];
932 if (word217 == 0x0000 || word217 == 0xffff)
933 return 0;
934 else if (word217 == 0x0001)
935 return 1;
936 else if (word217 > 0x0400)
937 return word217;
938 else
939 return -(int)word217;
940 }
941
942 // returns 1 if SMART supported, 0 if SMART unsupported, -1 if can't tell
943 int ataSmartSupport(const ata_identify_device * drive)
944 {
945 unsigned short word82=drive->command_set_1;
946 unsigned short word83=drive->command_set_2;
947
948 // check if words 82/83 contain valid info
949 if ((word83>>14) == 0x01)
950 // return value of SMART support bit
951 return word82 & 0x0001;
952
953 // since we can're rely on word 82, we don't know if SMART supported
954 return -1;
955 }
956
957 // returns 1 if SMART enabled, 0 if SMART disabled, -1 if can't tell
958 int ataIsSmartEnabled(const ata_identify_device * drive)
959 {
960 unsigned short word85=drive->cfs_enable_1;
961 unsigned short word87=drive->csf_default;
962
963 // check if words 85/86/87 contain valid info
964 if ((word87>>14) == 0x01)
965 // return value of SMART enabled bit
966 return word85 & 0x0001;
967
968 // Since we can't rely word85, we don't know if SMART is enabled.
969 return -1;
970 }
971
972
973 // Reads SMART attributes into *data
974 int ataReadSmartValues(ata_device * device, struct ata_smart_values *data){
975
976 if (smartcommandhandler(device, READ_VALUES, 0, (char *)data)){
977 return -1;
978 }
979
980 // compute checksum
981 if (checksum(data))
982 checksumwarning("SMART Attribute Data Structure");
983
984 // swap endian order if needed
985 if (isbigendian()){
986 int i;
987 swap2((char *)&(data->revnumber));
988 swap2((char *)&(data->total_time_to_complete_off_line));
989 swap2((char *)&(data->smart_capability));
990 swapx(&data->extend_test_completion_time_w);
991 for (i=0; i<NUMBER_ATA_SMART_ATTRIBUTES; i++){
992 struct ata_smart_attribute *x=data->vendor_attributes+i;
993 swap2((char *)&(x->flags));
994 }
995 }
996
997 return 0;
998 }
999
1000
1001 // This corrects some quantities that are byte reversed in the SMART
1002 // SELF TEST LOG
1003 static void fixsamsungselftestlog(ata_smart_selftestlog * data)
1004 {
1005 // bytes 508/509 (numbered from 0) swapped (swap of self-test index
1006 // with one byte of reserved.
1007 swap2((char *)&(data->mostrecenttest));
1008
1009 // LBA low register (here called 'selftestnumber", containing
1010 // information about the TYPE of the self-test) is byte swapped with
1011 // Self-test execution status byte. These are bytes N, N+1 in the
1012 // entries.
1013 for (int i = 0; i < 21; i++)
1014 swap2((char *)&(data->selftest_struct[i].selftestnumber));
1015
1016 return;
1017 }
1018
1019 // Reads the Self Test Log (log #6)
1020 int ataReadSelfTestLog (ata_device * device, ata_smart_selftestlog * data,
1021 firmwarebug_defs firmwarebugs)
1022 {
1023
1024 // get data from device
1025 if (smartcommandhandler(device, READ_LOG, 0x06, (char *)data)){
1026 return -1;
1027 }
1028
1029 // compute its checksum, and issue a warning if needed
1030 if (checksum(data))
1031 checksumwarning("SMART Self-Test Log Structure");
1032
1033 // fix firmware bugs in self-test log
1034 if (firmwarebugs.is_set(BUG_SAMSUNG))
1035 fixsamsungselftestlog(data);
1036
1037 // swap endian order if needed
1038 if (isbigendian()){
1039 int i;
1040 swap2((char*)&(data->revnumber));
1041 for (i=0; i<21; i++){
1042 struct ata_smart_selftestlog_struct *x=data->selftest_struct+i;
1043 swap2((char *)&(x->timestamp));
1044 swap4((char *)&(x->lbafirstfailure));
1045 }
1046 }
1047
1048 return 0;
1049 }
1050
1051 // Print checksum warning for multi sector log
1052 static void check_multi_sector_sum(const void * data, unsigned nsectors, const char * msg)
1053 {
1054 unsigned errs = 0;
1055 for (unsigned i = 0; i < nsectors; i++) {
1056 if (checksum((const unsigned char *)data + i*512))
1057 errs++;
1058 }
1059 if (errs > 0) {
1060 if (nsectors == 1)
1061 checksumwarning(msg);
1062 else
1063 checksumwarning(strprintf("%s (%u/%u)", msg, errs, nsectors).c_str());
1064 }
1065 }
1066
1067 // Read SMART Extended Self-test Log
1068 bool ataReadExtSelfTestLog(ata_device * device, ata_smart_extselftestlog * log,
1069 unsigned nsectors)
1070 {
1071 if (!ataReadLogExt(device, 0x07, 0x00, 0, log, nsectors))
1072 return false;
1073
1074 check_multi_sector_sum(log, nsectors, "SMART Extended Self-test Log Structure");
1075
1076 if (isbigendian()) {
1077 swapx(&log->log_desc_index);
1078 for (unsigned i = 0; i < nsectors; i++) {
1079 for (unsigned j = 0; j < 19; j++)
1080 swapx(&log->log_descs[i].timestamp);
1081 }
1082 }
1083 return true;
1084 }
1085
1086
1087 // Read GP Log page(s)
1088 bool ataReadLogExt(ata_device * device, unsigned char logaddr,
1089 unsigned char features, unsigned page,
1090 void * data, unsigned nsectors)
1091 {
1092 ata_cmd_in in;
1093 in.in_regs.command = ATA_READ_LOG_EXT;
1094 in.in_regs.features = features; // log specific
1095 in.set_data_in_48bit(data, nsectors);
1096 in.in_regs.lba_low = logaddr;
1097 in.in_regs.lba_mid_16 = page;
1098
1099 if (!device->ata_pass_through(in)) { // TODO: Debug output
1100 if (nsectors <= 1) {
1101 pout("ATA_READ_LOG_EXT (addr=0x%02x:0x%02x, page=%u, n=%u) failed: %s\n",
1102 logaddr, features, page, nsectors, device->get_errmsg());
1103 return false;
1104 }
1105
1106 // Recurse to retry with single sectors,
1107 // multi-sector reads may not be supported by ioctl.
1108 for (unsigned i = 0; i < nsectors; i++) {
1109 if (!ataReadLogExt(device, logaddr,
1110 features, page + i,
1111 (char *)data + 512*i, 1))
1112 return false;
1113 }
1114 }
1115
1116 return true;
1117 }
1118
1119 // Read SMART Log page(s)
1120 bool ataReadSmartLog(ata_device * device, unsigned char logaddr,
1121 void * data, unsigned nsectors)
1122 {
1123 ata_cmd_in in;
1124 in.in_regs.command = ATA_SMART_CMD;
1125 in.in_regs.features = ATA_SMART_READ_LOG_SECTOR;
1126 in.set_data_in(data, nsectors);
1127 in.in_regs.lba_high = SMART_CYL_HI;
1128 in.in_regs.lba_mid = SMART_CYL_LOW;
1129 in.in_regs.lba_low = logaddr;
1130
1131 if (!device->ata_pass_through(in)) { // TODO: Debug output
1132 pout("ATA_SMART_READ_LOG failed: %s\n", device->get_errmsg());
1133 return false;
1134 }
1135 return true;
1136 }
1137
1138
1139
1140 // Reads the SMART or GPL Log Directory (log #0)
1141 int ataReadLogDirectory(ata_device * device, ata_smart_log_directory * data, bool gpl)
1142 {
1143 if (!gpl) { // SMART Log directory
1144 if (smartcommandhandler(device, READ_LOG, 0x00, (char *)data))
1145 return -1;
1146 }
1147 else { // GP Log directory
1148 if (!ataReadLogExt(device, 0x00, 0x00, 0, data, 1))
1149 return -1;
1150 }
1151
1152 // swap endian order if needed
1153 if (isbigendian())
1154 swapx(&data->logversion);
1155
1156 return 0;
1157 }
1158
1159
1160 // Reads the selective self-test log (log #9)
1161 int ataReadSelectiveSelfTestLog(ata_device * device, struct ata_selective_self_test_log *data){
1162
1163 // get data from device
1164 if (smartcommandhandler(device, READ_LOG, 0x09, (char *)data)){
1165 return -1;
1166 }
1167
1168 // compute its checksum, and issue a warning if needed
1169 if (checksum(data))
1170 checksumwarning("SMART Selective Self-Test Log Structure");
1171
1172 // swap endian order if needed
1173 if (isbigendian()){
1174 int i;
1175 swap2((char *)&(data->logversion));
1176 for (i=0;i<5;i++){
1177 swap8((char *)&(data->span[i].start));
1178 swap8((char *)&(data->span[i].end));
1179 }
1180 swap8((char *)&(data->currentlba));
1181 swap2((char *)&(data->currentspan));
1182 swap2((char *)&(data->flags));
1183 swap2((char *)&(data->pendingtime));
1184 }
1185
1186 return 0;
1187 }
1188
1189 // Writes the selective self-test log (log #9)
1190 int ataWriteSelectiveSelfTestLog(ata_device * device, ata_selective_selftest_args & args,
1191 const ata_smart_values * sv, uint64_t num_sectors,
1192 const ata_selective_selftest_args * prev_args)
1193 {
1194 // Disk size must be known
1195 if (!num_sectors) {
1196 pout("Disk size is unknown, unable to check selective self-test spans\n");
1197 return -1;
1198 }
1199
1200 // Read log
1201 struct ata_selective_self_test_log sstlog, *data=&sstlog;
1202 unsigned char *ptr=(unsigned char *)data;
1203 if (ataReadSelectiveSelfTestLog(device, data)) {
1204 pout("SMART Read Selective Self-test Log failed: %s\n", device->get_errmsg());
1205 pout("Since Read failed, will not attempt to WRITE Selective Self-test Log\n");
1206 return -1;
1207 }
1208
1209 // Set log version
1210 data->logversion = 1;
1211
1212 // Host is NOT allowed to write selective self-test log if a selective
1213 // self-test is in progress.
1214 if (0<data->currentspan && data->currentspan<6 && ((sv->self_test_exec_status)>>4)==15) {
1215 pout("SMART Selective or other Self-test in progress\n");
1216 return -4;
1217 }
1218
1219 // Set start/end values based on old spans for special -t select,... options
1220 int i;
1221 for (i = 0; i < args.num_spans; i++) {
1222 int mode = args.span[i].mode;
1223 uint64_t start = args.span[i].start;
1224 uint64_t end = args.span[i].end;
1225 if (mode == SEL_CONT) {// redo or next dependig on last test status
1226 switch (sv->self_test_exec_status >> 4) {
1227 case 1: case 2: // Aborted/Interrupted by host
1228 pout("Continue Selective Self-Test: Redo last span\n");
1229 mode = SEL_REDO;
1230 break;
1231 default: // All others
1232 pout("Continue Selective Self-Test: Start next span\n");
1233 mode = SEL_NEXT;
1234 break;
1235 }
1236 }
1237
1238 if ( (mode == SEL_REDO || mode == SEL_NEXT)
1239 && prev_args && i < prev_args->num_spans
1240 && !data->span[i].start && !data->span[i].end) {
1241 // Some drives do not preserve the selective self-test log accross
1242 // power-cyles. If old span on drive is cleared use span provided
1243 // by caller. This is used by smartd (first span only).
1244 data->span[i].start = prev_args->span[i].start;
1245 data->span[i].end = prev_args->span[i].end;
1246 }
1247
1248 switch (mode) {
1249 case SEL_RANGE: // -t select,START-END
1250 break;
1251 case SEL_REDO: // -t select,redo... => Redo current
1252 start = data->span[i].start;
1253 if (end > 0) { // -t select,redo+SIZE
1254 end--; end += start; // [oldstart, oldstart+SIZE)
1255 }
1256 else // -t select,redo
1257 end = data->span[i].end; // [oldstart, oldend]
1258 break;
1259 case SEL_NEXT: // -t select,next... => Do next
1260 if (data->span[i].end == 0) {
1261 start = end = 0; break; // skip empty spans
1262 }
1263 start = data->span[i].end + 1;
1264 if (start >= num_sectors)
1265 start = 0; // wrap around
1266 if (end > 0) { // -t select,next+SIZE
1267 end--; end += start; // (oldend, oldend+SIZE]
1268 }
1269 else { // -t select,next
1270 uint64_t oldsize = data->span[i].end - data->span[i].start + 1;
1271 end = start + oldsize - 1; // (oldend, oldend+oldsize]
1272 if (end >= num_sectors) {
1273 // Adjust size to allow round-robin testing without future size decrease
1274 uint64_t spans = (num_sectors + oldsize-1) / oldsize;
1275 uint64_t newsize = (num_sectors + spans-1) / spans;
1276 uint64_t newstart = num_sectors - newsize, newend = num_sectors - 1;
1277 pout("Span %d changed from %" PRIu64 "-%" PRIu64 " (%" PRIu64 " sectors)\n",
1278 i, start, end, oldsize);
1279 pout(" to %" PRIu64 "-%" PRIu64 " (%" PRIu64 " sectors) (%" PRIu64 " spans)\n",
1280 newstart, newend, newsize, spans);
1281 start = newstart; end = newend;
1282 }
1283 }
1284 break;
1285 default:
1286 pout("ataWriteSelectiveSelfTestLog: Invalid mode %d\n", mode);
1287 return -1;
1288 }
1289 // Range check
1290 if (start < num_sectors && num_sectors <= end) {
1291 if (end != ~(uint64_t)0) // -t select,N-max
1292 pout("Size of self-test span %d decreased according to disk size\n", i);
1293 end = num_sectors - 1;
1294 }
1295 if (!(start <= end && end < num_sectors)) {
1296 pout("Invalid selective self-test span %d: %" PRIu64 "-%" PRIu64 " (%" PRIu64 " sectors)\n",
1297 i, start, end, num_sectors);
1298 return -1;
1299 }
1300 // Return the actual mode and range to caller.
1301 args.span[i].mode = mode;
1302 args.span[i].start = start;
1303 args.span[i].end = end;
1304 }
1305
1306 // Clear spans
1307 for (i=0; i<5; i++)
1308 memset(data->span+i, 0, sizeof(struct test_span));
1309
1310 // Set spans for testing
1311 for (i = 0; i < args.num_spans; i++){
1312 data->span[i].start = args.span[i].start;
1313 data->span[i].end = args.span[i].end;
1314 }
1315
1316 // host must initialize to zero before initiating selective self-test
1317 data->currentlba=0;
1318 data->currentspan=0;
1319
1320 // Perform off-line scan after selective test?
1321 if (args.scan_after_select == 1)
1322 // NO
1323 data->flags &= ~SELECTIVE_FLAG_DOSCAN;
1324 else if (args.scan_after_select == 2)
1325 // YES
1326 data->flags |= SELECTIVE_FLAG_DOSCAN;
1327
1328 // Must clear active and pending flags before writing
1329 data->flags &= ~(SELECTIVE_FLAG_ACTIVE);
1330 data->flags &= ~(SELECTIVE_FLAG_PENDING);
1331
1332 // modify pending time?
1333 if (args.pending_time)
1334 data->pendingtime = (unsigned short)(args.pending_time-1);
1335
1336 // Set checksum to zero, then compute checksum
1337 data->checksum=0;
1338 unsigned char cksum=0;
1339 for (i=0; i<512; i++)
1340 cksum+=ptr[i];
1341 cksum=~cksum;
1342 cksum+=1;
1343 data->checksum=cksum;
1344
1345 // swap endian order if needed
1346 if (isbigendian()){
1347 swap2((char *)&(data->logversion));
1348 for (int b = 0; b < 5; b++) {
1349 swap8((char *)&(data->span[b].start));
1350 swap8((char *)&(data->span[b].end));
1351 }
1352 swap8((char *)&(data->currentlba));
1353 swap2((char *)&(data->currentspan));
1354 swap2((char *)&(data->flags));
1355 swap2((char *)&(data->pendingtime));
1356 }
1357
1358 // write new selective self-test log
1359 if (smartcommandhandler(device, WRITE_LOG, 0x09, (char *)data)){
1360 pout("Write Selective Self-test Log failed: %s\n", device->get_errmsg());
1361 return -3;
1362 }
1363
1364 return 0;
1365 }
1366
1367 // This corrects some quantities that are byte reversed in the SMART
1368 // ATA ERROR LOG.
1369 static void fixsamsungerrorlog(ata_smart_errorlog * data)
1370 {
1371 // FIXED IN SAMSUNG -25 FIRMWARE???
1372 // Device error count in bytes 452-3
1373 swap2((char *)&(data->ata_error_count));
1374
1375 // FIXED IN SAMSUNG -22a FIRMWARE
1376 // step through 5 error log data structures
1377 for (int i = 0; i < 5; i++){
1378 // step through 5 command data structures
1379 for (int j = 0; j < 5; j++)
1380 // Command data structure 4-byte millisec timestamp. These are
1381 // bytes (N+8, N+9, N+10, N+11).
1382 swap4((char *)&(data->errorlog_struct[i].commands[j].timestamp));
1383 // Error data structure two-byte hour life timestamp. These are
1384 // bytes (N+28, N+29).
1385 swap2((char *)&(data->errorlog_struct[i].error_struct.timestamp));
1386 }
1387 return;
1388 }
1389
1390 // NEEDED ONLY FOR SAMSUNG -22 (some) -23 AND -24?? FIRMWARE
1391 static void fixsamsungerrorlog2(ata_smart_errorlog * data)
1392 {
1393 // Device error count in bytes 452-3
1394 swap2((char *)&(data->ata_error_count));
1395 return;
1396 }
1397
1398 // Reads the Summary SMART Error Log (log #1). The Comprehensive SMART
1399 // Error Log is #2, and the Extended Comprehensive SMART Error log is
1400 // #3
1401 int ataReadErrorLog (ata_device * device, ata_smart_errorlog *data,
1402 firmwarebug_defs firmwarebugs)
1403 {
1404
1405 // get data from device
1406 if (smartcommandhandler(device, READ_LOG, 0x01, (char *)data)){
1407 return -1;
1408 }
1409
1410 // compute its checksum, and issue a warning if needed
1411 if (checksum(data))
1412 checksumwarning("SMART ATA Error Log Structure");
1413
1414 // Some disks have the byte order reversed in some SMART Summary
1415 // Error log entries
1416 if (firmwarebugs.is_set(BUG_SAMSUNG))
1417 fixsamsungerrorlog(data);
1418 else if (firmwarebugs.is_set(BUG_SAMSUNG2))
1419 fixsamsungerrorlog2(data);
1420
1421 // swap endian order if needed
1422 if (isbigendian()){
1423 int i,j;
1424
1425 // Device error count in bytes 452-3
1426 swap2((char *)&(data->ata_error_count));
1427
1428 // step through 5 error log data structures
1429 for (i=0; i<5; i++){
1430 // step through 5 command data structures
1431 for (j=0; j<5; j++)
1432 // Command data structure 4-byte millisec timestamp
1433 swap4((char *)&(data->errorlog_struct[i].commands[j].timestamp));
1434 // Error data structure life timestamp
1435 swap2((char *)&(data->errorlog_struct[i].error_struct.timestamp));
1436 }
1437 }
1438
1439 return 0;
1440 }
1441
1442
1443 // Fix LBA byte ordering of Extended Comprehensive Error Log
1444 // if little endian instead of ATA register ordering is provided
1445 template <class T>
1446 static inline void fix_exterrlog_lba_cmd(T & cmd)
1447 {
1448 T org = cmd;
1449 cmd.lba_mid_register_hi = org.lba_high_register;
1450 cmd.lba_low_register_hi = org.lba_mid_register_hi;
1451 cmd.lba_high_register = org.lba_mid_register;
1452 cmd.lba_mid_register = org.lba_low_register_hi;
1453 }
1454
1455 static void fix_exterrlog_lba(ata_smart_exterrlog * log, unsigned nsectors)
1456 {
1457 for (unsigned i = 0; i < nsectors; i++) {
1458 for (int ei = 0; ei < 4; ei++) {
1459 ata_smart_exterrlog_error_log & entry = log[i].error_logs[ei];
1460 fix_exterrlog_lba_cmd(entry.error);
1461 for (int ci = 0; ci < 5; ci++)
1462 fix_exterrlog_lba_cmd(entry.commands[ci]);
1463 }
1464 }
1465 }
1466
1467 // Read Extended Comprehensive Error Log
1468 bool ataReadExtErrorLog(ata_device * device, ata_smart_exterrlog * log,
1469 unsigned nsectors, firmwarebug_defs firmwarebugs)
1470 {
1471 if (!ataReadLogExt(device, 0x03, 0x00, 0, log, nsectors))
1472 return false;
1473
1474 check_multi_sector_sum(log, nsectors, "SMART Extended Comprehensive Error Log Structure");
1475
1476 if (isbigendian()) {
1477 swapx(&log->device_error_count);
1478 swapx(&log->error_log_index);
1479 for (unsigned i = 0; i < nsectors; i++) {
1480 for (unsigned j = 0; j < 4; j++) {
1481 for (unsigned k = 0; k < 5; k++)
1482 swapx(&log[i].error_logs[j].commands[k].timestamp);
1483 swapx(&log[i].error_logs[j].error.timestamp);
1484 }
1485 }
1486 }
1487
1488 if (firmwarebugs.is_set(BUG_XERRORLBA))
1489 fix_exterrlog_lba(log, nsectors);
1490
1491 return true;
1492 }
1493
1494
1495 int ataReadSmartThresholds (ata_device * device, struct ata_smart_thresholds_pvt *data){
1496
1497 // get data from device
1498 if (smartcommandhandler(device, READ_THRESHOLDS, 0, (char *)data)){
1499 return -1;
1500 }
1501
1502 // compute its checksum, and issue a warning if needed
1503 if (checksum(data))
1504 checksumwarning("SMART Attribute Thresholds Structure");
1505
1506 // swap endian order if needed
1507 if (isbigendian())
1508 swap2((char *)&(data->revnumber));
1509
1510 return 0;
1511 }
1512
1513 int ataEnableSmart (ata_device * device ){
1514 if (smartcommandhandler(device, ENABLE, 0, NULL)){
1515 return -1;
1516 }
1517 return 0;
1518 }
1519
1520 int ataDisableSmart (ata_device * device ){
1521
1522 if (smartcommandhandler(device, DISABLE, 0, NULL)){
1523 return -1;
1524 }
1525 return 0;
1526 }
1527
1528 int ataEnableAutoSave(ata_device * device){
1529 if (smartcommandhandler(device, AUTOSAVE, 241, NULL)){
1530 return -1;
1531 }
1532 return 0;
1533 }
1534
1535 int ataDisableAutoSave(ata_device * device){
1536
1537 if (smartcommandhandler(device, AUTOSAVE, 0, NULL)){
1538 return -1;
1539 }
1540 return 0;
1541 }
1542
1543 // In *ALL* ATA standards the Enable/Disable AutoOffline command is
1544 // marked "OBSOLETE". It is defined in SFF-8035i Revision 2, and most
1545 // vendors still support it for backwards compatibility. IBM documents
1546 // it for some drives.
1547 int ataEnableAutoOffline (ata_device * device){
1548
1549 /* timer hard coded to 4 hours */
1550 if (smartcommandhandler(device, AUTO_OFFLINE, 248, NULL)){
1551 return -1;
1552 }
1553 return 0;
1554 }
1555
1556 // Another Obsolete Command. See comments directly above, associated
1557 // with the corresponding Enable command.
1558 int ataDisableAutoOffline (ata_device * device){
1559
1560 if (smartcommandhandler(device, AUTO_OFFLINE, 0, NULL)){
1561 return -1;
1562 }
1563 return 0;
1564 }
1565
1566 // If SMART is enabled, supported, and working, then this call is
1567 // guaranteed to return 1, else zero. Note that it should return 1
1568 // regardless of whether the disk's SMART status is 'healthy' or
1569 // 'failing'.
1570 int ataDoesSmartWork(ata_device * device){
1571 int retval=smartcommandhandler(device, STATUS, 0, NULL);
1572
1573 if (-1 == retval)
1574 return 0;
1575
1576 return 1;
1577 }
1578
1579 // This function uses a different interface (DRIVE_TASK) than the
1580 // other commands in this file.
1581 int ataSmartStatus2(ata_device * device){
1582 return smartcommandhandler(device, STATUS_CHECK, 0, NULL);
1583 }
1584
1585 // This is the way to execute ALL tests: offline, short self-test,
1586 // extended self test, with and without captive mode, etc.
1587 // TODO: Move to ataprint.cpp ?
1588 int ataSmartTest(ata_device * device, int testtype, bool force,
1589 const ata_selective_selftest_args & selargs,
1590 const ata_smart_values * sv, uint64_t num_sectors)
1591 {
1592 char cmdmsg[128]; const char *type, *captive;
1593 int cap, retval, select=0;
1594
1595 // Boolean, if set, says test is captive
1596 cap=testtype & CAPTIVE_MASK;
1597
1598 // Set up strings that describe the type of test
1599 if (cap)
1600 captive="captive";
1601 else
1602 captive="off-line";
1603
1604 if (testtype==OFFLINE_FULL_SCAN)
1605 type="off-line";
1606 else if (testtype==SHORT_SELF_TEST || testtype==SHORT_CAPTIVE_SELF_TEST)
1607 type="Short self-test";
1608 else if (testtype==EXTEND_SELF_TEST || testtype==EXTEND_CAPTIVE_SELF_TEST)
1609 type="Extended self-test";
1610 else if (testtype==CONVEYANCE_SELF_TEST || testtype==CONVEYANCE_CAPTIVE_SELF_TEST)
1611 type="Conveyance self-test";
1612 else if ((select=(testtype==SELECTIVE_SELF_TEST || testtype==SELECTIVE_CAPTIVE_SELF_TEST)))
1613 type="Selective self-test";
1614 else
1615 type = 0;
1616
1617 // Check whether another test is already running
1618 if (type && (sv->self_test_exec_status >> 4) == 0xf) {
1619 if (!force) {
1620 pout("Can't start self-test without aborting current test (%d0%% remaining),\n"
1621 "%srun 'smartctl -X' to abort test.\n",
1622 sv->self_test_exec_status & 0x0f,
1623 (!select ? "add '-t force' option to override, or " : ""));
1624 return -1;
1625 }
1626 }
1627 else
1628 force = false;
1629
1630 // If doing a selective self-test, first use WRITE_LOG to write the
1631 // selective self-test log.
1632 ata_selective_selftest_args selargs_io = selargs; // filled with info about actual spans
1633 if (select && (retval = ataWriteSelectiveSelfTestLog(device, selargs_io, sv, num_sectors))) {
1634 if (retval==-4)
1635 pout("Can't start selective self-test without aborting current test: use '-X' option to smartctl.\n");
1636 return retval;
1637 }
1638
1639 // Print ouf message that we are sending the command to test
1640 if (testtype==ABORT_SELF_TEST)
1641 snprintf(cmdmsg, sizeof(cmdmsg), "Abort SMART off-line mode self-test routine");
1642 else if (!type)
1643 snprintf(cmdmsg, sizeof(cmdmsg), "SMART EXECUTE OFF-LINE IMMEDIATE subcommand 0x%02x", testtype);
1644 else
1645 snprintf(cmdmsg, sizeof(cmdmsg), "Execute SMART %s routine immediately in %s mode", type, captive);
1646 pout("Sending command: \"%s\".\n",cmdmsg);
1647
1648 if (select) {
1649 int i;
1650 pout("SPAN STARTING_LBA ENDING_LBA\n");
1651 for (i = 0; i < selargs_io.num_spans; i++)
1652 pout(" %d %20" PRId64 " %20" PRId64 "\n", i,
1653 selargs_io.span[i].start,
1654 selargs_io.span[i].end);
1655 }
1656
1657 // Now send the command to test
1658 if (smartcommandhandler(device, IMMEDIATE_OFFLINE, testtype, NULL)) {
1659 if (!(cap && device->get_errno() == EIO)) {
1660 pout("Command \"%s\" failed: %s\n", cmdmsg, device->get_errmsg());
1661 return -1;
1662 }
1663 }
1664
1665 // Since the command succeeded, tell user
1666 if (testtype==ABORT_SELF_TEST)
1667 pout("Self-testing aborted!\n");
1668 else {
1669 pout("Drive command \"%s\" successful.\n", cmdmsg);
1670 if (type)
1671 pout("Testing has begun%s.\n", (force ? " (previous test aborted)" : ""));
1672 }
1673 return 0;
1674 }
1675
1676 /* Test Time Functions */
1677 int TestTime(const ata_smart_values *data, int testtype)
1678 {
1679 switch (testtype){
1680 case OFFLINE_FULL_SCAN:
1681 return (int) data->total_time_to_complete_off_line;
1682 case SHORT_SELF_TEST:
1683 case SHORT_CAPTIVE_SELF_TEST:
1684 return (int) data->short_test_completion_time;
1685 case EXTEND_SELF_TEST:
1686 case EXTEND_CAPTIVE_SELF_TEST:
1687 if (data->extend_test_completion_time_b == 0xff
1688 && data->extend_test_completion_time_w != 0x0000
1689 && data->extend_test_completion_time_w != 0xffff)
1690 return data->extend_test_completion_time_w; // ATA-8
1691 else
1692 return data->extend_test_completion_time_b;
1693 case CONVEYANCE_SELF_TEST:
1694 case CONVEYANCE_CAPTIVE_SELF_TEST:
1695 return (int) data->conveyance_test_completion_time;
1696 default:
1697 return 0;
1698 }
1699 }
1700
1701 // This function tells you both about the ATA error log and the
1702 // self-test error log capability (introduced in ATA-5). The bit is
1703 // poorly documented in the ATA/ATAPI standard. Starting with ATA-6,
1704 // SMART error logging is also indicated in bit 0 of DEVICE IDENTIFY
1705 // word 84 and 87. Top two bits must match the pattern 01. BEFORE
1706 // ATA-6 these top two bits still had to match the pattern 01, but the
1707 // remaining bits were reserved (==0).
1708 int isSmartErrorLogCapable (const ata_smart_values * data, const ata_identify_device * identity)
1709 {
1710 unsigned short word84=identity->command_set_extension;
1711 unsigned short word87=identity->csf_default;
1712 int isata6=identity->major_rev_num & (0x01<<6);
1713 int isata7=identity->major_rev_num & (0x01<<7);
1714
1715 if ((isata6 || isata7) && (word84>>14) == 0x01 && (word84 & 0x01))
1716 return 1;
1717
1718 if ((isata6 || isata7) && (word87>>14) == 0x01 && (word87 & 0x01))
1719 return 1;
1720
1721 // otherwise we'll use the poorly documented capability bit
1722 return data->errorlog_capability & 0x01;
1723 }
1724
1725 // See previous function. If the error log exists then the self-test
1726 // log should (must?) also exist.
1727 int isSmartTestLogCapable (const ata_smart_values * data, const ata_identify_device *identity)
1728 {
1729 unsigned short word84=identity->command_set_extension;
1730 unsigned short word87=identity->csf_default;
1731 int isata6=identity->major_rev_num & (0x01<<6);
1732 int isata7=identity->major_rev_num & (0x01<<7);
1733
1734 if ((isata6 || isata7) && (word84>>14) == 0x01 && (word84 & 0x02))
1735 return 1;
1736
1737 if ((isata6 || isata7) && (word87>>14) == 0x01 && (word87 & 0x02))
1738 return 1;
1739
1740
1741 // otherwise we'll use the poorly documented capability bit
1742 return data->errorlog_capability & 0x01;
1743 }
1744
1745
1746 int isGeneralPurposeLoggingCapable(const ata_identify_device *identity)
1747 {
1748 unsigned short word84=identity->command_set_extension;
1749 unsigned short word87=identity->csf_default;
1750
1751 // If bit 14 of word 84 is set to one and bit 15 of word 84 is
1752 // cleared to zero, the contents of word 84 contains valid support
1753 // information. If not, support information is not valid in this
1754 // word.
1755 if ((word84>>14) == 0x01)
1756 // If bit 5 of word 84 is set to one, the device supports the
1757 // General Purpose Logging feature set.
1758 return (word84 & (0x01 << 5));
1759
1760 // If bit 14 of word 87 is set to one and bit 15 of word 87 is
1761 // cleared to zero, the contents of words (87:85) contain valid
1762 // information. If not, information is not valid in these words.
1763 if ((word87>>14) == 0x01)
1764 // If bit 5 of word 87 is set to one, the device supports
1765 // the General Purpose Logging feature set.
1766 return (word87 & (0x01 << 5));
1767
1768 // not capable
1769 return 0;
1770 }
1771
1772
1773 // SMART self-test capability is also indicated in bit 1 of DEVICE
1774 // IDENTIFY word 87 (if top two bits of word 87 match pattern 01).
1775 // However this was only introduced in ATA-6 (but self-test log was in
1776 // ATA-5).
1777 int isSupportExecuteOfflineImmediate(const ata_smart_values *data)
1778 {
1779 return data->offline_data_collection_capability & 0x01;
1780 }
1781
1782 // Note in the ATA-5 standard, the following bit is listed as "Vendor
1783 // Specific". So it may not be reliable. The only use of this that I
1784 // have found is in IBM drives, where it is well-documented. See for
1785 // example page 170, section 13.32.1.18 of the IBM Travelstar 40GNX
1786 // hard disk drive specifications page 164 Revision 1.1 22 Apr 2002.
1787 int isSupportAutomaticTimer(const ata_smart_values * data)
1788 {
1789 return data->offline_data_collection_capability & 0x02;
1790 }
1791 int isSupportOfflineAbort(const ata_smart_values *data)
1792 {
1793 return data->offline_data_collection_capability & 0x04;
1794 }
1795 int isSupportOfflineSurfaceScan(const ata_smart_values * data)
1796 {
1797 return data->offline_data_collection_capability & 0x08;
1798 }
1799 int isSupportSelfTest (const ata_smart_values * data)
1800 {
1801 return data->offline_data_collection_capability & 0x10;
1802 }
1803 int isSupportConveyanceSelfTest(const ata_smart_values * data)
1804 {
1805 return data->offline_data_collection_capability & 0x20;
1806 }
1807 int isSupportSelectiveSelfTest(const ata_smart_values * data)
1808 {
1809 return data->offline_data_collection_capability & 0x40;
1810 }
1811
1812 // Get attribute state
1813 ata_attr_state ata_get_attr_state(const ata_smart_attribute & attr,
1814 int attridx,
1815 const ata_smart_threshold_entry * thresholds,
1816 const ata_vendor_attr_defs & defs,
1817 unsigned char * threshval /* = 0 */)
1818 {
1819 if (!attr.id)
1820 return ATTRSTATE_NON_EXISTING;
1821
1822 // Normalized values (current,worst,threshold) not valid
1823 // if specified by '-v' option.
1824 // (Some SSD disks uses these bytes to store raw value).
1825 if (defs[attr.id].flags & ATTRFLAG_NO_NORMVAL)
1826 return ATTRSTATE_NO_NORMVAL;
1827
1828 // Normally threshold is at same index as attribute
1829 int i = attridx;
1830 if (thresholds[i].id != attr.id) {
1831 // Find threshold id in table
1832 for (i = 0; thresholds[i].id != attr.id; ) {
1833 if (++i >= NUMBER_ATA_SMART_ATTRIBUTES)
1834 // Threshold id missing or thresholds cannot be read
1835 return ATTRSTATE_NO_THRESHOLD;
1836 }
1837 }
1838 unsigned char threshold = thresholds[i].threshold;
1839
1840 // Return threshold if requested
1841 if (threshval)
1842 *threshval = threshold;
1843
1844 // Don't report a failed attribute if its threshold is 0.
1845 // ATA-3 (X3T13/2008D Revision 7b) declares 0x00 as the "always passing"
1846 // threshold (Later ATA versions declare all thresholds as "obsolete").
1847 // In practice, threshold value 0 is often used for usage attributes.
1848 if (!threshold)
1849 return ATTRSTATE_OK;
1850
1851 // Failed now if current value is below threshold
1852 if (attr.current <= threshold)
1853 return ATTRSTATE_FAILED_NOW;
1854
1855 // Failed in the past if worst value is below threshold
1856 if (!(defs[attr.id].flags & ATTRFLAG_NO_WORSTVAL) && attr.worst <= threshold)
1857 return ATTRSTATE_FAILED_PAST;
1858
1859 return ATTRSTATE_OK;
1860 }
1861
1862 // Get default raw value print format
1863 static ata_attr_raw_format get_default_raw_format(unsigned char id)
1864 {
1865 switch (id) {
1866 case 3: // Spin-up time
1867 return RAWFMT_RAW16_OPT_AVG16;
1868
1869 case 5: // Reallocated sector count
1870 case 196: // Reallocated event count
1871 return RAWFMT_RAW16_OPT_RAW16;
1872
1873 case 9: // Power on hours
1874 case 240: // Head flying hours
1875 return RAWFMT_RAW24_OPT_RAW8;
1876
1877 case 190: // Temperature
1878 case 194:
1879 return RAWFMT_TEMPMINMAX;
1880
1881 default:
1882 return RAWFMT_RAW48;
1883 }
1884 }
1885
1886 // Get attribute raw value.
1887 uint64_t ata_get_attr_raw_value(const ata_smart_attribute & attr,
1888 const ata_vendor_attr_defs & defs)
1889 {
1890 const ata_vendor_attr_defs::entry & def = defs[attr.id];
1891
1892 // Use default byteorder if not specified
1893 const char * byteorder = def.byteorder;
1894 if (!*byteorder) {
1895 switch (def.raw_format) {
1896 case RAWFMT_RAW64:
1897 case RAWFMT_HEX64:
1898 byteorder = "543210wv"; break;
1899 case RAWFMT_RAW56:
1900 case RAWFMT_HEX56:
1901 case RAWFMT_RAW24_DIV_RAW32:
1902 case RAWFMT_MSEC24_HOUR32:
1903 byteorder = "r543210"; break;
1904 default:
1905 byteorder = "543210"; break;
1906 }
1907 }
1908
1909 // Build 64-bit value from selected bytes
1910 uint64_t rawvalue = 0;
1911 for (int i = 0; byteorder[i]; i++) {
1912 unsigned char b;
1913 switch (byteorder[i]) {
1914 case '0': b = attr.raw[0]; break;
1915 case '1': b = attr.raw[1]; break;
1916 case '2': b = attr.raw[2]; break;
1917 case '3': b = attr.raw[3]; break;
1918 case '4': b = attr.raw[4]; break;
1919 case '5': b = attr.raw[5]; break;
1920 case 'r': b = attr.reserv; break;
1921 case 'v': b = attr.current; break;
1922 case 'w': b = attr.worst; break;
1923 default : b = 0; break;
1924 }
1925 rawvalue <<= 8; rawvalue |= b;
1926 }
1927
1928 return rawvalue;
1929 }
1930
1931 // Helper functions for RAWFMT_TEMPMINMAX
1932 static inline int check_temp_word(unsigned word)
1933 {
1934 if (word <= 0x7f)
1935 return 0x11; // >= 0, signed byte or word
1936 if (word <= 0xff)
1937 return 0x01; // < 0, signed byte
1938 if (0xff80 <= word)
1939 return 0x10; // < 0, signed word
1940 return 0x00;
1941 }
1942
1943 static bool check_temp_range(int t, unsigned char ut1, unsigned char ut2,
1944 int & lo, int & hi)
1945 {
1946 int t1 = (signed char)ut1, t2 = (signed char)ut2;
1947 if (t1 > t2) {
1948 int tx = t1; t1 = t2; t2 = tx;
1949 }
1950
1951 if ( -60 <= t1 && t1 <= t && t <= t2 && t2 <= 120
1952 && !(t1 == -1 && t2 <= 0) ) {
1953 lo = t1; hi = t2;
1954 return true;
1955 }
1956 return false;
1957 }
1958
1959 // Format attribute raw value.
1960 std::string ata_format_attr_raw_value(const ata_smart_attribute & attr,
1961 const ata_vendor_attr_defs & defs)
1962 {
1963 // Get 48 bit or 64 bit raw value
1964 uint64_t rawvalue = ata_get_attr_raw_value(attr, defs);
1965
1966 // Split into bytes and words
1967 unsigned char raw[6];
1968 raw[0] = (unsigned char) rawvalue;
1969 raw[1] = (unsigned char)(rawvalue >> 8);
1970 raw[2] = (unsigned char)(rawvalue >> 16);
1971 raw[3] = (unsigned char)(rawvalue >> 24);
1972 raw[4] = (unsigned char)(rawvalue >> 32);
1973 raw[5] = (unsigned char)(rawvalue >> 40);
1974 unsigned word[3];
1975 word[0] = raw[0] | (raw[1] << 8);
1976 word[1] = raw[2] | (raw[3] << 8);
1977 word[2] = raw[4] | (raw[5] << 8);
1978
1979 // Get print format
1980 ata_attr_raw_format format = defs[attr.id].raw_format;
1981 if (format == RAWFMT_DEFAULT)
1982 format = get_default_raw_format(attr.id);
1983
1984 // Print
1985 std::string s;
1986 switch (format) {
1987 case RAWFMT_RAW8:
1988 s = strprintf("%d %d %d %d %d %d",
1989 raw[5], raw[4], raw[3], raw[2], raw[1], raw[0]);
1990 break;
1991
1992 case RAWFMT_RAW16:
1993 s = strprintf("%u %u %u", word[2], word[1], word[0]);
1994 break;
1995
1996 case RAWFMT_RAW48:
1997 case RAWFMT_RAW56:
1998 case RAWFMT_RAW64:
1999 s = strprintf("%" PRIu64, rawvalue);
2000 break;
2001
2002 case RAWFMT_HEX48:
2003 s = strprintf("0x%012" PRIx64, rawvalue);
2004 break;
2005
2006 case RAWFMT_HEX56:
2007 s = strprintf("0x%014" PRIx64, rawvalue);
2008 break;
2009
2010 case RAWFMT_HEX64:
2011 s = strprintf("0x%016" PRIx64, rawvalue);
2012 break;
2013
2014 case RAWFMT_RAW16_OPT_RAW16:
2015 s = strprintf("%u", word[0]);
2016 if (word[1] || word[2])
2017 s += strprintf(" (%u %u)", word[2], word[1]);
2018 break;
2019
2020 case RAWFMT_RAW16_OPT_AVG16:
2021 s = strprintf("%u", word[0]);
2022 if (word[1])
2023 s += strprintf(" (Average %u)", word[1]);
2024 break;
2025
2026 case RAWFMT_RAW24_OPT_RAW8:
2027 s = strprintf("%u", (unsigned)(rawvalue & 0x00ffffffULL));
2028 if (raw[3] || raw[4] || raw[5])
2029 s += strprintf(" (%d %d %d)", raw[5], raw[4], raw[3]);
2030 break;
2031
2032 case RAWFMT_RAW24_DIV_RAW24:
2033 s = strprintf("%u/%u",
2034 (unsigned)(rawvalue >> 24), (unsigned)(rawvalue & 0x00ffffffULL));
2035 break;
2036
2037 case RAWFMT_RAW24_DIV_RAW32:
2038 s = strprintf("%u/%u",
2039 (unsigned)(rawvalue >> 32), (unsigned)(rawvalue & 0xffffffffULL));
2040 break;
2041
2042 case RAWFMT_MIN2HOUR:
2043 {
2044 // minutes
2045 int64_t temp = word[0]+(word[1]<<16);
2046 int64_t tmp1 = temp/60;
2047 int64_t tmp2 = temp%60;
2048 s = strprintf("%" PRIu64 "h+%02" PRIu64 "m", tmp1, tmp2);
2049 if (word[2])
2050 s += strprintf(" (%u)", word[2]);
2051 }
2052 break;
2053
2054 case RAWFMT_SEC2HOUR:
2055 {
2056 // seconds
2057 int64_t hours = rawvalue/3600;
2058 int64_t minutes = (rawvalue-3600*hours)/60;
2059 int64_t seconds = rawvalue%60;
2060 s = strprintf("%" PRIu64 "h+%02" PRIu64 "m+%02" PRIu64 "s", hours, minutes, seconds);
2061 }
2062 break;
2063
2064 case RAWFMT_HALFMIN2HOUR:
2065 {
2066 // 30-second counter
2067 int64_t hours = rawvalue/120;
2068 int64_t minutes = (rawvalue-120*hours)/2;
2069 s += strprintf("%" PRIu64 "h+%02" PRIu64 "m", hours, minutes);
2070 }
2071 break;
2072
2073 case RAWFMT_MSEC24_HOUR32:
2074 {
2075 // hours + milliseconds
2076 unsigned hours = (unsigned)(rawvalue & 0xffffffffULL);
2077 unsigned milliseconds = (unsigned)(rawvalue >> 32);
2078 unsigned seconds = milliseconds / 1000;
2079 s = strprintf("%uh+%02um+%02u.%03us",
2080 hours, seconds / 60, seconds % 60, milliseconds % 1000);
2081 }
2082 break;
2083
2084 case RAWFMT_TEMPMINMAX:
2085 // Temperature
2086 {
2087 // Search for possible min/max values
2088 // [5][4][3][2][1][0] raw[]
2089 // [ 2 ] [ 1 ] [ 0 ] word[]
2090 // xx HH xx LL xx TT (Hitachi/HGST)
2091 // xx LL xx HH xx TT (Kingston SSDs)
2092 // 00 00 HH LL xx TT (Maxtor, Samsung, Seagate, Toshiba)
2093 // 00 00 00 HH LL TT (WDC)
2094 // CC CC HH LL xx TT (WDC, CCCC=over temperature count)
2095 // (xx = 00/ff, possibly sign extension of lower byte)
2096
2097 int t = (signed char)raw[0];
2098 int lo = 0, hi = 0;
2099
2100 int tformat;
2101 int ctw0 = check_temp_word(word[0]);
2102 if (!word[2]) {
2103 if (!word[1] && ctw0)
2104 // 00 00 00 00 xx TT
2105 tformat = 0;
2106 else if (ctw0 && check_temp_range(t, raw[2], raw[3], lo, hi))
2107 // 00 00 HL LH xx TT
2108 tformat = 1;
2109 else if (!raw[3] && check_temp_range(t, raw[1], raw[2], lo, hi))
2110 // 00 00 00 HL LH TT
2111 tformat = 2;
2112 else
2113 tformat = -1;
2114 }
2115 else if (ctw0) {
2116 if ( (ctw0 & check_temp_word(word[1]) & check_temp_word(word[2])) != 0x00
2117 && check_temp_range(t, raw[2], raw[4], lo, hi) )
2118 // xx HL xx LH xx TT
2119 tformat = 3;
2120 else if ( word[2] < 0x7fff
2121 && check_temp_range(t, raw[2], raw[3], lo, hi)
2122 && hi >= 40 )
2123 // CC CC HL LH xx TT
2124 tformat = 4;
2125 else
2126 tformat = -2;
2127 }
2128 else
2129 tformat = -3;
2130
2131 switch (tformat) {
2132 case 0:
2133 s = strprintf("%d", t);
2134 break;
2135 case 1: case 2: case 3:
2136 s = strprintf("%d (Min/Max %d/%d)", t, lo, hi);
2137 break;
2138 case 4:
2139 s = strprintf("%d (Min/Max %d/%d #%d)", t, lo, hi, word[2]);
2140 break;
2141 default:
2142 s = strprintf("%d (%d %d %d %d %d)", raw[0], raw[5], raw[4], raw[3], raw[2], raw[1]);
2143 break;
2144 }
2145 }
2146 break;
2147
2148 case RAWFMT_TEMP10X:
2149 // ten times temperature in Celsius
2150 s = strprintf("%d.%d", word[0]/10, word[0]%10);
2151 break;
2152
2153 default:
2154 s = "?"; // Should not happen
2155 break;
2156 }
2157
2158 return s;
2159 }
2160
2161 // Attribute names shouldn't be longer than 23 chars, otherwise they break the
2162 // output of smartctl.
2163 static const char * get_default_attr_name(unsigned char id, int rpm)
2164 {
2165 bool hdd = (rpm > 1), ssd = (rpm == 1);
2166
2167 static const char Unknown_HDD_Attribute[] = "Unknown_HDD_Attribute";
2168 static const char Unknown_SSD_Attribute[] = "Unknown_SSD_Attribute";
2169
2170 switch (id) {
2171 case 1:
2172 return "Raw_Read_Error_Rate";
2173 case 2:
2174 return "Throughput_Performance";
2175 case 3:
2176 return "Spin_Up_Time";
2177 case 4:
2178 return "Start_Stop_Count";
2179 case 5:
2180 return "Reallocated_Sector_Ct";
2181 case 6:
2182 if (ssd) return Unknown_SSD_Attribute;
2183 return "Read_Channel_Margin";
2184 case 7:
2185 if (ssd) return Unknown_SSD_Attribute;
2186 return "Seek_Error_Rate";
2187 case 8:
2188 if (ssd) return Unknown_SSD_Attribute;
2189 return "Seek_Time_Performance";
2190 case 9:
2191 return "Power_On_Hours";
2192 case 10:
2193 if (ssd) return Unknown_SSD_Attribute;
2194 return "Spin_Retry_Count";
2195 case 11:
2196 if (ssd) return Unknown_SSD_Attribute;
2197 return "Calibration_Retry_Count";
2198 case 12:
2199 return "Power_Cycle_Count";
2200 case 13:
2201 return "Read_Soft_Error_Rate";
2202 case 175:
2203 if (hdd) return Unknown_HDD_Attribute;
2204 return "Program_Fail_Count_Chip";
2205 case 176:
2206 if (hdd) return Unknown_HDD_Attribute;
2207 return "Erase_Fail_Count_Chip";
2208 case 177:
2209 if (hdd) return Unknown_HDD_Attribute;
2210 return "Wear_Leveling_Count";
2211 case 178:
2212 if (hdd) return Unknown_HDD_Attribute;
2213 return "Used_Rsvd_Blk_Cnt_Chip";
2214 case 179:
2215 if (hdd) return Unknown_HDD_Attribute;
2216 return "Used_Rsvd_Blk_Cnt_Tot";
2217 case 180:
2218 if (hdd) return Unknown_HDD_Attribute;
2219 return "Unused_Rsvd_Blk_Cnt_Tot";
2220 case 181:
2221 return "Program_Fail_Cnt_Total";
2222 case 182:
2223 if (hdd) return Unknown_HDD_Attribute;
2224 return "Erase_Fail_Count_Total";
2225 case 183:
2226 return "Runtime_Bad_Block";
2227 case 184:
2228 return "End-to-End_Error";
2229 case 187:
2230 return "Reported_Uncorrect";
2231 case 188:
2232 return "Command_Timeout";
2233 case 189:
2234 if (ssd) return Unknown_SSD_Attribute;
2235 return "High_Fly_Writes";
2236 case 190:
2237 // Western Digital uses this for temperature.
2238 // It's identical to Attribute 194 except that it
2239 // has a failure threshold set to correspond to the
2240 // max allowed operating temperature of the drive, which
2241 // is typically 55C. So if this attribute has failed
2242 // in the past, it indicates that the drive temp exceeded
2243 // 55C sometime in the past.
2244 return "Airflow_Temperature_Cel";
2245 case 191:
2246 if (ssd) return Unknown_SSD_Attribute;
2247 return "G-Sense_Error_Rate";
2248 case 192:
2249 return "Power-Off_Retract_Count";
2250 case 193:
2251 if (ssd) return Unknown_SSD_Attribute;
2252 return "Load_Cycle_Count";
2253 case 194:
2254 return "Temperature_Celsius";
2255 case 195:
2256 // Fujitsu: "ECC_On_The_Fly_Count";
2257 return "Hardware_ECC_Recovered";
2258 case 196:
2259 return "Reallocated_Event_Count";
2260 case 197:
2261 return "Current_Pending_Sector";
2262 case 198:
2263 return "Offline_Uncorrectable";
2264 case 199:
2265 return "UDMA_CRC_Error_Count";
2266 case 200:
2267 if (ssd) return Unknown_SSD_Attribute;
2268 // Western Digital
2269 return "Multi_Zone_Error_Rate";
2270 case 201:
2271 if (ssd) return Unknown_SSD_Attribute;
2272 return "Soft_Read_Error_Rate";
2273 case 202:
2274 if (ssd) return Unknown_SSD_Attribute;
2275 // Fujitsu: "TA_Increase_Count"
2276 return "Data_Address_Mark_Errs";
2277 case 203:
2278 // Fujitsu
2279 return "Run_Out_Cancel";
2280 // Maxtor: ECC Errors
2281 case 204:
2282 // Fujitsu: "Shock_Count_Write_Opern"
2283 return "Soft_ECC_Correction";
2284 case 205:
2285 // Fujitsu: "Shock_Rate_Write_Opern"
2286 return "Thermal_Asperity_Rate";
2287 case 206:
2288 // Fujitsu
2289 if (ssd) return Unknown_SSD_Attribute;
2290 return "Flying_Height";
2291 case 207:
2292 // Maxtor
2293 if (ssd) return Unknown_SSD_Attribute;
2294 return "Spin_High_Current";
2295 case 208:
2296 // Maxtor
2297 if (ssd) return Unknown_SSD_Attribute;
2298 return "Spin_Buzz";
2299 case 209:
2300 // Maxtor
2301 if (ssd) return Unknown_SSD_Attribute;
2302 return "Offline_Seek_Performnce";
2303 case 220:
2304 if (ssd) return Unknown_SSD_Attribute;
2305 return "Disk_Shift";
2306 case 221:
2307 if (ssd) return Unknown_SSD_Attribute;
2308 return "G-Sense_Error_Rate";
2309 case 222:
2310 if (ssd) return Unknown_SSD_Attribute;
2311 return "Loaded_Hours";
2312 case 223:
2313 if (ssd) return Unknown_SSD_Attribute;
2314 return "Load_Retry_Count";
2315 case 224:
2316 if (ssd) return Unknown_SSD_Attribute;
2317 return "Load_Friction";
2318 case 225:
2319 if (ssd) return Unknown_SSD_Attribute;
2320 return "Load_Cycle_Count";
2321 case 226:
2322 if (ssd) return Unknown_SSD_Attribute;
2323 return "Load-in_Time";
2324 case 227:
2325 if (ssd) return Unknown_SSD_Attribute;
2326 return "Torq-amp_Count";
2327 case 228:
2328 return "Power-off_Retract_Count";
2329 case 230:
2330 // seen in IBM DTPA-353750
2331 if (ssd) return Unknown_SSD_Attribute;
2332 return "Head_Amplitude";
2333 case 231:
2334 return "Temperature_Celsius";
2335 case 232:
2336 // seen in Intel X25-E SSD
2337 return "Available_Reservd_Space";
2338 case 233:
2339 // seen in Intel X25-E SSD
2340 if (hdd) return Unknown_HDD_Attribute;
2341 return "Media_Wearout_Indicator";
2342 case 240:
2343 if (ssd) return Unknown_SSD_Attribute;
2344 return "Head_Flying_Hours";
2345 case 241:
2346 return "Total_LBAs_Written";
2347 case 242:
2348 return "Total_LBAs_Read";
2349 case 250:
2350 return "Read_Error_Retry_Rate";
2351 case 254:
2352 if (ssd) return Unknown_SSD_Attribute;
2353 return "Free_Fall_Sensor";
2354 default:
2355 return "Unknown_Attribute";
2356 }
2357 }
2358
2359 // Get attribute name
2360 std::string ata_get_smart_attr_name(unsigned char id, const ata_vendor_attr_defs & defs,
2361 int rpm /* = 0 */)
2362 {
2363 if (!defs[id].name.empty())
2364 return defs[id].name;
2365 else
2366 return get_default_attr_name(id, rpm);
2367 }
2368
2369 // Find attribute index for attribute id, -1 if not found.
2370 int ata_find_attr_index(unsigned char id, const ata_smart_values & smartval)
2371 {
2372 if (!id)
2373 return -1;
2374 for (int i = 0; i < NUMBER_ATA_SMART_ATTRIBUTES; i++) {
2375 if (smartval.vendor_attributes[i].id == id)
2376 return i;
2377 }
2378 return -1;
2379 }
2380
2381 // Return Temperature Attribute raw value selected according to possible
2382 // non-default interpretations. If the Attribute does not exist, return 0
2383 unsigned char ata_return_temperature_value(const ata_smart_values * data, const ata_vendor_attr_defs & defs)
2384 {
2385 for (int i = 0; i < 4; i++) {
2386 static const unsigned char ids[4] = {194, 190, 9, 220};
2387 unsigned char id = ids[i];
2388 const ata_attr_raw_format format = defs[id].raw_format;
2389 if (!( ((id == 194 || id == 190) && format == RAWFMT_DEFAULT)
2390 || format == RAWFMT_TEMPMINMAX || format == RAWFMT_TEMP10X))
2391 continue;
2392 int idx = ata_find_attr_index(id, *data);
2393 if (idx < 0)
2394 continue;
2395 uint64_t raw = ata_get_attr_raw_value(data->vendor_attributes[idx], defs);
2396 unsigned temp;
2397 // ignore possible min/max values in high words
2398 if (format == RAWFMT_TEMP10X) // -v N,temp10x
2399 temp = ((unsigned short)raw + 5) / 10;
2400 else
2401 temp = (unsigned char)raw;
2402 if (!(0 < temp && temp < 128))
2403 continue;
2404 return temp;
2405 }
2406 // No valid attribute found
2407 return 0;
2408 }
2409
2410
2411 // Read SCT Status
2412 int ataReadSCTStatus(ata_device * device, ata_sct_status_response * sts)
2413 {
2414 // read SCT status via SMART log 0xe0
2415 memset(sts, 0, sizeof(*sts));
2416 if (smartcommandhandler(device, READ_LOG, 0xe0, (char *)sts)){
2417 pout("Read SCT Status failed: %s\n", device->get_errmsg());
2418 return -1;
2419 }
2420
2421 // swap endian order if needed
2422 if (isbigendian()){
2423 swapx(&sts->format_version);
2424 swapx(&sts->sct_version);
2425 swapx(&sts->sct_spec);
2426 swapx(&sts->ext_status_code);
2427 swapx(&sts->action_code);
2428 swapx(&sts->function_code);
2429 swapx(&sts->over_limit_count);
2430 swapx(&sts->under_limit_count);
2431 }
2432
2433 // Check format version
2434 if (!(sts->format_version == 2 || sts->format_version == 3)) {
2435 pout("Unknown SCT Status format version %u, should be 2 or 3.\n", sts->format_version);
2436 return -1;
2437 }
2438 return 0;
2439 }
2440
2441 // Read SCT Temperature History Table
2442 int ataReadSCTTempHist(ata_device * device, ata_sct_temperature_history_table * tmh,
2443 ata_sct_status_response * sts)
2444 {
2445 // Initial SCT status must be provided by caller
2446
2447 // Do nothing if other SCT command is executing
2448 if (sts->ext_status_code == 0xffff) {
2449 pout("Another SCT command is executing, abort Read Data Table\n"
2450 "(SCT ext_status_code 0x%04x, action_code=%u, function_code=%u)\n",
2451 sts->ext_status_code, sts->action_code, sts->function_code);
2452 return -1;
2453 }
2454
2455 ata_sct_data_table_command cmd; memset(&cmd, 0, sizeof(cmd));
2456 // CAUTION: DO NOT CHANGE THIS VALUE (SOME ACTION CODES MAY ERASE DISK)
2457 cmd.action_code = 5; // Data table command
2458 cmd.function_code = 1; // Read table
2459 cmd.table_id = 2; // Temperature History Table
2460
2461 // swap endian order if needed
2462 if (isbigendian()) {
2463 swapx(&cmd.action_code);
2464 swapx(&cmd.function_code);
2465 swapx(&cmd.table_id);
2466 }
2467
2468 // write command via SMART log page 0xe0
2469 if (smartcommandhandler(device, WRITE_LOG, 0xe0, (char *)&cmd)){
2470 pout("Write SCT Data Table failed: %s\n", device->get_errmsg());
2471 return -1;
2472 }
2473
2474 // read SCT data via SMART log page 0xe1
2475 memset(tmh, 0, sizeof(*tmh));
2476 if (smartcommandhandler(device, READ_LOG, 0xe1, (char *)tmh)){
2477 pout("Read SCT Data Table failed: %s\n", device->get_errmsg());
2478 return -1;
2479 }
2480
2481 // re-read and check SCT status
2482 if (ataReadSCTStatus(device, sts))
2483 return -1;
2484
2485 if (!(sts->ext_status_code == 0 && sts->action_code == 5 && sts->function_code == 1)) {
2486 pout("Unexpected SCT status 0x%04x (action_code=%u, function_code=%u)\n",
2487 sts->ext_status_code, sts->action_code, sts->function_code);
2488 return -1;
2489 }
2490
2491 // swap endian order if needed
2492 if (isbigendian()){
2493 swapx(&tmh->format_version);
2494 swapx(&tmh->sampling_period);
2495 swapx(&tmh->interval);
2496 swapx(&tmh->cb_index);
2497 swapx(&tmh->cb_size);
2498 }
2499 return 0;
2500 }
2501
2502 // Get/Set Write Cache Reordering
2503 int ataGetSetSCTWriteCacheReordering(ata_device * device, bool enable, bool persistent, bool set)
2504 {
2505 // Check initial status
2506 ata_sct_status_response sts;
2507 if (ataReadSCTStatus(device, &sts))
2508 return -1;
2509
2510 // Do nothing if other SCT command is executing
2511 if (sts.ext_status_code == 0xffff) {
2512 pout("Another SCT command is executing, abort Feature Control\n"
2513 "(SCT ext_status_code 0x%04x, action_code=%u, function_code=%u)\n",
2514 sts.ext_status_code, sts.action_code, sts.function_code);
2515 return -1;
2516 }
2517
2518 ata_sct_feature_control_command cmd; memset(&cmd, 0, sizeof(cmd));
2519 // CAUTION: DO NOT CHANGE THIS VALUE (SOME ACTION CODES MAY ERASE DISK)
2520 cmd.action_code = 4; // Feature Control command
2521 cmd.function_code = (set ? 1 : 2); // 1=Set, 2=Get
2522 cmd.feature_code = 2; // Enable/Disable Write Cache Reordering
2523 cmd.state = (enable ? 1 : 2); // 1 enable, 2 disable
2524 cmd.option_flags = (persistent ? 0x01 : 0x00);
2525
2526 // swap endian order if needed
2527 if (isbigendian()) {
2528 swapx(&cmd.action_code);
2529 swapx(&cmd.function_code);
2530 swapx(&cmd.feature_code);
2531 swapx(&cmd.state);
2532 swapx(&cmd.option_flags);
2533 }
2534
2535 // write command via SMART log page 0xe0
2536 // TODO: Debug output
2537 ata_cmd_in in;
2538 in.in_regs.command = ATA_SMART_CMD;
2539 in.in_regs.lba_high = SMART_CYL_HI; in.in_regs.lba_mid = SMART_CYL_LOW;
2540 in.in_regs.features = ATA_SMART_WRITE_LOG_SECTOR;
2541 in.in_regs.lba_low = 0xe0;
2542 in.set_data_out(&cmd, 1);
2543
2544 if (!set)
2545 // Time limit returned in ATA registers
2546 in.out_needed.sector_count = in.out_needed.lba_low = true;
2547
2548 ata_cmd_out out;
2549 if (!device->ata_pass_through(in, out)) {
2550 pout("Write SCT (%cet) Feature Control Command failed: %s\n",
2551 (!set ? 'G' : 'S'), device->get_errmsg());
2552 return -1;
2553 }
2554 int state = out.out_regs.sector_count | (out.out_regs.lba_low << 8);
2555
2556 // re-read and check SCT status
2557 if (ataReadSCTStatus(device, &sts))
2558 return -1;
2559
2560 if (!(sts.ext_status_code == 0 && sts.action_code == 4 && sts.function_code == (set ? 1 : 2))) {
2561 pout("Unexpected SCT status 0x%04x (action_code=%u, function_code=%u)\n",
2562 sts.ext_status_code, sts.action_code, sts.function_code);
2563 return -1;
2564 }
2565 return state;
2566 }
2567
2568
2569 // Set SCT Temperature Logging Interval
2570 int ataSetSCTTempInterval(ata_device * device, unsigned interval, bool persistent)
2571 {
2572 // Check initial status
2573 ata_sct_status_response sts;
2574 if (ataReadSCTStatus(device, &sts))
2575 return -1;
2576
2577 // Do nothing if other SCT command is executing
2578 if (sts.ext_status_code == 0xffff) {
2579 pout("Another SCT command is executing, abort Feature Control\n"
2580 "(SCT ext_status_code 0x%04x, action_code=%u, function_code=%u)\n",
2581 sts.ext_status_code, sts.action_code, sts.function_code);
2582 return -1;
2583 }
2584
2585 ata_sct_feature_control_command cmd; memset(&cmd, 0, sizeof(cmd));
2586 // CAUTION: DO NOT CHANGE THIS VALUE (SOME ACTION CODES MAY ERASE DISK)
2587 cmd.action_code = 4; // Feature Control command
2588 cmd.function_code = 1; // Set state
2589 cmd.feature_code = 3; // Temperature logging interval
2590 cmd.state = interval;
2591 cmd.option_flags = (persistent ? 0x01 : 0x00);
2592
2593 // swap endian order if needed
2594 if (isbigendian()) {
2595 swapx(&cmd.action_code);
2596 swapx(&cmd.function_code);
2597 swapx(&cmd.feature_code);
2598 swapx(&cmd.state);
2599 swapx(&cmd.option_flags);
2600 }
2601
2602 // write command via SMART log page 0xe0
2603 if (smartcommandhandler(device, WRITE_LOG, 0xe0, (char *)&cmd)){
2604 pout("Write SCT Feature Control Command failed: %s\n", device->get_errmsg());
2605 return -1;
2606 }
2607
2608 // re-read and check SCT status
2609 if (ataReadSCTStatus(device, &sts))
2610 return -1;
2611
2612 if (!(sts.ext_status_code == 0 && sts.action_code == 4 && sts.function_code == 1)) {
2613 pout("Unexpected SCT status 0x%04x (action_code=%u, function_code=%u)\n",
2614 sts.ext_status_code, sts.action_code, sts.function_code);
2615 return -1;
2616 }
2617 return 0;
2618 }
2619
2620 // Get/Set SCT Error Recovery Control
2621 static int ataGetSetSCTErrorRecoveryControltime(ata_device * device, unsigned type,
2622 bool set, unsigned short & time_limit)
2623 {
2624 // Check initial status
2625 ata_sct_status_response sts;
2626 if (ataReadSCTStatus(device, &sts))
2627 return -1;
2628
2629 // Do nothing if other SCT command is executing
2630 if (sts.ext_status_code == 0xffff) {
2631 pout("Another SCT command is executing, abort Error Recovery Control\n"
2632 "(SCT ext_status_code 0x%04x, action_code=%u, function_code=%u)\n",
2633 sts.ext_status_code, sts.action_code, sts.function_code);
2634 return -1;
2635 }
2636
2637 ata_sct_error_recovery_control_command cmd; memset(&cmd, 0, sizeof(cmd));
2638 // CAUTION: DO NOT CHANGE THIS VALUE (SOME ACTION CODES MAY ERASE DISK)
2639 cmd.action_code = 3; // Error Recovery Control command
2640 cmd.function_code = (set ? 1 : 2); // 1=Set timer, 2=Get timer
2641 cmd.selection_code = type; // 1=Read timer, 2=Write timer
2642 if (set)
2643 cmd.time_limit = time_limit;
2644
2645 // swap endian order if needed
2646 if (isbigendian()) {
2647 swapx(&cmd.action_code);
2648 swapx(&cmd.function_code);
2649 swapx(&cmd.selection_code);
2650 swapx(&cmd.time_limit);
2651 }
2652
2653 // write command via SMART log page 0xe0
2654 // TODO: Debug output
2655 ata_cmd_in in;
2656 in.in_regs.command = ATA_SMART_CMD;
2657 in.in_regs.lba_high = SMART_CYL_HI; in.in_regs.lba_mid = SMART_CYL_LOW;
2658 in.in_regs.features = ATA_SMART_WRITE_LOG_SECTOR;
2659 in.in_regs.lba_low = 0xe0;
2660 in.set_data_out(&cmd, 1);
2661
2662 if (!set)
2663 // Time limit returned in ATA registers
2664 in.out_needed.sector_count = in.out_needed.lba_low = true;
2665
2666 ata_cmd_out out;
2667 if (!device->ata_pass_through(in, out)) {
2668 pout("Write SCT (%cet) Error Recovery Control Command failed: %s\n",
2669 (!set ? 'G' : 'S'), device->get_errmsg());
2670 return -1;
2671 }
2672
2673 // re-read and check SCT status
2674 if (ataReadSCTStatus(device, &sts))
2675 return -1;
2676
2677 if (!(sts.ext_status_code == 0 && sts.action_code == 3 && sts.function_code == (set ? 1 : 2))) {
2678 pout("Unexpected SCT status 0x%04x (action_code=%u, function_code=%u)\n",
2679 sts.ext_status_code, sts.action_code, sts.function_code);
2680 return -1;
2681 }
2682
2683 if (!set) {
2684 // Check whether registers are properly returned by ioctl()
2685 if (!(out.out_regs.sector_count.is_set() && out.out_regs.lba_low.is_set())) {
2686 // TODO: Output register support should be checked within each ata_pass_through()
2687 // implementation before command is issued.
2688 pout("SMART WRITE LOG does not return COUNT and LBA_LOW register\n");
2689 return -1;
2690 }
2691 if ( out.out_regs.sector_count == in.in_regs.sector_count
2692 && out.out_regs.lba_low == in.in_regs.lba_low ) {
2693 // 0xe001 (5734.5s) - this is most likely a broken ATA pass-through implementation
2694 pout("SMART WRITE LOG returns COUNT and LBA_LOW register unchanged\n");
2695 return -1;
2696 }
2697
2698 // Return value to caller
2699 time_limit = out.out_regs.sector_count | (out.out_regs.lba_low << 8);
2700 }
2701
2702 return 0;
2703 }
2704
2705 // Get SCT Error Recovery Control
2706 int ataGetSCTErrorRecoveryControltime(ata_device * device, unsigned type, unsigned short & time_limit)
2707 {
2708 return ataGetSetSCTErrorRecoveryControltime(device, type, false/*get*/, time_limit);
2709 }
2710
2711 // Set SCT Error Recovery Control
2712 int ataSetSCTErrorRecoveryControltime(ata_device * device, unsigned type, unsigned short time_limit)
2713 {
2714 return ataGetSetSCTErrorRecoveryControltime(device, type, true/*set*/, time_limit);
2715 }
2716
2717
2718 // Print one self-test log entry.
2719 // Returns:
2720 // -1: self-test failed
2721 // 1: extended self-test completed without error
2722 // 0: otherwise
2723 int ataPrintSmartSelfTestEntry(unsigned testnum, unsigned char test_type,
2724 unsigned char test_status,
2725 unsigned short timestamp,
2726 uint64_t failing_lba,
2727 bool print_error_only, bool & print_header)
2728 {
2729 // Check status and type for return value
2730 int retval = 0;
2731 switch (test_status >> 4) {
2732 case 0x0:
2733 if ((test_type & 0x0f) == 0x02)
2734 retval = 1; // extended self-test completed without error
2735 break;
2736 case 0x3: case 0x4:
2737 case 0x5: case 0x6:
2738 case 0x7: case 0x8:
2739 retval = -1; // self-test failed
2740 break;
2741 }
2742
2743 if (retval >= 0 && print_error_only)
2744 return retval;
2745
2746 std::string msgtest;
2747 switch (test_type) {
2748 case 0x00: msgtest = "Offline"; break;
2749 case 0x01: msgtest = "Short offline"; break;
2750 case 0x02: msgtest = "Extended offline"; break;
2751 case 0x03: msgtest = "Conveyance offline"; break;
2752 case 0x04: msgtest = "Selective offline"; break;
2753 case 0x7f: msgtest = "Abort offline test"; break;
2754 case 0x81: msgtest = "Short captive"; break;
2755 case 0x82: msgtest = "Extended captive"; break;
2756 case 0x83: msgtest = "Conveyance captive"; break;
2757 case 0x84: msgtest = "Selective captive"; break;
2758 default:
2759 if ((0x40 <= test_type && test_type <= 0x7e) || 0x90 <= test_type)
2760 msgtest = strprintf("Vendor (0x%02x)", test_type);
2761 else
2762 msgtest = strprintf("Reserved (0x%02x)", test_type);
2763 }
2764
2765 std::string msgstat;
2766 switch (test_status >> 4) {
2767 case 0x0: msgstat = "Completed without error"; break;
2768 case 0x1: msgstat = "Aborted by host"; break;
2769 case 0x2: msgstat = "Interrupted (host reset)"; break;
2770 case 0x3: msgstat = "Fatal or unknown error"; break;
2771 case 0x4: msgstat = "Completed: unknown failure"; break;
2772 case 0x5: msgstat = "Completed: electrical failure"; break;
2773 case 0x6: msgstat = "Completed: servo/seek failure"; break;
2774 case 0x7: msgstat = "Completed: read failure"; break;
2775 case 0x8: msgstat = "Completed: handling damage??"; break;
2776 case 0xf: msgstat = "Self-test routine in progress"; break;
2777 default: msgstat = strprintf("Unknown status (0x%x)", test_status >> 4);
2778 }
2779
2780 // Print header once
2781 if (print_header) {
2782 print_header = false;
2783 pout("Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error\n");
2784 }
2785
2786 char msglba[32];
2787 if (retval < 0 && failing_lba < 0xffffffffffffULL)
2788 snprintf(msglba, sizeof(msglba), "%" PRIu64, failing_lba);
2789 else {
2790 msglba[0] = '-'; msglba[1] = 0;
2791 }
2792
2793 pout("#%2u %-19s %-29s %1d0%% %8u %s\n", testnum,
2794 msgtest.c_str(), msgstat.c_str(), test_status & 0x0f, timestamp, msglba);
2795
2796 return retval;
2797 }
2798
2799 // Print Smart self-test log, used by smartctl and smartd.
2800 // return value is:
2801 // bottom 8 bits: number of entries found where self-test showed an error
2802 // remaining bits: if nonzero, power on hours of last self-test where error was found
2803 int ataPrintSmartSelfTestlog(const ata_smart_selftestlog * data, bool allentries,
2804 firmwarebug_defs firmwarebugs)
2805 {
2806 if (allentries)
2807 pout("SMART Self-test log structure revision number %d\n",(int)data->revnumber);
2808 if (data->revnumber != 0x0001 && allentries && !firmwarebugs.is_set(BUG_SAMSUNG))
2809 pout("Warning: ATA Specification requires self-test log structure revision number = 1\n");
2810 if (data->mostrecenttest==0){
2811 if (allentries)
2812 pout("No self-tests have been logged. [To run self-tests, use: smartctl -t]\n");
2813 return 0;
2814 }
2815
2816 bool noheaderprinted = true;
2817 int errcnt = 0, hours = 0, igncnt = 0;
2818 int testno = 0, ext_ok_testno = -1;
2819
2820 // print log
2821 for (int i = 20; i >= 0; i--) {
2822 // log is a circular buffer
2823 int j = (i+data->mostrecenttest)%21;
2824 const ata_smart_selftestlog_struct * log = data->selftest_struct+j;
2825
2826 if (nonempty(log, sizeof(*log))) {
2827 // count entry based on non-empty structures -- needed for
2828 // Seagate only -- other vendors don't have blank entries 'in
2829 // the middle'
2830 testno++;
2831
2832 // T13/1321D revision 1c: (Data structure Rev #1)
2833
2834 //The failing LBA shall be the LBA of the uncorrectable sector
2835 //that caused the test to fail. If the device encountered more
2836 //than one uncorrectable sector during the test, this field
2837 //shall indicate the LBA of the first uncorrectable sector
2838 //encountered. If the test passed or the test failed for some
2839 //reason other than an uncorrectable sector, the value of this
2840 //field is undefined.
2841
2842 // This is true in ALL ATA-5 specs
2843 uint64_t lba48 = (log->lbafirstfailure < 0xffffffff ? log->lbafirstfailure : 0xffffffffffffULL);
2844
2845 // Print entry
2846 int state = ataPrintSmartSelfTestEntry(testno,
2847 log->selftestnumber, log->selfteststatus,
2848 log->timestamp, lba48, !allentries, noheaderprinted);
2849
2850 if (state < 0) {
2851 // Self-test showed an error
2852 if (ext_ok_testno < 0) {
2853 errcnt++;
2854
2855 // keep track of time of most recent error
2856 if (!hours)
2857 hours = log->timestamp;
2858 }
2859 else
2860 // Newer successful extended self-test exits
2861 igncnt++;
2862 }
2863 else if (state > 0 && ext_ok_testno < 0) {
2864 // Latest successful extended self-test
2865 ext_ok_testno = testno;
2866 }
2867 }
2868 }
2869
2870 if (igncnt)
2871 pout("%d of %d failed self-tests are outdated by newer successful extended offline self-test #%2d\n",
2872 igncnt, igncnt+errcnt, ext_ok_testno);
2873
2874 if (!allentries && !noheaderprinted)
2875 pout("\n");
2876
2877 return ((hours << 8) | errcnt);
2878 }
2879
2880
2881 /////////////////////////////////////////////////////////////////////////////
2882 // Pseudo-device to parse "smartctl -r ataioctl,2 ..." output and simulate
2883 // an ATA device with same behaviour
2884
2885 namespace {
2886
2887 class parsed_ata_device
2888 : public /*implements*/ ata_device_with_command_set
2889 {
2890 public:
2891 parsed_ata_device(smart_interface * intf, const char * dev_name);
2892
2893 virtual ~parsed_ata_device() throw();
2894
2895 virtual bool is_open() const;
2896
2897 virtual bool open();
2898
2899 virtual bool close();
2900
2901 virtual bool ata_identify_is_cached() const;
2902
2903 protected:
2904 virtual int ata_command_interface(smart_command_set command, int select, char * data);
2905
2906 private:
2907 // Table of parsed commands, return value, data
2908 struct parsed_ata_command
2909 {
2910 smart_command_set command;
2911 int select;
2912 int retval, errval;
2913 char * data;
2914 };
2915
2916 enum { max_num_commands = 32 };
2917 parsed_ata_command m_command_table[max_num_commands];
2918
2919 int m_num_commands;
2920 int m_next_replay_command;
2921 bool m_replay_out_of_sync;
2922 bool m_ata_identify_is_cached;
2923 };
2924
2925 static const char * nextline(const char * s, int & lineno)
2926 {
2927 for (s += strcspn(s, "\r\n"); *s == '\r' || *s == '\n'; s++) {
2928 if (*s == '\r' && s[1] == '\n')
2929 s++;
2930 lineno++;
2931 }
2932 return s;
2933 }
2934
2935 static int name2command(const char * s)
2936 {
2937 for (int i = 0; i < (int)(sizeof(commandstrings)/sizeof(commandstrings[0])); i++) {
2938 if (!strcmp(s, commandstrings[i]))
2939 return i;
2940 }
2941 return -1;
2942 }
2943
2944 static bool matchcpy(char * dest, size_t size, const char * src, const regmatch_t & srcmatch)
2945 {
2946 if (srcmatch.rm_so < 0)
2947 return false;
2948 size_t n = srcmatch.rm_eo - srcmatch.rm_so;
2949 if (n >= size)
2950 n = size-1;
2951 memcpy(dest, src + srcmatch.rm_so, n);
2952 dest[n] = 0;
2953 return true;
2954 }
2955
2956 static inline int matchtoi(const char * src, const regmatch_t & srcmatch, int defval)
2957 {
2958 if (srcmatch.rm_so < 0)
2959 return defval;
2960 return atoi(src + srcmatch.rm_so);
2961 }
2962
2963 parsed_ata_device::parsed_ata_device(smart_interface * intf, const char * dev_name)
2964 : smart_device(intf, dev_name, "ata", ""),
2965 m_num_commands(0),
2966 m_next_replay_command(0),
2967 m_replay_out_of_sync(false),
2968 m_ata_identify_is_cached(false)
2969 {
2970 memset(m_command_table, 0, sizeof(m_command_table));
2971 }
2972
2973 parsed_ata_device::~parsed_ata_device() throw()
2974 {
2975 close();
2976 }
2977
2978 bool parsed_ata_device::is_open() const
2979 {
2980 return (m_num_commands > 0);
2981 }
2982
2983 // Parse stdin and build command table
2984 bool parsed_ata_device::open()
2985 {
2986 const char * pathname = get_dev_name();
2987 if (strcmp(pathname, "-"))
2988 return set_err(EINVAL);
2989 pathname = "<stdin>";
2990 // Fill buffer
2991 char buffer[64*1024];
2992 int size = 0;
2993 while (size < (int)sizeof(buffer)) {
2994 int nr = fread(buffer, 1, sizeof(buffer), stdin);
2995 if (nr <= 0)
2996 break;
2997 size += nr;
2998 }
2999 if (size <= 0)
3000 return set_err(ENOENT, "%s: Unexpected EOF", pathname);
3001 if (size >= (int)sizeof(buffer))
3002 return set_err(EIO, "%s: Buffer overflow", pathname);
3003 buffer[size] = 0;
3004
3005 // Regex to match output from "-r ataioctl,2"
3006 static const char pattern[] = "^"
3007 "(" // (1
3008 "REPORT-IOCTL: DeviceF?D?=[^ ]+ Command=([A-Z ]*[A-Z])" // (2)
3009 "(" // (3
3010 "( InputParameter=([0-9]+))?" // (4 (5))
3011 "|"
3012 "( returned (-?[0-9]+)( errno=([0-9]+)[^\r\n]*)?)" // (6 (7) (8 (9)))
3013 ")" // )
3014 "[\r\n]" // EOL match necessary to match optional parts above
3015 "|"
3016 "===== \\[([A-Z ]*[A-Z])\\] DATA START " // (10)
3017 "|"
3018 " *(En|Dis)abled status cached by OS, " // (11)
3019 ")"; // )
3020
3021 // Compile regex
3022 const regular_expression regex(pattern, REG_EXTENDED);
3023
3024 // Parse buffer
3025 const char * errmsg = 0;
3026 int i = -1, state = 0, lineno = 1;
3027 for (const char * line = buffer; *line; line = nextline(line, lineno)) {
3028 // Match line
3029 if (!(line[0] == 'R' || line[0] == '=' || line[0] == ' '))
3030 continue;
3031 const int nmatch = 1+11;
3032 regmatch_t match[nmatch];
3033 if (!regex.execute(line, nmatch, match))
3034 continue;
3035
3036 char cmdname[40];
3037 if (matchcpy(cmdname, sizeof(cmdname), line, match[2])) { // "REPORT-IOCTL:... Command=%s ..."
3038 int nc = name2command(cmdname);
3039 if (nc < 0) {
3040 errmsg = "Unknown ATA command name"; break;
3041 }
3042 if (match[7].rm_so < 0) { // "returned %d"
3043 // Start of command
3044 if (!(state == 0 || state == 2)) {
3045 errmsg = "Missing REPORT-IOCTL result"; break;
3046 }
3047 if (++i >= max_num_commands) {
3048 errmsg = "Too many ATA commands"; break;
3049 }
3050 m_command_table[i].command = (smart_command_set)nc;
3051 m_command_table[i].select = matchtoi(line, match[5], 0); // "InputParameter=%d"
3052 state = 1;
3053 }
3054 else {
3055 // End of command
3056 if (!(state == 1 && (int)m_command_table[i].command == nc)) {
3057 errmsg = "Missing REPORT-IOCTL start"; break;
3058 }
3059 m_command_table[i].retval = matchtoi(line, match[7], -1); // "returned %d"
3060 m_command_table[i].errval = matchtoi(line, match[9], 0); // "errno=%d"
3061 state = 2;
3062 }
3063 }
3064 else if (matchcpy(cmdname, sizeof(cmdname), line, match[10])) { // "===== [%s] DATA START "
3065 // Start of sector hexdump
3066 int nc = name2command(cmdname);
3067 if (!(state == (nc == WRITE_LOG ? 1 : 2) && (int)m_command_table[i].command == nc)) {
3068 errmsg = "Unexpected DATA START"; break;
3069 }
3070 line = nextline(line, lineno);
3071 char * data = (char *)malloc(512);
3072 unsigned j;
3073 for (j = 0; j < 32; j++) {
3074 unsigned b[16];
3075 unsigned u1, u2; int n1 = -1;
3076 if (!(sscanf(line, "%3u-%3u: "
3077 "%2x %2x %2x %2x %2x %2x %2x %2x "
3078 "%2x %2x %2x %2x %2x %2x %2x %2x%n",
3079 &u1, &u2,
3080 b+ 0, b+ 1, b+ 2, b+ 3, b+ 4, b+ 5, b+ 6, b+ 7,
3081 b+ 8, b+ 9, b+10, b+11, b+12, b+13, b+14, b+15, &n1) == 18
3082 && n1 >= 56 && u1 == j*16 && u2 == j*16+15))
3083 break;
3084 for (unsigned k = 0; k < 16; k++)
3085 data[j*16+k] = b[k];
3086 line = nextline(line, lineno);
3087 }
3088 if (j < 32) {
3089 free(data);
3090 errmsg = "Incomplete sector hex dump"; break;
3091 }
3092 m_command_table[i].data = data;
3093 if (nc != WRITE_LOG)
3094 state = 0;
3095 }
3096 else if (match[11].rm_so > 0) { // "(En|Dis)abled status cached by OS"
3097 m_ata_identify_is_cached = true;
3098 }
3099 }
3100
3101 if (!(state == 0 || state == 2))
3102 errmsg = "Missing REPORT-IOCTL result";
3103
3104 if (!errmsg && i < 0)
3105 errmsg = "No information found";
3106
3107 m_num_commands = i+1;
3108 m_next_replay_command = 0;
3109 m_replay_out_of_sync = false;
3110
3111 if (errmsg) {
3112 close();
3113 return set_err(EIO, "%s(%d): Syntax error: %s", pathname, lineno, errmsg);
3114 }
3115 return true;
3116 }
3117
3118 // Report warnings and free command table
3119 bool parsed_ata_device::close()
3120 {
3121 if (m_replay_out_of_sync)
3122 pout("REPLAY-IOCTL: Warning: commands replayed out of sync\n");
3123 else if (m_next_replay_command != 0)
3124 pout("REPLAY-IOCTL: Warning: %d command(s) not replayed\n", m_num_commands-m_next_replay_command);
3125
3126 for (int i = 0; i < m_num_commands; i++) {
3127 if (m_command_table[i].data) {
3128 free(m_command_table[i].data); m_command_table[i].data = 0;
3129 }
3130 }
3131 m_num_commands = 0;
3132 m_next_replay_command = 0;
3133 m_replay_out_of_sync = false;
3134 return true;
3135 }
3136
3137
3138 bool parsed_ata_device::ata_identify_is_cached() const
3139 {
3140 return m_ata_identify_is_cached;
3141 }
3142
3143
3144 // Simulate ATA command from command table
3145 int parsed_ata_device::ata_command_interface(smart_command_set command, int select, char * data)
3146 {
3147 // Find command, try round-robin if out of sync
3148 int i = m_next_replay_command;
3149 for (int j = 0; ; j++) {
3150 if (j >= m_num_commands) {
3151 pout("REPLAY-IOCTL: Warning: Command not found\n");
3152 errno = ENOSYS;
3153 return -1;
3154 }
3155 if (m_command_table[i].command == command && m_command_table[i].select == select)
3156 break;
3157 if (!m_replay_out_of_sync) {
3158 m_replay_out_of_sync = true;
3159 pout("REPLAY-IOCTL: Warning: Command #%d is out of sync\n", i+1);
3160 }
3161 if (++i >= m_num_commands)
3162 i = 0;
3163 }
3164 m_next_replay_command = i;
3165 if (++m_next_replay_command >= m_num_commands)
3166 m_next_replay_command = 0;
3167
3168 // Return command data
3169 switch (command) {
3170 case IDENTIFY:
3171 case PIDENTIFY:
3172 case READ_VALUES:
3173 case READ_THRESHOLDS:
3174 case READ_LOG:
3175 if (m_command_table[i].data)
3176 memcpy(data, m_command_table[i].data, 512);
3177 break;
3178 case WRITE_LOG:
3179 if (!(m_command_table[i].data && !memcmp(data, m_command_table[i].data, 512)))
3180 pout("REPLAY-IOCTL: Warning: WRITE LOG data does not match\n");
3181 break;
3182 case CHECK_POWER_MODE:
3183 data[0] = (char)0xff;
3184 default:
3185 break;
3186 }
3187
3188 if (m_command_table[i].errval)
3189 errno = m_command_table[i].errval;
3190 return m_command_table[i].retval;
3191 }
3192
3193 } // namespace
3194
3195 ata_device * get_parsed_ata_device(smart_interface * intf, const char * dev_name)
3196 {
3197 return new parsed_ata_device(intf, dev_name);
3198 }