All about developing Mac OS X/darwin kernel extensions, both the generic (C) and I/O Kit (C++) kinds.

learn more… | top users | synonyms

1
vote
0answers
17 views

How to set speaker configuration programatically using Core Audio API on Mac OS X?

I have a 7.1 channel audio output device and a custom kext to drive that. My custom application needs to send 7.1 rear channel audio data to the device but the device receives only 2 channel audio ...
0
votes
2answers
33 views

Static variables cause crash in OSX network kext

In a mac OS X network kernel extension, I have noticed that if I have a statically allocated buffer rather than a dynamic one, this leads to kernel panic when calling API functions such as printf() or ...
0
votes
1answer
52 views

Sort of NDIS Intermediate Miniport on Mac OS X

We have a solution of an intermediate network layer which is currently implemented as a NDIS IM on Windows. I am investigating how this thing could be ported to Mac OS X. Ideally, it should be an ...
4
votes
0answers
124 views

Hide USB Audio device on MAC OS X using custom kext

I am developing an application which does custom audio processing and sends the processed audio to the USB headset. My requirement is that the USB headset should not be visible to the user in the list ...
2
votes
1answer
88 views

Can't load a kernel extention (.kext file) in OS X (does not contain code for architecture:x86_64 error) [closed]

I am trying to load a kernel extension file (.kext) to the OS X Mountain Lion (10.8.3). I rebuilt it with XCode 4.6.1. However, when I tried to load it with "kextutil -n -t /xxxx.kext", I got the ...
0
votes
2answers
47 views

Debugging kext with gdb: deadlock

I have I/O Kit driver: virtual ethernet device. After some period of work OS hangs, so looks like I have some deadlock in my driver. I've done next steps: - connect two macbooks via FireWire - set ...
1
vote
1answer
256 views

codesign and kernel extension (Kext) in OSX: Won't load

I'm developing a product that includes kernel extension and have found a weird problem in one of our testing machines that I can't find a solution for. In my development machine, (OSX 10.8.3 and ...
0
votes
2answers
53 views

Using libpcap.dylib on a kext [duplicate]

I am writing a kext driver for OS X and would like to use functions from the library libpcap.dylib. Libpcap.dylib lives in /usr/lib on OS X. Can it be used from kernel space? How can I use ...
1
vote
0answers
88 views

What does the following error “com.apple.kextd[38]: Unable to resolve raw path /System/Library/Extensions/ni488lock.kext.” mean?

I am running the following commands: from pyvisa.vpp43 import visa_library visa_library.load_library("/Library/Frameworks/Visa.framework/VISA") import visa print visa.get_instruments_list() ...
1
vote
1answer
162 views

Lion 32bit kext failed to load for pure virtual function but 64bit works

I build a virtual USB Bus (communicating via network with an linux box) as kext for OSX. The main class is derived from an IOUSBControllerV3. It works under 10.6 32Bit, 10.7.5 64bit, 10.8 64bit, but ...
0
votes
1answer
106 views

What version of libraries to link against in a kext's OSBundleLibraries?

I ran kextlibs against my kext, and it told me to use: com.apple.kpi.bsd = 12.2 com.apple.kpi.libkern = 12.2 this runs fine on my development machine (10.8). But when I run it on another machine ...
2
votes
0answers
147 views

codeless kext on OS X

Ok i am working on a uController project (pointer device), i am trying to write a user space driver IOkit.framework. using the idProduct and idVendor i can get the IOUSBInterfaceInterface300 obj the ...
0
votes
0answers
121 views

How to use pkgbuild to create a kext installer from within Xcode

I understand PackageMaker is now depreciated. And now supposed to use pkgbuild/productbuild. However i cant seem to find a proper example for creating a installer for a kext. I was hoping to build ...
4
votes
1answer
369 views

Can't get started with kext development in OS X

I'm trying to do Apple's "Kernel Extension" Tutorial. I've created a project file, created the Info.plist, built it, used kextlibs to learn the dependencies, added them to the Info.plist, rebuilt, ...
0
votes
1answer
183 views

Some problems about IPC between kext and app based on kernel.framework (Mac os x)

I want to achieve IPC between kext and application on Mac os. I get some problems when I try to transfer data from app to kext. Some examples on internet need more system functions for implementing ...
0
votes
1answer
95 views

HID Device gets kidnapped by default mac driver

My Application wants to access a HID device I plugged in, but claiming the device does not work because its already claimed by IOHIDDevice Driver. In order to prevent that I learned, that I should ...
3
votes
1answer
207 views

kext hid under 10.7 unload failed but 10.6 works flawless

I'm working on a virtual USB bus driver for MacOSX (Windows already running) connected via network with a linux box. It works fine under 10.6 and 10.7 with a mass storage device and HID devices like ...
1
vote
1answer
45 views

Translate OSReturn Value to Human-Readable Definition

I'm using some of the functions from IOKit/kext/KextManager.h to programmatically load kernel a extension, and I'm encountering new error values. For example: OSReturn osr = ...
4
votes
1answer
630 views

Can't Unload Kernel Extension; Classes Have Instances

I'm writing an OSX kernel extension for an audio device driver (it's software, but emulates a hardware device). During development, it'd be convenient to completely uninstall existing old versions ...
3
votes
1answer
357 views

OSX Kext not being properly freed

I have written a device driver kext for a hot-plug SCSI device, based somewhat on Wagerlabs code (using a driver-user client-application model) and everything works. The only remaining concern is that ...
2
votes
1answer
83 views

How to determine if process has root privileges in a network kernel extension?

I'm writing a socket filter kext and I would want to ignore any connections made as root. Before OS X Lion, the following code worked flawlessly: static boolean_t is_root() { proc_t p = ...
1
vote
1answer
114 views

Read plist from kext

I'd like save a kext setting between OS restarts. As I need the settings after kext been loaded immediately, I can not wait for managing daemon start up. Is it a way for reading/writing kext plist ...
1
vote
0answers
400 views

kext not loaded sometimes

I have some random kext loading issue with a kext developed. Basically kext is written to update the mouse DPI on need. Here are some points related to kext 1. kext driver class is derived from ...
0
votes
0answers
56 views

Relate HTTP Requests and Responses (to find url for response)

I'm developing a KEXT using NKE on mac. I'm monitoring HTTP packets. I can read packets data for HTTP requests and responses, but I need a way to relate the requests and responses to each other in ...
2
votes
1answer
238 views

Developing and Debugging KEXT on mac

I'm developing a KEXT on mac using Xcode, After every compile I'm changing permissions through terminal and load the KEXT, then reading results from console app. Some of the mistakes in development ...
0
votes
1answer
124 views

Sniff HTTP packets using NKE

I'm trying to read http requests and responses by making a KEXT using NKE. I registered a socket filter, whenever I'm getting data I'm printing mbuf using a code like this: unsigned char *dataString ...
2
votes
2answers
130 views

Is it possible to bundle a kext in a Application?

I have a Mac OS X application that requires a kext (also built by me). I would like to "bundle" the kext into the application, so that when the user run the application, the kext is automatically ...
0
votes
3answers
318 views

Cocoa Monitor Packets On Ports

I want to monitor packets on specific ports in Mac OS X. Being able to read their contents and sometimes changing their contents (if possible). I was wondering if it's possible by writing a KEXT or ...
0
votes
1answer
421 views

kextutil: no compatible dependency found for com.apple.iokit.IOUSBFamily

Kextutil failed when loading my driver on Mac-pro 10.6.8, but it's OK on iMac 10.6.8. You're appreciated if you tell me something about that! Thanks Information: YAN:W$ uname -a Darwin YAN.local ...
7
votes
1answer
130 views

mach kernel, best usage of locks

I am looking for advices or pointers on how to design a specific part of a Mac OS X network kernel extension to be as fast and efficient as possible – C language. Description: I have two sets of ...
0
votes
1answer
93 views

Get property of driver's parent (or ancestor)

I have a driver for a USB-attached custom SCSI device which implements some vendor-specific commands. Each USB device hosts more than one SCSI LUN. This is working quite happily, but there is a ...
2
votes
1answer
96 views

Integrity checks for kernel extensions in OSX

is there any way to check for the integrity and validity of a Kernel Extension in OS X? I have to make sure that an extension which bundle name starts with com.apple is a real extension from Apple. ...
1
vote
0answers
133 views

Writing an OS X kernel extension to implement Linux's SO_BINDTODEVICE socket option

I want to be able to force a socket through a specific network interface. In Linux the kernel allows a programmer to achieve this by setting said socket option - but in OS X I'm in the dark. And ...
0
votes
1answer
119 views

IOServiceOpen returns 0x10000003 (MACH_SEND_INVALID_DEST)

When trying to open the service for a driver (with a user client per the SimpleUserClient example) I am writing, IOServiceOpen returns 0x10000003 (MACH_SEND_INVALID_REQUEST): mach_port_t machPort = ...
0
votes
1answer
64 views

Kext superclass not starting - IOSCSIPeripheralDeviceType00::start() doesn't return

I am writing a SCSI pass-though device driver sub-classed from IOSCSIPeripheralDeviceType00 for a USB-attached mass storage device. The device intercepts some vendor-specific SCSI commands in the ...
0
votes
2answers
166 views

Two-machine GDB debugging between Macs over Ethernet - transaction timed out

I am trying to debug a device driver which is crashing the kernel on a Mac using a remote machine running gdb (trying to follow the instructions here). Both machines are connected to the same network ...
1
vote
1answer
228 views

Mac: load Mass Storage Driver Kext for testing

I am writing a customised mass storage kernel extension for Mac, subclassed from the IOSCSIPeripheralDeviceType05 logical unit driver. I have got as far as compiling a .kext file, which passes ...
0
votes
1answer
204 views

codeless kext Can't open CFBundle

I would appreciate any help and admit I am now officially over my head. I am in desperate need of a codeless kext for prevent a USB device from being taken by the evil Apple generic driver. I have ...
0
votes
0answers
132 views

Why isn't my kernel extension writing to kernel.log

I have a simple kernel extension: kern_return_t HelloWorld_start (kmod_info_t *ki, void * d) { printf("Hello World\n"); return KERN_SUCCESS; } kern_return_t HelloWorld_stop (kmod_info_t * ...
2
votes
1answer
133 views

kernel comunication

i want to send a array of data to kernel space , ( i have used call back function in my kext) problem is when i use send function i see something weird that i explain in 2 scenario: 1) ... char ...
0
votes
2answers
90 views

Identifying the EINVAL in a Kernel Control ctl_enqueuedata call

I want to send messages from a kernel extension into a userland program using kernel controls. I'm experiencing an EINVAL error when calling ctl_enqueuedata. I've set up a Kernel Control and I'm ...
2
votes
0answers
296 views

USB Device Enumeration on OS X

I have a codeless kext that I use to connect to a USB single-chip device (CSR BC4) - it works great. If I connect multiple devices to an external hub, it still works great. In the IOKitPersonalities ...
0
votes
1answer
88 views

How to identify file being closed is modified or created in action KAUTH_FILEOP_CLOSE from Mac KEXT

Observed that FWRITE or KAUTH_FILEOP_CLOSE_MODIFIED is not consistenly set in action KAUTH_FILEOP_CLOSE during file modification or file copy. My usecase is - I am trying to figure out whether the ...
1
vote
1answer
168 views

File I/O with KEXT on Mac

Observed that there are vn_xxx apis to perform operation on the file, for example, vn_rdwr(...). From net search, it appears that vn_rdwr(...) is not recommended to be used. Few queries around the ...
0
votes
1answer
203 views

OSDictionary * Injection in IORegistry

I'm trying to create a new Dictionary and inject it in the IORegistry. I've managed to inject simple strings or data values but thats it. My approach is via a modified IOPCIFamily.kext, and it's not ...
3
votes
3answers
540 views

Best way to communicate from KEXT to Daemon and block until result is returned from Daemon

In KEXT, I am listening for file close via vnode or file scope listener. For certain (very few) files, I need to send file path to my system daemon which does some processing (this has to happen in ...
1
vote
1answer
159 views

Which one I must use Generic kernel extension or I/O Driver extension for controlling drivers on MacOS?

I want to reach bluetooth, wifi, usb, firewire and other communication interfaces on mac. I want to also doing authentication for bluetooth and wifi. Which kernel extension I must use Generic kernel ...
2
votes
1answer
207 views

Handle idle sleep from audio virtual driver - Mac OSX

We have an virtual audio device driver similar to Sound flower. This virtual device will be listed in sound system preferences. Whenever our device gets selected in system preferences, it prevents ...
0
votes
1answer
223 views

which commands may i use to load i/o kit driver in terminal?

i am new kernel programming.i have been trying to load this driver program for 3 days. i used so many commands for load this kext file.but every time the problem is terminal.please any one help me ...
0
votes
1answer
66 views

what the correct way to print my statements in no of times?

I write the code in the below manner but output prints in console only two times. Please friends help me #include <mach/mach_types.h> #include<libkern/libkern.h> kern_return_t ...

1 2