MobileWiFi.framework: Difference between revisions

From iPhone Development Wiki
(Fix signal strength calculation and include the number of bars)
mNo edit summary
 
(4 intermediate revisions by 3 users not shown)
Line 4: Line 4:
}}
}}


'''MobileWiFi''' is the framework that manages WiFi functionality on iOS. It replaces the obsolete '''Apple80211''' framework.
'''MobileWiFi''' is the framework that manages WiFi functionality on iOS. It powers [[WiFiPicker.servicebundle]], the Wi-Fi settings page and more. Its main purpose is to be a front-end to [[wifid]], which acquires its data directly from the kernel drivers. It replaces the obsolete '''Apple80211''' framework, but its methods are still available in IPConfiguration.bundle and bypasses wifid.
 
MobileWiFi is a C API but [[WiFiKit.framework]] offers its functionality in a higher level ObjC API.
 
For examples on how to use this framework, see the [[#Example Code | Example Code]] section of this page.


* '''Note''': Your program needs the ''com.apple.wifi.manager-access'' entitlement to use '''any''' of the WiFiManager functions.
* '''Note''': Your program needs the ''com.apple.wifi.manager-access'' entitlement to use '''any''' of the WiFiManager functions.
= Example Code =
This section includes example code that uses this framework. For more in-depth examples, see the following open-source projects:
* [https://github.com/Cykey/wifi WiFi]
* [https://github.com/Cykey/airscan Airscan]


== Retrieving a list of known networks ==
== Retrieving a list of known networks ==
Line 21: Line 31:
CFRelease(networks);
CFRelease(networks);
</source>
</source>
== Getting the WiFi signal strength ==
== Getting the WiFi signal strength ==
<source lang="c">
<source lang="c">
Line 27: Line 38:


WiFiManagerRef manager = WiFiManagerClientCreate(kCFAllocatorDefault, 0);
WiFiManagerRef manager = WiFiManagerClientCreate(kCFAllocatorDefault, 0);
CFArrayRef devices = WiFiManagerClientCopyDevices(_manager);
CFArrayRef devices = WiFiManagerClientCopyDevices(manager);


WiFiDeviceClientRef client = (WiFiDeviceClientRef)CFArrayGetValueAtIndex(devices, 0);
WiFiDeviceClientRef client = (WiFiDeviceClientRef)CFArrayGetValueAtIndex(devices, 0);
CFDictionaryRef data = (CFDictionaryRef)WiFiDeviceClientCopyProperty(_device, CFSTR("RSSI"));
CFDictionaryRef data = (CFDictionaryRef)WiFiDeviceClientCopyProperty(client, CFSTR("RSSI"));
CFNumberRef scaled = (CFNumberRef)WiFiDeviceClientCopyProperty(_device, kWiFiScaledRSSIKey);
CFNumberRef scaled = (CFNumberRef)WiFiDeviceClientCopyProperty(client, kWiFiScaledRSSIKey);


CFNumberRef RSSI = (CFNumberRef)CFDictionaryGetValue(data, CFSTR("RSSI_CTL_AGR"));
CFNumberRef RSSI = (CFNumberRef)CFDictionaryGetValue(data, CFSTR("RSSI_CTL_AGR"));
Line 67: Line 78:
static void scan_callback(WiFiDeviceClientRef device, CFArrayRef results, CFErrorRef error, void *token);
static void scan_callback(WiFiDeviceClientRef device, CFArrayRef results, CFErrorRef error, void *token);


int main()
int main(int argc, char **argv)
{
{
_manager = WiFiManagerClientCreate(kCFAllocatorDefault, 0);
_manager = WiFiManagerClientCreate(kCFAllocatorDefault, 0);
Line 85: Line 96:


CFRunLoopRun();
CFRunLoopRun();
        return 0;
}
}



Latest revision as of 22:16, 7 May 2020

MobileWiFi.framework
Private Framework
Availabile 3.0 – present
Headers [headers.cynder.me]


MobileWiFi is the framework that manages WiFi functionality on iOS. It powers WiFiPicker.servicebundle, the Wi-Fi settings page and more. Its main purpose is to be a front-end to wifid, which acquires its data directly from the kernel drivers. It replaces the obsolete Apple80211 framework, but its methods are still available in IPConfiguration.bundle and bypasses wifid.

MobileWiFi is a C API but WiFiKit.framework offers its functionality in a higher level ObjC API.

For examples on how to use this framework, see the Example Code section of this page.

  • Note: Your program needs the com.apple.wifi.manager-access entitlement to use any of the WiFiManager functions.

Example Code

This section includes example code that uses this framework. For more in-depth examples, see the following open-source projects:

Retrieving a list of known networks

#include <MobileWiFi.h>

WiFiManagerRef manager = WiFiManagerClientCreate(kCFAllocatorDefault, 0);

CFArrayRef networks = WiFiManagerClientCopyNetworks(manager);

NSLog(@"networks: %@", networks);

CFRelease(manager);
CFRelease(networks);

Getting the WiFi signal strength

#include <math.h>
#include <MobileWiFi.h>

WiFiManagerRef manager = WiFiManagerClientCreate(kCFAllocatorDefault, 0);
CFArrayRef devices = WiFiManagerClientCopyDevices(manager);

WiFiDeviceClientRef client = (WiFiDeviceClientRef)CFArrayGetValueAtIndex(devices, 0);
CFDictionaryRef data = (CFDictionaryRef)WiFiDeviceClientCopyProperty(client, CFSTR("RSSI"));
CFNumberRef scaled = (CFNumberRef)WiFiDeviceClientCopyProperty(client, kWiFiScaledRSSIKey);

CFNumberRef RSSI = (CFNumberRef)CFDictionaryGetValue(data, CFSTR("RSSI_CTL_AGR"));

int raw;
CFNumberGetValue(RSSI, kCFNumberIntType, &raw);

float strength;
CFNumberGetValue(scaled, kCFNumberFloatType, &strength);
CFRelease(scaled);

strength *= -1;

// Apple uses -3.0.
int bars = (int)ceilf(strength * -3.0f);
bars = MAX(1, MIN(bars, 3));


printf("WiFi signal strength: %d dBm\n\t Bars: %d\n", raw,  bars);

CFRelease(data);
CFRelease(scaled);
CFRelease(devices);
CFRelease(manager);

Scanning for nearby networks

#include <MobileWiFi.h>

static WiFiManagerRef _manager;
static void scan_callback(WiFiDeviceClientRef device, CFArrayRef results, CFErrorRef error, void *token);

int main(int argc, char **argv)
{
	_manager = WiFiManagerClientCreate(kCFAllocatorDefault, 0);

	CFArrayRef devices = WiFiManagerClientCopyDevices(_manager);
	if (!devices) {
		fprintf(stderr, "Couldn't get WiFi devices. Bailing.\n");
		exit(EXIT_FAILURE);
	}

	WiFiDeviceClientRef client = (WiFiDeviceClientRef)CFArrayGetValueAtIndex(devices, 0);

	WiFiManagerClientScheduleWithRunLoop(_manager, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode);
	WiFiDeviceClientScanAsync(client, (CFDictionaryRef)[NSDictionary dictionary], scan_callback, 0);

	CFRelease(devices);

	CFRunLoopRun();

        return 0;
}

static void scan_callback(WiFiDeviceClientRef device, CFArrayRef results, CFErrorRef error, void *token)
{
	NSLog(@"Finished scanning! networks: %@", results);

	WiFiManagerClientUnscheduleFromRunLoop(_manager);
	CFRelease(_manager);

	CFRunLoopStop(CFRunLoopGetCurrent());
}

References