8.0 Using security featuresYou are not required to use any of Legion's security options. We realize that not all systems will benefit from our security and Legion can run with or without security. However, you must decide whether or not to enable Legion security before you use your new system: the command-line tool that starts the security mode (legion_init_security) will not run correctly if you have started to work in your system (i.e., if you have created new objects, changed context space, run classes, etc.). If you are running a multi-architecture system, you will need to register other implementations for each additional architecture (an implementation for your current architecture is automatically created when the system is first initialized). Use the legion_create_implementation command.
If you choose to enable the security features (see Set security) you must run legion_init_security immediately after you have started a new system and you must log in as admin. If you do not enable security, Legion will run normally but none of your processes will be protected. 8.1 Authentication objectsWhen you create a user account in a running Legion net, Legion creates an AuthenticationObject, which holds the user's credentials and represents an individual user id in Legion. AuthenticationObjects are displayed in context space as /users/<user id>. As of version 1.8, AuthenticationObjects also hold the user's home context (/home/<user id>) in the "home_dir" attribute.1 They are also allowed to have any number of attributes with the name "legionrc_file." These attributes are assumed to point to LegionRC files in context space. LegionRC files are scripts that contain instructions for when the user logs in. The files are downloaded and executed on your local machine. A default LegionRC file is created when you create a new user (page 37). Its context path is /home/<user id>/.legionrc and its contents are: This means that when the user logs in, she will automatically be moved to her home context. Users can edit their own AuthenticationObject and LegionRC files at any time, however, so they can easily remove or change this behavior.2 A LegionRC file MUST use the following syntax:
Aside from the semantic elements described, the file MUST contain nothing else except programs to execute on the command line, one per line in the script. 8.2 Security and context spaceWhile all users can "read" (i.e., look at and move to) all of the new context space, non-admin users can "write" (i.e., create new context objects) only in the /home, /etc, /tmp, /mpi, and /pvm contexts. Only admin can "write" in the all parts of context space (Figure 6). Log out is achieved by exiting the shell.
The legion_change_permissions command can be used to alter "read," "write," and "execute" object permissions so that other users can use those objects (see page 11 in the Basic User Manual). 8.3 Creating new usersYou add users to your system by creating new user ids. A user id is an entry in context space that represents an AuthenticationObject (see section 8.1). The user id signifies ownership of all objects that a logged in user creates. If you have enabled security you must be logged in as admin in order to create new users. The legion_create_user command creates new user ids. This command is actually a simple wrapper around the legion_create_user_object command (see page 66 in the Reference Manual). The latter command gives more control in creating AuthenticationObjects, so that you can choose a particular host or vault, or (if you have another class that can create AuthenticationObjects) specify the new object's class. We strongly suggest that you put all new users in the /users context. You will be asked to assign a password. The user can change it later on with the legion_passwd command (page 38). New users are assigned a "home" context in /home/<user id>. They are also given a LegionRC file (page 35).
8.4 Logging in usersPlease allow about five minutes for a new user id to propagate in your system after creating it. If a new user tries to log in too early, he or she will get security errors when trying to create objects. The new user can then log in with legion_login, using the new user id's context path (note that you need to include /users): On a successful login, a credentials file (a user read-only file) is created in the local /tmp directory (see page 68 in the Reference manual). The user will automatically be moved to his or her home context (unless the default LegionRC file has been edited). 8.5 Changing user passwordsUse legion_passwd to change passwords. You must be logged in as either admin or the user to change a user password. Note that you need to use /users/<user id> as the argument. If you are logged in as admin you can change all passwords. Otherwise, you can only change your own password. 8.6 Changing implicit parameters and ACL informationThere is a suite of four commands for manipulating implicit parameters and access control information: legion_set_implicit_params To set the implicit parameters for a user id, run legion_set_implicit_params and specify the user and the file containing the parameters.
Below is an example implicit parameters file that sets message security and an access control policy.
![]()
Once the implicit parameters for a user have been set, you must log out and log in again for them to take affect. Alternatively, legion_set_implicit_params can be used to change the implicit parameters of the current session (if you do not specify a file name the command sets the implicit parameters of the current environment). If you do this, make sure that the implicit parameters contains a certificate definition for your AuthenticationObject, or you will have to log out and log in again in order to execute any further commands as an authenticated user. This documentation does not yet include an example of defining a certificate. To show the current implicit parameters or the parameters for a particular user, use legion_get_implicit_params. Use legion_set_acl to change the access policy of an existing object: this is not the same as changing implicit parameters, which (in the case of access control) will only affect the creation of new objects. The legion_set_acl tool can have the same input file as legion_set_implicit_params but it only uses the access control information. The legion_change_permissions command manipulates an object's ACL so that other users can call methods on that object. If you have created a system with secure files, try creating a file as a logged-in user (the executable testBasicFiles will create a sample one for you). You can experiment with permissions and access control. Run legion_get_interface to get the names of methods available on an object. The method names follow the output line titled Object Interface. Some of the methods are Legion object-mandatory functions, while others (usually listed at the end) are particular to objects of that class. You can cut and paste lines from the output into an implicit parameters file: put the names in double quotation marks in the Method definitions. Be sure to make your cut be from the real start and end of the line output by legion_get_interface, since some method names have leading or trailing tabs and spaces. Directing the output of legion_get_interface into a file then editing the file may be helpful. If a user's AuthenticationObject is deleted there is no way to regenerate an equivalent AuthenticationObject; the user must be re-created from scratch. The reason is that the private key of the original AuthenticationObject cannot be recovered, so the same LOID cannot be used for the object. 1. Use legion_list_attributes to view an object's attributes and legion_update_attributes to change them (see pages 10 and 12 in the Reference Manual). 2. In this case, she could use legion_update_attributes to change /users/jill's "home_dir" attribute to a different context path. For example:
The next time Jill logs in, she will automatically be moved to the /home context. She can edit her /home/jill/.legionrc file to remove to legion_cd command altogether, if she prefers, in which case she will start at /.
legion@Virginia.edu
|