Tagged Questions

The I/O Kit is a framework for driver development in the xnu Kernel which drives Apple's Mac OSX and iOS operating systems.

learn more… | top users | synonyms

10
votes
3answers
321 views

How do I lower the amount of memory IOKit reserves at process start up?

I am a developer working on a very large, memory intensive 32bit application. Running out of virtual address space (memory) is a problem for us. During my investigation of some recent issues I ...
8
votes
3answers
1k views

Acessing a serial to USB device with I/O kit

I have the following problem: I have a Wintec WBT-202 GPS device which has the ability to transmit the location data live as NMEA data over USB. Inside this USB it is just a USB to serial bridge which ...
7
votes
1answer
139 views

Why do static functions eliminate undefined symbols in Xcode?

I am attempting to use I/O kit and have linked to I/O kit properly. When I use a function in I/O kit and don't call it within a static function, I get the following error Undefined symbols for ...
7
votes
2answers
3k views

com.apple.Dont_Steal_Mac_OS_X

com.apple.Dont_Steal_Mac_OS_X is a IOResources provider... Class Inheritance: Dont_Steal_Mac_OS_X : IOService : IORegistryEntry : OSObject how does it work? what does it do? thx->adv() |K<
6
votes
1answer
584 views

How to resolve CGDirectDisplayID changing issues on newer multi-GPU Apple laptops in Core Foundation/IO Kit?

In Mac OS X, every display gets a unique CGDirectDisplayID number assigned to it. You can use CGGetActiveDisplayList() or [NSScreen screens] to access them, among others. Per Apple's docs: A ...
6
votes
1answer
3k views

How to get cpu temperature and fan speed on osx?

Can anyone shed some light on how to get CPU temperature and fan speeds in osx? I understand that information is obtained from IOHWSensor in IOKit, but I'm unable to find any reliable information on ...
6
votes
4answers
1k views

Gamepad code on OS X: Buh?

I thought I was a decent programmer until I tried writing gamepad code for OS X. Now I feel deeply useless. Does anyone know of any code that I can legally use in my (non-free) game? Is it really ...
5
votes
2answers
101 views

gdb | view the the variable argument list

I as using the bt command to view the stacktrace. The output is (gdb) bt #0 0x001ae4cd in Debugger (message=0x1 "???\a") at /SourceCache/xnu/xnu-1228.7.58/osfmk/i386/AT386/model_dep.c:705 #1 ...
4
votes
1answer
93 views

OS X: why does __LP64__ lead to pure virtual functions?

I'm attempting to update some circa-2003 I/O Kit code and I'm running to something strange: there are a few places where methods are declared as pure virtual only if the __LP64__ preprocessor macro is ...
4
votes
1answer
165 views

How do I allocate memory buffers which may be reclaimed by the OS for caching in a Mac OS X kernel extension?

Based on documentation and xnu source I've read, I understand that Mac OS X caches file I/O using the Unified Buffer Cache (UBC). The UBC grows as big as it can based on available RAM, but UBC pages ...
3
votes
1answer
57 views

OBEX over USB with IOKit

I'm new to the entire IOKit stuff, so there might be some trivial solutions for my problems. I'm playing around with a Smartpen that does OBEX over USB. So far I got a subclass of OBEXSession to ...
3
votes
2answers
143 views

How to create a display for OS X?

I need to write what I think is a display driver for OS X. It's like those "Use your iPad as a second monitor!" apps, but I need to write the OS X software that will register another display with OS ...
3
votes
1answer
947 views

Send signals over USB using cocoa?

Just wondering, is there any "API" for sending signals through a USB cable to a device using Apple's cocoa programming language, so I could incorporate it with an app? is it much more complicated ...
3
votes
1answer
535 views

Publishing information from IOKit KEXT on OS X

I have an IOKit-based kernel extension on Mac OS X, a subclass of IOService. When this service loads i need to publish additional specific runtime information from it and i need it to be accessible ...
3
votes
3answers
833 views

Detect SSD in Mac OS X (Cocoa)

Is there a reliable, quick, deterministic way (definitely not benchmark) to check whether system drive in Mac OS X is on Solid State Drive? Is there any other indicator how well disk handles parallel ...
3
votes
2answers
878 views

How to know a device's name from its device ID in OS X?

I'm writing a program in OS X that receives click events from a mouse and a touchpad. When the user clicks at somewhere, the OS sends the device ID, which is just an int, and the position of the ...
3
votes
2answers
624 views

Programmatically get amount of RAM installed on OS X

I'm working on a machine that has 8 gigs of memory installed and I'm trying to programmatically determine how much memory is installed in the machine. I've already attempted using sysctlbyname() to ...
2
votes
1answer
80 views

Using the IO Kit to communicate with USB in Xcode 4

I'm making an application in Xcode 4 for MAC which purpose is to draw a graph of an ECG reading. The reading is supposed to be received over USB/serial. I therefore need to write code for the ...
2
votes
1answer
219 views

C Callback in Objective-C (IOKIT)

I am trying to write some code that interacts with an USB device in Objective C, and I got stuck on setting the callback function for incoming reports. In my case it's an IOKIT function but I think ...
2
votes
1answer
277 views

IOServiceMatching on AppleUSBCDCACMData IOClass: Anomaly?

I am trying to extract a list of all AppleUSBCDCACMData IOClass devices in my mac using the following code snippet (just some small scale modifications in apple sample code). The device is a usb modem ...
2
votes
4answers
591 views

Can't edit IORegistryEntry

I am creating a software on Mac and I would like to change the value of an IORegistryEntry. I can view it on the IORegistryExplorer, but I can't edit it. So it's my understanding that I have to edit ...
2
votes
1answer
314 views

How can I test-drive IOKit userspace driver development?

I'm about to attempt to write a USB driver for my application on OS X using IOKit. I've opted for the userspace route rather than developing a kext since it's so much easier to debug etc, but I'm ...
2
votes
2answers
1k views

Where can I systematically study how to write Mac OS X device drivers?

I'm looking for an exhaustive, university-level book or guide to study in order to gain the ability of writing Mac OS X device drivers. I'm totally ignorant on this OS, but I'm already skilled on ...
2
votes
2answers
1k views

Is libusb the preferred method on Mac OS X to access USB device?

Is libusb the preferred method to talk to a device over USB (using AT commands) on OS X these days? Is there any high level equivalent in cocoa?
2
votes
1answer
316 views

Simulate USB insertion on OSX via software

How can I inject USB device nodes into OSX (>= 10.5) such as you might be able for debugging USB handlers / writing new USB drivers? I'm interested in this in order to handle non-USB devices using ...
2
votes
5answers
908 views

How can I get the icon for a storage device in Mac OS X?

I've found my devices using IOServiceGetMatchingServices and got the property dictionary like this: kernResult = IORegistryEntryCreateCFProperties(nextMedia, ...
2
votes
1answer
250 views

Accessing I/O Catalog Class Objects

I'm developing an OS X kernel extension (kext) that will be used as an I/O Kit driver. This driver, however, will be strictly "virtual"; it will not interface with any hardware. OS X keeps a catalog ...
1
vote
2answers
29 views

Synchronization primitive with IO/Kit

I'm looking for a wait/signal synchronization primitive in IO/Kit working like : Thread1 : wait(myEvent) // Blocking thread1 Thread2 : wait(myEvent) // Blocking thread2 Thread3 : ...
1
vote
0answers
75 views

Sleeping display using IOKit on Lion

I have the following code that is suppose to sleep the display on a Mac. I've tried it on Lion but it doesn't seem to do anything. I tested the code by creating a barebones window Mac app with a ...
1
vote
2answers
317 views

How to get device descriptor and configuration descriptor of usb device in Mac?

I have minimum exposure to xcode and I/Okit framework. I have seen device descriptor and configuration descriptor of a usb device in USB prober. I have written an xcode program using I/O kit ...
1
vote
3answers
277 views

How to create a program to list all the USB devices in a Mac?

I have a limited exposure to the Mac OS X operating system and now I have started using Xcode and am studying about I/O kit. I need to create a program in Xcode under command line tool in order to ...
1
vote
0answers
103 views

How to programmatically dim Mac backlit keyboard

Is there a way to programmatically dim a backlit keyboard on a Mac?
1
vote
1answer
232 views

Codeless kext loading problem

I have created a codeless kext so that one of my USB devices does not get kidnapped by the AppleUSBUHCI driver. When I plug one in, it should be loading a different driver. It happens with both an ...
1
vote
1answer
72 views

Overriding a method defined by another kext?

I need to override a method defined by a kext to do my own processing and return my own value, so whenever the kext calls the method, it will get routed to mine. So what I want to do is to define this ...
1
vote
2answers
160 views

High resolution and high framerate mouse coordinates on OSX? (Or other solution?)

I'd like to get mouse movements in high resolution and high framerate on OSX. "High framerate" = 60 fps or higher (preferably > 120) "High resolution" = Subpixel values Problem I've got an opengl ...
1
vote
1answer
100 views

Objective C Callback failed

I have the code posting the notification handler IONotificationPortRef notificationPortRef = IONotificationPortCreate(kIOMasterPortDefault); if (!notificationPortRef) { return nil; } ...
1
vote
1answer
156 views

IOKit IOPowerSources troubles

I am having a REALLY hard time using IOPowerSources, and the documentation along with it. My issue is that, well, I can't figure out the darned imports for IOPowerSources. I am reading from: ...
1
vote
3answers
98 views

Do I need two machines to develop IOKit Mac drivers?

I'm building an IOKit CFPlugin driver for OS X. I'll be working with network data coming in that will be translated to MIDI data. No hardware is involved other than the built-in Airport. I have ...
1
vote
1answer
235 views

How do I communicate with a GPIO USB device in OS X?

I have a USB web camera from ViMicro that contains a GPIO chip. We have a microswitch wired to one of the IO pins and can read the status of the switch on Windows using an ActiveX control that was ...
1
vote
3answers
315 views

Problems receiving Notifications from IOKit (CoreFoundation) for plugged Devices

I'm currently developing an application on 10.6.7 which should receive notifications when a new usb device is plugged in. I found out that there is a IOKit function which handles such stuff ...
1
vote
1answer
1k views

Mac IOKit USB signal detection

matchingDict = IOServiceMatching(kIOUSBDeviceClassName); numberRef = CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &vendorId); CFDictionarySetValue(matchingDict, ...
1
vote
1answer
304 views

How can I get the USB Port Number in Mac OS X?

I found out one class IORegistryEntry in IOKit. It has APIs to get the values of the properties. I am trying to use this class, but I am not able to compile. I have added IOKit and Kernel ...
1
vote
1answer
153 views

Cocoa get Power Adapter Status

I'm currently working on a Backup Application, and I have received a lot of requests for features to be added recently, and the top one of them is adding a checkbox like "Back Up when on Battery ...
1
vote
1answer
160 views

Linking Dylibs in Kexts?

I've written a kext for OS X that implements a USB-based framebuffer using (IOKit) libusb and jpeglib. Both of those are dylibs, and for some reason they won't link properly in XCode, and the OS won't ...
1
vote
1answer
98 views

creating a IOBlockStorageDriver in mac os x Leopard

How can one create a simple IOBlockStorageDriver in mac os x leopard. Any help would be appreciated.
1
vote
0answers
343 views

USB communcation on jailbroken ipad

I would like to build a controller for a robot which would communicate through USB to an iPad. However I don't have an iPad yet as I don't if it is ever possible to build such software (even with ...
1
vote
3answers
1k views

Getting iPhone's battery level

I have a simple question. How do I get iPhone's battery level? [UIDevice currentDevice] batteryLevel] Simple enough? However there is a little catch - I can't use UIKit. Here is what I wrote so ...
1
vote
1answer
196 views

IOKit header assert.h gone? [answered]

I want to get the hardware address of my mac's ethernet card. In all samples I saw in include on IOKit/assert.h . Which doesn't seem to exist on my system. GCC throws an error saying he doesn't know ...
1
vote
2answers
2k views

OSX: How to get a volume name (or bsd name) from a IOUSBDeviceInterface or location id

I'm trying to write an app that associates a particular USB string descriptor (of a USB mass storage device) with its volume or bsd name. So the code goes through all the connected USB devices, gets ...
1
vote
1answer
237 views

What is the '245' in the IOKit USB libraries?

I'm getting started with IOKit on OS X, and I've been puzzled by the '245' tagged onto data types in the IOKit USB library, such as IOUSBInterfaceInterface245. What does the 245 mean? I'm just ...

1 2