From 2c105dd302abc412378680eaa6251f60fa15996b Mon Sep 17 00:00:00 2001 From: Madeline Date: Thu, 11 Aug 2022 22:38:03 -0400 Subject: [PATCH] Initial commit. Basic driverkit dext works, no USB functionality. --- HackRFDriver/HackRFDriver.cpp | 105 ++++ HackRFDriver/HackRFDriver.entitlements | 8 + HackRFDriver/HackRFDriver.iig | 31 + HackRFDriver/Info.plist | 28 + HackRFProto.xcodeproj/project.pbxproj | 569 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../UserInterfaceState.xcuserstate | Bin 0 -> 44891 bytes .../xcdebugger/Breakpoints_v2.xcbkptlist | 24 + .../xcschemes/xcschememanagement.plist | 19 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 13 + HackRFProto/Assets.xcassets/Contents.json | 6 + HackRFProto/ContentView.swift | 28 + HackRFProto/ExtensionManager.swift | 43 ++ HackRFProto/HackRFProto.entitlements | 10 + HackRFProto/HackRFProtoApp.swift | 17 + HackRFProto/Info.plist | 8 + .../Preview Assets.xcassets/Contents.json | 6 + LICENSE | 73 +++ README.md | 5 + 21 files changed, 1019 insertions(+) create mode 100644 HackRFDriver/HackRFDriver.cpp create mode 100644 HackRFDriver/HackRFDriver.entitlements create mode 100644 HackRFDriver/HackRFDriver.iig create mode 100644 HackRFDriver/Info.plist create mode 100644 HackRFProto.xcodeproj/project.pbxproj create mode 100644 HackRFProto.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 HackRFProto.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 HackRFProto.xcodeproj/project.xcworkspace/xcuserdata/madelinecr.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 HackRFProto.xcodeproj/xcuserdata/madelinecr.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist create mode 100644 HackRFProto.xcodeproj/xcuserdata/madelinecr.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 HackRFProto/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 HackRFProto/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 HackRFProto/Assets.xcassets/Contents.json create mode 100644 HackRFProto/ContentView.swift create mode 100644 HackRFProto/ExtensionManager.swift create mode 100644 HackRFProto/HackRFProto.entitlements create mode 100644 HackRFProto/HackRFProtoApp.swift create mode 100644 HackRFProto/Info.plist create mode 100644 HackRFProto/Preview Content/Preview Assets.xcassets/Contents.json create mode 100644 LICENSE create mode 100644 README.md diff --git a/HackRFDriver/HackRFDriver.cpp b/HackRFDriver/HackRFDriver.cpp new file mode 100644 index 0000000..605867e --- /dev/null +++ b/HackRFDriver/HackRFDriver.cpp @@ -0,0 +1,105 @@ +// +// HackRFDriver.cpp +// HackRFDriver +// +// Created by maddiefuzz on 7/28/22. +// + +#include + +#include +#include +#include +#include +#include + + +#include "HackRFDriver.h" + +struct HackRFDriver_IVars +{ + IOUSBHostInterface *interface; + IOUSBHostDevice *device; + IOUSBHostPipe *inPipe; + OSAction *ioCompleteCallback; + IOBufferMemoryDescriptor *inData; + uint16_t maxPacketSize; +}; + +static const uint32_t kMyEndpointAddress = 1; + +kern_return_t +IMPL(HackRFDriver, Start) +{ + kern_return_t ret; + + ret = Start(provider, SUPERDISPATCH); + + os_log(OS_LOG_DEFAULT, "Beginning Start function..."); + + os_log(OS_LOG_DEFAULT, "All the start stuff went good, captain."); + + return ret; +} + +kern_return_t +IMPL(HackRFDriver, Stop) +{ + kern_return_t ret; + ret = Stop(provider, SUPERDISPATCH); + os_log(OS_LOG_DEFAULT, "Goodbye World"); + return ret; +} + +void HackRFDriver::free() +{ + return; +} + +bool HackRFDriver::init() +{ + if(!super::init()) { + return false; + } + + ivars = IONewZero(HackRFDriver_IVars, 1); + if(!ivars) { + return false; + } + + os_log(OS_LOG_DEFAULT, "HackRFDriver Init Function Called."); + return true; +} + +//kern_return_t HackRFDriver::CopyDescriptor(uint8_t type, uint16_t *length, uint8_t index, uint16_t languageID, uint8_t requestType, uint8_t requestRecipient, uint8_t *descriptor) +//{ +// return 0; +//} +// +//const IOUSBDeviceDescriptor * HackRFDriver::CopyDeviceDescriptor(void) +//{ +// return NULL; +//} +// +//const IOUSBStringDescriptor * HackRFDriver::CopyStringDescriptor(uint8_t index) +//{ +// return NULL; +//} +// +//const IOUSBStringDescriptor * HackRFDriver::CopyStringDescriptor(uint8_t index, uint16_t languageID) +//{ +// return NULL; +//} +// +//const IOUSBBOSDescriptor * CopyCapabilityDescriptors(void) +//{ +// return NULL; +//} + +//kern_return_t +//IMPL(HackRFDriver, CopyDescriptor) +//{ +// kern_return_t ret; +// ret = CopyDescriptor(0, 0, 0, 0, 0, 0, 0); +// return ret; +//} diff --git a/HackRFDriver/HackRFDriver.entitlements b/HackRFDriver/HackRFDriver.entitlements new file mode 100644 index 0000000..972825d --- /dev/null +++ b/HackRFDriver/HackRFDriver.entitlements @@ -0,0 +1,8 @@ + + + + + com.apple.developer.driverkit + + + diff --git a/HackRFDriver/HackRFDriver.iig b/HackRFDriver/HackRFDriver.iig new file mode 100644 index 0000000..9c9fd70 --- /dev/null +++ b/HackRFDriver/HackRFDriver.iig @@ -0,0 +1,31 @@ +// +// HackRFDriver.iig +// HackRFDriver +// +// Created by maddiefuzz on 7/28/22. +// + +#ifndef HackRFDriver_h +#define HackRFDriver_h + +#include +#include +#include + +struct HackRFDriver_IVars; + +class HackRFDriver: public IOService +{ +public: + virtual bool init () override; + virtual kern_return_t Start(IOService * provider) override; + virtual kern_return_t Stop(IOService * provider) override; + virtual void free () override; +private: + // kern_return_t CopyDescriptor(uint8_t type, uint16_t *length, uint8_t index, uint16_t languageID, uint8_t requestType, uint8_t requestRecipient, uint8_t *descriptor) override; +// const IOUSBDeviceDescriptor * CopyDeviceDescriptor(void) override; +// const IOUSBStringDescriptor * CopyStringDescriptor(uint8_t index) override; +// const IOUSBStringDescriptor * CopyStringDescriptor(uint8_t index, uint16_t languageID) override; +}; + +#endif /* HackRFDriver_h */ diff --git a/HackRFDriver/Info.plist b/HackRFDriver/Info.plist new file mode 100644 index 0000000..d38a281 --- /dev/null +++ b/HackRFDriver/Info.plist @@ -0,0 +1,28 @@ + + + + + IOKitPersonalities + + HackRFDriver + + IOResourceMatch + IOKit + CFBundleIdentifier + info.maddie.HackRFProto.HackRFDriver + CFBundleIdentifierKernel + com.apple.kpi.iokit + IOClass + IOUserService + IOProviderClass + IOUserResources + IOUserClass + HackRFDriver + IOUserServerName + $(PRODUCT_BUNDLE_IDENTIFIER) + + + OSBundleUsageDescription + + + diff --git a/HackRFProto.xcodeproj/project.pbxproj b/HackRFProto.xcodeproj/project.pbxproj new file mode 100644 index 0000000..181bc82 --- /dev/null +++ b/HackRFProto.xcodeproj/project.pbxproj @@ -0,0 +1,569 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + E10865FC2896ED51005F4E89 /* ExtensionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = E10865FB2896ED51005F4E89 /* ExtensionManager.swift */; }; + E10865FD2896F60C005F4E89 /* DriverKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E12067D92892EB5500EA0E83 /* DriverKit.framework */; }; + E12067C52892EB4400EA0E83 /* HackRFProtoApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12067C42892EB4400EA0E83 /* HackRFProtoApp.swift */; }; + E12067C72892EB4400EA0E83 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12067C62892EB4400EA0E83 /* ContentView.swift */; }; + E12067C92892EB4400EA0E83 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E12067C82892EB4400EA0E83 /* Assets.xcassets */; }; + E12067CC2892EB4400EA0E83 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E12067CB2892EB4400EA0E83 /* Preview Assets.xcassets */; }; + E12067DD2892EB5500EA0E83 /* HackRFDriver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E12067DC2892EB5500EA0E83 /* HackRFDriver.cpp */; }; + E12067DF2892EB5500EA0E83 /* HackRFDriver.iig in Sources */ = {isa = PBXBuildFile; fileRef = E12067DE2892EB5500EA0E83 /* HackRFDriver.iig */; }; + E12067E32892EB5500EA0E83 /* info.maddie.HackRFProto.HackRFDriver.dext in Embed System Extensions */ = {isa = PBXBuildFile; fileRef = E12067D72892EB5500EA0E83 /* info.maddie.HackRFProto.HackRFDriver.dext */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; + E18F78A6289D3EA70018F5BF /* USBDriverKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E18F78A5289D3EA70018F5BF /* USBDriverKit.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + E12067E12892EB5500EA0E83 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = E12067B92892EB4400EA0E83 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E12067D62892EB5500EA0E83; + remoteInfo = HackRFDriver; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + E12067E72892EB5500EA0E83 /* Embed System Extensions */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(SYSTEM_EXTENSIONS_FOLDER_PATH)"; + dstSubfolderSpec = 16; + files = ( + E12067E32892EB5500EA0E83 /* info.maddie.HackRFProto.HackRFDriver.dext in Embed System Extensions */, + ); + name = "Embed System Extensions"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + E10865FB2896ED51005F4E89 /* ExtensionManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExtensionManager.swift; sourceTree = ""; }; + E12067C12892EB4400EA0E83 /* HackRFProto.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HackRFProto.app; sourceTree = BUILT_PRODUCTS_DIR; }; + E12067C42892EB4400EA0E83 /* HackRFProtoApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HackRFProtoApp.swift; sourceTree = ""; }; + E12067C62892EB4400EA0E83 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; + E12067C82892EB4400EA0E83 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + E12067CB2892EB4400EA0E83 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; + E12067D72892EB5500EA0E83 /* info.maddie.HackRFProto.HackRFDriver.dext */ = {isa = PBXFileReference; explicitFileType = "wrapper.driver-extension"; includeInIndex = 0; path = info.maddie.HackRFProto.HackRFDriver.dext; sourceTree = BUILT_PRODUCTS_DIR; }; + E12067D92892EB5500EA0E83 /* DriverKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DriverKit.framework; path = Library/Frameworks/DriverKit.framework; sourceTree = DEVELOPER_DIR; }; + E12067DC2892EB5500EA0E83 /* HackRFDriver.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = HackRFDriver.cpp; sourceTree = ""; }; + E12067DE2892EB5500EA0E83 /* HackRFDriver.iig */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.iig; path = HackRFDriver.iig; sourceTree = ""; }; + E12067E02892EB5500EA0E83 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E13897C728A44EE500F36F43 /* libsystem_kernel.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsystem_kernel.tbd; path = Platforms/DriverKit.platform/Developer/SDKs/DriverKit22.0.sdk/System/DriverKit/usr/lib/system/libsystem_kernel.tbd; sourceTree = DEVELOPER_DIR; }; + E156F96528933FCB00A2655A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + E156F9662893405E00A2655A /* HackRFProto.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = HackRFProto.entitlements; sourceTree = ""; }; + E18F78A4289D3DAA0018F5BF /* HackRFDriver.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = HackRFDriver.entitlements; sourceTree = ""; }; + E18F78A5289D3EA70018F5BF /* USBDriverKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = USBDriverKit.framework; path = Platforms/DriverKit.platform/Developer/SDKs/DriverKit22.0.sdk/System/DriverKit/System/Library/Frameworks/USBDriverKit.framework; sourceTree = DEVELOPER_DIR; }; + E18F78A7289D448A0018F5BF /* libsystem_c.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsystem_c.tbd; path = Platforms/DriverKit.platform/Developer/SDKs/DriverKit22.0.sdk/System/DriverKit/usr/lib/system/libsystem_c.tbd; sourceTree = DEVELOPER_DIR; }; + E18F78A8289D44910018F5BF /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "Platforms/DriverKit.platform/Developer/SDKs/DriverKit22.0.sdk/System/DriverKit/usr/lib/libc++.tbd"; sourceTree = DEVELOPER_DIR; }; + E1B41B5E2893448F00595FAC /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + E12067BE2892EB4400EA0E83 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E12067D42892EB5500EA0E83 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E18F78A6289D3EA70018F5BF /* USBDriverKit.framework in Frameworks */, + E10865FD2896F60C005F4E89 /* DriverKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + E12067B82892EB4400EA0E83 = { + isa = PBXGroup; + children = ( + E12067C32892EB4400EA0E83 /* HackRFProto */, + E12067DB2892EB5500EA0E83 /* HackRFDriver */, + E12067D82892EB5500EA0E83 /* Frameworks */, + E12067C22892EB4400EA0E83 /* Products */, + ); + sourceTree = ""; + }; + E12067C22892EB4400EA0E83 /* Products */ = { + isa = PBXGroup; + children = ( + E12067C12892EB4400EA0E83 /* HackRFProto.app */, + E12067D72892EB5500EA0E83 /* info.maddie.HackRFProto.HackRFDriver.dext */, + ); + name = Products; + sourceTree = ""; + }; + E12067C32892EB4400EA0E83 /* HackRFProto */ = { + isa = PBXGroup; + children = ( + E156F9662893405E00A2655A /* HackRFProto.entitlements */, + E156F96528933FCB00A2655A /* Info.plist */, + E12067C42892EB4400EA0E83 /* HackRFProtoApp.swift */, + E12067C62892EB4400EA0E83 /* ContentView.swift */, + E12067C82892EB4400EA0E83 /* Assets.xcassets */, + E12067CA2892EB4400EA0E83 /* Preview Content */, + E10865FB2896ED51005F4E89 /* ExtensionManager.swift */, + ); + path = HackRFProto; + sourceTree = ""; + }; + E12067CA2892EB4400EA0E83 /* Preview Content */ = { + isa = PBXGroup; + children = ( + E12067CB2892EB4400EA0E83 /* Preview Assets.xcassets */, + ); + path = "Preview Content"; + sourceTree = ""; + }; + E12067D82892EB5500EA0E83 /* Frameworks */ = { + isa = PBXGroup; + children = ( + E13897C728A44EE500F36F43 /* libsystem_kernel.tbd */, + E18F78A8289D44910018F5BF /* libc++.tbd */, + E18F78A7289D448A0018F5BF /* libsystem_c.tbd */, + E18F78A5289D3EA70018F5BF /* USBDriverKit.framework */, + E1B41B5E2893448F00595FAC /* IOKit.framework */, + E12067D92892EB5500EA0E83 /* DriverKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + E12067DB2892EB5500EA0E83 /* HackRFDriver */ = { + isa = PBXGroup; + children = ( + E18F78A4289D3DAA0018F5BF /* HackRFDriver.entitlements */, + E12067DC2892EB5500EA0E83 /* HackRFDriver.cpp */, + E12067DE2892EB5500EA0E83 /* HackRFDriver.iig */, + E12067E02892EB5500EA0E83 /* Info.plist */, + ); + path = HackRFDriver; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + E12067D22892EB5500EA0E83 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + E12067C02892EB4400EA0E83 /* HackRFProto */ = { + isa = PBXNativeTarget; + buildConfigurationList = E12067CF2892EB4400EA0E83 /* Build configuration list for PBXNativeTarget "HackRFProto" */; + buildPhases = ( + E12067BD2892EB4400EA0E83 /* Sources */, + E12067BE2892EB4400EA0E83 /* Frameworks */, + E12067BF2892EB4400EA0E83 /* Resources */, + E12067E72892EB5500EA0E83 /* Embed System Extensions */, + ); + buildRules = ( + ); + dependencies = ( + E12067E22892EB5500EA0E83 /* PBXTargetDependency */, + ); + name = HackRFProto; + productName = HackRFProto; + productReference = E12067C12892EB4400EA0E83 /* HackRFProto.app */; + productType = "com.apple.product-type.application"; + }; + E12067D62892EB5500EA0E83 /* HackRFDriver */ = { + isa = PBXNativeTarget; + buildConfigurationList = E12067E42892EB5500EA0E83 /* Build configuration list for PBXNativeTarget "HackRFDriver" */; + buildPhases = ( + E12067D22892EB5500EA0E83 /* Headers */, + E12067D32892EB5500EA0E83 /* Sources */, + E12067D42892EB5500EA0E83 /* Frameworks */, + E12067D52892EB5500EA0E83 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = HackRFDriver; + productName = HackRFDriver; + productReference = E12067D72892EB5500EA0E83 /* info.maddie.HackRFProto.HackRFDriver.dext */; + productType = "com.apple.product-type.driver-extension"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + E12067B92892EB4400EA0E83 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1400; + LastUpgradeCheck = 1400; + TargetAttributes = { + E12067C02892EB4400EA0E83 = { + CreatedOnToolsVersion = 14.0; + }; + E12067D62892EB5500EA0E83 = { + CreatedOnToolsVersion = 14.0; + }; + }; + }; + buildConfigurationList = E12067BC2892EB4400EA0E83 /* Build configuration list for PBXProject "HackRFProto" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = E12067B82892EB4400EA0E83; + productRefGroup = E12067C22892EB4400EA0E83 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + E12067C02892EB4400EA0E83 /* HackRFProto */, + E12067D62892EB5500EA0E83 /* HackRFDriver */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + E12067BF2892EB4400EA0E83 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E12067CC2892EB4400EA0E83 /* Preview Assets.xcassets in Resources */, + E12067C92892EB4400EA0E83 /* Assets.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E12067D52892EB5500EA0E83 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + E12067BD2892EB4400EA0E83 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E12067C72892EB4400EA0E83 /* ContentView.swift in Sources */, + E12067C52892EB4400EA0E83 /* HackRFProtoApp.swift in Sources */, + E10865FC2896ED51005F4E89 /* ExtensionManager.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E12067D32892EB5500EA0E83 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E12067DF2892EB5500EA0E83 /* HackRFDriver.iig in Sources */, + E12067DD2892EB5500EA0E83 /* HackRFDriver.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + E12067E22892EB5500EA0E83 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E12067D62892EB5500EA0E83 /* HackRFDriver */; + targetProxy = E12067E12892EB5500EA0E83 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + E12067CD2892EB4400EA0E83 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + E12067CE2892EB4400EA0E83 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + E12067D02892EB4400EA0E83 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = HackRFProto/HackRFProto.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = "\"HackRFProto/Preview Content\""; + DEVELOPMENT_TEAM = W9ASV855X5; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = HackRFProto/Info.plist; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MACOSX_DEPLOYMENT_TARGET = 12.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = info.maddie.HackRFProto; + PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + E12067D12892EB4400EA0E83 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_ENTITLEMENTS = HackRFProto/HackRFProto.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = "\"HackRFProto/Preview Content\""; + DEVELOPMENT_TEAM = W9ASV855X5; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = HackRFProto/Info.plist; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MACOSX_DEPLOYMENT_TARGET = 12.4; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = info.maddie.HackRFProto; + PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + E12067E52892EB5500EA0E83 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_ENTITLEMENTS = HackRFDriver/HackRFDriver.entitlements; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = W9ASV855X5; + DRIVERKIT_DEPLOYMENT_TARGET = 21.6; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(SDKROOT)/System/DriverKit/System/Library/Frameworks", + ); + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = HackRFDriver/Info.plist; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(SDKROOT)/System/DriverKit/usr/lib/system", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = info.maddie.HackRFProto.HackRFDriver; + PRODUCT_NAME = "$(inherited)"; + RUN_CLANG_STATIC_ANALYZER = YES; + SDKROOT = driverkit; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + }; + name = Debug; + }; + E12067E62892EB5500EA0E83 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_ENTITLEMENTS = HackRFDriver/HackRFDriver.entitlements; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = W9ASV855X5; + DRIVERKIT_DEPLOYMENT_TARGET = 21.6; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(SDKROOT)/System/DriverKit/System/Library/Frameworks", + ); + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = HackRFDriver/Info.plist; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(SDKROOT)/System/DriverKit/usr/lib/system", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = info.maddie.HackRFProto.HackRFDriver; + PRODUCT_NAME = "$(inherited)"; + RUN_CLANG_STATIC_ANALYZER = YES; + SDKROOT = driverkit; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + E12067BC2892EB4400EA0E83 /* Build configuration list for PBXProject "HackRFProto" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E12067CD2892EB4400EA0E83 /* Debug */, + E12067CE2892EB4400EA0E83 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E12067CF2892EB4400EA0E83 /* Build configuration list for PBXNativeTarget "HackRFProto" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E12067D02892EB4400EA0E83 /* Debug */, + E12067D12892EB4400EA0E83 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E12067E42892EB5500EA0E83 /* Build configuration list for PBXNativeTarget "HackRFDriver" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E12067E52892EB5500EA0E83 /* Debug */, + E12067E62892EB5500EA0E83 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = E12067B92892EB4400EA0E83 /* Project object */; +} diff --git a/HackRFProto.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/HackRFProto.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/HackRFProto.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/HackRFProto.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/HackRFProto.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/HackRFProto.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/HackRFProto.xcodeproj/project.xcworkspace/xcuserdata/madelinecr.xcuserdatad/UserInterfaceState.xcuserstate b/HackRFProto.xcodeproj/project.xcworkspace/xcuserdata/madelinecr.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..ba5c9ae5de57da12e1b265ee2f6f76011549054a GIT binary patch literal 44891 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 + + + + + + + + diff --git a/HackRFProto.xcodeproj/xcuserdata/madelinecr.xcuserdatad/xcschemes/xcschememanagement.plist b/HackRFProto.xcodeproj/xcuserdata/madelinecr.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..cb7c87b --- /dev/null +++ b/HackRFProto.xcodeproj/xcuserdata/madelinecr.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,19 @@ + + + + + SchemeUserState + + HackRFDriver.xcscheme_^#shared#^_ + + orderHint + 1 + + HackRFProto.xcscheme_^#shared#^_ + + orderHint + 0 + + + + diff --git a/HackRFProto/Assets.xcassets/AccentColor.colorset/Contents.json b/HackRFProto/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/HackRFProto/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/HackRFProto/Assets.xcassets/AppIcon.appiconset/Contents.json b/HackRFProto/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..13613e3 --- /dev/null +++ b/HackRFProto/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,13 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/HackRFProto/Assets.xcassets/Contents.json b/HackRFProto/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/HackRFProto/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/HackRFProto/ContentView.swift b/HackRFProto/ContentView.swift new file mode 100644 index 0000000..6c2eea6 --- /dev/null +++ b/HackRFProto/ContentView.swift @@ -0,0 +1,28 @@ +// +// ContentView.swift +// HackRFProto +// +// Created by maddiefuzz on 7/28/22. +// + +import SwiftUI + +struct ContentView: View { + var body: some View { + VStack { + Button(action: ExtensionManager.shared.activate) { + Text("Activate HackRFDriver") + } + Button(action: ExtensionManager.shared.deactivate) { + Text("Deactivate HackRFDriver") + } + } + .frame(width: 300.0, height: 100) + } +} + +struct ContentView_Previews: PreviewProvider { + static var previews: some View { + ContentView() + } +} diff --git a/HackRFProto/ExtensionManager.swift b/HackRFProto/ExtensionManager.swift new file mode 100644 index 0000000..0f04838 --- /dev/null +++ b/HackRFProto/ExtensionManager.swift @@ -0,0 +1,43 @@ +// +// ExtensionManager.swift +// HackRFProto +// +// Created by maddiefuzz on 7/31/22. +// + +import Foundation +import SystemExtensions +import os.log + +class ExtensionManager : NSObject, OSSystemExtensionRequestDelegate { + + static let shared = ExtensionManager() + + func activate() { + let activationRequest = OSSystemExtensionRequest.activationRequest(forExtensionWithIdentifier: "info.maddie.HackRFProto.HackRFDriver", queue: .main) + activationRequest.delegate = self + OSSystemExtensionManager.shared.submitRequest(activationRequest) + } + + func deactivate() { + let activationRequest = OSSystemExtensionRequest.deactivationRequest(forExtensionWithIdentifier: "info.maddie.HackRFProto.HackRFDriver", queue: .main) + activationRequest.delegate = self + OSSystemExtensionManager.shared.submitRequest(activationRequest) + } + + func request(_ request: OSSystemExtensionRequest, actionForReplacingExtension existing: OSSystemExtensionProperties, withExtension ext: OSSystemExtensionProperties) -> OSSystemExtensionRequest.ReplacementAction { + return .replace + } + + func requestNeedsUserApproval(_ request: OSSystemExtensionRequest) { + os_log("sysex needsUserApproval") + } + + func request(_ request: OSSystemExtensionRequest, didFinishWithResult result: OSSystemExtensionRequest.Result) { + os_log("sysex didFinishWithResult") + } + + func request(_ request: OSSystemExtensionRequest, didFailWithError error: Error) { + os_log("sysex didFailWithError: \(error.localizedDescription)") + } +} diff --git a/HackRFProto/HackRFProto.entitlements b/HackRFProto/HackRFProto.entitlements new file mode 100644 index 0000000..3c89e22 --- /dev/null +++ b/HackRFProto/HackRFProto.entitlements @@ -0,0 +1,10 @@ + + + + + com.apple.developer.driverkit.communicates-with-drivers + + com.apple.developer.system-extension.install + + + diff --git a/HackRFProto/HackRFProtoApp.swift b/HackRFProto/HackRFProtoApp.swift new file mode 100644 index 0000000..7ee2423 --- /dev/null +++ b/HackRFProto/HackRFProtoApp.swift @@ -0,0 +1,17 @@ +// +// HackRFProtoApp.swift +// HackRFProto +// +// Created by maddiefuzz on 7/28/22. +// + +import SwiftUI + +@main +struct HackRFProtoApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +} diff --git a/HackRFProto/Info.plist b/HackRFProto/Info.plist new file mode 100644 index 0000000..4f11cff --- /dev/null +++ b/HackRFProto/Info.plist @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/HackRFProto/Preview Content/Preview Assets.xcassets/Contents.json b/HackRFProto/Preview Content/Preview Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/HackRFProto/Preview Content/Preview Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..137069b --- /dev/null +++ b/LICENSE @@ -0,0 +1,73 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..270e8e6 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# HackRFProto + +An SDR driver implementation in DriverKit. + +Currently in development. \ No newline at end of file