Under the Hood: How We Patch Your Mobile App in Production

Written by: Eyal Keren

** This article is outdated and is no longer correct. ** P**lease see the following article which reflects our current technology:** CloudBees Feature Management Under the Hood - 2016 Update

So you just finished fixing a crucial bug in your new mobile app and submit it for approval. If you’ve done this before, you already know that this process can take anywhere from 3 days to 2 weeks! However, if you are experiencing an urgent issue with your app in production, even a few hours can be an unbearable amount of time to wait. CloudBees Feature Management.io allows you to hot patch critical bugs in iOS apps in production (it’s true!). Rather than waiting for AppStore approval to hot patch and fix bugs on your own, with CloudBees Feature Management.io, you can search for and fix problematic live code. This is done by controlling how an individual function is executed based on CloudBees Feature Management.io’s configuration. For example, you could wrap a function with try/catch, replace a specific argument, run the function from a different thread, and more use cases.

In this article, I will elaborate in detail on how CloudBees Feature Management.io works behind the scenes, abiding by Apple’s rules and regulations while not impacting your mobile app’s performance.  


The heart of CloudBees Feature Management.io’s magic lies in a technique called method swizzling.

“Method swizzling is the process of changing the implementation of an existing selector. It's a technique made possible by the fact that method invocations in Objective-C can be changed at runtime, by changing how selectors are mapped to underlying functions in a class's dispatch table.

Swizzling enables CloudBees Feature Management.io to replace customers’ original functions with newly generated CloudBees Feature Management.io functions. For example, let's say you have a function (we’ll call it Function A) that returns a nil value in certain scenarios. This causes your application to crash because the nil is pushed into an NSArray. Without CloudBees Feature Management.io, you would have to find the bug that is causing your application to crash, fix it, run your internal QA process and then send the fix to the AppStore for approval, which, as mentioned above, could take longer than you'd like. With CloudBees Feature Management.io, however, you can simply choose Function A and replace its nil value with an empty string. As mentioned above, this process of replacing the malfunctioning function is called method swizzling. Learn more about CloudBees Feature Management.io.    

We use method swizzling to replace functions that malfunction with functions that perform configurable tasks. This is done without impacting performance or injecting dynamic code inside your app’s original code. For those of you who have already installed CloudBees Feature Management.io, you might notice that we’ve added an additional phase to ‘Build Phases’. You can find it in the 'Build Phases' tab within your ‘Targets’. There, you will find the CloudBees Feature Management.io code analyzer -

The CloudBees Feature Management.io code analyzer reads your project file by using Ruby’s module - xcodeproj (https://github.com/CocoaPods/Xcodeproj

  • thank you cocoapods!) and runs a binary program that we developed using clang (the GCC replacement in Objective-C that Apple open sourced). Together with a little bit of bash scripting, the code analyzer produces a CloudBees Feature Management.io include dynamic file - CloudBees Feature ManagementSwizzlerDynamic.include. This file contains mirror functions of the ones that will be swizzled. In addition, the code analyzer generates a JSON file with the structure of your functions’ signatures, names and classes. The structure file is uploaded to CloudBees Feature Management.io’s server and is used by CloudBees Feature Management.io’s dashboard in order to allow you to select and configure a function’s hot patching. Returning to our example above, you would configure your CloudBees Feature Management.io dashboard to replace Function A's nil value with an empty string. Once you run CloudBees Feature Management.io's set-up code, our SDK accesses the network end-point and fetches the hot patches that will be configured in your dashboard. We then verify if Function A needs to be replaced by a mirror function in CloudBees Feature Management.io's dynamic include file, and follow through with the replacement using the swizzling mechanism. When the application then calls on Function A to perform a task, the mirror function will be executed instead. The mirror function then calls the original function and checks if the return value is nil, in which case, it would replace the value with an empty string.

You can run CloudBees Feature Management.io on your end without causing any performance issues. CloudBees Feature Management.io's magic comes from activating mirror functions and executing swizzling, solely if a function’s original implementation needs to be hot patched. CloudBees Feature Management.io’s dynamic include file (CloudBees Feature ManagementSwizzlerDynamic.include) is a static file of your application’s functions. The process of directly executing Function A, becomes the indirect process of executing Function B that then executes Function A. Swizzling fundamentally only adds another level to functions that are being pulled.  If your environment doesn't detect any hot patches, application runtime is not affected at all, and since we don’t incorporate swizzling into all of your functions, performance will not be impacted, either. Another decision that we make concerns how CloudBees Feature Management.io's SDK is loaded. The SDK is designed to help you solve mobile app issues as they happen. When your application starts, the SDK fetches any current configurations from CloudBees Feature Management.io's end point, applying them immediately once they reach a device. This is done asynchronously so as to avoid any possible delays that may affect user experience. Lean more about our FAQs.    

So, why did we choose this particular method? As mentioned above, one reason is because we kept performance in mind. Another reason is because Apple does not allow any code injections. CloudBees Feature Management.io holds a fixed set of optional patch configurations (e.g. try/catch or specific argument updates) that are essentially executed based on what you configure in the CloudBees Feature Management.io dashboard. A similar approach is used by Facebook’s gatekeeper. The gatekeeper, which is a system that allows Facebook to roll out their features in a controlled fashion, works along the same lines as CloudBees Feature Management.io. It uses configurations to decide which buttons will appear or which codes will run without changing the application runtime (some call this feature toggling). As you may know, any problem in computer science can be solved with another layer of indirection. We don't inject any code to any files or functions. We don’t add or change problematic functions, either. As described above, we activate swizzling and actually execute the original function under a configuration wrapper that is set by you on your CloudBees Feature Management.io dashboard, letting you to decide whether or not you want to try/catch or run a function in its current thread or in the main thread. You could even call a different function instead of your original function, but the actual implementation stays the same.     ****


This article only scratches the surface of CloudBees Feature Management.io’s mechanism. I decided to focus on hot patching in order to keep things simple and provide specific use cases. The ability to apply behavior on top of an application’s code provides our customers with interesting opportunities, such as ad hoc log generation (in order to track issues, even in production environments), dynamic analytics, A/B testing, remote configuration and more. CloudBees Feature Management.io is currently in its beta version, supporting hundreds of satisfied mobile app owners and developers that maintain applications running on millions of devices. There is no controversy with our solution from Apple's AppStore, and we actually make running applications on Apple devices very neat and efficient. We have streamlined hot patches without harming the application delivery process or impacting end-users’ experiences . If you have not tried our solution yet, you can sign up for our beta version. If you are one of the hundreds currently using our services, we welcome you to write a comment below, and help us improve our product for you.

Stay up to date

We'll never share your email address and you can opt out at any time, we promise.