I am trying to take advantage of hardware encryption of LTO5 devices using ioctl's in my fuse file system. It should be quite simple, setup a io_hdr with a cdb:

0xB5, 0x20, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00

and provide the key page as per the selected algorithm. I get back a return of 0 with a SCSI sense of all 0's when I execute the SG_IO ioctl.

Now, here is where it get weird. The data written to the device is never encrypted. I switch the tape to another drive and do SCSI reads and the data is all in clear text.

So the next step is perform a SCSI SPIN command to see if the SPOUT command took, even though all the returns say it did. Immediately after the SPOUT I send out a SPIN for the Security status page (0x20):

0xA2, 0x20, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00

Again, return value of 0 from the SG_IO ioctl and a sense of all zeros. However the page I get back is the SPOUT key page I put into the drive. I am sure this did not come out of the drive because it has the secret key that I sent which is definitely a SCSI spec no no. BTW I use a completely different buffer for both SCSI commands and memset the SPIN page to zero just for good measure. The sg driver IS providing this data in response to the SPIN.

Can anyone shed any light on this behavior?

Linux archive.xxxxx.xxx 2.6.18-274.7.1.el5 #1 SMP Thu Oct 20 16:21:01 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux

sg3_utils-libs-1.25-5.el5

sgpio-1.2.0_10-2.el5

mt-st-0.9b-2.2.2

I am sending the ioctl commands to /dev/sg5:

[root@archive bin]# sg_inq /dev/sg5
standard INQUIRY:
  PQual=0  Device_type=1  RMB=1  version=0x06  [SPC-4]
  [AERC=0]  [TrmTsk=0]  NormACA=0  HiSUP=0  Resp_data_format=2
  SCCS=0  ACC=0  TPGS=0  3PC=0  Protect=1  BQue=0
  EncServ=0  MultiP=1 (VS=0)  [MChngr=0]  [ACKREQQ=0]  Addr16=0
  [RelAdr=0]  WBus16=0  Sync=0  Linked=0  [TranDis=0]  CmdQue=1
  [SPI: Clocking=0x0  QAS=0  IUS=0]
    length=70 (0x46)   Peripheral device type: tape
 Vendor identification: IBM     
 Product identification: ULTRIUM-HH5     
 Product revision level: BAKG
 Unit serial number: 106xxxxxxxxxx

I have discovered that the Linux ioctl system call is returning a SG_ERR_DID_ERROR [0x07] Internal error detected in the host adapter in the host_status member of the sg_io_hdr_t.

the setltokey.c code is here: http://www.circlesoft.com/setltokey.c

link|improve this question
1  
StackOverflow is for programming questions. This belongs on SuperUser. Please read the FAQ: stackoverflow.com/faq – Polynomial Nov 21 '11 at 16:16
This is a programming issue using the Linux call ioctl on a specific device. – gjpc Dec 23 '11 at 21:25
feedback

2 Answers

gjpc I am trying to accomplish the same thing, did you have make any progress on this issue?

Update: I just found out that your program is working. I tested it with a HP drive it uploaded the key correctly (blue led on). I was able to write a tape, uploaded another key and I could not read the tape, after changing to the correct key I could read my data from tape again. Thanks for sharing your code.

link|improve this answer
Thanks Paul. Could you please let me know what OS and version you are using? Also, it would be nice if you bumped the question if it helped you. – gjpc Jan 26 at 15:31
I am using ubuntu 10.04 server edition – Paul Feb 4 at 21:56
feedback

I found the problem. The LSI 6Gb SAS SCSI HBA built into the Dell PowerEdge R410 is subtlety not compatible with IBM's ULTRIUM-HH5 LTO5 tape drives.

The HBA was failing on the both the SPIN and SPOUT commands. We assumed it was the version of RedHat we were using, which is older than Paul's Ubuntu 10.04. We performed the cryptography using our file system's built in facility and decided to re-visit the problem when we were able to upgrade to a newer RedHat.

The show stopper incompatibility was discovered during validation. The LSI HBA was generating extra SCSI MOVE MEDIA commands to the Qualstar RLS-8560 library when we loaded an expired cleaning cartridge into any of the drives. This error presented as an occasional sense key 2 ASC 3B ASQ 90 return to the host's single SCSI MOVE MEDIA command.

The solution is to install a ATTO ExpressSAS H680 6Gb/s SAS/SATA HBA, PCIe 2.0, 8 Port External SCSI adapter which is certified compatible with the IBM drives.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.