Development/Tutorials/KAuth/KAuth Basics: Difference between revisions

From KDE TechBase
(Fix develop-kde link)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
This tutorial was moved to https://develop.kde.org/docs/features/kauth/
 
{{TutorialBrowser|
 
series=KAuth Tutorial|
 
name=KAuth Basics|
 
pre=|
 
next=[[Development/Tutorials/KAuth/KAuth_Actions|Using KAuth actions in your application]]|
 
reading=None
}}
 
== What is KAuth  ==
 
KAuth (part of KDE Frameworks) is an authentication framework for KDE. Just like any other components in the KDE Development Platform, it is a wrapper around lower-level tools. If you're planning to use KAuth, however, you won't have to care about what authentication system is the system you're targeting using: KAuth will take care of that on its own.
 
In addition, KAuth is also able to perform privilege elevation on restricted portions of code (helpers), giving the developer an efficient and easy to use pipe to communicate with them, and making them secure throughout authorization.
 
== Concepts  ==
There are a few concepts to understand when using KAuth. Much of those are carried from underlying APIs such as polkit, so if you are familiar with one of them you might as well skip this section.
 
=== Terms and main concepts ===
*The ''authorization system'' is an underlying framework (like polkit or Authorization Services), which KAuth interfaces with. KAuth's aim is to never make the developer know or care about the underlying authorization system, however in this tutorial series this concept will come up quite often to explain better how KAuth works.
*An ''action'' is a single task that needs authorization to be performed. Each action has an unique action identifier, which is a string in reverse domain name syntax, like ''org.kde.this.is.an.action''. For example, if our example application needs to read a file the user has no privileges on, it would need an action like "org.kde.auth.example.read". Please note that each action has to refer to a single task: this allows system administrators to fine tune the policies that allow users to perform your actions, and also a more secure way of locking down the privileged actions in your application.
* An ''action namespace'' is the first part of the action identifier. In "org.kde.auth.example.read", ''org.kde.auth.example'' is the '''action namespace''', ''read'' is the '''action name'''. This is a very important concept when dealing with helpers and .actions files.
*''Authorization'' is a particular phase where the underlying authorization system performs the needed checks (and eventually asks the user its credentials in order to authorize him). Before any action is executed, the Authorization phase takes place. This is handled internally by KAuth: even if you are able to trigger this phase manually, most of the times you don't need to: KAuth will still execute an action only if the underlying authorization system allows its execution.
*''Authentication'' is an optional phase that takes place during authorization, if the policy for the action requests the user to input a credential to give him an explicit authorization. This phase is external and not handled by KAuth, but entirely by the underlying authorization system. It is, however, important for you to know something about it even if KAuth has no way to hijack the Authentication phase by design.
*''Execution'' happens '''only''' if the Authorization was successful: the execution might consist in a simple confirmation of the successful authorization, or eventually in the execution of a function in a helper.
*An ''Helper ''is a separate application running as a privileged user (usually root), which is called upon execution if your action was attached to a helper. KAuth uses a completely transparent approach: IPC between your application and the helper itself is handled internally through an extremely simple API, and you won't even know that the helper is a separate application: spawning, killing and all the process handling is handled by KAuth.
 
=== Phases breakdown ===
Supposing that you want to use KAuth to perform a privileged operation and the action you are considering requires the user to authenticate (which is the most common use case of KAuth), the break down of phases would be:
 
*The user wants to perform some privileged task
*The application creates an action for the task in question.
*The action is requested to be executed.
*The following steps are handed internally, either by KAuth or the underlying authorization system.
*'''Authorization phase begins'''
*The system detects that the user needs to authenticate to authorize the action.
*'''Authentication phase begins'''
*The user is requested to input his password, swipe his finger, press a button...
*'''Authentication phase ends'''
*If authentication was unsuccessful, the action is rejected.
*Otherwise, the system grants an explicit authorization to the user
*'''Authorization phase ends'''
*If authorization was unsuccessful, the action is rejected
*Otherwise, the action is executed
*'''Execution phase begins'''
*A separate application is spawned by root, and the requested portion of code is executed.
*The helper code, immediately after starting, checks the authorization again to improve security, and also because some authorization systems delay the authorization phase in the beginning of the execution phase. If the helper is not authorized, the execution is aborted.
*If the caller is authorized, the helper executes the task
*'''Execution phase ends'''
*The application receives the result of the execution from the helper
 
This is how, concept-proof, KAuth works. However, please note that in your implementation you will have to deal with the pre-authorization phase only, since everything else is handled internally.
 
== Creating Actions with KAuth ==
To increase the level of security, authorization systems require to register the actions together with the application installation, so that the authorized actions are all known to the system administrator. This means that if you're using KAuth you probably want to register some new actions in the system.
 
=== Naming actions and namespaces ===
Many authorization systems are quite strict about action naming, hence staying compatible with all of them is a tricky task. To ensure maximum compatibility with all of them, use, both in action namespaces and action names, '''only lowercase letters and numbers'''. Here comes a small example:
 
*''org.kde.auth.example.read'' '''OK'''
*''org.KDE.auth.example.read'' '''NOT OK'''
*''org.kde.auth.example-1.read'' '''NOT OK'''
*''org.kde.auth.example.readFile'' '''NOT OK'''
*''org.kde.auth.example.readfile'' '''OK'''
 
Please always keep this in mind when creating new actions, to avoid any kind of possible problems.
 
=== The basic .actions file ===
This is done by creating a ''.actions'' file, which is a common INI files containing a set of new actions. This file is translatable, and if you're developing your project in KDE SVN, scripty will take care of updating it.
 
Each .actions file can contain an unlimited set of actions, provided that they '''belong to the same action namespace'''. This is extremely important.
 
The file has the following format:
 
[org.kde.auth.example.action]
Name=Example action
Description=The system is attempting to perform the example action
Policy=auth_admin
Persistence=session
 
The fields are defined as follows:
 
*'''Title''': The action identifier
*'''Name''': A human readable action name
*'''Description''': This message will eventually be displayed to the user during the authentication phase, if any.
*'''Policy''': The default policy for this action. It can be one of the following values:
**''yes'': the action should be allowed without requesting authentication
**''no'': the action should be always denied, without requesting authentication
**''auth_self'': the action will be authorized if the user will authenticate as himself
**''auth_admin'': the action will be authorized if the user will authenticate as a system administrator
*'''Persistence''': this field is optional and takes effect only if the authorization system supports it and '''Policy''' is either ''auth_admin'' or ''auth_self''. It defines the persistence of the explicit authorization granted by the user through authentication. It can be one of the following values:
**''session'': the authorization persists until the user logs out
**''always'': the authorization will persist indefinitely
 
=== The Domain field ===
.actions files can have a special group, '''[Domain]''', under which you can give out some more information about the action namespace you're defining. This is how it looks (all fields are optional):
 
[Domain]
Name=The KAuth example series
Icon=kauth-example
URL=http://techbase.kde.org/
 
The fields are defined as follows:
 
*'''Name''': Usually the name defining the application which is going to use this namespace
*'''Icon''': An icon name, that will be shared among all the actions
*'''URL''': Home page of your organization
 
=== CMake macros and file format ===
Once you defined the actions in your file (remember you can define an unlimited number of actions in an .actions file, provided that they all belong to the same namespace, for example org.kde.auth.example.*), KAuth provides a CMake macro to register the actions in the system. From your CMakeLists.txt, supposing your file is named org.kde.auth.example.actions, you would do:
 
{{Input|1=<nowiki>
kauth_install_actions(org.kde.auth.example org.kde.auth.example.actions)
</nowiki>}}
 
This macro has the following syntax:
{{Input|1=<nowiki>
kauth_install_actions(<namespace_id> <actions definition file>)
</nowiki>}}
 
Where namespace_id is the namespace where you defined your actions, in this case org.kde.auth.example.
 
''kauth_install_helper_files'' macro adds the needed files for an helper executable meant to be used by applications using KAuth. It accepts the helper target, the helper ID (the DBUS name) and the user under which the helper will run on. This macro takes care of generate the needed files, and install them in the right location. This boils down to a DBus policy to let the helper register on the system bus, and a service file for letting the helper being automatically activated by the system bus.
 
You have to install the helper in ${KAUTH_HELPER_INSTALL_DIR} to make sure everything will work.
 
{{Input|1=<nowiki>
function(KAUTH_INSTALL_HELPER_FILES HELPER_TARGET HELPER_ID HELPER_USER)
</nowiki>}}
 
{{Input|1=<nowiki>
kauth_install_helper_files(my_helper org.kde.auth root)
</nowiki>}}
 
Install helpers with
{{Input|1=<nowiki>
install(TARGETS my_helper DESTINATION ${KAUTH_HELPER_INSTALL_DIR})
</nowiki>}}

Latest revision as of 15:34, 22 March 2023