Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ffigen] Crash while evaluating a policy #1651

Open
matiasleyba opened this issue Oct 11, 2024 · 3 comments
Open

[ffigen] Crash while evaluating a policy #1651

matiasleyba opened this issue Oct 11, 2024 · 3 comments
Assignees
Labels
lang-objective_c Related to Objective C support package:ffigen

Comments

@matiasleyba
Copy link

Hi, I'm a beginner with ffigen but I'm trying to create an example using LocalAuthentication, I was able to generate the bindings and have created an implementation using them, everything works fine until I call evaluatePolicy and the app crashes.

Here is my implementation, I am assuming I have to call evaluatePolicy inside the platform thread as evaluatePolicy will do some ui stuff.

try {

      await runOnPlatformThread(() {
        final lib = DynamicLibrary.process();
        final localAuthentication = LocalAuthentication(lib);

        final context = LAContext.new1(localAuthentication);

        final error = NSError.new1(localAuthentication);

        final canEvaluate = context.canEvaluatePolicy_error_(
          LAPolicy.LAPolicyDeviceOwnerAuthentication,
          Pointer.fromAddress(error.pointer.address),
        );

        final completion = ObjCBlock_ffiVoid_bool_NSError.listener(
          localAuthentication,
          (result, nsError) {
            if (result) {
              return onSuccess();
            } else if (nsError != null) {
              onError();
            }
          },
        );

        final reason = NSString(localAuthentication, '');

        if (canEvaluate) {
          context.evaluatePolicy_localizedReason_reply_(
            LAPolicy.LAPolicyDeviceOwnerAuthentication,
            reason,
            completion,
          );
        }

        return;
      });
    } catch (e) {
      print(e);
    }

ffigen.yaml:

name: LocalAuthentication
description: Bindings for LocalAuthentication.
language: objc
output: 'lib/src/ffigen/local_auth_bindings.dart'
exclude-all-by-default: true
objc-interfaces:
  include:
    - 'LAContext'
headers:
  entry-points:
    - '/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/LocalAuthentication.framework/Headers/LocalAuthentication.h'

Am I doing something wrong, does my use case make sense?

Let me know if you need more details, thanks in advance!

@dcharkes dcharkes added the lang-objective_c Related to Objective C support label Oct 11, 2024
@liamappelbe
Copy link
Contributor

I need some more information:

  1. Are you running this on iOS or MacOS?
  2. Is this a Flutter app or a Dart command line tool?
  3. Can you give some more details about the crash? Do you get a Dart or ObjC stack trace? Paste whatever logs you see here.

@matiasleyba
Copy link
Author

I need some more information:

  1. Are you running this on iOS or MacOS?
  2. Is this a Flutter app or a Dart command line tool?
  3. Can you give some more details about the crash? Do you get a Dart or ObjC stack trace? Paste whatever logs you see here.

Hi @liamappelbe

  1. Tried on iOS Simulator and real device.
  2. Flutter app.
  3. I attached logs from XCode, let me know if this helps or if you need something else.

stackTraceXcode.txt

@liamappelbe
Copy link
Contributor

Ok, my read of those logs is that your context.evaluatePolicy_localizedReason_reply_ call is throwing some sort of exception, but I don't see the exception message/metadata in those logs. So one line of inquiry would be to try to find more info about that exception. Eg, do you see anything in your flutter console, or in some other debug window in xcode? Since you can repro using the simulator+xcode, you could try enabling exception breakpoints. I'm not sure how well that would work since the exception is being thrown from inside an Apple API, but hopefully that would tell you more info about the exception.

The other line of inquiry is to try to figure out if any of the args you're passing to context.evaluatePolicy_localizedReason_reply_ are invalid. For example, you can check that the reason arg is ok by printing reason.toString(), which converts it to a Dart string. Or for the context object, to verify it's valid, try calling a simpler method on it, and see if it crashes (eg interactionNotAllowed).

Btw, I don't recognize that NSString constructor. What version of ffigen/package:objective_c are you using? The current version of NSString only takes one arg in its constructor.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lang-objective_c Related to Objective C support package:ffigen
Projects
None yet
Development

No branches or pull requests

3 participants