2 Unix SMB/CIFS implementation.
3 ads (active directory) utility library
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Andrew Bartlett 2001
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 /* return a ldap dn path from a string, given separators and field name
27 char *ads_build_path(const char *realm
, const char *sep
, const char *field
, int reverse
)
34 r
= SMB_STRDUP(realm
);
43 len
= (numbits
+1)*(strlen(field
)+1) + strlen(r
) + 1;
45 ret
= SMB_MALLOC(len
);
49 strlcpy(ret
,field
, len
);
53 while ((p
=strtok(NULL
,sep
))) {
56 asprintf(&s
, "%s%s,%s", field
, p
, ret
);
58 asprintf(&s
, "%s,%s%s", ret
, field
, p
);
67 /* return a dn of the form "dc=AA,dc=BB,dc=CC" from a
68 realm of the form AA.BB.CC
71 char *ads_build_dn(const char *realm
)
73 return ads_build_path(realm
, ".", "dc=", 0);
82 initialise a ADS_STRUCT, ready for some ads_ ops
84 ADS_STRUCT
*ads_init(const char *realm
,
85 const char *workgroup
,
86 const char *ldap_server
)
90 ads
= SMB_XMALLOC_P(ADS_STRUCT
);
93 ads
->server
.realm
= realm
? SMB_STRDUP(realm
) : NULL
;
94 ads
->server
.workgroup
= workgroup
? SMB_STRDUP(workgroup
) : NULL
;
95 ads
->server
.ldap_server
= ldap_server
? SMB_STRDUP(ldap_server
) : NULL
;
97 /* we need to know if this is a foreign realm */
98 if (realm
&& *realm
&& !strequal(lp_realm(), realm
)) {
99 ads
->server
.foreign
= 1;
101 if (workgroup
&& *workgroup
&& !strequal(lp_workgroup(), workgroup
)) {
102 ads
->server
.foreign
= 1;
105 /* the caller will own the memory by default */
112 free the memory used by the ADS structure initialized with 'ads_init(...)'
114 void ads_destroy(ADS_STRUCT
**ads
)
119 is_mine
= (*ads
)->is_mine
;
121 if ((*ads
)->ld
) ldap_unbind((*ads
)->ld
);
123 SAFE_FREE((*ads
)->server
.realm
);
124 SAFE_FREE((*ads
)->server
.workgroup
);
125 SAFE_FREE((*ads
)->server
.ldap_server
);
126 SAFE_FREE((*ads
)->server
.ldap_uri
);
128 SAFE_FREE((*ads
)->auth
.realm
);
129 SAFE_FREE((*ads
)->auth
.password
);
130 SAFE_FREE((*ads
)->auth
.user_name
);
131 SAFE_FREE((*ads
)->auth
.kdc_server
);
133 SAFE_FREE((*ads
)->config
.realm
);
134 SAFE_FREE((*ads
)->config
.bind_path
);
135 SAFE_FREE((*ads
)->config
.ldap_server_name
);