How does Apple know you are using private API?
Asked Answered
K

10

116

I submitted a binary file to Apple without any source code.

Apart from manually checking the source code how does Apple know what was used and what APIs you have called?

Kutuzov answered 16/5, 2010 at 2:5 Comment(1)
changed title - I suppose you meant "How does Apple know.."Wives
C
185

There are 3 ways I know. These are just some speculation, since I do not work in the Apple review team.

1. otool -L

This will list all libraries the app has linked to. Something clearly you should not use, like IOKit and WebKit can be detected by this.

2. nm -u

This will list all linked symbols. This can detect

  • Undocumented C functions such as _UIImageWithName;
  • Objective-C classes such as UIProgressHUD
  • Ivars such as UITouch._phase (which could be the cause of rejection of Three20-based apps last few months.)

3. Listing Objective-C selectors, or strings

Objective-C selectors are stored in a special region of the binary, and therefore Apple could extract the content from there, and check if you've used some undocumented Objective-C methods, such as -[UIDevice setOrientation:].

Since selectors are independent from the class you're messaging, even if your custom class defines -setOrientation: irrelevant to UIDevice, there will be a possibility of being rejected.


You could use Erica Sadun's APIKit to detect potential rejection due to (false alarms of) private APIs.


(If you really really really really want to workaround these checks, you could use runtime features such as

  • dlopen, dlsym
  • objc_getClass, sel_registerName, objc_msgSend
  • -valueForKey:; object_getInstanceVariable, object_getIvar, etc.

to get those private libraries, classes, methods and ivars. )

Ceciliacecilio answered 16/5, 2010 at 7:13 Comment(11)
Great answer. I'll just add that if your application is doing something that is extremely difficult to do without using a private API, I'm sure your app gets extra scrutiny.Pteropod
I'm curious about the workaround of calling private methods. I think the compiler will generate call to objc_msgSend(foo, @selector(privateMethod)) for [foo privateMethod], so if Apple can detect the direct call of privateMethod they can also detect the indirect call via objc_msgSend(or performSelector:).Monogamist
I'm wondering why you say that you shouldn't link against IOKit and WebKit?Machination
otool -ov just show the classes/selectors of the app it's self. Is there any way we can show the symbols it's linked to ? nm -u just show the objective c classes, i want show the objective-c selectors too.Crank
What do you execute otool on? The .app file?Kauffman
Couldn't apple just compile a version of iOS with guards and run your app on it ?Whitfield
@Eric, they could, although such an instrumented version would probably impact performance. Regardless, seeing private APIs get through into the App Store repeatedly, it's clear that they don't do this, or at least don't do it all the time.Burchfield
If someone is interested, Erica Sadun's tool is now expired. You can fake it by using libfaketime (brew install libfaketime), and calling faketime '2008-12-12' ./apiscanner your.appWhitfield
You mentioned that -valueForKey: should be safe to use. Can you comment on setting the value of a private key. Is -setValue:forKey: safe in your opinion?Obedient
@Daniel: Should be the same.Ceciliacecilio
Based on these post I created tool which check if library uses some specific/private API. You can find this script in the following location github.com/nomenas/APIChecker. Developers who will discover more MacOS private APIs are welcomed to update this list with APIs in this repository.Hodges
A
26

You can list the selectors in a Mach-O program using the following one-liner in Terminal:

otool -s __TEXT __objc_methname "$1" |expand -8 | cut -c17- | sed -n '3,$p' | perl -n -e 'print join("\n",split(/\x00/,scalar reverse (reverse unpack("(a4)*",pack("(H8)*",split(/\s/,$_))))))'
Amin answered 26/12, 2010 at 16:50 Comment(1)
+1, @Robert Diamond, Can you describe more for the same. I need to check Google analytic uses UDID call or not. ThanksAlexandrine
H
13

Let's say you want to use some private API; objective C allows you to construct any SEL from a string:

   SEL my_sel = NSSelectorFromString([NSString stringWithFormat:\
@"%@%@%@", "se","tOr","ientation:"]);
    [UIDevice performSelector:my_sel ...];

How could a robot or library scan catch this? They would have to catch this using some tool that monitors private accesses at runtime. Even if they constructed such a runtime tool, it is hard to catch because this call may be hidden in some rarely exercised path.

Homochromous answered 25/5, 2010 at 16:43 Comment(6)
user1203764 comments that these kind of calls can actually be detectedMa
@Ma want to put an opinion on my question here about using valueForKey, please? stackoverflow.com/questions/11923597/…Clown
@Yar interesting question! But I'm not enough of an expert to comment sorry. What Farcaller said seems reasonable to meMa
Thanks @Rup, no one apparently is enough of an expert in this field :)Clown
Someone I know says he just got a call like this into the App Store.Pluckless
Of course, the very use of NSSelectorFromString can raise suspicion on the Apple reviewer side, and if so - he can use other tools to reconstruct the original code (disassemble) and understand the original intent of the use.Zela
B
7

I imagine they look at all symbols your binary's trying to import (info no doubt easily available to them in the symbol table thereof) and ding you if any of those symbols are found in their "private API list". Pretty easy to automate, in fact.

Britt answered 16/5, 2010 at 2:9 Comment(1)
Actually, I can say with certainty that this is not the case (at least it's not all they do), based on private API usage that I know has gotten through. If this is all that was needed, private API usage wouldn't slip through. My experience suggests that KennyTM's answer is almost certainly correct. This is an area where Objective-C is fundamentally different than other languages, like C.Burchfield
B
1

A executable isn't exactly a black box. If you call out to a library, it's an easy thing to find. This is why I lament the loss of the assembly languages in modern CS educations. =] Tools like ldd will tell you what you have linked in, though I don't remember what incarnation of ldd made it to the mac iPhone dev kit.

Beethoven answered 16/5, 2010 at 2:11 Comment(2)
I've frequently wondered: if you were to write your binary to self-modify, only generating the code to import a private API after some criteria had been met (say, after the publication date of your app) whether Apple would catch it. They certainly report back to us some interesting statistics, like the number of our games that are being run on jailbroken phones.Beethoven
@user30997, The privileged code can probably only be accessed through a system call; the executing thread switches into a higher privilege and checks if the previous privilege has permissions to execute the code or not. That's just an example though, there are other ways of doing it, but I highly doubt the developers were naive enough to leave out a basic runtime privilege checking mechanism such as this, it would definately have been publicized by now.Driving
E
1
otool -L somebinary
Escutcheon answered 16/5, 2010 at 6:43 Comment(0)
R
1

aside from symbol investigation...

apple could very easily have a version of the sdk that checks each of the private methods stacks when called to make sure it is entered from one of the designated methods.

Reamonn answered 8/10, 2013 at 16:58 Comment(1)
That won't be enough, because program can only call this private call at an arbitrary time in the future, depending on other logic. To do this scrutiny Apple must actually block private APIs altogether, or have the frameworks report private API calls to Apple automatically - which significantly harms performance.Zela
S
0

Even if you're statically linking, at worst, they could take samples of the code from the private APIs on their list, and search your binary against them (also relatively easy to automate).

Knowing Apple, I'd bet they have a comprehensive, automated system, and any uncertainty is probably either denied or reviewed manually.

End of the day, I think it's probably not worth the effort to try and fool Apple.

Sandalwood answered 16/5, 2010 at 2:17 Comment(1)
Knowing Apple their review process upon encountering any uncertainty involves breaking out a set of dice for maximum whimsy.Pacifistic
H
0

This desktop application, App Scanner, can scan .app files for private api usage by pulling apart the Mach-O Binary file. If it can, then Apple can too!

Hairraising answered 10/10, 2010 at 18:26 Comment(0)
C
0

There are a lot of tools for reverse engineering that allows inspect a code

  • nm - lists the symbols from object files
  • objdump - display information from object files.
  • otool - view the content of Mach-O[About] executables
  • strings - this will get you all the strings.

You can find examples/representation of using these commands in gists for Objective-C and Swift

Campinas answered 9/5, 2019 at 18:30 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.