Generates a new password for a user.
#include <usersec.h> #include <userpw.h>
char *newpass(Password) struct userpw *Password;
The newpass subroutine generates a new password for the user specified by the Password parameter. The new password is then checked to ensure that it meets the password rules on the system unless the user is exempted from these restrictions. Users must have root user authority to invoke this subroutine. The password rules are defined in the /etc/security/user file and are described in both the user file and the passwd command.
Passwords can contain almost any legal value for a character but cannot contain (National Language Support (NLS) code points. Passwords cannot have more than the value specified by MAX_PASS.
The newpass subroutine authenticates the user prior to changing the password. If the PW_ADMCHG flag is set in the upw_flags member of the Password parameter, the supplied password is checked against the password to determine the user corresponding to the real user ID of the process instead of the user specified by the upw_name member of the Password parameter structure.
If a password is successfully generated, a pointer to a buffer containing the new password is returned and the last update time is reset.
Note: The newpass subroutine is not safe in a multi-threaded environment. To use newpass in a threaded application, the application must keep the integrity of each thread.
Policy: Authentication | To change a password, the invoker must be properly authenticated. |
Note: Programs that invoke the newpass subroutine should be written to conform to the authentication rules enforced by newpass. The PW_ADMCHG flag should always be explicitly cleared unless the invoker of the command is an administrator.
If a new password is successfully generated, a pointer to the new encrypted password is returned. If an error occurs, a null pointer is returned and the errno global variable is set to indicate the error.
The newpass subroutine fails if one or more of the following are true;
This subroutine is part of Base Operating System (BOS) Runtime.
The getpass subroutine, getuserpw subroutine.
The login command, passwd command, pwdadm command.
List of Security and Auditing Subroutines, Subroutines Overview in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.