1 / 30

Java Authentication and Authorization Service (JAAS)

Java Authentication and Authorization Service (JAAS). Valentina Casola. Introduction. The Java Authentication and Authorization Service (JAAS) was introduced as an optional package (extension) to the Java 2 SDK, Standard Edition (J2SDK), v 1.3. JAAS was integrated into the J2SDK 1.4.

nyx
Télécharger la présentation

Java Authentication and Authorization Service (JAAS)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Java Authentication and Authorization Service (JAAS) Valentina Casola

  2. Introduction • The Java Authentication and Authorization Service (JAAS) was introduced as an optional package (extension) to the Java 2 SDK, Standard Edition (J2SDK), v 1.3. • JAAS was integrated into the J2SDK 1.4. • JAAS can be used for two purposes: • for authentication of users, to reliably and securely determine who is currently executing Java code, regardless of whether the code is running as an application, an applet, a bean, or a servlet; and • for authorization of users to ensure they have the access control rights (permissions) required to do the actions performed.

  3. Introduction (2) • Traditionally Java has provided codesource-based access controls (access controls based on where the code originated from and who signed the code). • It was not able to enforce access controls based on who runs the code. • JAAS provides a framework that augments the Java security architecture with such support. • It implements a Java version of the standard Pluggable Authentication Module (PAM) framework

  4. Features • JAAS provides pre-defined modules • It is possible to develop or import new modules

  5. JAAS pluggable • JAAS is pluggable; this permits applications to remain independent from underlying authentication technologies. • Any authentication technology can be plugged under an application without requiring modifications to the application itself. • The process: • Applications enable the authentication process by instantiating a LoginContext object, which referes to a Configuration to determine the authentication technology, or LoginModule, to be used in performing the authentication

  6. Authorization phase • Once the user or service executing the code has been authenticated, the JAAS authorization component works in conjunction with the core Java SE access control model to protect access to sensitive resources. • Access control decisions are based both on the executing code's CodeSource and on the user or service running the code, who is represented by a Subject object. • The Subject is updated by a LoginModule with relevant Principals and credentials if authentication succeeds.

  7. Authentication example • SampleAcn.java contains a sample application class (SampleAcn) and another class used to handle user input (MyCallbackHandler). • SampleLoginModule.java is the class specified by the login configuration file as the class implementing the desired underlying authentication. SampleLoginModule's user authentication consists of simply verifying that the name and password specified by the user have specific values. • SamplePrincipal.java is a sample class implementing the java.security.Principal interface. It is used by SampleLoginModule.

  8. LoginModules

  9. LoginModule: methods • Devono essere implementati dal programmatore • Non vengono utilizzati dal livello applicativo, ma dal LoginContext

  10. Authentication: CallbackHandlers and Callbacks • CallbackHandlers and Callbacks enable the LoginModule to gather user credentials. • JAAS provides 7 built-in Callbacks in the javax.security.auth.callback package: • ChoiceCallback, • ConfirmationCallback, • LocaleCallback, • NameCallback, • PasswordCallback, • TextInputCallback, • TextOutputCallback.

  11. Configuration files Hanno la seguente struttura:      Application {          ModuleClass  Flag    ModuleOptions;          ModuleClass  Flag    ModuleOptions;          ...      };      Application {          ModuleClass  Flag    ModuleOptions;          ...      };      ... Un esempio: Sample {    com.sun.security.auth.module.NTLoginModule Required debug=true;};

  12. Subjects and Principals • The JAAS framework defines the term subject to represent the source of a request. A subject may be any entity, such as a person or a service. • Once the subject is authenticated, a javax.security.auth.Subject is populated with associated identities, or Principals. • A Subject may have many Principals.

  13. SampleAcn File • That file contains two classes: • The SampleAcn Class, • The MyCallbackHandler Class, • The main method of the SampleAcn class performs the authentication and then reports whether or not authentication succeeded. The code for authenticating the user is very simple, consisting of just two steps: • Instantiate a LoginContext; • Call the LoginContext's login method;

  14. 1. Instantiating a LoginContext import javax.security.auth.login.*; . . . LoginContext lc = new LoginContext(<config file entry name>, <CallbackHandler to be used for user interaction>); This is the name for the LoginContext to use to look up an entry for this application in the JAAS login configuration file (sample_jaas.config); it specifies the class that implements the desired underlying authentication technology. When a LoginModule needs to communicate with the user to ask for a user name and password, it does not do so directly; LoginModule invokes a javax.security.auth.callback.CallbackHandler to perform the user interaction and obtain the requested information, such as the user name and password.

  15. 2. Calling the LoginContext's login() • Once we have a LoginContext lc, we can call its login method to carry out the authentication process: • lc.login(); • The LoginContext instantiates a new empty javax.security.auth.Subject object (which represents the user or service being authenticated). • The LoginContext constructs the configured LoginModule (in our case SampleLoginModule) and initializes it with this new Subject and MyCallbackHandler. • The LoginContext's login method then calls methods in the SampleLoginModule to perform the login and authentication. • The SampleLoginModule will utilize the MyCallbackHandler to obtain the user name and password. • Then the SampleLoginModule will check that the name and password are the ones it expects • If authentication is successful, the SampleLoginModule populates the Subject with a Principal representing the user.

  16. Putting all togheter import javax.security.auth.login.*; . . . LoginContext lc = new LoginContext("Sample", new MyCallbackHandler()); lc.login(); ------------------------------- file sample_jaas.config ---------------------------- /** Login Configuration for the JAAS Sample Application **/ Sample { sample.module.SampleLoginModule required debug=true; };

  17. SampleLoginModule File • SampleLoginModule.java implements the LoginModule interface. SampleLoginModule is the class specified in the configuration file as the class implementing the desired underlying authentication. • SampleLoginModule's user authentication consists of simply verifying that the name and password specified by the user have specific values. • If authentication is successful, the SampleLogin Module populates a Subject with a SamplePrincipal representing the user.

  18. Running the code javac sample/SampleAcn.java sample/module/SampleLoginModule.java sample/principal/SamplePrincipal.java java -Djava.security.auth.login.config= =sample_jaas.config sample.SampleAcn User: testUser Pass: testPassword

  19. Authorization phase • JAAS authorization extends the existing Java security architecture that uses a security policy to specify what access rights are granted to executing code: BEFORE JAAS: grant codebase "file:./SampleAcn.jar" { permission javax.security.auth.AuthPermission "createLoginContext.Sample"; };

  20. Authorization phase (2) • JAAS authorization augments the existing code-centric access controls with new user-centric access controls. Permissions can be granted based not just on what code is running but also on who is running it. • When an application uses JAAS authentication to authenticate the user (or other entity such as a service), a Subject is created as a result. The purpose of the Subject is to represent the authenticated user. A Subject is comprised of a set of Principals, where each Principal represents an identity for that user. • Permissions can be granted in the policy to specific Principals. • The Java runtime will automatically determine whether the policy grants the required permission only to a specific Principal and if so, the operation will be allowed only if the Subject associated with the access control context contains the designated Principal.

  21. Example • // Java 2 codesource-based policy grant Codebase "http://foo.com", Signedby "foo" { permission java.io.FilePermission "/cdrom/-", "read"; } • // JAAS principal-based policy grant Codebase "http://bar.com, Signedby "bar", Principal bar.Principal "duke" { permission java.io.FilePermission "/cdrom/duke/-", "read"; }

  22. Example (2) • This example allows to the code: • loaded by 'bar.com‘ • signed by 'bar', • and executed by ‘'duke‘ ….to read only the files included in the '/cdrom/duke‘ directory. • The Subject authenticated in the LoginContext must be associated to a Prinicipal whose getName method returns ‘duke’. • The policy must specify the information Codebase and SygnedBy, too.

  23. Authorization steps • To make JAAS authorization take place, the following is required: • The user must be authenticated. • Principal-based entries must be configured in the security policy. • The Subject that is the result of authentication must be associated with the current access control context.

  24. Principal-Based Policy File Statements The basic format of a grant statement is: grant <signer(s) field> , <codeBase URL> <Principal field(s)> { permission perm_class_name "target_name“ , "action"; .... permission perm_class_name "target_name“ , "action"; };

  25. Example: sampleazn.policy grant codebase "file:./SampleAction.jar", Principal sample.principal.SamplePrincipal "testUser" { permission java.util.PropertyPermission "java.home", "read"; permission java.util.PropertyPermission "user.home", "read"; permission java.io.FilePermission "foo.txt", "read"; };

  26. Create and associate a Subject with the current access control context • After user authentication, the static doAs method from the Subject class must be called, passing it an authenticated Subject and a java.security.PrivilegedAction; • The doAs method associates the provided Subject with the current Access Control Context and then invokes the run method from the action. • The run method implementation contains all the code to be executed as the specified Subject. The action thus executes as the specified Subject. • The static doAsPrivileged method from the Subject class may be called instead of the doAs method. In addition to the parameters passed to doAs, doAsPrivileged requires a third parameter: an AccessControlContext.

  27. Putting all togheter Subject mySubject = lc.getSubject(); PrivilegedAction action = new SampleAction(); Subject.doAsPrivileged(mySubject, action, null); The doAsPrivileged method invokes execution of the run method in the PrivilegedAction action (SampleAction) to initiate execution of the rest of the code, which is considered to be executed on behalf of the Subject mySubject.

  28. References • JAAS Reference Guide: http://java.sun.com/javase/6/docs/technotes/guides/security/jaas/JAASRefGuide.html • JAAS Authentication Tutorial • JAAS Authorization Tutorial

More Related