summaryrefslogtreecommitdiffstats
path: root/ldap/admin/src/ns-newpwpolicy.pl
blob: 5cc6a6ecd79204f48de0d7afcbf330812bca3c9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# perl script
#
# BEGIN COPYRIGHT BLOCK
# Copyright 2001 Sun Microsystems, Inc.
# Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
# All rights reserved.
# END COPYRIGHT BLOCK
#

# Add new password policy specific entries

#############################################################################
# enable the use of Perldap functions
require DynaLoader;

use Getopt::Std;
use Mozilla::LDAP::Conn;
use Mozilla::LDAP::Entry;
use Mozilla::LDAP::Utils qw(:all);
use Mozilla::LDAP::API qw(:api :ssl :apiv3 :constant); # Direct access to C API

#############################################################################
# Default values of the variables

$opt_D = "cn=directory manager";
$opt_p = 389;
$opt_h = "localhost";
$opt_v = 0;

#############################################################################

sub usage {
	print (STDERR "ns-newpwpolicy.pl [-v] [-D rootdn] { -w password | -j filename } \n");
	print (STDERR "                  [-p port] [-h host] -U UserDN -S SuffixDN\n\n");

	print (STDERR "Arguments:\n");
	print (STDERR "	-?		- help\n");
	print (STDERR "	-v		- verbose output\n");
	print (STDERR "	-D rootdn	- Directory Manager DN. Default= '$opt_D'\n");
	print (STDERR "	-w rootpw	- password for the Directory Manager DN\n");
	print (STDERR "	-j filename	- Read the Directory Manager's password from file\n");
	print (STDERR "	-p port		- port. Default= $opt_p\n");
	print (STDERR "	-h host		- host name. Default= '$opt_h'\n");
	print (STDERR "	-U userDN	- User entry DN\n");
	print (STDERR "	-S suffixDN	- Suffix entry DN\n");
	exit 100;
}

# Process the command line arguments
{
	usage() if (!getopts('vD:w:j:p:h:U:S:'));

	if ($opt_j ne ""){
		die "Error, cannot open password file $opt_j\n" unless (open (RPASS, $opt_j));
		$opt_w = <RPASS>;
		chomp($opt_w);
		close(RPASS);
	} 

	usage() if( $opt_w eq "" );
	if ($opt_U eq "" && $opt_S eq "") {
		print (STDERR "Please provide at least -S or -U option.\n\n");
	}

	# Now, check if the user/group exists

	if ($opt_S) {
		my $norm_opt_S = normalizeDN($opt_S);
		print (STDERR "host = $opt_h, port = $opt_p, suffixDN = $norm_opt_S\n\n") if $opt_v;
		%ld = Mozilla::LDAP::Utils::ldapArgs();
		$ld->{"host"} = $opt_h;
		$ld->{"port"} = $opt_p;
		$ld->{"bind"} = $opt_D;
		$ld->{"pswd"} = $opt_w;
		$conn = new Mozilla::LDAP::Conn(\%ld); die "No LDAP connection" unless $conn;
	
		$entry_1 = new Mozilla::LDAP::Entry;
		$dn1 = "cn=nsPwPolicyContainer, " . $norm_opt_S;
		print (STDERR "adding $dn1\n\n") if $opt_v;
		$entry_1->setDN("$dn1");
		$entry_1->setValues("objectclass", "top", "nsContainer");
		$conn->add($entry_1);
		$error = $conn->getErrorCode();
		if ( ( $error ne 0 ) && ( $error ne 68 ) ) {
			$conn->printError();
			exit (-1);
		}

		$entry_2 = new Mozilla::LDAP::Entry;
		$dn2 = "cn=\"cn=nsPwPolicyEntry,$norm_opt_S\",cn=nsPwPolicyContainer," . $norm_opt_S;
		print (STDERR "adding $dn2\n\n") if $opt_v;
		$entry_2->setDN("$dn2");
		$entry_2->setValues("objectclass", "top", "ldapsubentry", "passwordpolicy");
		$conn->add($entry_2);
		$conn->printError() if $conn->getErrorCode();

		$entry_3 = new Mozilla::LDAP::Entry;
		$dn3 = "cn=\"cn=nsPwTemplateEntry,$norm_opt_S\",cn=nsPwPolicyContainer, " . $norm_opt_S;
		print (STDERR "adding $dn3\n\n") if $opt_v;
		$entry_3->setDN("$dn3");
		$entry_3->setValues("objectclass", "top", "extensibleObject", "costemplate", "ldapsubentry");
		$entry_3->setValues("cospriority", "1");
		$entry_3->setValues("pwdpolicysubentry", "$dn2");
		$conn->add($entry_3);
		$conn->printError() if $conn->getErrorCode();

		$entry_4 = new Mozilla::LDAP::Entry;
		$dn4 = "cn=nsPwPolicy_cos, " . $norm_opt_S;
		print (STDERR "adding $dn4\n\n") if $opt_v;
		$entry_4->setDN("$dn4");
		$entry_4->setValues("objectclass", "top", "cosSuperDefinition", "cosPointerDefinition", "ldapsubentry");
		$entry_4->setValues("cosTemplateDn", "$dn3");
		$entry_4->setValues("cosAttribute", "pwdpolicysubentry default operational-default");
		$conn->add($entry_4);	
		$conn->printError() if $conn->getErrorCode();

		$cfg_entry = $conn->search("cn=config", "base", "(objectclass=*)");
		$conn->printError() if $conn->getErrorCode();
		print (STDERR "modifying cn=config\n\n") if $opt_v;
		$cfg_entry->setValues("nsslapd-pwpolicy-local", "on");
		$conn->update($cfg_entry);
		$conn->printError() if $conn->getErrorCode();
		
		$conn->close if $conn;
	
	} # end of $opt_S

	if ($opt_U) {
		my $norm_opt_U = normalizeDN($opt_U);
		print (STDERR "host = $opt_h, port = $opt_p, userDN = $norm_opt_U\n\n") if $opt_v;
		%ld = Mozilla::LDAP::Utils::ldapArgs();
		$ld->{"host"} = $opt_h;
		$ld->{"port"} = $opt_p;
		$ld->{"bind"} = $opt_D;
		$ld->{"pswd"} = $opt_w;
		$conn = new Mozilla::LDAP::Conn(\%ld); die "No LDAP connection" unless $conn;

		$user_entry = $conn->search($norm_opt_U, "base", "(objectclass=*)");
		$conn->printError() if $conn->getErrorCode();
		if (! $user_entry) {
			print (STDERR "The user entry $norm_opt_U does not exist. Exiting.\n");
			exit (-1);
		}

		print (STDERR "the user entry $norm_opt_U found..\n\n") if $opt_v;
	
		# Now, get the parentDN 
		@rdns = ldap_explode_dn($norm_opt_U, 0);
		shift @rdns;
		$parentDN = join(',', @rdns);

		print (STDERR "parentDN is $parentDN\n\n") if $opt_v;

		# Now, check if the nsContainer entry exists at the parent level
		$dn1 = "cn=nsPwPolicyContainer, " . $parentDN;
		$entry = $conn->search($dn1, "base", "(objectclass=*)");
		my $error = $conn->getErrorCode();
		$conn->printError() 
			if (( $error ne 0 ) && ( $error ne 32 ) && ( $error ne 68 ));

		if (! $entry) { 
			print (STDERR "nsContainer doesn't exist. Creating one now..\n\n") if $opt_v;
	  
			$entry_1 = new Mozilla::LDAP::Entry;
		
			print (STDERR "adding $dn1\n\n") if $opt_v;
			$entry_1->setDN("$dn1");
			$entry_1->setValues("objectclass", "top", "nsContainer");
			$conn->add($entry_1);
			$conn->printError() if $conn->getErrorCode();
		} else {
			print (STDERR "nsContainer exists..\n\n") if $opt_v;
		}

		$entry_2 = new Mozilla::LDAP::Entry;
		$dn2 = "cn=\"cn=nsPwPolicyEntry,$norm_opt_U\",cn=nsPwPolicyContainer," . $parentDN;
		print (STDERR "adding $dn2\n\n") if $opt_v;
		$entry_2->setDN("$dn2");
		$entry_2->setValues("objectclass", "top", "ldapsubentry", "passwordpolicy");
		$conn->add($entry_2);
		$conn->printError() if $conn->getErrorCode();

		print (STDERR "modifying $norm_opt_U\n\n") if $opt_v;
		$user_entry->setValues("pwdpolicysubentry", "$dn2");
		$conn->update($user_entry);
		$conn->printError() if $conn->getErrorCode();

		$cfg_entry = $conn->search("cn=config", "base", "(objectclass=*)");
		$conn->printError() if $conn->getErrorCode();
		print (STDERR "modifying cn=config\n\n") if $opt_v;
		$cfg_entry->setValues("nsslapd-pwpolicy-local", "on");
		$conn->update($cfg_entry);
		$conn->printError() if $conn->getErrorCode();

		$conn->close if $conn;
		
	} # end of $opt_U
}