vote up 1 vote down star

I recently was given a small USB flash drive as an advertising gimmick. When I plug it in, only one drive appears: a CD drive with 42kb used (just an autorun.inf file which launches the manufacturer's website). I know U3 drives also appear as CD drives, but their uninstall utility only works for their own drives.

How can I make it appear as a USB drive instead? Conversely, if I wanted to do the same thing for myself, how would I make it appear as a CD drive?

I'm sure it can be done programmatically, or else the uninstall program wouldn't work.

flag

50% accept rate
I hope this is related enough to programming. If not, let me know (as I'm sure you will) and I'll delete it. – mmyers Jan 10 at 18:10
it is related. More to embedded programming of the device, but still programming. – Ilya Jan 11 at 11:44
Haven't had time to check into any of these answers; I'll check back next week, I hope. – mmyers Jan 18 at 5:02
...or not. (The drive is still plugged in, I just still haven't had time to mess with it.a) – mmyers Apr 10 at 21:59

6 Answers

vote up 1 vote down

This is done in hardware. The device identifies as a composite device containing two children - one for the CD drive and one for the removable storage drive.

link|flag
Unfortunately, there isn't even a removable storage drive shown. – mmyers Jan 10 at 18:51
By "hardware", do you mean the actual circuitry or the firmware? – mmyers Jan 10 at 18:51
Firmware and/or drivers. – Mihai Limbasan Jan 10 at 19:34
Drivers usually don't play a part here since the generic OS storage drivers are used (you don't have to install anything to use U3 drives). – On Freund Jan 10 at 20:52
They can very much play a part - for example most composite devices (think 3G/HDSPA stick which contains a "CD drive" with the software) aren't fully recognized by the OS until they install an USB enumerator for their IDs. – Mihai Limbasan Jan 12 at 16:36
show 2 more comments
vote up 0 vote down

This is probably due to the drivers for the actual drive its self.

link|flag
You're saying it's hopeless unless I write my own drivers? – mmyers Jan 10 at 18:14
"probably" – Tom Anderson Jan 10 at 18:16
mmm, not what I wanted to hear. Ah well, I'll accept this if nothing else shows up. – mmyers Jan 10 at 18:21
vote up 0 vote down

Try plugging it into a Linux box to see if you can get more direct access to the hardware.

link|flag
I run dual-boot, so that's definitely an option. Do you have any further tips? – mmyers Jan 10 at 18:53
lsusb and tailing dmesg and /var/log/messages come to mind :) That will give you all its claimed USB IDs. – Mihai Limbasan Jan 10 at 19:35
vote up 0 vote down

Ok, there is 2 questions here :

1) How can I make it appear as a USB drive instead?

It's depends on device itself. I can see 2 options.

  • Device support writing, but represent itself as CDROM and read only. In this case you just need to tweak the device descriptor and you will get working storage device.
  • Device does not implement write and nothing can be done.

By tweaking device descriptor i mean filter driver that will receive device descriptor and will pass a modified one to Windows. Writing filter driver is not very hard and you can find an examples of filter driver in Driver development Kit. A basic understanding of USB protocol will be needed as well.

2) Conversely, if I wanted to do the same thing for myself, how would I make it appear as a CD drive?

Basically same, filter driver that will change the device descriptor to be recognized by CDROM device, but in additional once Windows will recognize CDROM it will send additional SCSI commands to device. Ideally device will just return unsupported command and it's OK, but from my experience most devices are not generic enough and the behavior will be undefined. In this case you will need additional filter driver that will catch this additional commands and will complete the commands without actually sending them to device.

P.S
My answer assume that you don't have access to device firmware, If you do have access to firmware it's really easy to accomplish by modifying device descriptor and making sure that not supported commands are handled correctly.

P.P.S
I don't provide any links to resources since i don't think that practically you going to implement this. If I'm wrong let me know and i will provide relevant resources. Ok one link with general information

link|flag
Windows will load different drivers depending on the storage type (Disk.sys and its relevant filters for USB driver, and cdrom.sys and its relevant filters for a CD). I'm not sure that fooling the OS into loading a different driver stack is a good idea. – On Freund Jan 13 at 12:51
I did not tested it. But based on my long experience with USB and device drivers i can't see any reason why it's might not work. Any way it's the only way to do it without changing the hardware ... – Ilya Jan 14 at 8:48
It isn't really related to USB layer but to the storage layer. I'm not sure that DISK.sys (not to mention any 3rd party filters it might have on that machine) will gracefully handle devices that should be handled by CDROM.sys – On Freund Jan 14 at 11:24
There is almost no differences on device side between regular usb flash disk or usb cdrom, filter i suggest is below disk.sys or cdrom.sys layer i,e at usb layer, this filter should eliminate this difference again hard to argue without testing, but can't see how it can affect something ... – Ilya Jan 15 at 7:55
As I said, disk.sys and cdrom.sys have different filters (some of them could be 3rd party) that might rely on specific behavior. Of course you can have a PnP filter to change device identification (or just create an INF file for that device), but you can't guarantee how these filters will behave. – On Freund Jan 15 at 13:18
show 2 more comments
vote up 0 vote down

Creepy! I just had the same question asked by my friend yesterday!

Anyway, after a little search in google (I can't remember the keywords) we found that to turn the USB into a CD ROM you have to write an ISO9660 file system. I think you can only do that on Linux. However, this makes it read-only. There is also an idea of writing a UDF type thingy to make it writable, but we didn't looked it further.

As for making it into a flash, I think simply formating it with a tool (Partition Magic) will do the job (assuming it will recognize it as a USB device and not as a CD ROM drive).

In general, I think what you are looking for is how to format a USB Drive as a CD-ROM and vise-versa.

As for programmatically... I'll bookmark this question, since I have no idea. ;)

link|flag
file system have little relation to the device itself. As i explained in my post the device characteristics should be changed in order to convert the device from one type to another, file system is much higher level ... – Ilya Jan 11 at 16:57
vote up 0 vote down

I'm having the same problem, kinda. I left my flash drive unused for several weaks and when i plugged it in my PC it reads as a cdrom device... Thus I can't format it to return it to its original state. How should i proceed? I'm using vista but had the same problem on XP.

There is a specific driver on the USB that might give some light: USB Disk 30X USB Device. I'd like to understand what happened. How come its all of a sudden being recognized as a CDROM?

Ah, unlike mmyers there is no data stored.

link|flag

Your Answer

Get an OpenID
or

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