Bug 454686 - Change behavior of fingerprint enrollment from "swiping" to "tap"
Summary: Change behavior of fingerprint enrollment from "swiping" to "tap"
Status: RESOLVED UPSTREAM
Alias: None
Product: systemsettings
Classification: Applications
Component: kcm_users (show other bugs)
Version: 5.24.5
Platform: Fedora RPMs Linux
: NOR major
Target Milestone: ---
Assignee: Plasma Bugs List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-06-01 08:01 UTC by Pankaj Kumar
Modified: 2022-06-11 15:56 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Pankaj Kumar 2022-06-01 08:01:47 UTC
SUMMARY

OBSERVED RESULT

After enrollment , no matter how slow or fast I swipe, authentication always fails in Konsole for any sudo command.

EXPECTED RESULT

Modern laptops come with a large fingerprint sensor inbuilt and even standalone FP sensors are large enough and just like on Windows and Mac, we should have "touch or tap to enroll" implementation instead of swiping across sensors as new sensors are not meant to be used that way, the current implementation is only fit for old laptops which came in 2008-2010

Linux/KDE Plasma: 5.24.5
OS: Fedora 36


ADDITIONAL INFORMATION
Comment 1 ratijas 2022-06-01 08:29:11 UTC
Hi, please include in the bug report the exact hardware models and firmware that you have problems with.

I personally tried Fedora 36 on a modern Thinkpad laptop few days ago, and I didn't experience any problems with that hardware.
Comment 2 Pankaj Kumar 2022-06-01 08:32:06 UTC
(In reply to ratijas from comment #1)
> Hi, please include in the bug report the exact hardware models and firmware
> that you have problems with.
> 
> I personally tried Fedora 36 on a modern Thinkpad laptop few days ago, and I
> didn't experience any problems with that hardware.

The exact hardware model of my sensor is not reported in KDE, but the enrollment happens
what I am more concerend about is why swipe on a modern sensor ? We literally have like 1*1 cm sensor everywhere now
Comment 3 ratijas 2022-06-01 09:15:00 UTC
> what I am more concerend about is why swipe on a modern sensor ? We literally have like 1*1 cm sensor everywhere now

Please don't speak for everyone. As I said, I don't have any sensor at all on my laptop, but I was able to test it on my girlfriend's Thinkpad — and it worked just about right. Not everyone has the same hardware. Which is why…

> The exact hardware model of my sensor is not reported in KDE, but the enrollment happens

Please find out which exact model do you have, so we can work on a specific particular problem (if possible). You can find that out with various utilities like `lsusb`, `usb-devices`, `lspci`, KDE Info Center or even simply in `dmesg` logs.  KDE is simply using fprint to handle the actual hardware, so you might want to check out its documentation too; the Arch Linux wiki would be a good starting point: https://wiki.archlinux.org/title/Fprint
Comment 4 Pankaj Kumar 2022-06-01 09:21:32 UTC
(In reply to ratijas from comment #3)
> > what I am more concerend about is why swipe on a modern sensor ? We literally have like 1*1 cm sensor everywhere now
> 
> Please don't speak for everyone. As I said, I don't have any sensor at all
> on my laptop, but I was able to test it on my girlfriend's Thinkpad — and it
> worked just about right. Not everyone has the same hardware. Which is why…
> 
> > The exact hardware model of my sensor is not reported in KDE, but the enrollment happens
> 
> Please find out which exact model do you have, so we can work on a specific
> particular problem (if possible). You can find that out with various
> utilities like `lsusb`, `usb-devices`, `lspci`, KDE Info Center or even
> simply in `dmesg` logs.  KDE is simply using fprint to handle the actual
> hardware, so you might want to check out its documentation too; the Arch
> Linux wiki would be a good starting point:
> https://wiki.archlinux.org/title/Fprint

`lsusb`, `usb-devices`, `lspci , none of these commands show my integreated fp sensor. Still I am able to enroll my fingerprint, just not able to use it afterwards
Comment 5 ratijas 2022-06-01 09:23:21 UTC
Are you able to set it up via fprint command line "frontend"?
Comment 6 ratijas 2022-06-11 15:56:55 UTC
As I was investigating implementation of fprint, I found that it is actually a enum of two variants.

/**
 * FpScanType:
 * @FP_SCAN_TYPE_SWIPE: Sensor requires swiping the finger.
 * @FP_SCAN_TYPE_PRESS: Sensor requires placing/pressing down the finger.
 */
typedef enum {
  FP_SCAN_TYPE_SWIPE,
  FP_SCAN_TYPE_PRESS,
} FpScanType;

This scan type is proxy-passed via D-Bus to the users / enrollment KCM (system settings module), and used in the label accordingly:

kde/workspace/plasma-workspace/kcms/users/package/contents/ui/FingerprintDialog.qml:137:
                text: i18nc("%1 is a type of operation (e.g. 'scan') and %2 is the name of a finger", "Please repeatedly %1 your %2 on the fingerprint sensor.", fingerprintModel.scanType, fingerprintRoot.currentFinger.toLowerCase())

So if you really believe that the wrong action is suggested for your device, then it's worth looking into its libfprint driver first. And for that you need to find out the exact model you have :)

You can then file a bug report at libfprint project here: https://gitlab.freedesktop.org/libfprint/libfprint/-/issues